@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  line-height: 1.6;
  height: 100%;
  font-size: 62.5%;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  color: #333;
  background-color: #eff0f1;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-feature-settings: "palt";
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 1280px) {
  body a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
body.is-open {
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  body.is-open {
    overflow: auto;
  }
}

main {
  background-color: #fff;
  margin: 0 auto;
  max-width: 75rem;
  width: 100%;
}
@media screen and (min-width: 1280px) {
  main {
    box-shadow: 0 2.1rem 2.1rem rgba(0, 0, 0, 0.12);
    margin: 0 0 0 auto;
  }
}

picture,
img,
video,
object {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  height: auto;
  border: none;
  display: block;
}

h2 {
  font-weight: 700;
}

dt {
  font-weight: 400;
}

a {
  text-decoration: none;
  transition: opacity 0.4s;
}
a:hover img {
  opacity: 0.8;
  transition: all 0.3s;
}

/* header */
header {
  background-color: #fff;
  box-shadow: 0 0.7rem 2.1rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1.8rem 3rem;
  max-width: 75rem;
  width: 100%;
  height: 10.6rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media screen and (min-width: 1280px) {
  header {
    left: auto;
    right: 0;
    position: relative;
    transform: translateX(0);
  }
}

.header-logo {
  width: 23rem;
}
.header-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1.3rem;
  margin-right: 6rem;
  width: 35.3rem;
}
@media screen and (min-width: 1280px) {
  .header-buttons {
    display: none;
  }
}
.header-btn a {
  display: block;
  border-width: 2px;
  border-style: solid;
  border-radius: 7rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 1.5rem;
  width: 17rem;
}
.header-btn span {
  padding-left: 3.6rem;
  position: relative;
}
.header-btn span::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-btn.tel a {
  color: #158597;
  border-color: #158597;
}
.header-btn.tel span::before {
  mask-image: url("../../assets/img/icon_tel.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #158597;
  width: 2.2rem;
  height: 3rem;
}
.header-btn.reserve a {
  color: #fff;
  background-color: #df8913;
  border-color: #df8913;
}
.header-btn.reserve span::before {
  background: url("../../assets/img/icon_reserve.svg") no-repeat center/contain;
  width: 3rem;
  height: 3rem;
}
.header-menu {
  position: absolute;
  top: 50%;
  right: 2.6rem;
  transform: translateY(-50%);
  width: 4rem;
  height: 2.2rem;
}
.header-menu i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 8px;
}
@media screen and (min-width: 751px) {
  .header-menu i {
    height: 0.4rem;
  }
}
.header-menu i:nth-child(1) {
  top: 0;
}
.header-menu i:nth-child(2) {
  bottom: 0;
}
.header-menu.is-open i:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header-menu.is-open i:nth-child(2) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 1280px) {
  .header-menu {
    display: none;
  }
}
.header-drawer {
  background-color: #d4d9da;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s ease 0s;
  max-width: 75rem;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 10.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
}
.header-drawer .drawer-inner {
  overflow: scroll;
}
.header-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1280px) {
  .header-drawer {
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    max-width: 50rem;
    height: auto;
    left: auto;
    top: 50%;
    transform: translate(0, -50%);
  }
  .header-drawer .drawer-inner {
    overflow: hidden;
  }
}
.header-navi {
  position: relative;
  border-top: 1px solid rgb(204, 216, 224);
  padding: 3rem 0px 7rem;
}
.header-navi ul {
  margin: 4rem;
  padding: 0;
  background: #fff;
  border-radius: 1.4rem;
}
.header-navi ul > li:first-child {
  margin-top: 0;
}
.header-navi ul > li:not(:last-child) {
  border-bottom: 1px solid rgb(204, 216, 224);
}
.header-navi ul > li > a {
  font-size: 2.6rem;
  color: rgb(32, 64, 104);
  display: flex;
  padding: 3.8rem 3rem 3.4rem 5rem;
  line-height: 1.3;
  align-items: center;
  margin: 0 0 0 auto;
}
.header-navi ul > li > a::after {
  content: "";
  background-color: #a6b2b5;
  display: inline-block;
  height: 2.4rem;
  width: 2.2rem;
  mask: url("../img/icon_navi_arrow.svg");
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 1280px) {
  .header-navi {
    border-top: none;
    padding: 0;
  }
  .header-navi ul {
    margin: 0 0 4rem;
  }
  .header-navi ul > li > a {
    font-size: 1.8rem;
    padding: 2.5rem;
  }
  .header-navi ul > li > a::after {
    height: 1.2rem;
    width: 1.1rem;
  }
}

