@charset "UTF-8";
/*----------------------------------------

	index CSS

	- common

-----------------------------------------*/

.wrapper {
  background-image: url("../../images/top/bg.jpg");
  background-size: cover;
  background-repeat: repeat-y;
  opacity: 0;
}

.wrapper.on {
  opacity: 1;
  transition: all 1s cubic-bezier(0.37, 0, 0.63, 1);
}

body.is-active {
  overflow: hidden;
}

.wpcf7-spinner {
  display: block !important;
}

.triangle-right {
  display: inline-block;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #0F2350;
}

@media screen and (min-width:768px) {
  a[href *="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.bottom_line {
  border-bottom: 2px solid #242424;
}

.bottom_line:hover {
  border-bottom: none;
}

/*----------------------------------------
	common
-----------------------------------------*/

.fc-blue {
  color: #223A70;
}

.fc-aqua {
  color: #008899;
}

.fc-red {
  color: #942343;
}

.ind01 {
  text-indent: -1em;
  padding-left: 1em;
}

.ind02 {
  padding-left: 2em;
  text-indent: -2em;
}

.indent-clear {
  text-indent: inherit;
  padding-left: 1em;
}

.list-attention {
  font-size: 14px;
  line-height: 1.6;
}

@media screen and (min-width:768px) {
  .list-attention {
    font-size: 18px;
  }
}

.mw1420 {
  max-width: 1420px;
  margin: 0 auto;
}

.mw1320 {
  max-width: 1320px;
  margin: 0 auto;
}

.mw480 {
  max-width: 480px;
  margin: 0 auto;
}

.mw740 {
  max-width: 740px;
  margin: 0 auto;
}

.mw800 {
  max-width: 800px;
  margin: 0 auto;
}

.mw900 {
  max-width: 900px;
  margin: 0 auto;
}

.mw960 {
  max-width: 960px;
  margin: 0 auto;
}

.mw1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.mw1140 {
  max-width: 1140px;
  margin: 0 auto;
}

.mw1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.mw1240 {
  max-width: 1240px;
  margin: 0 auto;
}

.mw1410 {
  max-width: 1410px;
  margin: 0 auto;
}

.mw1636 {
  max-width: 1636px;
  margin: 0 auto;
}

.ttl-lv1 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background: #223A70;
  color: #ffffff;
  border-radius: 8px;
  padding: 0.2em 0;
}

.ttl-lv2 {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  background: #223A70;
  color: #ffffff;
  border-radius: 9999px;
  padding: 0.2em 0;
}

.ttl-lv2-boarder {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #942343;
  padding-bottom: 0.5em;
}

.ttl-lv3 {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background: #1E50A2;
  border-radius: 5px;
  padding: 0.1em;
  color: #ffffff;
}

.ttl-lv4 {
  position: relative;
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .ttl-lv1 {
    font-size: 32px;
  }

  .ttl-lv2 {
    font-size: 28px;
  }

  .ttl-lv2-boarder {
    font-size: 36px;
  }

  .ttl-lv3 {
    font-size: 28px;
  }

  .ttl-lv4 {
    font-size: 24px;
  }
}

.bg-aqua {
  background: #E2EDEE;
}


.btn_linkWrapper {
  gap: 2em;
}

.btn_link a {
  position: relative;
  border: 2px solid #004098;
  border-radius: 10px;
  color: #004098;
  padding: 1em;
  display: inline-block;
  color: #004098;
  width: 100%;
}

.btn_link a:after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 24px;
  height: 24px;
  background-image: url("../../images/top/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .btn_link a {
    min-width: 340px;
    max-width: 340px;
  }
}

.bannerWrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1em;
}

.banner02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}

.banner02 a {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .bannerWrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
  }

  .banner02 {
    gap: 0.5em;
  }
}

/*----------------------------------------
	sec-info
-----------------------------------------*/

.sec-info {
  text-align: center;
  margin-top: -1em;
  z-index: 100;
}

.sec-info__inner a {
  padding: 0.5em 0.2em;
  background: #223A70;
  border-radius: 6px;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: block;
}

.sec-info__ttl {
  width: 16%;
}

.sec-info__tel {
  position: relative;
  font-size: 14px;
  display: inline-block;
}

.sec-info__tel:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  background-image: url("../images/icon_tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  margin-left: -1.1em;
}

.sec-info__tel a {
  color: #ffffff;
}

.sec-info__txt {
  font-size: 9px;
}

.gnav__info {
  opacity: 0;
  transition: 0.3s;
}

.gnav__info.is-active {
  opacity: 1;
}

#gnav .sec-info {
  display: block;
  padding: 8% 5% 0;
}

#gnav .sec-info__ttl {
  display: none;
}

#gnav .sec-info__tel {
  font-size: 20px;
}

#gnav .contact-btn {
  width: 100%;
  padding: 0.5em 0 0;
}

#gnav .contact-btn a {
  width: 100%;
}

