@charset "UTF-8";
:root {
  --inner-side-padding: 24px;
  --opacity-hover: 0.65;
  --transition-duration: 0.3s;
}

body {
  line-height: 2;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}

.page-kotsuanzen_map * {
  letter-spacing: 0.04em;
}

.inner {
  width: min(1000px, 100% - var(--inner-side-padding) * 2);
  margin-inline: auto;
}

/* 点線見出し */
.dotHeading {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.5;
  color: #00a6fc;
  text-align: center;
  background-image: url(../img/part_dot.svg);
  background-repeat: repeat-x;
  background-size: 920px 3px;
  background-position: bottom left;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .dotHeading {
    font-size: 30px;
    text-align: left;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
}

/* デコレーション見出し */
.decoHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .decoHeading {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.decoHeading::before, .decoHeading::after {
  content: "";
  display: block;
  width: 25px;
  height: 40px;
}
.decoHeading::before {
  background-image: url(../img/part_deco_left.svg);
  background-size: contain;
}
.decoHeading::after {
  background-image: url(../img/part_deco_right.svg);
  background-size: contain;
}

/* プライマリーボタン */
.primaryButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  background-color: #f8e421;
  border: 4px solid white;
  border-radius: 100vmax;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  padding: 6px 20px;
  opacity: 1;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  .primaryButton:hover {
    opacity: var(--opacity-hover);
  }
}
.primaryButton:focus-visible {
  opacity: var(--opacity-hover);
}
@media screen and (min-width: 768px) {
  .primaryButton {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    font-size: 24px;
    padding: 12px 40px;
  }
}
.primaryButton::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../img/icon_blank.svg);
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .primaryButton::after {
    width: 19px;
    height: 18px;
  }
}

/* 特徴リスト */
.featureList {
  display: -ms-grid;
  display: grid;
  row-gap: 51px;
}
@media screen and (min-width: 768px) {
  .featureList {
    row-gap: 101px;
  }
}
.featureList li {
  background-color: #fff;
  border-radius: 24px;
  position: relative;
  -webkit-filter: drop-shadow(0 0 16px rgba(231, 231, 198, 0.8));
          filter: drop-shadow(0 0 16px rgba(231, 231, 198, 0.8));
  padding: 52px 24px 32px;
}
@media screen and (min-width: 768px) {
  .featureList li {
    border-radius: 40px;
    padding: 88px 4% 40px;
  }
}
@media screen and (min-width: 768px) {
  .featureList li > .dotHeading {
    margin-bottom: 34px;
  }
}
.featureList .wrap {
  display: -ms-grid;
  display: grid;
  row-gap: 24px;
}
@media screen and (min-width: 768px) {
  .featureList .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 4.347826087%;
       -moz-column-gap: 4.347826087%;
            column-gap: 4.347826087%;
  }
}
.featureList .icon {
  width: 120px;
  position: absolute;
  top: -34px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  .featureList .icon {
    width: 219px;
    top: -77px;
    left: 25px;
  }
}
@media screen and (min-width: 768px) {
  .featureList .columnItem {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.featureList .columnItem figcaption {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 16px;
}
.featureList .image {
  -webkit-filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.16));
}