/* components */
.inner {
  padding: 0 3rem;
  max-width: 75rem;
  margin: 0 auto;
}

.cta {
  background-color: #cce1e5;
  padding: 4.5rem 3rem;
}
.cta .city {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-bottom: 2rem;
}
.cta .city span {
  font-size: 4.6rem;
}
.cta .catch {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding-bottom: 2rem;
}
.cta .catch .marker {
  background: linear-gradient(180deg, transparent 0%, transparent 80%, rgb(255, 253, 84) 80%, rgb(255, 253, 84) 95%, transparent 95%);
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 4rem;
}
.cta-btn {
  font-weight: 700;
  margin: 0 auto;
  text-align: center;
}
.cta-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  border-width: 0.4rem;
  border-style: solid;
  filter: drop-shadow(0 0.6rem 1.2rem rgba(0, 0, 0, 0.29));
  transform: translateZ(0);
  padding: 1rem;
  text-decoration: none;
  width: 63rem;
  position: relative;
}
.cta-btn.reserve p {
  margin: 0 auto;
  padding-bottom: 1rem;
  width: 41.6rem;
}
.cta-btn.reserve a {
  color: #fff;
  background-color: #df8913;
  border-color: #fff;
  font-size: 3.4rem;
  margin: 0 auto;
}
.cta-btn.reserve a::after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 1rem 0 1rem 1.6rem;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.cta-btn.reserve a .label {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #df8913;
  background-color: #fff;
  font-size: 1.9rem;
  line-height: 1.2;
  text-align: center;
  margin-right: 1rem;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 100%;
}
.cta-btn.tel a {
  color: #158597;
  background-color: #fff;
  border-color: #158597;
  font-size: 3.4rem;
  padding: 1.9rem 1rem;
}
.cta-btn.tel a::after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 1rem 0 1rem 1.6rem;
  border-color: transparent transparent transparent #158597;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.cta-btn.tel a .include {
  margin-left: 7rem;
  position: relative;
}
.cta-btn.tel a .include::before {
  position: absolute;
  content: "";
  display: block;
  mask-image: url("../../assets/img/icon_tel.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #158597;
  width: 3.9rem;
  height: 5.6rem;
  left: -6rem;
  top: 50%;
  transform: translateY(-50%);
}
.cta-btn.tel a .num {
  padding: 0.5rem 0;
  width: 31.6rem;
}
.cta-btn.tel a .open {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (min-width: 1280px) {
  .cta-btn.tel a {
    font-size: inherit;
    padding: 1.2rem 1rem;
  }
  .cta-btn.tel a::after {
    display: none;
  }
}
.cta.header-cta {
  background-color: transparent;
  display: none;
  padding: 0 4rem 4rem;
}
@media screen and (min-width: 1280px) {
  .cta.header-cta {
    display: block;
    padding: 0 0 2rem;
  }
}
.cta.header-cta .catch {
  font-size: 1.8rem;
  padding-bottom: 1rem;
}
.cta.header-cta .catch::before {
  content: "";
  display: inline-block;
  background-color: #333;
  margin-bottom: 0.5rem;
  width: 2rem;
  height: 0.2rem;
  transform: rotate(60deg);
}
.cta.header-cta .catch::after {
  content: "";
  display: inline-block;
  background-color: #333;
  margin-bottom: 0.5rem;
  width: 2rem;
  height: 0.2rem;
  transform: rotate(-60deg);
}
.cta.header-cta .cta-buttons {
  row-gap: 2rem;
}
.cta.header-cta .cta-btn a {
  border-radius: 10rem;
  border-width: 0.2rem;
  padding: 1rem;
  filter: drop-shadow(0 0.3rem 0.6rem rgba(0, 0, 0, 0.29));
  width: 40rem;
}
.cta.header-cta .cta-btn.reserve p {
  padding-bottom: 0.5rem;
  width: 20.8rem;
}
.cta.header-cta .cta-btn.reserve a {
  font-size: 2.4rem;
}
.cta.header-cta .cta-btn.reserve a::after {
  border-width: 0.5rem 0 0.5rem 0.8rem;
  right: 2rem;
}
.cta.header-cta .cta-btn.reserve a .label {
  font-size: 1.3rem;
  margin-right: 0.8rem;
  width: 4.6rem;
  height: 4.6rem;
}
.cta.header-cta .cta-btn.tel a {
  padding-top: 1.2rem;
  padding-bottom: 0.6rem;
}
.cta.header-cta .cta-btn.tel a::after {
  border-width: 0.5rem 0 0.5rem 0.8rem;
  right: 2rem;
}
.cta.header-cta .cta-btn.tel a .include {
  margin-left: 3.5rem;
}
.cta.header-cta .cta-btn.tel a .include::before {
  width: 2.9rem;
  height: 3.6rem;
  left: -4rem;
}
.cta.header-cta .cta-btn.tel a .num {
  padding: 0;
  width: 21.8rem;
}
.cta.header-cta .cta-btn.tel a .open {
  font-size: 1.1rem;
}
.cta.fixed {
  background-color: #8f8f8f;
  padding: 2rem 3rem;
  position: fixed;
  bottom: -1px;
  left: auto;
  transform: translateY(100%);
  width: 75rem;
  z-index: 30;
  transition: transform 0.5s;
}
.cta.fixed.is-active {
  transform: translateY(0);
}
.cta.fixed .cta-buttons {
  flex-direction: unset;
}
.cta.fixed .cta-btn {
  margin: 0;
}
.cta.fixed .cta-btn a {
  justify-content: flex-start;
  padding: 1rem 1.8rem;
  width: 100%;
}
.cta.fixed .cta-btn a .label {
  font-size: 1.6rem;
  width: 5.9rem;
  height: 5.9rem;
}
.cta.fixed .cta-btn.reserve {
  width: calc((100% - 2rem) / 2);
}
.cta.fixed .cta-btn.reserve a {
  font-size: 2.9rem;
  line-height: 1.2;
}
.cta.fixed .cta-btn.tel {
  width: calc((100% - 2rem) / 2);
}
.cta.fixed .cta-btn.tel a {
  font-size: 2.9rem;
  line-height: 1.2;
}
.cta.fixed .cta-btn.tel a .include::before {
  width: 4.2rem;
  height: 5rem;
}

/* contents */
@media screen and (min-width: 1280px) {
  .wrapper {
    display: flex;
    margin: 0 auto;
    max-width: 128rem;
  }
  .contents {
    margin: 0 0 0 auto;
  }
}
#fv {
  padding-top: 10.6rem;
  position: relative;
}
#fv .catch {
  background-color: #158597;
  padding: 0 1rem 0.5rem;
  position: relative;
}
#fv .catch p {
  color: #fff;
  font-size: 5.2rem;
  font-weight: 700;
  text-align: center;
}
#fv .catch p::after {
  content: "";
  display: block;
  position: absolute;
  border-style: solid;
  border-width: 1.5rem 1.3rem 0 1.3rem;
  border-color: #158597 transparent transparent transparent;
  bottom: -1.3rem;
  left: 50%;
  transform: translateX(-50%);
}
#fv .catch span {
  color: #fffd54;
}
@media screen and (min-width: 1280px) {
  #fv {
    padding-top: 0;
  }
}