#gnav .sec-info__tel:before {
  margin-left: -24px;
}

@media screen and (min-width:768px) {
  .sec-info__ttl {
    width: 10%;
  }

  .sec-info__tel:before {
    width: 20px;
    height: 20px;
  }

  .sec-info__tel:before:not(#gnav *) {
    margin-left: -1.8em;
  }
}

@media screen and (min-width:1199px) {
  .sec-info__telWrapper:not(#gnav *) {
    padding-left: 5%;
  }

  .sec-info:not(#gnav *) {
    padding: 0 0.5em;
    position: absolute;
    right: 2em;
    top: 0;
    margin-top: -1em;
    z-index: 100;
  }

  .sec-info__tel:before {
    width: 24px;
    height: 24px;
  }

  .sec-info__tel:before:not(#gnav *) {
    margin-left: -0.9em;
  }

  .sec-info__inner a {
    padding: 0.8em 1em;
  }

  .sec-info__ttl {
    width: 70px;
  }

  .sec-info__tel {
    font-size: 28px;
  }

  .sec-info__txt {
    font-size: 12px;
  }

  #gnav .cmn-header__address__txt {
    display: none;
  }
}

@media screen and (min-width:1299px) {
  .sec-info__ttl {
    width: 90px;
  }
}


@media screen and (max-width:1199px) {
  .sec-info {
    display: none;
  }
}

/*contact-btn*/
.contact-btn {
  width: 40%;
}

.contact-btn a {
  position: relative;
  border-radius: 9999px;
  padding: 0.2em 1em;
  background: #008899;
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
}

@media screen and (min-width:993px) {

  .contact-btn a {
    font-size: 17px;
    margin-top: 0.5em;
    padding: 0.2em 1.2em;
    transition: 0.3s;
  }

  .contact-btn a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width:1199px) {
  .contact-btn {
    width: 100%;
  }

  .contact-btn a {
    width: 100%;
    font-size: 20px;
  }
}

/*----------------------------------------
	cmn-header
-----------------------------------------*/

.cmn-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  z-index: 100;
  background: rgba(248, 244, 230, 1);
  overflow: hidden;
}

.cmn-header__ttlWrapper {
  width: 100%;
  text-align: center;
}

.cmn-header__ttl a {
  font-size: 20px;
  color: #223A70;
  font-weight: bold;
}

.cmn-header__member {
  text-align: center;
}

.cmn-header__member__ttl {
  font-size: 10px;
  background: #223A70;
  color: #ffffff;
  padding: 0.5em;
  margin-bottom: 0.5em;
}

.cmn-header__member__inner {
  display: flex;
}

.cmn-header__inner2 {
  width: 100%;
}

.cmn-header__member__inner p {
  font-size: 9px;
  color: #004098;
}

.cmn-header__logoWrapper {
  width: 100%;
}

.cmn-header__logo {
  width: 10%;
  max-width: 59px;
}

.cmn-header.fixed {
  background: rgba(248, 244, 230, 0.7);
}

@media screen and (min-width:992px) {
  .cmn-header {
    padding: 1em 0;
  }

  .cmn-header__logoWrapper {
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3%;
    transition: all 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  }

  .cmn-header__logo {
    width: 90px;
    max-width: inherit;
  }

  .cmn-header__inner {
    position: relative;
  }

  .cmn-header__address {
    line-height: 1.4;
  }

  .cmn-header__address span:nth-of-type(1) {
    font-size: 18px;
    font-weight: bold;
  }

  .cmn-header__address span:nth-of-type(2) {
    font-size: 12px;
  }

  .cmn-header__ttl a {
    font-size: 36px;
  }

  .cmn-header__ttl a img {
    transition: 0.3s;
  }

  .cmn-header__ttl a:hover img {
    opacity: 0.6;
  }

  .cmn-header__member {
    text-align: center;
  }

  .cmn-header__member__ttl {
    font-size: 16px;
    padding: 1em 0.1em;
    margin-bottom: 0;
  }

  .cmn-header__member__inner p {
    font-size: 14px;
  }

  .cmn-header__member__inner {
    display: block;
  }

  .cmn-header__member {
    display: block;
  }

  .cmn-header__member__inner p:nth-of-type(1) {
    border-bottom: 1px solid #004098;
  }

  /*fixed*/
  .cmn-header.fixed {
    padding: 0.5em 0 1em;
  }

  .cmn-header.fixed .cmn-header__logoWrapper {
    margin-top: 2%;
  }

  .cmn-header.fixed .cmn-header__logo {
    width: 70px;
  }

  .cmn-header.fixed .cmn-header__ttl a {
    font-size: 32px;
  }

  .cmn-header.fixed .cmn-header__gnav>ul {
    margin: -2em 0 0 0;
  }

  .cmn-header.fixed .cmn-header__gnav>ul>li>a {
    font-size: 13px;
  }

  .cmn-header.fixed .sec-info__ttl {
    width: 7.5%;
  }

  .cmn-header.fixed .sec-info__tel:before {
    margin-left: -1.4em;
  }

  .cmn-header.fixed .sec-info__tel {
    font-size: 18px;
  }

  .cmn-header.fixed .sec-info__txt {
    font-size: 10px;
  }

  .cmn-header.fixed .contact-btn a {
    font-size: 13px;
  }

  .cmn-header.fixed .cmn-header__member__ttl {
    font-size: 10px;
    margin-bottom: 0.5em;
  }

  .cmn-header.fixed .cmn-header__member__inner p {
    font-size: 10px;
  }
}

