@charset "UTF-8";
/*
theme Name: acnct
Author: acnct
Description: 自作テーマ
version： 1.0.0
*/
/*=========================
# colors
=========================*/
body {
  box-sizing: border-box;
  width: 100%;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  line-height: 1.7777777778;
  color: #161616;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.inner {
  margin: 0 auto;
  max-width: 860px;
}
@media (min-width: 768px) {
  .inner {
    box-sizing: content-box !important;
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

p {
  margin-bottom: 30px;
}

img {
  width: 100%;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
  .tab {
    display: none;
  }
}
@media (max-width: 1024px) {
  .tab {
    display: block;
  }
}
.main {
  overflow: hidden;
  flex: 1;
}
@media (max-width: 767px) {
  .main {
    margin-top: 70px;
  }
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 50px;
  line-height: 1;
  text-align: center;
  color: #BBBBBB;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 24px;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 21px;
  }
}
.section-title span {
  color: #161616;
  font-family: "Arial Black", sans-serif;
  display: block;
  font-size: 48px;
  letter-spacing: 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-title span {
    font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.btn {
  background: #00499F;
  color: #fff;
  display: block;
  line-height: 1;
  text-align: center;
  position: relative;
  letter-spacing: -0.025em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: all ease 1s;
}
@media (min-width: 768px) {
  .btn {
    padding: 22px 120px;
    font-size: 24px;
    min-width: 500px;
  }
}
@media (max-width: 767px) {
  .btn {
    padding: 15px 50px;
    font-size: 17px;
    min-width: 280px;
  }
}
.btn:hover {
  background: #bbbbbb;
  color: #161616;
}
.btn:hover .btn-arrow:before {
  background: #bbbbbb;
}
.btn .btn-arrow {
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 41px;
  height: 33px;
}
@media (max-width: 767px) {
  .btn .btn-arrow {
    width: 32px;
    height: 28px;
  }
}
.btn .btn-arrow:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  background: navy;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
}
@media (max-width: 767px) {
  .btn .btn-arrow:before {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
  }
}

.eyecatch {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
  padding-top: 3%;
  padding-bottom: 3%;
  margin-bottom: 67px;
}
@media (max-width: 767px) {
  .eyecatch {
    margin-bottom: 20px;
  }
}
.eyecatch .inner {
  text-align: center;
}
.eyecatch .eyecatch-title {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -0.1em;
}
@media (max-width: 767px) {
  .eyecatch .eyecatch-title {
    font-size: 20px;
  }
}

/* header
--------------------------*/
@media (min-width: 768px) {
  .header {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    height: 70px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 650;
    background: #fff;
  }
}
.header .inner {
  max-width: 100%;
  padding: 0;
}
@media (max-width: 767px) {
  .header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
    padding: 0 0 0 10px;
    max-width: 100%;
  }
}
.header .inner .header-top {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .header .inner .header-top {
    justify-content: space-between;
    padding: 0 0 0 20px;
  }
}
.header .inner .header-top .header-title {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header .inner .header-top .header-title {
    width: 170px;
  }
}
.header .inner .header-top .header-title img {
  vertical-align: middle;
}
@media (min-width: 768px) {
  .header .inner .header-top .header-title img {
    width: 350px;
    margin: 27px 20px 27px 0;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .header .inner .header-top .header-title img {
    width: 250px;
    margin: 10px 10px 10px 0;
  }
}
.header .inner .header-top .header-title p {
  white-space: nowrap;
  margin-bottom: 0;
  font-size: 14px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  letter-spacing: -0.1em;
}
.header .inner .header-contact {
  height: 100%;
}
@media (max-width: 767px) {
  .header .inner .header-contact {
    margin-left: auto;
  }
}
.header .inner .header-contact ul {
  display: flex;
  align-items: center;
  height: 138px;
}
@media (min-width:768px) and (max-width: 1024px) {
  .header .inner .header-contact ul {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .header .inner .header-contact ul {
    height: 70px;
  }
}
.header .inner .header-contact ul li {
  background: #C5E2FF;
  height: 100%;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .header .inner .header-contact ul li {
    padding: 5px;
  }
}
.header .inner .header-contact ul li:nth-child(1) a i {
  font-size: 40px;
  margin: 5px;
}
@media (max-width: 1024px) {
  .header .inner .header-contact ul li:nth-child(1) a i {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .header .inner .header-contact ul li:nth-child(1) a i {
    font-size: 20px;
    margin: 2px 0;
  }
}
.header .inner .header-contact ul li:nth-child(2) {
  border-left: 1px solid #fff;
}
.header .inner .header-contact ul li a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .header .inner .header-contact ul li a {
    padding: 0 5px;
  }
}
.header .inner .header-contact ul li a i {
  font-size: 50px;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .header .inner .header-contact ul li a i {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .header .inner .header-contact ul li a i {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .header .header-nav {
    display: none;
  }
}
@media (min-width: 768px) {
  .header .header-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header .header-nav ul li {
  width: 25%;
  text-align: center;
  border-left: 1px solid #fff;
}
.header .header-nav ul li:first-child {
  border-left: none;
}
.header .header-nav ul li a {
  font-weight: bold;
  font-size: 30px;
  color: #fff;
  letter-spacing: -0.1em;
  line-height: 1;
  background: #00499F;
  display: block;
  height: 100%;
  padding: 15px 0;
  transition: all ease 1s;
}
@media (min-width:1025px) and (max-width: 1300px) {
  .header .header-nav ul li a {
    font-size: 24px;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .header .header-nav ul li a {
    font-size: 16px;
    line-height: 1.2;
    padding: 10px 0;
  }
}
.header .header-nav ul li a span {
  color: #BBBBBB;
  font-family: "Arial Black", sans-serif;
  display: block;
  font-size: 18px;
  letter-spacing: 0;
  transition: all ease 1s;
}
@media (min-width:1025px) and (max-width: 1300px) {
  .header .header-nav ul li a span {
    font-size: 14px;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .header .header-nav ul li a span {
    font-size: 12px;
  }
}
.header .header-nav ul li a:hover {
  background: #bbbbbb;
  color: #161616;
}
.header .header-nav ul li a:hover span {
  color: #00499F;
}

@media (min-width: 768px) {
  .navToggle {
    display: none;
  }
}
@media (max-width: 767px) {
  .navToggle {
    background: #C5E2FF;
    position: relative;
    cursor: pointer;
    text-align: center;
    width: 40px;
    height: 70px;
    line-height: 70px;
    padding: 0 10px;
    border-left: 1px solid #fff;
  }
}
.navToggle:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c9";
  font-weight: 900;
  font-size: 24px;
  position: relative;
  z-index: 650;
}
.navToggle.is-checked:before {
  font-size: 33px;
  content: "\f00d";
}

.drawer-nav {
  position: fixed;
  top: -120%;
  bottom: 0;
  right: 0;
  z-index: 600;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #00499F;
  transition: all 0.5s ease 0s;
  overflow-y: auto;
  opacity: 0;
}
.drawer-nav.is-checked {
  top: 70px;
  opacity: 1;
}
.drawer-nav ul li {
  border-bottom: 1px solid #fff;
}
.drawer-nav ul li a {
  display: block;
  font-size: 14px;
  color: #fff;
  padding: 5px;
  position: relative;
  text-align: center;
}
.drawer-nav ul li a span {
  color: #BBBBBB;
  font-family: "Arial Black", sans-serif;
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  transition: all ease 1s;
}

/* util
---------------------------*/
a {
  color: #161616;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

/* main-visual top
-------------------------*/
.main-visual {
  position: relative;
}
@media (min-width: 768px) {
  .main-visual {
    background: transparent url(../img/top.png) no-repeat center center/cover;
    padding-top: 55%;
  }
}
@media (max-width: 767px) {
  .main-visual {
    background: transparent url(../img/top-sp.png) no-repeat center center/cover;
    padding-top: 70%;
  }
}
.main-visual .inner {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 100%;
}
.main-visual .main-visual-inner {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-visual .main-visual-inner h3 {
  position: relative;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.75;
  letter-spacing: -0.1em;
}
@media (max-width: 767px) {
  .main-visual .main-visual-inner h3 {
    font-size: 24px;
    text-align: center;
  }
}

/* about
---------------------------*/
.about {
  margin-top: 94px;
  margin-bottom: 118px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .about {
    margin-top: 50px;
    margin-bottom: 70px;
  }
}
.about::before {
  position: absolute;
  content: "";
  background: transparent url(../img/earth.jpg) no-repeat center center/contain;
  width: 843px;
  height: 252px;
  right: 0;
  z-index: -1;
}
@media (min-width: 768px) {
  .about::before {
    top: 5%;
  }
}
@media (max-width: 767px) {
  .about::before {
    width: 350px;
    height: 100px;
    top: 60%;
    right: -5px;
  }
}
.about h2 {
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1.7666666667;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .about h2 {
    font-size: 20px;
  }
}
.about p {
  font-size: 18px;
  letter-spacing: -0.05em;
  line-height: 1.7777777778;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .about p {
    font-size: 16px;
  }
}

/* service
---------------------------*/
.service {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .service {
    margin-bottom: 70px;
  }
}
.service .section-title {
  margin-bottom: 27px;
}
.service .service-contents {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .service .service-contents {
    margin-bottom: 0;
  }
}
.service .service-contents .service-content {
  display: flex;
}
@media (min-width: 768px) {
  .service .service-contents .service-content {
    align-items: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .service .service-contents .service-content {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .service .service-contents .service-content:nth-child(2n+1) {
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .service .service-contents .service-content .service-img {
    width: 51%;
  }
}
@media (max-width: 767px) {
  .service .service-contents .service-content .service-img {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .service .service-contents .service-content .service-txt {
    width: 49%;
  }
}
.service .service-contents .service-content .service-txt ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.service .service-contents .service-content .service-txt ul li {
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-size: 18px;
  color: #1D1D1D;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .service .service-contents .service-content .service-txt ul li {
    font-size: 16px;
  }
}
.service .service-contents .service-content .service-txt .triangle-list li {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.05em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .service .service-contents .service-content .service-txt .triangle-list li {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.service .service-contents .service-content .service-txt .triangle-list li::before {
  position: absolute;
  top: -15px;
  left: 0px;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  font-size: 40px;
}
@media (max-width: 767px) {
  .service .service-contents .service-content .service-txt .triangle-list li::before {
    font-size: 36px;
    top: -18px;
    left: 5px;
  }
}

/* access
---------------------------*/
.access {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .access {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .access .section-title {
    margin-bottom: 20px;
  }
}
.access .access-content {
  display: flex;
}
@media (min-width: 768px) {
  .access .access-content {
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .access .access-content {
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .access .access-content .access-txt {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .access .access-content .access-txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 20px;
    font-size: 16px;
  }
}
.access .access-content .access-txt h3 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .access .access-content .access-txt h3 {
    font-size: 21px;
  }
}
@media (min-width: 768px) {
  .access .access-content .access-map {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .access .access-content .access-map {
    margin-bottom: 20px;
  }
}
.access .access-content .access-map .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 76%;
  position: relative;
}
.access .access-content .access-map .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* contact us
---------------------------*/
.contact-us {
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .contact-us {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .contact-us .section-title {
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .contact-us .contact-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .contact-us .contact-us-content .contact-us-img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .contact-us .contact-us-content .contact-us-img {
    margin-bottom: 20px;
  }
}
.contact-us .contact-us-content .contact-us-txt {
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  .contact-us .contact-us-content .contact-us-txt {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .contact-us .contact-us-content .contact-us-txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 30px;
    font-size: 16px;
  }
}
.contact-us .contact-us-content .contact-us-txt h3 {
  font-family: "Arial Black", sans-serif;
  font-size: 24px;
}
@media (max-width: 767px) {
  .contact-us .contact-us-content .contact-us-txt h3 {
    font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
    font-weight: bold;
    font-size: 18px;
  }
}
.contact-us .contact-us-content .contact-us-txt h3 span {
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
@media (max-width: 767px) {
  .contact-us .contact-us-content .contact-us-txt h3 span {
    font-size: 16px;
    font-weight: normal;
  }
}

/* association
--------------------------*/
.association {
  text-align: center;
}
.association .inner {
  max-width: 580px;
}
.association h2 {
  font-size: 25px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .association h2 {
    font-size: 17px;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .association .association-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .association .association-content div {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .association .association-content div {
    width: 60%;
    margin: 0 auto 60px;
  }
}
.association h3 {
  font-size: 14px;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .association h3 {
    font-size: 12px;
  }
}
.association .association-img {
  margin: 0 auto 60px;
}
@media (min-width: 768px) {
  .association .association-img.takken {
    max-width: 512px;
  }
}
@media (max-width: 767px) {
  .association .association-img.takken {
    width: 80%;
  }
}
@media (min-width: 768px) {
  .association .association-img.ican {
    max-width: 263px;
  }
}
@media (max-width: 767px) {
  .association .association-img.ican {
    width: 55%;
  }
}
.association .association-img.tcjb {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .association .association-img.tcjb {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .association .association-img.tcjb {
    width: 50%;
  }
}

/* greeting
--------------------------*/
.greeting {
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .greeting {
    margin-bottom: 40px;
  }
}
.greeting .inner {
  max-width: 1040px;
}
@media (max-width: 767px) {
  .greeting .inner {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.greeting h2 {
  text-align: center;
  font-size: 24px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  line-height: 1.75;
  margin-bottom: 78px;
}
@media (min-width:768px) and (max-width: 1024px) {
  .greeting h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .greeting h2 {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .greeting .greeting-content {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .greeting .greeting-content {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .greeting .greeting-content .greeting-img {
    width: 50%;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .greeting .greeting-content .greeting-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .greeting .greeting-content .greeting-img {
    margin-bottom: 30px;
  }
}
.greeting .greeting-content .greeting-img img {
  height: auto;
}
@media (min-width: 768px) {
  .greeting .greeting-content .greeting-txt {
    width: 45%;
    font-size: 16px;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .greeting .greeting-content .greeting-txt {
    width: 100%;
  }
}
.greeting .greeting-content .greeting-txt p {
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
.greeting .greeting-content .greeting-txt h3 {
  font-size: 28px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  text-align: right;
  line-height: 1.2;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .greeting .greeting-content .greeting-txt h3 {
    font-size: 15px;
    margin-top: -10px;
  }
}
.greeting .greeting-content .greeting-txt h3 span {
  display: block;
  font-size: 18px;
}
@media (max-width: 767px) {
  .greeting .greeting-content .greeting-txt h3 span {
    font-size: 12px;
  }
}

/* origin
--------------------------*/
.origin {
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .origin {
    margin-bottom: 50px;
  }
}
.origin .origin-inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .origin .origin-inner {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .origin .origin-inner {
    padding: 0 10px;
  }
}
@media (min-width: 768px) {
  .origin .origin-logo {
    max-width: 352px;
    margin: 0 auto 50px;
  }
}
@media (max-width: 767px) {
  .origin .origin-logo {
    width: 50%;
    margin: 0 auto 20px;
  }
}
.origin .origin-logo img {
  height: auto;
}
.origin h2 {
  font-size: 24px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
}
@media (max-width: 767px) {
  .origin h2 {
    font-size: 15px;
  }
}
.origin table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 20px;
}
.origin table td {
  font-size: 24px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .origin table td {
    font-size: 15px;
  }
}
.origin table td:nth-child(1) {
  text-align: right;
}
.origin p {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  text-align: center;
}
@media (max-width: 767px) {
  .origin p {
    font-size: 13px;
  }
}

/* overview
--------------------------*/
.overview {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .overview {
    margin-bottom: 30px;
  }
}
.overview .overview-inner {
  max-width: 740px;
  margin: 0 auto;
}
.overview h2 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .overview h2 {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.overview table {
  border-collapse: collapse;
  width: 100%;
}
.overview table tr:nth-child(1) td {
  border-top: 1px solid #BBBBBB;
}
.overview table tr:nth-child(7) td {
  vertical-align: middle;
}
.overview table td {
  letter-spacing: -0.05em;
  border-bottom: 1px solid #BBBBBB;
  padding: 25px 10px;
}
@media (max-width: 767px) {
  .overview table td {
    font-size: 12px;
    padding: 10px;
  }
}
.overview table td:nth-child(1) {
  width: 20%;
}
.overview table td:nth-child(2) {
  width: 80%;
}

/* services
--------------------------*/
.services {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .services {
    margin-bottom: 30px;
  }
}
.services .inner {
  max-width: 907px;
}
@media (max-width: 767px) {
  .services .inner {
    padding: 0 30px;
  }
}
.services h2 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .services h2 {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.services .services-inner {
  border: 1px solid #00499F;
  padding: 3% 10%;
}
@media (max-width: 767px) {
  .services .services-inner {
    padding: 5%;
  }
}
.services .services-inner .services-contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.services .services-inner .services-contents .services-content {
  text-align: center;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .services .services-inner .services-contents .services-content {
    width: calc(33.333% - 33.3333333333px);
  }
}
@media (max-width: 767px) {
  .services .services-inner .services-contents .services-content {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .services .services-inner .services-contents .services-content:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .services .services-inner .services-contents .services-content:nth-child(3n) {
    margin-right: 0;
  }
}
.services .services-inner .services-contents .services-content .services-img {
  width: 80%;
  margin: 0 auto 18px;
}

/* works
--------------------------*/
.works {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .works {
    margin-bottom: 50px;
  }
}
.works .inner {
  max-width: 1140px;
}
@media (max-width: 767px) {
  .works .inner {
    padding: 0 30px;
  }
}
.works h2 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .works h2 {
    font-size: 15px;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .works .works-contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.works .works-contents .works-content {
  text-align: center;
}
@media (min-width: 768px) {
  .works .works-contents .works-content {
    width: calc(50% - 35px);
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .works .works-contents .works-content {
    margin-bottom: 25px;
  }
}
.works .works-contents .works-content:nth-child(2n) {
  margin-right: 0;
}
.works .works-contents .works-content .works-img {
  margin: 0 auto 13px;
  position: relative;
  height: 0;
  padding-top: 72%;
}
@media (max-width: 767px) {
  .works .works-contents .works-content .works-img {
    width: 100%;
  }
}
.works .works-contents .works-content .works-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .works-contents .works-content h3 {
  line-height: 1.1111111111;
}

/* new
--------------------------*/
.new {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .new {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .new .inner {
    padding: 0 30px;
  }
}
.new h2 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
@media (max-width: 767px) {
  .new h2 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.new a {
  display: block;
}
@media (min-width: 768px) {
  .new a {
    margin: 0 auto 100px;
    max-width: 640px;
  }
}
@media (max-width: 767px) {
  .new a {
    width: 90%;
    margin: 0 auto 40px;
  }
}

/* insurance
--------------------------*/
.insurance {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .insurance {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .insurance .inner {
    padding: 0 30px;
  }
}
.insurance h2 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
@media (max-width: 767px) {
  .insurance h2 {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.insurance h3 {
  margin-top: 40px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  text-align: center;
}
@media (max-width: 767px) {
  .insurance h3 {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.insurance a {
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .insurance a.corporate {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .insurance a.corporate {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .insurance a.personal {
    max-width: 630px;
  }
}
@media (max-width: 767px) {
  .insurance a.personal {
    width: 90%;
  }
}

/* page-access
---------------------------*/
.page-access {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .page-access {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .page-access .inner {
    padding: 0 30px;
  }
}
.page-access .access-content {
  display: flex;
}
@media (min-width: 768px) {
  .page-access .access-content {
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .page-access .access-content {
    flex-direction: column-reverse;
  }
}
.page-access .access-content .access-txt {
  letter-spacing: -0.05em;
}
@media (min-width: 768px) {
  .page-access .access-content .access-txt {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .page-access .access-content .access-txt {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 30px;
    font-size: 14px;
  }
}
.page-access .access-content .access-txt h2 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 22px;
}
@media (max-width: 767px) {
  .page-access .access-content .access-txt h2 {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-access .access-content .access-map {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .page-access .access-content .access-map {
    width: 90%;
    margin: 0 auto 10px;
  }
}
.page-access .access-content .access-map .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 76%;
  position: relative;
}
.page-access .access-content .access-map .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.page-access h4 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.025em;
}
@media (max-width: 767px) {
  .page-access h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .page-access .access-img {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .page-access .access-img div {
    width: calc(50% - 35px);
  }
}
@media (max-width: 767px) {
  .page-access .access-img div {
    margin-bottom: 20px;
  }
}
.page-access .access-img div:nth-child(2n) {
  margin-right: 0;
}

/* お問い合わせ
-------------------------*/
@media (max-width: 767px) {
  .contact .inner {
    padding: 0 30px;
  }
}

.contact-txt {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  text-align: center;
  font-size: 24px;
  letter-spacing: -0.025em;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .contact-txt {
    font-size: 15px;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .mw_wp_form {
    font-size: 24px;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .mw_wp_form {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .mw_wp_form {
    font-size: 16px;
  }
}
.mw_wp_form form table {
  width: 100%;
}
@media (min-width: 768px) {
  .mw_wp_form form table tr td {
    padding-bottom: 50px;
  }
}
@media (min-width:768px) and (max-width: 1024px) {
  .mw_wp_form form table tr td {
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .mw_wp_form form table tr td {
    display: block;
    width: 100%;
    line-height: 1.7;
  }
}
@media (min-width: 768px) {
  .mw_wp_form form table tr td:nth-child(1) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 38px;
  }
}
@media (max-width: 767px) {
  .mw_wp_form form table tr td:nth-child(1) {
    font-size: 13px;
    margin-bottom: 5px;
  }
}
.mw_wp_form form table tr td:nth-child(2) {
  word-break: break-all;
}
@media (min-width: 768px) {
  .mw_wp_form form table tr td:nth-child(2) {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .mw_wp_form form table tr td:nth-child(2) {
    padding-bottom: 20px;
  }
}
.mw_wp_form form table tr td:nth-child(2) input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #161616;
  background: #E1E1E1;
  width: 100%;
  height: 54px;
  padding: 0 10px;
  font-size: 24px;
}
@media (min-width:768px) and (max-width: 1024px) {
  .mw_wp_form form table tr td:nth-child(2) input {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .mw_wp_form form table tr td:nth-child(2) input {
    font-size: 16px;
    height: 40px;
  }
}
.mw_wp_form form table tr td:nth-child(2) input:hover {
  border: 1px solid #161616;
  cursor: pointer;
}
.mw_wp_form form table tr td:nth-child(2) input:focus {
  outline: none;
  border: 1px solid #161616;
}
.mw_wp_form form table tr td:nth-child(2) textarea {
  vertical-align: top;
  width: 100%;
  min-height: 250px;
  resize: vertical;
  background: #E1E1E1;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  padding: 10px;
  color: #161616;
  font-size: 24px;
}
@media (min-width:768px) and (max-width: 1024px) {
  .mw_wp_form form table tr td:nth-child(2) textarea {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .mw_wp_form form table tr td:nth-child(2) textarea {
    font-size: 16px;
    min-height: 160px;
  }
}
.mw_wp_form form table tr td:nth-child(2) textarea:hover {
  border: 1px solid #161616;
  cursor: pointer;
}
.mw_wp_form form table tr td:nth-child(2) textarea:focus {
  outline: none;
  border: 1px solid #161616;
}
.mw_wp_form form input[type=submit] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-weight: 900;
  color: #fff;
  background: #00499F;
  font-size: 30px;
  line-height: 1;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 70px;
  margin: 10px auto 95px;
}
@media (min-width: 768px) {
  .mw_wp_form form input[type=submit] {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .mw_wp_form form input[type=submit] {
    margin: 10px auto 50px;
    font-size: 15px;
    padding: 15px 50px;
  }
}
.mw_wp_form form input[type=submit]:hover {
  opacity: 0.8;
}

/* footer
----------------------------*/
footer .footer-top {
  background: #C5E2FF;
}
@media (min-width: 768px) {
  footer .footer-top {
    padding-top: 35px;
    padding-bottom: 25px;
  }
}
@media (max-width: 767px) {
  footer .footer-top {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
footer .footer-top .footer-logo {
  display: block;
}
@media (min-width: 768px) {
  footer .footer-top .footer-logo {
    max-width: 355px;
    margin: 0 auto 30px;
  }
}
@media (max-width: 767px) {
  footer .footer-top .footer-logo {
    width: 55%;
    margin: 0 auto 20px;
  }
}
footer .footer-top h2 {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #1D1D1D;
  text-align: center;
}
@media (max-width: 767px) {
  footer .footer-top h2 {
    font-size: 16px;
  }
}
footer .footer-top .footer-adress {
  text-align: center;
}
@media (max-width: 767px) {
  footer .footer-top .footer-adress {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
footer .footer-top ul {
  display: flex;
  justify-content: center;
}
footer .footer-top ul li {
  margin-right: 50px;
}
@media (max-width: 767px) {
  footer .footer-top ul li {
    margin-right: 15px;
  }
}
footer .footer-top ul li:last-child {
  margin-right: 0;
}
footer .footer-top ul li a {
  color: #00499F;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
@media (min-width:768px) and (max-width: 1024px) {
  footer .footer-top ul li a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  footer .footer-top ul li a {
    font-size: 14px;
  }
}
footer .footer-top ul li a:after {
  position: absolute;
  bottom: 5px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
footer .footer-top ul li a:hover {
  opacity: 1;
}
footer .footer-top ul li a:hover:after {
  transform: scale(1, 1);
}
footer .footer-copy {
  padding: 5px 0 20px;
}
@media (max-width: 767px) {
  footer .footer-copy {
    padding: 10px 0;
  }
}
footer .footer-copy .copyright {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 767px) {
  footer .footer-copy .copyright {
    font-size: 12px;
  }
}

/* topへ戻る
------------------*/
.page-top {
  width: 50px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-top {
    display: none;
  }
}

/* 404 */
.entry-404 {
  margin-top: 50px;
  padding-bottom: 85px;
  text-align: center;
}

.entry-404-head {
  color: #00499F;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .entry-404-head {
    font-size: 30px;
  }
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #808080;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .entry-404-lead {
    font-size: 20px;
  }
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #808080;
}

.entry-404-btn {
  margin-top: 58px;
}

.entry-404-btn .btn {
  background: #ebebeb;
  color: #8d8d8d;
  padding: 10px 20px;
  font-weight: bold;
}

.entry-404-btn .btn:hover {
  background: #ccc;
  opacity: 1;
}

.eael-posted-on:before {
  display: none;
}