.wave {
  position: relative;
}
.wave::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
  -webkit-mask-image: url(../img/part_wave-sp.svg);
          mask-image: url(../img/part_wave-sp.svg);
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  top: 1px;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: var(--bg-color);
}
@media screen and (min-width: 768px) {
  .wave::before {
    height: 48px;
    -webkit-mask-image: url(../img/part_wave.svg);
            mask-image: url(../img/part_wave.svg);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

.sp-only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* メインビジュアル
================================ */
.mv img {
  width: 100%;
}

/* 説明文
================================ */
#description {
  background-color: #e6f4f1;
  background-image: url(../img//bg_cloud-sp.png);
  background-size: 100% auto;
  background-position: top left;
  padding-block: 48px 110px;
}
@media screen and (min-width: 768px) {
  #description {
    background-image: url(../img//bg_cloud.png);
    padding-block: 80px 130px;
  }
}
#description .textBox {
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #description .textBox {
    font-size: 18px;
  }
}
#description .textBox p + p {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  #description .textBox p + p {
    margin-top: 35px;
  }
}
#description .textBox + * {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  #description .textBox + * {
    margin-top: 40px;
  }
}
#description .mapButtonWrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-inline: auto;
}
#description .illust01 {
  max-width: none;
  position: absolute;
  width: 143px;
  bottom: -73px;
  left: -51px;
}
@media screen and (min-width: 768px) {
  #description .illust01 {
    width: 274px;
    left: -164px;
    bottom: -66px;
  }
}
@media screen and (min-width: 992px) {
  #description .illust01 {
    bottom: 66px;
    left: -32px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
#description .illust02 {
  max-width: none;
  width: 186px;
  position: absolute;
  bottom: -90px;
  right: -52px;
}
@media screen and (min-width: 768px) {
  #description .illust02 {
    width: 278px;
    right: -164px;
    bottom: -66px;
  }
}
@media screen and (min-width: 992px) {
  #description .illust02 {
    bottom: 66px;
    right: -27px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
#description .primaryButton {
  position: relative;
  z-index: 1;
}

/* 特徴
================================ */
#feature {
  --bg-color: #fffff4;
  background-color: var(--bg-color);
  padding-block: 58px 72px;
}
@media screen and (min-width: 768px) {
  #feature {
    padding-block: 124px 198px;
  }
}

/* 締めくくり
================================ */
#closing {
  --bg-color: #7ed6ff;
  background-color: var(--bg-color);
  padding-block: 32px 48px;
}
@media screen and (min-width: 768px) {
  #closing {
    padding-block: 34px 50px;
  }
}
#closing .inner {
  width: min(1200px, 100% - var(--inner-side-padding) * 2);
}
#closing .wrap {
  display: -ms-grid;
  display: grid;
  row-gap: 24px;
}
@media screen and (min-width: 768px) {
  #closing .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-column-gap: 5.6666666667%;
       -moz-column-gap: 5.6666666667%;
            column-gap: 5.6666666667%;
  }
}
#closing .map {
  max-width: 78.5932721713%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  #closing .map {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: none;
    width: 41%;
  }
}
#closing .textBox {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  #closing .textBox {
    font-size: 18px;
  }
}
#closing .textBox > * + * {
  margin-top: 28px;
}
@media screen and (min-width: 768px) {
  #closing .textBox > * + * {
    margin-top: 36px;
  }
}

/* バナー
================================ */
#banner {
  background-color: #e6f4f1;
  padding-block: 48px 60px;
}
@media screen and (min-width: 768px) {
  #banner {
    padding-block: 120px;
  }
}
#banner .bannerItem {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 1;
  margin-inline: auto;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
@media (any-hover: hover) {
  #banner .bannerItem:hover {
    opacity: var(--opacity-hover);
  }
}
#banner .bannerItem:focus-visible {
  opacity: var(--opacity-hover);
}
#banner .p-area-return-link__button {
  width: 353px;
  margin-inline: auto;
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  #banner .p-area-return-link__button {
    width: 480px;
    margin-top: 88px;
  }
}
#banner .p-area-return-link__button .c-button {
  max-width: 353px;
  height: 64px;
  font-family: var(--font-body);
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  #banner .p-area-return-link__button .c-button {
    max-width: 480px;
    font-size: 14px;
  }
}
#banner .p-area-return-link__button .c-button__text {
  letter-spacing: 0 !important;
}

/* フッター
================================ */
.c-area-insurance {
  display: none;
}

.p-footer__banner.--mlit {
  display: block;
}

/* 追従
================================ */
#floatBox {
  width: 100%;
  padding: 8px;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #e6f4f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: var(--inner-side-padding);
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity var(--transition-duration);
  transition: opacity var(--transition-duration);
}
@media screen and (min-width: 768px) {
  #floatBox {
    padding: 16px 8px;
  }
}
#floatBox.is-show {
  opacity: 1;
}
#floatBox.is-force-hide {
  pointer-events: none;
  opacity: 0 !important;
}