@media screen and (min-width:1199px) {
  .cmn-header__ttl a {
    font-size: 48px;
  }

  .cmn-header.fixed {
    padding: 0.5em 0 2em;
  }

  .cmn-header__logoImg {
    height: 90px;
  }

  .cmn-header__member__ttl {
    font-size: 22px;
  }

  .cmn-header__member__inner p {
    font-size: 18px;
  }

  .cmn-header.fixed .cmn-header__gnav>ul {
    margin: -1em 0 0 0;
    justify-content: center;
  }

  .cmn-header.fixed .cmn-header__gnav>ul>li>a {
    font-size: 16px;
  }

  .cmn-header.fixed .sec-info__ttl {
    width: 20%;
  }

  .cmn-header.fixed .contact-btn a {
    width: 100%;
  }
}

/*----------------------------------------
	gnav
-----------------------------------------*/

#gnav {
  position: fixed;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  display: none;
}

#gnav.is-active {
  z-index: 2000;
}

.gnav__inner {
  position: relative;
  height: 100%;
}

#gnav .cmn-gmenu-link__inner {
  position: relative;
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  -webkit-overflow-scrolling: auto;
}

#gnav .cmn-gmenu-link__inner::-webkit-scrollbar {
  display: none;
}

.gnav__logo {
  width: 100%;
  margin-top: auto;
}

.gnav__logo a {
  display: inline-block;
}

.gnav__logo a img {
  height: 30px;
}

.gnav__logo a:hover {
  opacity: 0.6;
}

.gnav_bg {
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.gnav__box {
  padding: 3% 0 5%;
}

.gnav__box ul li a {
  position: relative;
}

.gnav__box ul li a {
  width: 100%;
  display: block;
  font-size: 18px;
  border-bottom: 1px dotted #444444;
  font-weight: bold;
  padding: 5% 0 5% 7%;
}

.gnav__box ul li a:before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 1px #014E39;
  border-right: solid 1px #014E39;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  margin-top: -0.2%;
}

.gnav__txt {
  position: absolute;
  font-size: 9px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-right: 0.6em;
  z-index: 4000;
  display: block;
  color: #ffffff;
  margin-bottom: 0.3em;
}

.gnav__txt div:nth-of-type(1) {}

.gnav__txt div:nth-of-type(2) {
  display: none;
  margin-right: 0.5em;
}

.gnav__txt.is-active span:nth-of-type(1) {
  display: none;
}

.gnav__txt.is-active span:nth-of-type(2) {
  display: block;
}

#gnavBtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  z-index: 3000;
  transition: 0.3s;
  cursor: pointer;
  margin-top: 0.2em;
  background: #008899;
  display: block;
}

#gnavBtn>div:nth-of-type(1) {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#gnavBtn>div:nth-of-type(1)>div {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#gnavBtn span {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  text-decoration: none;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
}

#gnavBtn.is-active span {
  background-color: #ffffff;
}

#gnavBtn span:first-child {
  left: 0;
  width: 24px;
  transform: translateY(-6px);
}

#gnavBtn span:nth-child(2) {
  left: 0;
  width: 24px;
}

#gnavBtn span:nth-child(3) {
  left: 0;
  width: 24px;
  transform: translateY(6px);
}

#gnavBtn.is-close span:first-child {
  transform: translateY(-6px);
  animation-name: menuBarOut;
  animation-timing-function: cubic-bezier(.165, .84, .44, 1)
}

#gnavBtn.is-close span:first-child,
#gnavBtn.is-close span:nth-child(2) {
  left: 0;
  width: 24px;
  animation-duration: .5s;
  animation-delay: 0s
}

#gnavBtn.is-close span:nth-child(2) {
  animation-name: menuBar2Out;
  animation-timing-function: cubic-bezier(.165, .84, .44, 1)
}

#gnavBtn.is-close span:nth-child(3) {
  transform: translateY(6px);
  animation-name: menuBar3Out;
  animation-timing-function: cubic-bezier(.165, .84, .44, 1)
}

#gnavBtn.is-close span:nth-child(3),
#gnavBtn.is-active span:first-child {
  left: 0;
  width: 24px;
  animation-duration: .5s;
  animation-delay: 0s
}