#intro {
  padding: 9rem 0;
}
#intro h2 {
  color: #158597;
  font-size: 5.2rem;
  text-align: center;
  margin-bottom: 6.4rem;
}
#intro h2 .small {
  font-size: 4.1rem;
}
#intro h2 .marker {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgb(255, 253, 84) 70%, rgb(255, 253, 84) 95%, transparent 95%);
}
#intro .intro-timetable {
  margin-bottom: 6.2rem;
}
#intro .intro-timetable .text {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 3rem;
}
#intro .intro-map {
  width: 100%;
  margin-bottom: 2rem;
  height: 50rem;
}
#intro .intro-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}
#intro .intro-access {
  font-size: 3.2rem;
}

#condition {
  background-color: #68a6b0;
}
#condition .condition01 {
  background: #fff url("../img/condition_bg.svg") repeat 1.4rem 1.8rem/3.6rem 3.6rem;
  clip-path: polygon(0 0, 100.1% 0%, 100.1% 94%, 50% 100%, 0 94%);
  padding: 9rem 0 14rem;
}
#condition .condition01 h2 {
  font-size: 4.6rem;
  line-height: 1.4;
  margin-bottom: 4.4rem;
  position: relative;
}
#condition .condition01 h2::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/condition_heading_img.png") no-repeat center center/contain;
  width: 16.7rem;
  height: 13.6rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#condition .condition01-lists li {
  background-color: rgba(213, 233, 237, 0.4);
  font-size: 3.6rem;
  line-height: 1.4;
  padding: 2.6rem;
  padding-left: 10.8rem;
  position: relative;
}
#condition .condition01-lists li::before {
  content: "";
  display: block;
  position: absolute;
  background: url("../img/condition_icon_checkbox.svg") no-repeat center center/contain;
  width: 5rem;
  height: 4.9rem;
  top: 50%;
  left: 2.6rem;
  transform: translateY(-50%);
}
#condition .condition01-lists li:not(:last-child) {
  margin-bottom: 2rem;
}
#condition .condition01 .accent {
  color: #158597;
}
#condition .condition02 {
  padding: 4.6rem 0 8rem;
}
#condition .condition02 h3 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 4rem;
}
#condition .condition02 h3 .strong {
  color: #fffd54;
  font-size: 5.5rem;
}
#condition .condition02 h3 .small {
  font-size: 4.5rem;
}
#condition .condition02-detail {
  background-color: #fff;
  border-radius: 2rem;
  padding: 7rem 4rem;
  box-shadow: 0.7rem 0.7rem 2.1rem rgba(0, 0, 0, 0.27);
  margin-bottom: 6.2rem;
}
#condition .condition02-detail dt {
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
}
#condition .condition02-detail dt .small {
  font-size: 3.8rem;
}
#condition .condition02-detail dd {
  font-size: 3.5rem;
}
#condition .condition02-detail picture {
  width: 55.9rem;
}
#condition .condition02 .notice {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
#condition .condition02 .notice .large {
  font-size: 5.5rem;
}
#condition .condition02 .notice .marker {
  color: #fffd54;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 0, 0, 0.22) 10%, rgba(0, 0, 0, 0.22) 95%, transparent 95%);
  margin: 0 1rem;
  padding: 0 1rem;
}

