@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
:root {
  --main: #0072C1;
  --sub: #E8806F;
  --bg: #F9F3EF;
  --text: #000000;
  --white: #ffffff;
  --gray: #f5f5f5;
  --font-size: 16px;
  --bold: 700;
  --content-width: 1120px;
  --content-inner-width: 960px;
  --header-height: 120px;
  --header-height-sp: 70px;
}
* { margin: 0; padding: 0; box-sizing: border-box;}
html { scroll-padding-top: var(--header-height);}
body {
  /* font-family: "Noto Sans JP", sans-serif; */ /* SWELLテーマで設定 */
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.5;
}
section { padding: 80px 0;}
.section-bg { background-color: var(--bg);}
.section-bg-main { background-color: var(--main); color: var(--white);}
.section-bg-gray { background-color: var(--gray);}
.section-inner {
  width: 90%;
  max-width: var(--content-width);
  margin: auto;
}
.section-inner--nallow { max-width: var(--content-inner-width);}
ul, ol { list-style-type: none;}
h1, h2, h3, h4 { font-size: inherit; font-weight: inherit; word-break: auto-phrase;}
a { color: var(--text); text-decoration: none;}
a, a::before, a::after, a:hover, a:hover:before, a:hover:after { transition: all 0.5s ease;}
a:hover { opacity: 0.7;}
p > a { text-decoration: underline;} 
img { max-width: 100%; height: auto; vertical-align: bottom;}
iframe { width: 100%; height: 100%; vertical-align: bottom;}
mark, em, strong, small { font-style: normal; font-size: inherit; font-weight: inherit; background-color: transparent;}
.btn {
  display: inline-block;
  background-color: var(--sub);
  color: var(--white);
  font-size: 18px;
  font-weight: var(--bold);
  line-height: 1;
  padding: 14px 64px;
  border-radius: 24px;
  position: relative;
}
.btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/btn-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0; bottom: 0;
  right: 8px;
  margin: auto;
}
.btn-wrap--center { text-align: center; margin-top: 64px;}
.banner-wrap { width: 90%; max-width: 800px; margin: auto;}
.footer-content { width: 90%; max-width: var(--content-width); margin: auto;}
.footer-logo { width: 110px;}
.footer-bottom-nav { font-size: 18px; font-weight: 700;}
.footer-bottom-nav li + li { margin-top: 32px;}
.footer-bottom-nav a:hover { text-decoration: underline;}
.fix-cta {
  width: 100%;
  background-color: #B2D5EC;
  position: fixed;
  left: 0;
  bottom: -66px;
  text-align: center;
  transition: all 0.5s ease;
  z-index: 99;
}
.fix-cta.view { bottom: 0; transition: all 0.5s ease;}
.fix-cta .btn { border-radius: 0; padding: 24px 72px 24px 80px;}
.fix-cta .btn::before {
  content: "";
  width: 27px;
  height: 30px;
  background: url(../img/icon-calender.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0; bottom: 0;
  left: 32px;
  margin: auto;
}
.fix-cta .btn::after {
  width: 24px;
  height: 24px;
  right: 24px;
}
@media (min-width: 960px) {
  .sp { display: none;}
}
@media (max-width: 959px) {
  .pc { display: none;}
  section { padding: 60px 0;}
  .banner-wrap { max-width: 350px;}
  .btn { padding: 14px 40px;}
  .btn-wrap--center { margin-top: 48px;}
}
@media (max-width: 599px) {
  .footer-bottom-nav li + li { margin-top: 18px;}
  .fix-cta { background-color: var(--sub);}
  .fix-cta .btn { padding: 20px 50px;}
  .fix-cta .btn::before { left: 8px;}
  .fix-cta .btn::after { right: 8px;}
}

/* 親テーマcss　上書き */
.l-content { margin-bottom: 0;}
.l-header__inner,
.l-fixHeader__inner {
  height: var(--header-height);
  box-shadow: 0 1px 12px #00000012;
  align-items: center;
}
.l-header__logo,
.l-fixHeader__logo {
  margin-left: 4.44%;
}
.c-gnav {
  max-width: 582px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.5em;
  row-gap: 1em;
  font-size: min(1.2vw, 16px);
  height: auto;
  text-align: left;

}
.c-gnav>.menu-item {
  display: inline-block;
  height: auto;
}
.c-gnav>.menu-item>a {
  color: #27548A;
  padding: 4px 0;
}
.c-gnav>.menu-item>a .ttl { font-size: var(--font-size); font-weight: 500;}
.c-gnav>.menu-item>a:hover { opacity: 1;}
.w-header, .w-header div { height: 100%;}
.w-header__inner a {
  display: flex;
  align-items: center;
  width: 21.8vw;
  max-width: 314px;
  height: 100%;
  background-color: var(--sub);
  color: var(--white);
  font-size: min(1.25vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  padding-left: 30%;
  padding-right: 23%;
  position: relative;
}
.w-header__inner a::before {
  content: "";
  width: 2vw;
  max-width: 28px;
  height: 2.3vw;
  max-height: 32px;
  background: url(../img/icon-calender.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0; bottom: 0;
  left: 8%;
  margin: auto;
}
.w-header__inner a::after {
  content: "";
  width: 1.88vw;
  max-width: 27px;
  height: 1.88vw;
  max-height: 27px;
  background: url(../img/btn-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0; bottom: 0;
  right: 6%;
  margin: auto;
}
.l-footer { position: relative; z-index: 1;}
.l-footer__inner { padding-top: 64px; margin-bottom: 66px;}
.l-footer__nav {
  justify-content: flex-start;
  column-gap: 24px;
  row-gap: 32px;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin-bottom: 48px;
}
.l-footer__nav a { display: block; position: relative; padding: 0 32px 0 0;}
.l-footer__nav a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/btn-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  margin: auto;
}
.l-footer__foot, .l-footer__widgetArea { padding: 0; margin-bottom: 48px;}
.l-footer__foot .copyright {
  background-color: var(--white);
  color: var(--text);
  padding: 16px 0;
  margin-top: 64px;
}
.p-spMenu { top: var(--header-height-sp);}
.p-spMenu__inner {
  width: 100%;
  background-color: var(--main);
  color: var(--white);
  padding-top: 40px;
  overflow-y: auto;
}
.-left .p-spMenu__inner{-webkit-transform:translateX(-100%); transform:translateX(-100%)}
.p-spMenu__nav { max-width: 300px; margin: auto;}
.p-spMenu__inner::before { content: none;}
.p-spMenu__closeBtn,
.c-widget__title.-spmenu { display: none;}
.c-listMenu .menu-item a {
  padding: 16px 0;
  border-bottom: 1px solid #FFFFFFB2;
}
.c-listMenu a:before { content: none;}
.c-listMenu a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/btn-arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  margin: auto;
}
.c-spnav .menu-item:last-child a { border: none;}
[data-spmenu="closed"] .l-header__menuBtn .c-iconBtn__icon.icon-close-thin,
[data-spmenu="opened"] .l-header__menuBtn .c-iconBtn__icon.icon-menu-thin,
[data-spmenu="closed"] .l-header__menuBtn .c-iconBtn__label.close,
[data-spmenu="opened"] .l-header__menuBtn .c-iconBtn__label.menu { display: none;}
.-right .p-spMenu__inner {
  transform: translateX(0);
  opacity: 0;
  transition: opacity 0.45s;
}

[data-spmenu="opened"] .p-spMenu__inner {
  transform: translateX(0);
  opacity: 1;
}
@media (min-width: 960px) {
  .-series .l-header__inner {
    align-items: center;
  }
  .-series-right .w-header {
    margin-left: 2.3%;
  }
  .-series .c-headLogo {
    margin: 0;
  }
  .-img .c-headLogo__link,
  .l-header__logo {
    padding: 0;
  }
  .w-footer__box {
    padding: 0;
  }
}
@media (max-width: 959px) {
  .l-header__inner,
  .l-fixHeader__inner {
    height: var(--header-height-sp);
  }
  .-img .c-headLogo__link {
    padding: 0;
  }
  .l-header__logo,
  .l-fixHeader__logo {
    margin-left: 5%;
    padding: 0;
  }
  .l-header__menuBtn {
    width: var(--header-height-sp);
    height: 100%;
  }
  .c-iconBtn__label {
    font-size: 14px;
    margin-top: -8px;
  }
  .c-iconBtn__icon {
    font-size: 35px;
  }
}
@media (min-width: 600px) {
  .l-footer__nav li:first-child a { border: none;}
  .l-footer__nav a { font-size: 18px; border: none; padding-left: 0; padding-right: 32px;}
}
@media (max-width: 599px) {
  .l-footer__nav {
    flex-direction: column;
    row-gap: 18px;
  }
  .l-footer__nav a { display: inline-block; font-size: 16px; letter-spacing: 0.02em;}
}