#gnavBtn.is-active span:first-child {
  transform: translateY(0) rotate(45deg);
  animation-name: menuBar;
  animation-timing-function: cubic-bezier(.165, .84, .44, 1)
}

#gnavBtn.is-active span:nth-child(2) {
  left: 12px;
  width: 0;
  animation-duration: .5s;
  animation-delay: 0s;
  animation-name: menuBar2;
  animation-timing-function: cubic-bezier(.165, .84, .44, 1)
}

#gnavBtn.is-active span:nth-child(3) {
  left: 0;
  width: 24px;
  transform: translateY(0) rotate(-45deg);
  animation-duration: .5s;
  animation-delay: 0s;
  animation-name: menuBar3;
  animation-timing-function: cubic-bezier(.165, .84, .44, 1)
}

.cmn-header__gnav {
  padding: 4em 5% 1em;
}

.cmn-header__gnav li a {
  position: relative;
  font-weight: bold;
  padding: 1em 0;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
}

.cmn-header__gnav>ul>li a:before {
  content: '»';
  width: 0.7vw;
  height: 0.7vw;
  border: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: -0.1em;
}

.cmn-header__gnav li {
  transform: translateY(-10px);
  opacity: 0;
}

.cmn-header__gnav.is-active li {
  transform: translateY(0);
  opacity: 1;
  transition: 1.2s cubic-bezier(.215, .61, .355, 1);
}

.cmn-header__gnav.is-active li:nth-of-type(1) {
  transition-delay: 0.3s;
}

.cmn-header__gnav.is-active li:nth-of-type(2) {
  transition-delay: 0.4s;
}

.cmn-header__gnav.is-active li:nth-of-type(3) {
  transition-delay: 0.5s;
}

.cmn-header__gnav.is-active li:nth-of-type(4) {
  transition-delay: 0.6s;
}

.cmn-header__gnav.is-active li:nth-of-type(5) {
  transition-delay: 0.7s;
}

.cmn-header__gnav.is-active li:nth-of-type(6) {
  transition-delay: 0.8s;
}

.cmn-header__gnav.is-active li:nth-of-type(7) {
  transition-delay: 0.8s;
}

.cmn-header__gnav.is-active li:nth-of-type(8) {
  transition-delay: 0.8s;
}

#gnav .l-drawer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: -1;
  transform: translateX(100%);
  background: #ffffff;
}

#gnav.is-active .l-drawer__bg {
  transform: translateX(0);
  transition: transform .5s cubic-bezier(.5, 0, 0, 1), opacity .6s cubic-bezier(.5, 0, 0, 1);
}

#gnav.is-close .l-drawer__bg {
  transform: translateX(100%);
}


@media screen and (min-width:992px) {
  #gnav {
    width: 50%;
  }
}

@media screen and (min-width:1199px) {
  #gnav {
    width: 30%;
  }
}


.cmn-gmenu-link-col-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: auto;
  margin-right: 4.5em;
}

.cmn-header__gnav>ul {
  justify-content: flex-end;
  margin: 2em 0 0 0;
}

.cmn-header__gnav>ul>li {
  position: relative;
  padding-right: 1.2em;
}

.cmn-header__gnav>ul>li>a {
  font-size: 16px;
  font-weight: 500;
  font-weight: bold;
}

@media screen and (min-width: 1199px) {
  .cmn-header__gnav>ul {
    margin: 1em 5em 0 0;
  }
}


/*----------------------------------------
	kv
-----------------------------------------*/

.kv {
  position: relative;
  padding-top: 40px;
  margin-top: 70px;
  overflow: hidden;
}

.kv:before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 4em;
  background: #F8F4E6;
}

.kv__inner {
  position: relative;
  max-width: calc(100% - (50% - (1200px / 2)));
  margin-left: 0;
  margin-right: auto;
  margin-top: -2em;
}

/* マスク適用 */
.clip-img {
  width: 100%;
  display: block;
  clip-path: url(#clipWave);
  -webkit-clip-path: url(#clipWave);
  animation: 15s linear infinite updown;
}

@keyframes updown {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

.kv__ttl-sub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 60%;
  margin-top: 1em;
}

.kv__ttl__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  mix-blend-mode: multiply;
  width: 65%;
  height: 1.5em;
  background: #004098;
  margin: 0 auto;
  margin-top: 2.5em;
}

.kv__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5vw;
  color: #ffffff;
  width: 100%;
  z-index: 1;
  text-align: center;
  margin-top: 3.2em;
}

.kv__exWrapper {
  position: relative;
  margin-top: -2em;
  z-index: 1;
}

.kv__nav {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  margin: 2em 3em 0 auto;
}

.kv__nav ul>li a {
  position: relative;
  padding-right: 2em;
}

.kv__nav ul>li a:after {
  content: '〉';
  position: absolute;
  right: 0;
}