#reason {
  background: #f3f7f8 url("../img/reason_bg.svg") repeat 1.4rem 3rem/3.6rem 3.6rem;
  padding: 9rem 0;
}
#reason h2 {
  color: #158597;
  font-size: 4.6rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 6rem;
  padding-bottom: 3rem;
  position: relative;
}
#reason h2::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #158597;
  width: 12rem;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#reason .reason-lists > li:not(:last-child) {
  margin-bottom: 13.4rem;
}
#reason .reason-lists .number {
  margin-bottom: 3.5rem;
  position: relative;
}
#reason .reason-lists .number .num {
  position: absolute;
  top: -5rem;
  left: 0;
  width: 9.7rem;
}
#reason .reason-lists .number .img {
  margin: 0 auto;
  width: 63rem;
}
#reason .reason-lists h3 {
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2rem;
}
#reason .reason-lists h3 .list01 {
  margin-left: 0.4rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.5rem;
  width: 27.3rem;
}
#reason .reason-lists p {
  font-size: 2.7rem;
}

#flow {
  padding: 9rem 0;
}
#flow h2 {
  font-size: 4.6rem;
  margin-bottom: 4rem;
  text-align: center;
}
#flow .flow-lists > li dl {
  border-left: 1px solid #e5e5e5;
  margin-left: 3.3rem;
  padding-left: 4.4rem;
  padding-bottom: 6rem;
}
#flow .flow-lists > li dt {
  color: #46636f;
  background-color: #ddd;
  border-radius: 2px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  padding: 1.7rem;
  text-align: center;
  position: relative;
}
#flow .flow-lists > li dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.5rem;
  left: -7rem;
  z-index: 1;
}
#flow .flow-lists > li dt::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 7rem;
  height: 7rem;
  top: 0;
  left: -7.7rem;
}
#flow .flow-lists > li dd {
  font-size: 2.4rem;
}
#flow .flow-lists > li:nth-child(1) dt::before {
  background: url("../img/flow_num01.svg") no-repeat center center/contain;
  width: 4.2rem;
  height: 4.2rem;
}
#flow .flow-lists > li:nth-child(2) dt::before {
  background: url("../img/flow_num02.svg") no-repeat center center/contain;
  width: 5rem;
  height: 4.2rem;
}
#flow .flow-lists > li:nth-child(3) dt::before {
  background: url("../img/flow_num03.svg") no-repeat center center/contain;
  width: 5rem;
  height: 4.2rem;
}
#flow .flow-lists > li:nth-child(4) dt::before {
  background: url("../img/flow_num04.svg") no-repeat center center/contain;
  width: 5.2rem;
  height: 4.2rem;
}
#flow .flow-lists > li:last-child dl {
  border-left: none;
}