@media screen and (min-width:993px) {
  .kv {
    padding-top: 160px;
  }

  .kv:before {
    content: none;
  }

  .kv__picinner {
    width: 75%;
    margin-left: -5%;
  }

  .kv__exWrapper {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .kv__ex img {
    transition: 0.3s;
  }

  .kv__ex a:hover img {
    opacity: 0.7;
  }

  .kv__ttl-sub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin-top: 1em;
    width: 40%;
  }

  .kv__ttl__bg {
    width: 70%;
    height: 2.5em;
    margin-top: 4em;
  }

  .kv__ttl {
    font-size: 28px;
    max-width: 1000px;
    margin-top: 2.2em;
  }

  .kv__nav ul>li+li {
    margin-top: 0.3em;
  }
}

@media screen and (min-width:1199px) {
  .kv {
    padding-top: 200px;
  }

  .kv__ex a {
    padding: 1em;
    background: #008899;
    display: block;
  }
}

/*sec01*/
.sec__ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

@media screen and (min-width:993px) {
  .sec__ttl {
    font-size: 28px;
  }

  .sec01-col2Wrapper {
    gap: 22px;
  }

  .sec01-col2 {
    border-radius: 10px;
  }

  .sec01-col2 a {
    padding: 20px 16px 40px;
  }

  .sec01-col2::after {
    right: 16px;
    bottom: 20px;
    width: 24px;
    height: 24px;
  }

  .sec01-col2-head {
    font-size: 28px;
    padding: 14px;
    border-radius: 20px;
  }

  .sec01-col2-text {
    margin-top: 14px;
    font-size: 28px;
  }
}

/*sec02*/
.sec02-col2Wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em 1em;
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 0 0;
}

.sec02-col2__pic img {
  max-width: 80px;
  margin: 0 auto 1em;
  display: block;
}

.sec02-col2__txt {
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .sec02-col2Wrapper {
    gap: 60px 40px;
    padding: 40px 20px;
  }

  .sec02-col2 {
    text-align: center;
  }

  .sec02-col2__pic img {
    max-width: 120px;
    margin: 0 auto 20px;
  }
}


/*sec03*/
.sec03-col {
  background: #fff;
  border: 2px solid #223A70;
  border-radius: 5px;
  padding: 1em;
  margin-bottom: 12px;
}

.sec03-col__ttl {
  font-size: 18px;
  font-weight: bold;
  color: #004098;
  margin: 0;
}

.sec03-col__txt {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.sec03-col__arrow {
  width: 35px;
  height: 43px;
  margin: 0 auto 12px;
  background-image: url("../../images/top/icon_arrow2.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
  .sec03-col {
    padding: 20px 20px 30px;
  }

  .sec03-col__ttl {
    font-size: 24px;
  }

  .sec03-col__txt {
    font-size: 18px;
  }

  .sec03-col__arrow {
    width: 48px;
    height: 47px;
    margin: 0 auto 12px;
  }
}


/*sec04*/
.sec04__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.6;
}

.sec04__table th,
.sec04__table td {
  border: 1px solid #223A70;
  padding: 14px 16px;
  vertical-align: top;
  background: #ffffff;
}

.sec04__table thead th {
  background: #223A70;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.sec04__table thead th:first-child {
  border-right: 1px solid #ffffff;
}

.sec04__table tbody td:first-child {
  width: 55%;
}

.sec04__table tbody td:last-child {
  width: 45%;
  text-align: center;
}

.sec04__table td span {
  font-size: 20px;
}

@media screen and (min-width: 1199px) {
  .sec04__table tbody td:before {
    content: "";
    display: block;
    height: 5.5em;
    float: left;
  }
}

/*sec-faq*/
.info-box {
  border: 1px solid #223A70;
  border-radius: 5px;
  padding: 1em;
}

.info-box__ttl {
  background: #1E50A2;
  border-radius: 10px 10px 0 0;
  color: #ffffff;
  padding: 0.8em 0.5em;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
}

.info-box__btnWrapper {
  background: #223A70;
  padding: 0.5em;
  text-align: center;
}

.info-box__body {
  display: none;
}

.info-box__body__inner {
  padding: 2% 0;
}

.info-box__body__inner a {
  color: #223A70;
  text-decoration: underline;
  transition: 0.3s;
}

.info-box__body__inner a:hover {
  text-decoration: none;
  opacity: 0.7;
}


.info-box__btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
}

.info-box__btn a {
  color: #ffffff;
}

.info-box__btn::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.info-box.is-open .info-box__btn::after {
  transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
  .info-box__ttl {
    font-size: 28px;
  }

  .info-box__btn {
    font-size: 16px;
  }
}

/*sec05*/
.sec05 {
  background: #E7E7EB;
  mix-blend-mode: multiply;
}

.sec05__inner {
  padding: 7% 0 8%;
}

.sec05__ttl {
  border-radius: 9999px;
  border: 2px solid #000000;
  padding: 0.2em 2em;
  max-width: 410px;
  margin: 0 auto;
}