#faq {
  background-color: #abb6b8;
  padding: 9rem 0;
}
#faq h2 {
  color: #fff;
  font-size: 4.6rem;
  margin-bottom: 5rem;
  text-align: center;
}
#faq .faq-lists dl {
  background-color: #fff;
  border-radius: 1rem;
  font-size: 3.6rem;
  line-height: 1.5;
}
#faq .faq-lists dl .small {
  font-size: 2.8rem;
}
#faq .faq-lists dl:not(:last-child) {
  margin-bottom: 3rem;
}
#faq .faq-lists dt {
  cursor: pointer;
  padding: 4.5rem 10rem 4.5rem 5rem;
  position: relative;
}
#faq .faq-lists dt::after {
  position: absolute;
  content: "＋";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #abb6b8;
  border-radius: 1rem;
  font-size: 3.2rem;
  font-weight: 500;
  width: 4rem;
  height: 4rem;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  padding-bottom: 0.4rem;
}
#faq .faq-lists dt.open::after {
  content: "ー";
}
#faq .faq-lists dd {
  display: none;
  background-color: #f0f2f3;
  border-radius: 0 0 1rem 1rem;
  padding: 4.5rem 5rem;
}
#faq .faq-lists dd.open {
  display: block;
}

/* footer */
footer {
  background-color: #d4d9da;
  margin: 0 auto;
  padding: 4.8rem 0 3.7rem;
  max-width: 75rem;
  width: 100%;
}
footer .footer-content {
  display: flex;
  flex-direction: column;
}
footer .footer-button {
  margin: 0 auto;
  width: 69rem;
}
footer .footer-links {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 6.2rem;
}
footer .footer-links a {
  font-size: 2.8rem;
  padding-right: 3.3rem;
  position: relative;
}
footer .footer-links a::after {
  display: block;
  position: absolute;
  content: "";
  background: url("../img/icon_arrow.svg") no-repeat center center/contain;
  width: 2.3rem;
  height: 2.3rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 1280px) {
  footer {
    box-shadow: 0 2.1rem 2.1rem rgba(0, 0, 0, 0.12);
    margin: 0 0 0 auto;
  }
}

/* common */
.sp {
  display: block;
}
@media screen and (min-width: 1280px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block;
  }
}