.sec05__tel {
  font-size: 36px;
  font-weight: bold;
}

.sec05__time {
  font-size: 12px;
}

.sec05__fax {
  font-size: 25px;
  font-weight: bold;
}

.sec-gmap__inner {
  position: relative;
  overflow: hidden;
}

.sec-gmap__inner02 {
  position: relative;
  z-index: 1;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.sec-gmap__inner02 iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.sec05__access-picWrapper {
  order: 2;
  width: 100%;
}

.sec05__access-txtWrapper {
  order: 1;
}

.sec05__access-txt {
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (min-width:992px) {
  .sec05__inner {
    padding: 3% 0 4%;
  }

  .sec-gmap__inner {
    max-height: 600px;
  }

  .sec05__access-picWrapper {
    order: 1;
  }

  .sec05__access-txtWrapper {
    order: 2;
  }

  .sec05__access-txt {
    font-size: 16px;
  }
}


/*sec06*/
.sec06__ttl {
  font-size: 20px;
  background: #F5EFC2;
  padding: 0.5em;
  color: #6F4A3D;
}

.company-info {
  font-size: 16px;
  line-height: 1.8;
}

.company-info dt {
  font-weight: bold;
  color: #008899;
  padding: 0.5em 0 0;
}

.company-info dd {
  padding: 0.5em 0;
  border-bottom: 1px solid #6F4B3E;
}

.arrow {
  width: 12px;
  display: inline-flex;
  margin-top: 2px;
}

@media screen and (min-width:992px) {
  .sec06__ttl {
    font-size: 30px;
    padding: 1em;
  }

  .company-info {
    font-size: 18px;
    line-height: 1.8;
    display: flex;
    flex-wrap: wrap;
  }

  .company-info dt,
  .company-info dd {
    border-bottom: 2px solid #6F4B3E;
    padding: 12px 16px;
  }

  .company-info dt {
    width: 20%;
  }

  .company-info dd {
    width: 80%;
  }
}


/*sec07*/
.sec07 {
  background: #F5EFC2;
}

.sec07__ttl {
  max-width: 187px;
}


/*sec09*/
.sec09__ttl {
  background: #223A70;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.4;
  padding: 0.5em 0;
}

.sec09__telWrapper {
  color: #004098;
}

.sec09__tel {
  font-size: 24px;
}

.sec09__number a {
  font-size: 36px;
  color: #004098;
}

.sec09__info__txt {
  font-size: 16px;
}

.sec09__info__txt span {
  font-size: 20px;
}

.sec09__contact-ttl {
  border-radius: 9999px;
  padding: 0.2em 1em;
  background: #008899;
  color: #ffffff;
  font-size: 20px;
  display: inline-block;
}

@media screen and (min-width:992px) {
  .sec09__ttl {
    font-size: 30px;
  }

  .sec09__tel {
    font-size: 30px;
  }

  .sec09__number a {
    font-size: 60px;
  }

  .sec09__info__txt {
    font-size: 22px;
  }

  .sec09__info__txt span {
    font-size: 30px;
  }

  .sec09__contact-ttl {
    font-size: 22px;
    padding: 0.5em 1.5em;
  }
}



/*sec-form*/
.sec-form dl>dt {
  font-size: 16px;
  font-weight: bold;
  padding: 20px 5px 2px;
}

.sec-form dl>dd {
  font-size: 16px;
  padding: 5px 0 0;
}

.sec-form .required {
  display: inline-block;
  font-size: 12px;
  padding: 0.2em 1em;
  background: #008899;
  border-radius: 3px;
  color: #fff;
  line-height: 1;
}

.sec-form .any {
  display: inline-block;
  font-size: 12px;
  padding: 0.2em 1em;
  background: #A0A0A0;
  border-radius: 3px;
  color: #fff;
  line-height: 1;
}

.sec-form input[type=tel],
.sec-form input[type=number],
.sec-form input[type=text],
.sec-form input[type="email"],
.sec-form textarea {
  width: 100%;
}

.sec-form input[type=tel],
.sec-form input[type=number],
.sec-form input[type=text],
.sec-form input[type="email"],
.sec-form input[type="date"],
.sec-form textarea,
.sec-form select {
  border: 1px solid #696969;
  border-radius: 6px;
  padding: 0.2em 0.4em;
}

.sec-form select {
  padding: 0.2em 0.4em;
  background: #ffffff;
  margin: 0.2em 0 0;
}

.sec-form input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 0.1em;
}

.sec-form input[type=radio] {
  margin: 0 0.3em 0 1em;
}

.wpcf7-checkbox {
  display: inline-block;
  margin-bottom: 0.3em;
}

.sec-form input[type=date] {
  margin: 0 0.5em 1em 0.5em;
  background: #ffffff;
}

.sec-form input:focus::placeholder,
.sec-form textarea:focus::placeholder {
  color: transparent;
}

.sec-form label {
  margin: 0;
}

.sec-form .wpcf7-submit {
  width: 100%;
  background: #223A70;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 0.6em 1em 0.6em 1em;
  border-radius: 9999px;
}

.sec-form .wpcf7 form .wpcf7-response-output {
  margin: 0 0.5em 5em;
}

.sec-form .contact01 .wpcf7-list-item {
  display: block;
  margin-top: 8px;
}

.sec-form .contact01 .wpcf7-list-item-label {
  margin-left: 5px;
}

.sec-form .wpcf7 .ajax-loader {
  display: block !important;
  margin: auto !important;
}

.sec-form .txt {
  padding: 0 15px;
}

.sec-form .perrson_box {
  height: 150px;
  padding: 1.5em;
  border: 1px solid #c8c8c8;
  background: #ffffff;
  overflow-y: scroll;
  font-size: 14px;
}

@media screen and (min-width:768px) {
  .sec-form dl {
    display: flex;
    flex-flow: row wrap;
  }

  .sec-form dl>dt {
    flex-basis: 30%;
    font-size: 18px;
    padding: 30px 0 0 0;
    display: block;
  }

  .sec-form dl>dt>p {
    justify-content: space-between;
    line-height: 1.6;
  }

  .sec-form dl>dd {
    flex-basis: 70%;
    font-size: 18px;
    padding: 35px 10px 0 40px;
  }

  .sec-form input[type=tel],
  .sec-form input[type=number],
  .sec-form input[type=text],
  .sec-form input[type="email"],
  .sec-form input[type="date"],
  .sec-form textarea,
  .sec-form select {
    padding: 0.4em 0.4em;
  }

  .sec-form input[type=date] {
    margin: 0 1em 1em 1em;
  }

  .sec-form .required,
  .sec-form .any {
    font-size: 16px;
    padding: 0.3em 1em 0.4em;
    border-radius: 7px;
  }

  .sec-form .wpcf7-submit {
    position: relative;
    max-width: 410px;
    font-weight: bold;
    padding: 0.8em 1em;
    transition: all 0.3s cubic-bezier(0.37, 0, 0.63, 1);
    /*easeInOutSine*/
  }

  .sec-form .wpcf7-submit:hover {
    color: #2A3D65;
    background: #ffffff;
  }

  .sec-form .perrson_box {
    height: 200px;
  }
}


/*sec-thanks*/
.sec-thanks {
  padding: 6em 0 2em;
}

@media screen and (min-width:768px) {
  .sec-thanks {
    padding: 18em 0 9em;
  }
}

/*----------------------------------------
	sec-policy
-----------------------------------------*/

.sec-policy__ttl {
  background: #008899;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  max-width: 565px;
  margin: 0 auto;
  padding: 0.5em;
}

.sec-policy__ttl02 {
  font-size: 20px;
  text-align: center;
}

@media screen and (min-width:768px) {
  .sec-policy__ttl {
    font-size: 30px;
    padding: 1em;
  }

  .sec-policy__ttl02 {
    font-size: 32px;
  }
}

/*----------------------------------------
	animation
-----------------------------------------*/

@keyframes about_copyloop {
  to {
    transform: translateX(-110vw)
  }
}

@keyframes about_copyloop2 {
  to {
    transform: translateY(-110vh)
  }
}


@keyframes menuBar {
  0% {
    width: 24px;
    left: 0;
    transform: translateY(-6px);
  }

  60% {
    width: 24px;
    left: 0;
    transform: translateY(0);
  }

  79% {
    width: 0;
    left: 12px;
    transform: translateY(0);
  }

  80% {
    width: 0;
    left: 12px;
    transform: rotate(45deg);
  }

  to {
    width: 24px;
    left: 0;
    transform: rotate(45deg);
  }
}

@keyframes menuBarOut {
  0% {
    transform: rotate(45deg);
  }

  50% {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@keyframes menuBar2 {
  0% {
    left: 0;
    width: 24px;
  }

  60% {
    left: 0;
    width: 24px;
  }

  79% {
    left: 12px;
    width: 0;
  }

  80% {
    left: 12px;
    width: 0;
  }

  to {
    left: 12px;
    width: 0;
  }
}

@keyframes menuBar2Out {
  0% {
    width: 0;
  }

  49% {
    width: 24px;
  }

  50% {
    width: 24px;
  }

  to {
    width: 24px;
  }
}

@keyframes menuBar3 {
  0% {
    left: 0;
    width: 24px;
    transform: translateY(6px);
  }

  60% {
    left: 0;
    width: 24px;
    transform: translateY(0);
  }

  79% {
    left: 12px;
    width: 0;
    transform: translateY(0);
  }

  80% {
    left: 12px;
    width: 0;
    transform: rotate(-45deg);
  }

  to {
    left: 0;
    width: 18px;
    transform: rotate(-45deg);
  }
}

@keyframes menuBar3Out {
  0% {
    transform: rotate(-45deg);
  }

  50% {
    transform: translateY(0);
  }

  to {
    transform: translateY(6px) rotate(0);
  }
}

@keyframes rotation1 {
  0% {
    transform: translateX(-50%) rotate(0);
  }

  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}


/*txt_slide_v*/
.txt_slide_v {
  -webkit-animation: about_copyloop2 10s linear 0s infinite;
  animation: about_copyloop2 10s linear 0s infinite;
}


/*ttl_fade*/
.fade_t .ttl_fade {
  opacity: 0;
  transform: translateY(50%) rotateX(-90deg);
  transition: 1.2s;
}

.fade_t.fade_in .ttl_fade {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/*ttl_fade_vc*/
.fade_t .ttl_fade_vc {
  opacity: 0;
  transform: translateY(-50%) translateX(50%) rotateY(-90deg);
  transition: 1.2s;
}

.fade_t.fade_in .ttl_fade_vc {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotateY(0);
}

/*ttl_fade_vc2*/
.fade_t .ttl_fade_vc2 {
  opacity: 0;
  transform: translateY(-50%) translateX(-50%) rotateY(90deg);
  transition: 1.2s;
}

.fade_t.fade_in .ttl_fade_vc2 {
  opacity: 1;
  transform: translateY(-50%) translateX(0) rotateY(0);
}

/*ttl_fade_vt*/
.fade_t .ttl_fade_vt {
  opacity: 0;
  transform: translateX(50%) rotateY(-90deg);
  transition: 1.2s;
}

.fade_t.fade_in .ttl_fade_vt {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}

/*ttl_fade_vt2*/
.fade_t .ttl_fade_vt2 {
  opacity: 0;
  transform: translateX(-50%) rotateY(90deg);
  transition: 1.2s;
}

.fade_t.fade_in .ttl_fade_vt2 {
  opacity: 1;
  transform: translateX(0) rotateY(0);
}


/*----------------------------------------
	cmn-footer
-----------------------------------------*/

.cmn-footer {
  position: relative;
  background: #223A70;
}

.cmn-footer__inner {
  padding: 10% 0 6%;
  color: #ffffff;
}

.cmn-footer__nav li {
  border-top: 1px dotted #ffffff;
}

.cmn-footer__nav li:last-child {
  border-bottom: 1px dotted #ffffff;
}

.cmn-footer__nav li a {
  position: relative;
  color: #ffffff;
  padding: 1em 2em 1em 0;
  display: inline-block;
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
}

/* ▼ 矢印「»」 */
.cmn-footer__nav li a::before {
  content: "»";
  font-size: 26px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.cmn-footer__ttl {
  font-size: 14px;
}

.cmn-footer__address {
  font-size: 14px;
}

.cmn-footer__address a[href*="tel:"] {
  color: #ffffff;
}

@media screen and (min-width:768px) {
  .cmn-footer__inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 3% 0;
  }

  .cmn-footer__nav li {
    border-top: none;
  }

  .cmn-footer__nav li:last-child {
    border-bottom: none;
  }

  .cmn-footer__nav li a {
    padding: 0 2em 0 0;
    width: 100%;
  }

  .cmn-footer__nav li a:before {
    right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cmn-footer__nav li {
    width: 50%;
  }

  .cmn-footer__nav li:not(:first-child) a {
    margin: 0;
  }
}


/*----------------------------------------
	pageTop
-----------------------------------------*/

#pageTop {
  position: fixed;
  right: 20px;
  bottom: -120px;
  display: table;
  z-index: 500;
  transition: 0.3s;
}

#pageTop.fixed {
  bottom: 60px;
}

#pageTop.keep {
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 500;
  margin-top: -40px;
  transition: 0.1s;
}

#pageTop a {
  position: relative;
  width: 40px;
  height: 40px;
  display: table-cell;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/pagetop.svg);
}

@media screen and (min-width: 768px) {
  #pageTop {
    right: 60px;
    bottom: -100px;
  }

  #pageTop.fixed {
    bottom: 20px;
  }

  #pageTop.keep {
    right: 60px;
    margin-top: -80px;
  }

  #pageTop a {
    width: 80px;
    height: 80px;
  }

  #pageTop a:after {
    width: 7px;
    height: 48px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #pageTop {
    right: 40px;
  }

  #pageTop.fixed {
    bottom: 80px;
  }

  #pageTop.keep {
    right: 40px;
  }

  #pageTop a {
    width: 50px;
    height: 50px;
  }

  #pageTop a:after {
    width: 5px;
    height: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #pageTop.fixed {
    bottom: 90px;
  }
}


.nav-bg {
  display: none;
}

/*@media screen and (max-width: 1199px) {
.nav-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.6);
  display: none;
  z-index: 100;
}

}*/



/*----------------------------------------
	loading
-----------------------------------------*/

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    display: none;
    opacity: 0;
    z-index: -100;
  }
}