@charset "UTF-8";
*, ::before, ::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

header, footer, nav, section, article, main, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

:root {
  --base: #FFF;
  --text: #333;
  --accent1: #157EFB;
  --accent2: #FF4015;
  --accent3: #33C759;
  --accent4: #FED956;
  --Accents-Yellow: #FC0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 3.125vw;
  }
}

body {
  color: var(--text);
  background: var(--gradation, linear-gradient(90deg, #76F8E0 0%, #96A7F1 100%));
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top; /* img下の隙間を消す */
}

a, button, [role=tab] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

/* スクリーンリーダーオンリー */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/*===============================
共通クラス
===============================*/
.inner {
  width: 100%;
  padding: 0 3rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 1.6rem;
  }
}

.sec-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  background: -webkit-gradient(linear, left top, right top, from(#76F8E0), to(#96A7F1));
  background: linear-gradient(90deg, #76F8E0 0%, #96A7F1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 1.4rem;
  }
}

.sec-subtitle {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  background: -webkit-gradient(linear, left top, right top, from(#76F8E0), to(#96A7F1));
  background: linear-gradient(90deg, #76F8E0 0%, #96A7F1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .sec-subtitle {
    font-size: 1.2rem;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/*===============================
fv
===============================*/
.fv__img {
  width: 100%;
}
.fv__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv_imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .fv_imgs.--imgs01 {
    grid-template-columns: 42.33% 57.67%;
  }
  .fv_imgs.--imgs01 img:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .fv_imgs.--imgs01 img:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .fv_imgs.--imgs01 img:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .fv_imgs.--imgs02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .fv_imgs.--imgs02 img:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .fv_imgs.--imgs02 img:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .fv_imgs.--imgs02 img:nth-child(3) {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

.fv_conent {
  width: 100%;
  background-color: var(--base);
  padding-block: 8.1rem 3.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv_conent {
    padding-block: 5.4rem 1.6rem;
  }
}

.fv_catch {
  width: 75.8rem;
  position: absolute;
  top: -4rem;
  left: calc(50% - 72rem + 3.5rem);
}
@media screen and (max-width: 1440px) {
  .fv_catch {
    left: clamp(1rem, -5.1538461538rem + 6.0096153846vw, 3.5rem);
  }
}
@media screen and (max-width: 767px) {
  .fv_catch {
    width: 30.7rem;
    top: -1.6rem;
    left: 0.6rem;
  }
}
.fv_catch img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv_conent__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv_conent__text {
    text-align: left;
    -webkit-padding-start: 1.8rem;
            padding-inline-start: 1.8rem;
  }
}

.fv_conent__text01 {
  display: inline-block;
  color: var(--text, #333);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-padding-start: 3.7rem;
          padding-inline-start: 3.7rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv_conent__text01 {
    font-size: 1.1rem;
    -webkit-padding-start: 2.1rem;
            padding-inline-start: 2.1rem;
  }
}
.fv_conent__text01::before {
  content: "";
  display: block;
  width: 3.7rem;
  height: 4.2rem;
  background: url(../img/img_fv_gunma.svg) no-repeat center center/cover;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .fv_conent__text01::before {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.fv_conent__text02 {
  display: inline-block;
  -webkit-padding-start: 1.6rem;
          padding-inline-start: 1.6rem;
  color: var(--accent3, #33C759);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .fv_conent__text02 {
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    font-size: 1.8rem;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}
.fv_conent__text02 .--small {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .fv_conent__text02 .--small {
    font-size: 1.5rem;
  }
}
.fv_conent__text02 .--dot {
  position: relative;
  display: inline-block;
}
.fv_conent__text02 .--dot::before {
  content: "";
  display: block;
  color: var(--accent1, #33C759);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent3, #33C759);
  position: absolute;
  left: 50%;
  top: -0.2em;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .fv_conent__text02 .--dot::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.fv_conent__text03 {
  color: var(--text, #333);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .fv_conent__text03 {
    display: inline-block;
    -webkit-margin-before: 0.6rem;
            margin-block-start: 0.6rem;
    font-size: 1.5rem;
  }
}
.fv_conent__text03 .--small {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .fv_conent__text03 .--small {
    font-size: 1.2rem;
  }
}
.fv_conent__text03 .--accent1, .fv_conent__text03 .--accent2 {
  font-size: 3.4rem;
  text-decoration: underline;
  text-decoration-thickness: 0.7em;
  text-underline-offset: -0.5em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media screen and (max-width: 767px) {
  .fv_conent__text03 .--accent1, .fv_conent__text03 .--accent2 {
    font-size: 1.7rem;
    text-decoration-thickness: 0.9em;
    text-underline-offset: -0.5em;
  }
}
.fv_conent__text03 .--accent1 {
  color: var(--accent1, #157EFB);
  text-decoration-color: rgba(21, 126, 251, 0.1);
}
.fv_conent__text03 .--accent2 {
  color: var(--accent2, #FF4015);
  text-decoration-color: rgba(255, 64, 21, 0.1);
}
.fv_conent__text03 .--big {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .fv_conent__text03 .--big {
    font-size: 2rem;
  }
}

.fv_conent__deco01 {
  display: block;
  width: 18.1rem;
  height: 15.2rem;
  position: absolute;
  top: -0.8rem;
  right: calc(50% - 72rem + 12.8rem);
  background: url(../img/deco_fv01.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1440px) {
  .fv_conent__deco01 {
    right: clamp(1rem, -28.0461538462rem + 28.3653846154vw, 12.8rem);
  }
}
@media screen and (max-width: 767px) {
  .fv_conent__deco01 {
    width: 4.5rem;
    height: 3.8rem;
    top: auto;
    bottom: 2rem;
    right: 0.9rem;
  }
}

.fv_conent__deco02 {
  display: block;
  width: 23.6rem;
  height: 13.8rem;
  position: absolute;
  bottom: clamp(-8rem, -17.3538461538rem + 9.1346153846vw, -4.2rem);
  right: calc(50% - 72rem + 3rem);
  background: url(../img/deco_fv02.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1440px) {
  .fv_conent__deco02 {
    right: clamp(1rem, -3.9230769231rem + 4.8076923077vw, 3rem);
  }
}
@media screen and (max-width: 767px) {
  .fv_conent__deco02 {
    width: 8.8rem;
    height: 5.2rem;
    bottom: -3.8rem;
    right: 0.6rem;
  }
}

.fv__bottom {
  padding-block: 0.4rem;
}

.fv__cavadaba {
  display: block;
  width: 29.3rem;
  margin-inline: auto;
  border-radius: 24px;
  -webkit-box-shadow: 0 0.4rem 0.4rem 0rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0.4rem 0.4rem 0rem rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
@media screen and (max-width: 767px) {
  .fv__cavadaba {
    width: 14.6rem;
  }
}
.fv__cavadaba:hover {
  translate: 0 0.2rem;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
}
.fv__cavadaba img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*===============================
header
===============================*/
.header {
  width: 100%;
  background: var(--base);
  padding-block: 4rem;
}

.header__inner {
  max-width: 96rem;
  margin-inline: auto;
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header-nav__item:not(:first-child) {
  position: relative;
}
.header-nav__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 0.1rem;
  height: 1.6rem;
  background: var(--accent2, #FF4015);
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

.header-nav__link {
  display: block;
  font-family: "Noto Sans Mono", "Noto Sans JP", monospace;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  padding-inline: 2.4rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-nav__link:hover {
  color: var(--accent2, #FF4015);
  font-weight: 600;
}
.header-nav__item:first-child .header-nav__link {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.header-nav__item:last-child .header-nav__link {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}
.header-nav__link.--cavadaba {
  width: 15.3rem;
  padding-inline: 0;
  text-align: center;
}

/*===============================
main
===============================*/
.main {
  overflow: hidden;
}

/*===============================
about
===============================*/
.about {
  padding-block: 8rem 7.2rem;
  background: var(--base);
  border-radius: 0 0 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .about {
    padding-block: 4rem 2.2rem;
    border-radius: 0;
  }
}

.about__inner {
  max-width: 105.4rem;
}

.about__content {
  -webkit-margin-before: 11.4rem;
          margin-block-start: 11.4rem;
  display: grid;
  grid-template-columns: 1fr 40.8rem;
  -webkit-column-gap: clamp(7rem, -5.8rem + 12.5vw, 12.2rem);
     -moz-column-gap: clamp(7rem, -5.8rem + 12.5vw, 12.2rem);
          column-gap: clamp(7rem, -5.8rem + 12.5vw, 12.2rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__content {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
}

.about-content__text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .about-content__text {
    grid-column: 1/2;
    grid-row: 2/3;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.about-content__img-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .about-content__img-area {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.about-content__img {
  width: 20rem;
  height: 20rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about-content__img {
    width: 14rem;
    height: 14rem;
  }
}
.about-content__img img {
  border-radius: 0.4rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-content__img::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
}
.about-content__img:nth-child(1)::after {
  background: url(../img/img_about05.webp) no-repeat center center/cover;
  width: 9.2rem;
  height: 5.5rem;
  left: -2.5rem;
  top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .about-content__img:nth-child(1)::after {
    width: 6.4rem;
    height: 3.8rem;
    left: -1.2rem;
    top: 1.4rem;
  }
}
.about-content__img:nth-child(2)::after {
  background: url(../img/img_about06.webp) no-repeat center center/cover;
  width: 12.4rem;
  height: 5rem;
  right: -1.6rem;
  bottom: -1.7rem;
}
@media screen and (max-width: 767px) {
  .about-content__img:nth-child(2)::after {
    width: 8.6rem;
    height: 3.5rem;
    right: -1.2rem;
    bottom: 0rem;
  }
}
.about-content__img:nth-child(3)::after {
  background: url(../img/img_about07.webp) no-repeat center center/cover;
  width: 13.3rem;
  height: 6rem;
  left: -6.6rem;
  top: 7rem;
}
@media screen and (max-width: 767px) {
  .about-content__img:nth-child(3)::after {
    width: 9.2rem;
    height: 4.2rem;
    left: -0.9rem;
    top: 3.9rem;
  }
}
.about-content__img:nth-child(4)::after {
  background: url(../img/img_about08.webp) no-repeat center center/cover;
  width: 10.2rem;
  height: 4.9rem;
  left: -1rem;
  bottom: -1.7rem;
}
@media screen and (max-width: 767px) {
  .about-content__img:nth-child(4)::after {
    width: 7.1rem;
    height: 3.4rem;
    left: -0.5rem;
    bottom: -0.5rem;
  }
}

.about__movie-area {
  -webkit-margin-before: 10rem;
          margin-block-start: 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__movie-area {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
  }
}

.about-movie__text {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about-movie__text {
    font-size: 1.4rem;
  }
}

.about-movie__video {
  -webkit-margin-before: 2.2rem;
          margin-block-start: 2.2rem;
  width: 100%;
  max-width: 81rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .about-movie__video {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
  }
}
.about-movie__video iframe,
.about-movie__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.about__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about__deco-item {
  position: absolute;
  display: block;
}
.about__deco-item.--deco-01 {
  background: url(../img/deco_about01.webp) no-repeat center center/cover;
  width: 8.2rem;
  height: 23.6rem;
  left: -6.5rem;
  top: -2rem;
}
.about__deco-item.--deco-02 {
  background: url(../img/deco_about02.webp) no-repeat center center/cover;
  width: 5.5rem;
  height: 5.5rem;
  right: -3rem;
  top: -6.1rem;
}
.about__deco-item.--deco-03 {
  background: url(../img/deco_about03.webp) no-repeat center center/cover;
  width: 14.9rem;
  height: 10.7rem;
  left: -2.4rem;
  top: -9rem;
}
.about__deco-item.--deco-04 {
  background: url(../img/deco_about04.webp) no-repeat center center/cover;
  width: 10.6rem;
  height: 13rem;
  right: -4rem;
  top: 7.8rem;
}
.about__deco-item.--deco-sp-01 {
  background: url(../img/deco_about-sp01.webp) no-repeat center center/cover;
  width: 3rem;
  height: 4.9rem;
  left: -0.5rem;
  top: 2.6rem;
}
.about__deco-item.--deco-sp-02 {
  background: url(../img/deco_about-sp02.webp) no-repeat center center/cover;
  width: 4.9rem;
  height: 6rem;
  right: -0.6rem;
  top: -0.4rem;
}

/*===============================
info
===============================*/
.info {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  margin-inline: 0.8rem;
  padding-block: 8rem;
  background: var(--base);
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .info {
    margin-inline: 0;
    padding-block: 4rem;
    border-radius: 0;
  }
}

.info__inner {
  max-width: 74.8rem;
  position: relative;
}

.info__dl {
  -webkit-margin-before: 4.9rem;
          margin-block-start: 4.9rem;
  display: grid;
  grid-template-columns: 12rem 1fr;
}
@media screen and (max-width: 767px) {
  .info__dl {
    -webkit-margin-before: 2.2rem;
            margin-block-start: 2.2rem;
    grid-template-columns: 1fr;
  }
}

.info__dt-label {
  width: 12rem;
  height: 3rem;
  border-radius: 8px;
  background: var(--accent2, #FF4015);
  display: grid;
  place-items: center;
  color: #FFF;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .info__dt-label {
    height: 2.2rem;
    font-size: 1.2rem;
  }
}

.info__dd {
  -webkit-margin-before: 0.4rem;
          margin-block-start: 0.4rem;
  -webkit-padding-start: 2.4rem;
          padding-inline-start: 2.4rem;
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .info__dd {
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    font-size: 1.2rem;
  }
}

.info__dt,
.info__dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-after: 1.4rem;
          padding-block-end: 1.4rem;
  border-bottom: 0.1rem dashed var(--accent2);
}
.info__dt:not(:first-of-type),
.info__dd:not(:first-of-type) {
  -webkit-padding-before: 1.6rem;
          padding-block-start: 1.6rem;
}

@media screen and (max-width: 767px) {
  .info__dt {
    border-bottom: none;
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
  .info__dt:not(:first-of-type) {
    -webkit-padding-before: 0.8rem;
            padding-block-start: 0.8rem;
  }
  .info__dd {
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-padding-after: 0.5rem;
            padding-block-end: 0.5rem;
  }
  .info__dd:not(:first-of-type) {
    -webkit-padding-before: 0;
            padding-block-start: 0;
  }
}
.info__box-wrap {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
}

.info__box {
  width: 100%;
  height: 6.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0.8rem;
  background: var(--accent3, #33C759);
  -webkit-box-shadow: 0 0.4rem 0.4rem 0rem rgba(20, 77, 35, 0.24);
          box-shadow: 0 0.4rem 0.4rem 0rem rgba(20, 77, 35, 0.24);
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .info__box {
    height: auto;
    font-size: 1.2rem;
    display: block;
    padding-block: 2rem;
    text-align: center;
  }
}
.info__box::after {
  content: "";
  display: block;
  width: 9.3rem;
  height: 4rem;
  background: url(../img/img_common_fish.webp) no-repeat center center/cover;
  position: absolute;
  top: -2.5rem;
  right: -1.4rem;
}
.info__box .--deco {
  display: inline-block;
  color: var(--accent4, #FED956);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .info__box .--deco {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.info__box .--deco::after {
  content: "";
  display: block;
  width: 2.8rem;
  height: 1.1rem;
  background: url(../img/img_info-box.svg) no-repeat center center/cover;
  position: absolute;
  top: -0.6rem;
  left: 25%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .info__box .--deco::after {
    width: 1.6rem;
    height: 0.6rem;
    top: 0rem;
    left: 35%;
  }
}

.info__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.info__deco-item {
  position: absolute;
  display: block;
}
.info__deco-item.--deco-01 {
  background: url(../img/deco_info01.webp) no-repeat center center/cover;
  width: 8.1rem;
  height: 8.1rem;
  right: -12rem;
  top: 8rem;
}

/*===============================
point
===============================*/
.point {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  margin-inline: 0.8rem;
  padding-block: 8rem 6.4rem;
  background: var(--base);
  border-radius: 4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
    margin-inline: 0;
    padding-block: 4rem 2.8rem;
    border-radius: 0;
  }
}

.point__inner {
  max-width: 112rem;
}
@media screen and (max-width: 767px) {
  .point__inner {
    padding-inline: 0;
  }
}

.point__list {
  -webkit-margin-before: 5.2rem;
          margin-block-start: 5.2rem;
}
@media screen and (max-width: 767px) {
  .point__list {
    -webkit-margin-before: 2.6rem;
            margin-block-start: 2.6rem;
  }
}

.point__item {
  position: relative;
}
.point__item:nth-child(2) {
  -webkit-margin-before: 12rem;
          margin-block-start: 12rem;
}
@media screen and (max-width: 767px) {
  .point__item:nth-child(2) {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
}
.point__item:nth-child(3) {
  -webkit-margin-before: 8rem;
          margin-block-start: 8rem;
}
@media screen and (max-width: 767px) {
  .point__item:nth-child(3) {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
}

.point__base-block {
  padding-inline: 3.4rem;
  display: grid;
  grid-template-areas: "dummy dummy img" "location-caption location-caption img" "no location img" "title title img" "text text text";
  grid-template-columns: 10rem 30.5rem 1fr;
}
@media screen and (max-width: 767px) {
  .point__base-block {
    padding-inline: 1.6rem;
    grid-template-columns: 4.5rem 1fr;
    grid-template-areas: "img img" "no location-caption" "no location" "title title" "text text";
  }
}
.point__base-block.--rl {
  grid-template-areas: "img dummy dummy" "img location-caption location-caption" "img location no" "img title title" "text text text";
  grid-template-columns: 1fr 30.5rem 10rem;
}
@media screen and (max-width: 767px) {
  .point__base-block.--rl {
    padding-inline: 1.6rem;
    grid-template-columns: 1fr 4.5rem;
    grid-template-areas: "img img" "location-caption no" "location no" "title title" "text text";
  }
}

.point-item__no {
  grid-area: no;
  font-size: 8.8rem;
  font-weight: 400;
  line-height: 1;
  background: var(--gradation, linear-gradient(90deg, #76F8E0 0%, #96A7F1 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .point-item__no {
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    font-size: 4rem;
  }
}
.--rl .point-item__no {
  text-align: right;
}

.point-item__location {
  grid-area: location;
  color: var(--text, #333);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  display: block;
  -webkit-margin-before: auto;
          margin-block-start: auto;
  -webkit-margin-start: 1.6rem;
          margin-inline-start: 1.6rem;
}
@media screen and (max-width: 767px) {
  .point-item__location {
    font-size: 1.4rem;
    -webkit-margin-start: 0.6rem;
            margin-inline-start: 0.6rem;
  }
}
.--rl .point-item__location {
  text-align: right;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0.8rem;
          margin-inline-end: 0.8rem;
}
@media screen and (max-width: 767px) {
  .--rl .point-item__location {
    -webkit-margin-end: 0.4rem;
            margin-inline-end: 0.4rem;
  }
}

.point-item__location-caption {
  grid-area: location-caption;
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-margin-before: auto;
          margin-block-start: auto;
}
@media screen and (max-width: 767px) {
  .point-item__location-caption {
    font-size: 1rem;
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
}
.--rl .point-item__location-caption {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .--rl .point-item__location-caption {
    -webkit-margin-end: 0.4rem;
            margin-inline-end: 0.4rem;
  }
}

.point-item__title {
  display: block;
  -webkit-margin-before: 3.2rem;
          margin-block-start: 3.2rem;
  grid-area: title;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .point-item__title {
    -webkit-margin-before: 1.7rem;
            margin-block-start: 1.7rem;
    font-size: 1.4rem;
  }
}
.--rl .point-item__title {
  text-align: right;
}

.point-item__text {
  grid-area: text;
  -webkit-margin-before: 2.4rem;
          margin-block-start: 2.4rem;
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .point-item__text {
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.--rl .point-item__text {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .--rl .point-item__text {
    text-align: left;
  }
}
.point-item__text strong {
  font-weight: 700;
}

.point-item__img {
  grid-area: img;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .point-item__img {
    width: 25rem;
    max-width: 100%;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-margin-end: -1.6rem;
            margin-inline-end: -1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .--rl .point-item__img {
    -webkit-margin-start: -1.6rem;
            margin-inline-start: -1.6rem;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}
.point-item__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.point-item__img.--item01-img {
  position: relative;
}
.point-item__img.--item01-img .--sub-img {
  width: 33.9%;
  border-radius: 4rem;
  overflow: hidden;
  position: absolute;
  bottom: -2.4rem;
  right: calc(0rem - clamp(3rem, -14.2307692308rem + 16.8269230769vw, 10rem));
}
@media screen and (max-width: 767px) {
  .point-item__img.--item01-img .--sub-img {
    border-radius: 0.8rem;
    bottom: -5.2rem;
    right: 0;
  }
}
.point-item__img.--item01-img .--sub-img img {
  width: 100%;
  height: auto;
}

.point-item02__boxes {
  -webkit-margin-before: 4.4rem;
          margin-block-start: 4.4rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .point-item02__boxes {
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
    margin-inline: 0.8rem;
    row-gap: 1.6rem;
  }
}

.point-item03__box {
  -webkit-margin-before: 2rem;
          margin-block-start: 2rem;
  padding-inline: 3.4rem;
}
@media screen and (max-width: 767px) {
  .point-item03__box {
    padding-inline: 1.6rem;
  }
}

.point__box {
  padding: 3.6rem 3.4rem 2.9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__box {
    padding: 1.6rem 0.8rem;
  }
}
.point__box:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4.8rem;
  opacity: 0.05;
  background: var(--accent1, #157EFB);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .point__box:before {
    border-radius: 0.8rem;
  }
}

.point-box__lead {
  color: var(--text, #333);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .point-box__lead {
    font-size: 1.3rem;
  }
}
.point-box__lead strong {
  font-weight: 700;
}

.point-box__text {
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .point-box__text {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.point-box__text strong {
  font-weight: 700;
}

.point-box__caption {
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .point-box__caption {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.point-box__images {
  margin-block: 1.6rem;
  display: grid;
  grid-template-columns: 36.895% 36.895% 24.572%;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .point-box__images {
    grid-template-columns: 1fr;
    row-gap: 0.7rem;
    -webkit-margin-after: 1.2rem;
            margin-block-end: 1.2rem;
  }
}
.point-box__images.--rl {
  grid-template-columns: 24.572% 36.895% 36.895%;
}
@media screen and (max-width: 767px) {
  .point-box__images.--rl {
    grid-template-columns: 1fr;
  }
}

.point-box__img {
  margin: 0;
  position: relative;
}
.point-box__img:first-child img {
  border-radius: 0.8rem 0 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .point-box__img:first-child img {
    border-radius: 0.8rem;
  }
}
.point-box__img:last-child img {
  border-radius: 0 0.8rem 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .point-box__img:last-child img {
    border-radius: 0.8rem;
  }
}
.point-box__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .point-box__img img {
    border-radius: 0.8rem;
  }
}
.point-box__img .point-box__img-caption {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .point-box__img .point-box__img-caption {
    font-size: 1.2rem;
  }
}
.point-box__img .point-box__img-caption.--img02-04 {
  width: 24rem;
  font-size: 1.2rem;
  top: -0.8rem;
  left: -0.3rem;
  rotate: -3deg;
}
@media screen and (max-width: 767px) {
  .point-box__img .point-box__img-caption.--img02-04 {
    width: 20.2rem;
    top: -2.8rem;
    left: -0.8rem;
  }
}
.point-box__img .point-box__img-caption.--img02-09 {
  width: 25.4rem;
  bottom: 1.6rem;
  left: 50%;
  translate: -50% 0;
  rotate: -3deg;
}
@media screen and (max-width: 767px) {
  .point-box__img .point-box__img-caption.--img02-09 {
    left: auto;
    right: -0.4rem;
    bottom: -1.6rem;
    translate: 0 0;
  }
}
.point-box__img .point-box__img-caption.--img03 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: -0.8rem;
  right: 0.8rem;
  rotate: -3deg;
}
@media screen and (max-width: 767px) {
  .point-box__img .point-box__img-caption.--img03 {
    top: -0.6rem;
    right: auto;
    left: 0.5rem;
  }
}

.point-box__addition-block {
  border-radius: 0.8rem;
  background: var(--accent3, #33C759);
  -webkit-box-shadow: 0 4px 4px 0 rgba(20, 77, 35, 0.24);
          box-shadow: 0 4px 4px 0 rgba(20, 77, 35, 0.24);
  padding: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 1.7rem;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  .point-box__addition-block {
    position: relative;
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
    padding: 1.6rem 0.8rem;
    bottom: auto;
    right: auto;
  }
}
.point-box__addition-block:after {
  content: "";
  display: block;
  width: 9.3rem;
  height: 4rem;
  background: url(../img/deco_point02-03.webp) no-repeat center center/cover;
  position: absolute;
  right: 2rem;
  top: -2rem;
}
@media screen and (max-width: 767px) {
  .point-box__addition-block:after {
    right: -0.7rem;
    top: -2.4rem;
  }
}

.point-box__addition-lead {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .point-box__addition-lead {
    font-size: 1.2rem;
  }
}

.point-box__addition-list {
  list-style: none;
}

.point-box__addition-item {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point-box__addition-item {
    font-size: 1.2rem;
  }
}
.point-box__addition-item::before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  left: 0.35em;
  top: 0.6em;
}

.point__item:nth-child(1) .point-item__title,
.point__item:nth-child(1) strong {
  color: var(--accent2, #FF4015);
}

.point__item:nth-child(1) .point-box__img-caption {
  background: var(--accent2, #FF4015);
}

.point__item:nth-child(2) .point-item__title,
.point__item:nth-child(2) strong {
  color: var(--accent3, #33C759);
}

.point__item:nth-child(2) .point-box__img-caption {
  background: var(--accent3, #33C759);
}

.point__item:nth-child(3) .point-item__title,
.point__item:nth-child(3) strong {
  color: var(--accent1, #157EFB);
}

.point__item:nth-child(3) .point-box__img-caption {
  background: var(--accent1, #157EFB);
}

.point__deco-item {
  position: absolute;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.point__deco-item.--deco-01-01 {
  background: url(../img/deco_point01_01.webp) no-repeat center center/cover;
  width: 9rem;
  height: 9rem;
  left: -2rem;
  top: clamp(-3rem, -25.1538461538rem + 21.6346153846vw, 6rem);
}
@media screen and (max-width: 767px) {
  .point__deco-item.--deco-01-01 {
    width: 4.5rem;
    height: 4.5rem;
    left: 1.6rem;
    top: 9.5rem;
  }
}
.point__deco-item.--deco-01-02 {
  background: url(../img/deco_point01_02.webp) no-repeat center center/cover;
  width: 17.1rem;
  height: 12.1rem;
  left: 9.6rem;
  top: clamp(-4rem, -18.7692307692rem + 14.4230769231vw, 2rem);
}
@media screen and (max-width: 767px) {
  .point__deco-item.--deco-01-02 {
    width: 4.3rem;
    height: 3.1rem;
    left: 15rem;
    top: 13rem;
  }
}
.point__deco-item.--deco-02-01 {
  background: url(../img/deco_point02_01.webp) no-repeat center center/cover;
  width: 33.2rem;
  height: 24.2rem;
  left: 52%;
  top: clamp(-18rem, -66.3018867925rem + 47.1698113208vw, -13rem);
}
@media screen and (max-width: 767px) {
  .point__deco-item.--deco-02-01 {
    background: url(../img/deco_point02_01-sp.webp) no-repeat center center/cover;
    width: 12.4rem;
    height: 10.5rem;
    left: auto;
    right: -1rem;
    top: 6rem;
  }
}
.point__deco-item.--deco-02-02 {
  background: url(../img/deco_point02_02.webp) no-repeat center center/cover;
  width: 26.5rem;
  height: 12.1rem;
  right: -10%;
  top: -3.5rem;
  top: clamp(-10rem, -26rem + 15.625vw, -3.5rem);
}
@media screen and (max-width: 767px) {
  .point__deco-item.--deco-02-02 {
    background: url(../img/deco_point02_02-sp.webp) no-repeat center center/cover;
    width: 5.5rem;
    height: 2.4rem;
    right: auto;
    left: 3.4rem;
    top: 21.5rem;
  }
}
.point__deco-item.--deco-03-01 {
  background: url(../img/deco_point03_01.webp) no-repeat center center/cover;
  width: 32.8rem;
  height: 27.6rem;
  left: 14rem;
  top: clamp(-15rem, -22.3846153846rem + 7.2115384615vw, -12rem);
}
@media screen and (max-width: 767px) {
  .point__deco-item.--deco-03-01 {
    background: url(../img/deco_point03_01-sp.webp) no-repeat center center/cover;
    width: 10rem;
    height: 10.6rem;
    left: 0rem;
    top: 5.2rem;
  }
}
.point__deco-item.--deco-03-02 {
  background: url(../img/deco_point03_02.webp) no-repeat center center/cover;
  width: 6.9rem;
  height: 12.6rem;
  left: calc(0rem - clamp(4.6rem, -7.7076923077rem + 12.0192307692vw, 9.6rem));
  top: 22rem;
}
@media screen and (max-width: 767px) {
  .point__deco-item.--deco-03-02 {
    background: url(../img/deco_point01_01.webp) no-repeat center center/cover;
    width: 4.5rem;
    height: 4.5rem;
    left: 2.4rem;
    top: 9rem;
  }
}
.point__deco-item.--deco-03-03 {
  background: url(../img/deco_point03_03.webp) no-repeat center center/cover;
  width: 7rem;
  height: 19.8rem;
  left: calc(0rem - clamp(3.4rem, -0.5384615385rem + 3.8461538462vw, 5rem));
  top: 5rem;
}
@media screen and (max-width: 767px) {
  .point__deco-item.--deco-03-03 {
    width: 2.6rem;
    height: 7.4rem;
    rotate: 30deg;
    left: auto;
    right: 1.8rem;
    top: 15.5rem;
  }
}
.point__deco-item.--deco-03-04 {
  background: url(../img/deco_point03_04.webp) no-repeat center center/cover;
  width: 5.7rem;
  height: 15.9rem;
  left: 33.5rem;
  top: -0.4rem;
  top: clamp(-5.6rem, -18.4rem + 12.5vw, -0.4rem);
}
@media screen and (max-width: 767px) {
  .point__deco-item.--deco-03-04 {
    width: 2.1rem;
    height: 6rem;
    rotate: -23deg;
    left: auto;
    right: 6rem;
    top: 14rem;
  }
}

/*===============================
summary
===============================*/
.summary {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  margin-inline: 0.8rem;
  padding-block: 8rem 7rem;
  background: var(--base);
  border-radius: 4rem;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .summary {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
    margin-inline: 0;
    padding-block: 4rem;
    border-radius: 0;
  }
}

.summary__inner {
  max-width: 70rem;
  position: relative;
}

.summary__list {
  -webkit-margin-before: 5.2rem;
          margin-block-start: 5.2rem;
}
@media screen and (max-width: 767px) {
  .summary__list {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
}

.summary__item {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .summary__item {
    font-size: 1.3rem;
  }
}
.summary__item:not(:first-child) {
  -webkit-margin-before: 2.4rem;
          margin-block-start: 2.4rem;
}
@media screen and (max-width: 767px) {
  .summary__item:not(:first-child) {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
  }
}
.summary__item:nth-child(1) {
  color: var(--accent2, #FF4015);
}
.summary__item:nth-child(2) {
  color: var(--accent3, #33C759);
}
.summary__item:nth-child(3) {
  color: var(--accent1, #157EFB);
}
.summary__item:nth-child(4) .summary__item-gradient {
  background: var(--Linear, linear-gradient(90deg, #FF4015 0%, #FED956 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.summary__sub-list {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  list-style: disc;
  list-style-position: outside;
  -webkit-padding-start: 2.4rem;
          padding-inline-start: 2.4rem;
}
@media screen and (max-width: 767px) {
  .summary__sub-list {
    -webkit-padding-start: 2rem;
            padding-inline-start: 2rem;
  }
}

.summary__sub-item {
  color: var(--text, #333);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .summary__sub-item {
    font-size: 1.2rem;
  }
  .summary__sub-item::marker {
    font-size: 0.7rem;
  }
}
.summary__sub-item:not(:first-child) {
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
}
@media screen and (max-width: 767px) {
  .summary__sub-item:not(:first-child) {
    -webkit-margin-before: 0.2rem;
            margin-block-start: 0.2rem;
  }
}
.summary__sub-item span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-padding-after: 0.4rem;
          padding-block-end: 0.4rem;
  border-bottom: 0.2rem dotted #8FDBD7;
}

.summary__deco {
  position: absolute;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.summary__deco.--deco-01 {
  background: url(../img/deco_summary01.webp) no-repeat center center/cover;
  width: 14.2rem;
  height: 5.6rem;
  left: calc(0rem - clamp(12rem, -14.5846153846rem + 25.9615384615vw, 22.8rem));
  top: 4.4rem;
}
@media screen and (max-width: 767px) {
  .summary__deco.--deco-01 {
    display: none;
  }
}
.summary__deco.--deco-02 {
  background: url(../img/deco_summary02.webp) no-repeat center center/cover;
  width: 13.5rem;
  height: 9.6rem;
  left: calc(0rem - clamp(12rem, -4.7384615385rem + 16.3461538462vw, 18.8rem));
  top: 10.6rem;
}
@media screen and (max-width: 767px) {
  .summary__deco.--deco-02 {
    width: 5.2rem;
    height: 3.9rem;
    left: 2.4rem;
    top: -1rem;
  }
}
.summary__deco.--deco-03 {
  background: url(../img/deco_summary03.webp) no-repeat center center/cover;
  width: 18.8rem;
  height: 18.8rem;
  right: -13rem;
  top: 14.8rem;
}
@media screen and (max-width: 767px) {
  .summary__deco.--deco-03 {
    width: 8.7rem;
    height: 8.7rem;
    right: 0rem;
    top: auto;
    bottom: -2rem;
  }
}
.summary__deco.--deco-04 {
  background: url(../img/deco_summary04.webp) no-repeat center center/cover;
  width: 10.9rem;
  height: 13.8rem;
  right: calc(0rem - clamp(10rem, -13.6307692308rem + 23.0769230769vw, 19.6rem));
  top: 31rem;
}
@media screen and (max-width: 767px) {
  .summary__deco.--deco-04 {
    display: none;
  }
}
.summary__deco.--deco-05 {
  background: url(../img/deco_summary05.webp) no-repeat center center/cover;
  display: none;
}
@media screen and (max-width: 767px) {
  .summary__deco.--deco-05 {
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    left: 2.4rem;
    top: 2.6rem;
  }
}
.summary__deco.--deco-06 {
  background: url(../img/deco_summary06.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .summary__deco.--deco-06 {
    display: block;
    width: 2.9rem;
    height: 3rem;
    right: 3rem;
    top: 1rem;
  }
}

/*===============================
recommend
===============================*/
.recommend {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  margin-inline: 0.8rem;
  padding-block: 8rem 8.2rem;
  background: var(--base);
  border-radius: 4rem;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .recommend {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
    margin-inline: 0;
    padding-block: 4rem;
    border-radius: 0;
  }
}

.recommend__inner {
  max-width: 105.3rem;
  position: relative;
}

.recommend__imgs {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .recommend__imgs {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 2.4rem;
  }
}

.recommend__img {
  margin: 0;
  width: 100%;
  height: auto;
  text-align: center;
  position: relative;
}
.recommend__img img {
  width: 100%;
  height: auto;
  border-radius: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  background: url(<path-to-image>) lightgray 50%/cover no-repeat;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.recommend__img-tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent3, #33C759);
  rotate: -3deg;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  z-index: 1;
  top: -1rem;
  left: -1rem;
  rotate: -3deg;
}
@media screen and (max-width: 767px) {
  .recommend__img-tag {
    font-size: 1.2rem;
    padding: 0.1rem 0.8rem;
    top: -0.4rem;
    left: -0.4rem;
  }
}

.recommend__img-caption {
  -webkit-margin-before: 2.4rem;
          margin-block-start: 2.4rem;
  display: inline-block;
  -webkit-padding-start: 8.2rem;
          padding-inline-start: 8.2rem;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recommend__img-caption {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
    font-size: 1.2rem;
    -webkit-padding-start: 6.4rem;
            padding-inline-start: 6.4rem;
  }
}
.recommend__img-caption::before {
  content: "";
  display: block;
  width: 5.8rem;
  height: 2.6rem;
  background: url(../img/img_recommend_text.webp) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .recommend__img-caption::before {
    width: 4rem;
    height: 1.8rem;
  }
}

.recommend__deco-item {
  position: absolute;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.recommend__deco-item.--deco-01 {
  background: url(../img/deco_recommend01.webp) no-repeat center center/cover;
  width: 9.5rem;
  height: 8.7rem;
  left: calc(0rem - clamp(-1rem, -16.0153846154rem + 14.6634615385vw, 5.1rem));
  top: clamp(-1rem, -11.8307692308rem + 10.5769230769vw, 3.4rem);
}
.recommend__deco-item.--deco-02 {
  background: url(../img/deco_recommend02.webp) no-repeat center center/cover;
  width: 8.3rem;
  height: 8rem;
  right: calc(0rem - clamp(0rem, -19.9384615385rem + 19.4711538462vw, 8.1rem));
  bottom: clamp(-8rem, -11.6923076923rem + 3.6057692308vw, -6.5rem);
}

/*===============================
schedule
===============================*/
.schedule {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
  margin-inline: 0.8rem;
  padding-block: 8rem;
  background: var(--base);
  border-radius: 4rem 4rem 0 0;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .schedule {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
    margin-inline: 0;
    padding-block: 4rem;
    border-radius: 0;
  }
}

.schedule__inner {
  max-width: 88.4rem;
}

.schedule__content {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
  display: grid;
  grid-template-columns: 54.2rem 1fr;
}
@media screen and (max-width: 767px) {
  .schedule__content {
    -webkit-margin-before: 1.2rem;
            margin-block-start: 1.2rem;
    grid-template-columns: 1fr;
    position: relative;
  }
}

.schedule__list {
  -webkit-margin-before: 1.2rem;
          margin-block-start: 1.2rem;
  position: relative;
}
.schedule__list:before {
  content: "";
  display: block;
  width: 0.2rem;
  height: 100%;
  background: url(../img/img_schedule_line.svg) no-repeat center center/cover;
  position: absolute;
  left: 2.2rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .schedule__list:before {
    left: 1.6rem;
  }
}

.schedule__item {
  -webkit-padding-start: 6.6rem;
          padding-inline-start: 6.6rem;
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .schedule__item {
    -webkit-padding-start: 5.3rem;
            padding-inline-start: 5.3rem;
    font-size: 1.2rem;
  }
}
.schedule__item:not(:first-child) {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .schedule__item:not(:first-child) {
    -webkit-margin-before: 2.3rem;
            margin-block-start: 2.3rem;
  }
}
.schedule__item::before {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: -1.2rem;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .schedule__item::before {
    width: 3.2rem;
    height: 3.2rem;
    top: -0.8rem;
  }
}
.schedule__item:nth-child(1)::before {
  background-image: url(../img/icon_schedule01.svg);
}
.schedule__item:nth-child(2)::before {
  background-image: url(../img/icon_schedule02.svg);
}
.schedule__item:nth-child(3)::before {
  background-image: url(../img/icon_schedule03.svg);
}
.schedule__item:nth-child(4)::before {
  background-image: url(../img/icon_schedule04.svg);
}
.schedule__item:nth-child(5)::before {
  background-image: url(../img/icon_schedule05.svg);
}
.schedule__item:nth-child(6)::before {
  background-image: url(../img/icon_schedule06.svg);
}
.schedule__item:nth-child(7)::before {
  background-image: url(../img/icon_schedule07.svg);
}
.schedule__item:nth-child(8)::before {
  background-image: url(../img/icon_schedule08.svg);
}
.schedule__item .--accent1 {
  color: var(--accent1, #157EFB);
  font-weight: 700;
}
.schedule__item .--accent2 {
  color: var(--accent2, #FF4015);
  font-weight: 700;
}
.schedule__item .--accent3 {
  color: var(--accent3, #33C759);
  font-weight: 700;
}

.schedule__sub-list {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  list-style: disc;
  list-style-position: inside;
  -webkit-padding-start: 0.5em;
          padding-inline-start: 0.5em;
}

.schedule__sub-item {
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .schedule__sub-item {
    font-size: 1.2rem;
  }
  .schedule__sub-item::marker {
    font-size: 0.7rem;
  }
}

.schedule__img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .schedule__img-area {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    grid-row: 3/4;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.4rem;
  }
}

.schedule__img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .schedule__img {
    -webkit-padding-after: 8.2rem;
            padding-block-end: 8.2rem;
    position: relative;
  }
}
.schedule__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.schedule__img-caption {
  -webkit-margin-before: 1.4rem;
          margin-block-start: 1.4rem;
  color: var(--text, #333);
  text-align: right;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .schedule__img-caption {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    font-size: 1.2rem;
    position: absolute;
    white-space: nowrap;
    right: 0;
    bottom: 0;
  }
}

.schedule__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-before: 3.4rem;
          margin-block-start: 3.4rem;
  margin-inline: auto;
  grid-column: 1/3;
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .schedule__text {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    grid-column: 1/2;
    grid-row: 2/3;
    font-size: 1.2rem;
  }
}

.schedule__deco-item {
  position: absolute;
}
.schedule__deco-item.--deco-01 {
  background: url(../img/deco_schedule01.webp) no-repeat center center/cover;
  width: 7.6rem;
  height: 3.5rem;
  left: 1.6rem;
  bottom: 0.6rem;
}

/*===============================
cavadaba
===============================*/
.cavadaba {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  width: 100%;
  background-color: #fff;
  padding-block: 0.5rem 0;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .cavadaba {
    padding-block: 0.4rem 0;
  }
}

.cavadaba__top {
  position: relative;
}

.cavadaba__top-img {
  display: block;
  width: 100%;
  height: auto;
}
.cavadaba__top-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .cavadaba__top-img img {
    min-height: 29rem;
    -o-object-position: 25% center;
       object-position: 25% center;
  }
}
@media screen and (max-width: 767px) {
  .cavadaba__top-img img {
    min-height: 0;
  }
}

.cavadaba__top-content {
  width: 100%;
  max-width: 41.4rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  position: absolute;
  top: 50%;
  right: calc(50% - 72rem + 22.7rem);
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .cavadaba__top-content {
    position: static;
    translate: 0 0;
    padding: 0.8rem 1.6rem;
  }
}

.cavadaba__title {
  color: var(--base, #FFF);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .cavadaba__title {
    font-size: 1.6rem;
    background: var(--Linear, linear-gradient(90deg, #FF4015 0%, #FED956 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
}

.cavadaba__text {
  -webkit-margin-before: 3.2rem;
          margin-block-start: 3.2rem;
  color: var(--text, #333);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .cavadaba__text {
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

.savadaba__btn-wrap {
  -webkit-margin-before: 2.4rem;
          margin-block-start: 2.4rem;
}
@media screen and (max-width: 767px) {
  .savadaba__btn-wrap {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
  }
}

.cavadava__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 1.6rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem;
  border: 0.1rem solid var(--base, #FFF);
  background: var(--base, #FFF);
  position: relative;
  margin-inline: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cavadava__btn:hover {
  opacity: 0.7;
}
.cavadava__btn::before {
  content: "";
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/icon_youtube.svg) no-repeat center center/cover;
}
.cavadava__btn:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0px 8px 8px;
  border-color: transparent transparent transparent #FF3D00;
}

.cavadava__btn-text {
  color: var(--text, #333);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .cavadava__btn-text {
    font-size: 1.2rem;
  }
}

.cavadaba__bottom {
  -webkit-margin-before: 0.4rem;
          margin-block-start: 0.4rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 64, 21, 0.5)), to(rgba(254, 217, 86, 0.5)));
  background: linear-gradient(90deg, rgba(255, 64, 21, 0.5) 0%, rgba(254, 217, 86, 0.5) 100%);
  padding-block: 2.3rem;
}
@media screen and (max-width: 767px) {
  .cavadaba__bottom {
    -webkit-margin-before: 0;
            margin-block-start: 0;
    padding-block: 2.4rem;
  }
}

.cavadaba__bottom-content {
  max-width: 87rem;
  padding-inline: 3rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .cavadaba__bottom-content {
    padding-inline: 1.6rem;
  }
}
.cavadaba__bottom-content iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/*===============================
condition
===============================*/
.condition {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  margin-inline: 0.8rem;
  padding-block: 8rem 10rem;
  background: var(--base);
  border-radius: 0 0 4rem 4rem;
}
@media screen and (max-width: 767px) {
  .condition {
    margin-inline: 0;
    padding-block: 4rem;
    border-radius: 0;
  }
}

.condition__inner {
  max-width: 74.8rem;
}

.condition__dl {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
  display: grid;
  grid-template-columns: 12rem 1fr;
}
@media screen and (max-width: 767px) {
  .condition__dl {
    -webkit-margin-before: 1.8rem;
            margin-block-start: 1.8rem;
    grid-template-columns: 1fr;
  }
}

.condition__dt-label {
  width: 12rem;
  padding-block: 0.4rem;
  border-radius: 8px;
  background: #8FDBD7;
  display: grid;
  place-items: center;
  color: #FFF;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .condition__dt-label {
    height: 2.2rem;
    font-size: 1.2rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 12rem;
    padding-block: 0.2rem 0.4rem;
    padding-inline: 0.8rem;
  }
}

.condition__dd {
  -webkit-margin-before: 0.4rem;
          margin-block-start: 0.4rem;
  -webkit-padding-start: 2.4rem;
          padding-inline-start: 2.4rem;
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .condition__dd {
    -webkit-margin-before: 1rem;
            margin-block-start: 1rem;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.condition__dd .--attention {
  color: #FF383C;
}
.condition__dd .--indent {
  display: inline-block;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.condition__dt,
.condition__dd {
  -webkit-padding-after: 1.4rem;
          padding-block-end: 1.4rem;
  border-bottom: 0.1rem dashed #8FDBD7;
}
.condition__dt:not(:first-of-type),
.condition__dd:not(:first-of-type) {
  -webkit-padding-before: 1.6rem;
          padding-block-start: 1.6rem;
}

@media screen and (max-width: 767px) {
  .condition__dt {
    border-bottom: none;
    -webkit-padding-after: 0;
            padding-block-end: 0;
  }
  .condition__dt:not(:first-of-type) {
    -webkit-padding-before: 0.8rem;
            padding-block-start: 0.8rem;
  }
  .condition__dd {
    -webkit-padding-before: 0;
            padding-block-start: 0;
    -webkit-padding-after: 0.7rem;
            padding-block-end: 0.7rem;
  }
  .condition__dd:not(:first-of-type) {
    -webkit-padding-before: 0;
            padding-block-start: 0;
  }
}
/*===============================
place
===============================*/
.place {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  margin-inline: 0.8rem;
  padding-block: 8rem;
  background: var(--base);
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .place {
    margin-inline: 0;
    padding-block: 4rem;
    border-radius: 0;
  }
}

.place__inner {
  max-width: 105rem;
}

.place__content {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.4rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .place__content {
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
    grid-template-columns: 1fr;
    gap: 1.6rem 0;
  }
}

.place__map {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .place__map {
    border-radius: 0.8rem;
    overflow: hidden;
  }
}
.place__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 490/386;
}

.place__item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 0.8rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.place__item:not(:first-child) {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
}

.place__item-img {
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}
.place__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.place__item-text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}

.place__item-text-no {
  color: var(--text, #333);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .place__item-text-no {
    font-size: 1.6rem;
  }
}

.place__item-text {
  color: var(--text, #333);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .place__item-text {
    font-size: 1.2rem;
  }
}

.place__detail-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8rem 1.6rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  background: #8FDBD7;
  color: var(--base, #FFF);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.place__detail-text {
  -webkit-margin-before: 2.4rem;
          margin-block-start: 2.4rem;
  padding-inline: 1.6rem;
  color: var(--text, #333);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .place__detail-text {
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
    padding-inline: 0;
    font-size: 1.2rem;
  }
}

.place__img {
  width: 100%;
  border-radius: 0.8rem;
  overflow: hidden;
}
.place__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*===============================
faq
===============================*/
.faq {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  margin-inline: 0.8rem;
  padding-block: 8rem;
  background: var(--base);
  border-radius: 4rem 4rem 0 0;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .faq {
    margin-inline: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding-block: 4rem;
  }
}

.faq__inner {
  max-width: 88.4rem;
}

.faq__list {
  -webkit-margin-before: 4rem;
          margin-block-start: 4rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq__list {
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
  }
}

.faq__item {
  border-bottom: 0.1rem solid #8FDBD7;
  padding-block: 1.6rem;
}
@media screen and (max-width: 767px) {
  .faq__item {
    padding-block: 1rem;
  }
  .faq__item.is-hidden {
    display: none;
  }
}

.faq__item-q {
  -webkit-padding-end: 4.9rem;
          padding-inline-end: 4.9rem;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.faq__item-q::after {
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.1rem;
  background: url(../img/icon_arrow.svg) no-repeat center center/cover;
  position: absolute;
  right: 0.8rem;
  top: 50%;
  translate: 0 -60%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  rotate: 180deg;
}
@media screen and (max-width: 767px) {
  .faq__item-q::after {
    width: 1rem;
    height: 0.8rem;
  }
}
.is-open .faq__item-q::after {
  rotate: 0deg;
}

.faq__item-a {
  display: none;
  -webkit-padding-before: 1.1rem;
          padding-block-start: 1.1rem;
  -webkit-padding-end: 2.4rem;
          padding-inline-end: 2.4rem;
}
@media screen and (max-width: 767px) {
  .faq__item-a {
    -webkit-padding-end: 2.4rem;
            padding-inline-end: 2.4rem;
  }
}

.faq__item-text {
  min-height: 2.7rem;
  color: var(--text, #333);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-padding-start: 4.9rem;
          padding-inline-start: 4.9rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__item-text {
    font-size: 1.2rem;
    -webkit-padding-start: 2.9rem;
            padding-inline-start: 2.9rem;
  }
}
.faq__item-q .faq__item-text {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .faq__item-q .faq__item-text {
    font-size: 1.2rem;
    font-weight: 400;
  }
}
.faq__item-text::before {
  display: inline-block;
  width: 3.2rem;
  height: 3.2rem;
  border: 0.1rem solid #8FDBD7;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .faq__item-text::before {
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }
}
.faq__item-q .faq__item-text::before {
  content: "Q";
  background: #8FDBD7;
  color: var(--base, #FFF);
}
.faq__item-a .faq__item-text::before {
  content: "A";
  background: var(--base, #FFF);
  color: #8FDBD7;
}
.faq__item-text strong {
  font-weight: 700;
}

.faq__more {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
}

.faq__more-btn {
  display: grid;
  place-items: center;
  width: 28.8rem;
  max-width: 100%;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  background: #8FDBD7;
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.faq__more-btn:hover {
  opacity: 0.7;
  cursor: pointer;
}
.faq__more-btn.is-hidden {
  display: none;
}

/*===============================
cta
===============================*/
.cta-wrap {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}

.cta-wrap2 {
  -webkit-margin-before: 1.6rem;
          margin-block-start: 1.6rem;
}
@media screen and (max-width: 767px) {
  .cta-wrap2 {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
  }
}

.cta {
  padding-block: 11.4rem;
  background: url(../img/bg_cta.webp) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .cta {
    padding-block: 4rem;
  }
}

.cta__inner {
  max-width: 74.8rem;
}

.cta__btn-wrap {
  width: 100%;
  max-width: 53.6rem;
  margin-inline: auto;
}

.cta__btn {
  display: block;
  padding-block: 1.6rem;
  -webkit-padding-end: 2.4rem;
          padding-inline-end: 2.4rem;
  width: 100%;
  border-radius: 0.8rem;
  background: var(--accent2, #FF4015);
  -webkit-box-shadow: 0.6rem 0.7rem 0 0 var(--Accents-Yellow, #FC0);
          box-shadow: 0.6rem 0.7rem 0 0 var(--Accents-Yellow, #FC0);
  color: var(--White, #FFF);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .cta__btn {
    padding-block: 1.3rem;
    font-size: 1.6rem;
  }
}
.cta__btn:hover {
  translate: 0.6rem 0.7rem;
  -webkit-box-shadow: 0 0 0 0 var(--Accents-Yellow, #FC0);
          box-shadow: 0 0 0 0 var(--Accents-Yellow, #FC0);
}
.cta__btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0px 8px 8px;
  border-color: transparent transparent transparent #FFF;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .cta__btn::after {
    right: 2.8rem;
  }
}

.cta__dl {
  -webkit-margin-before: 5.6rem;
          margin-block-start: 5.6rem;
  display: grid;
  max-width: 49.2rem;
  margin-inline: auto;
  grid-template-columns: 15.2rem 1fr;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .cta__dl {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}

.cta__dt, .cta__dd {
  color: #000;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .cta__dt, .cta__dd {
    font-size: 1.2rem;
  }
}
.cta__dt:not(:first-of-type), .cta__dd:not(:first-of-type) {
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
}
@media screen and (max-width: 767px) {
  .cta__dt:not(:first-of-type), .cta__dd:not(:first-of-type) {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
.cta__dt span, .cta__dd span {
  display: inline-block;
  -webkit-margin-before: 0.8rem;
          margin-block-start: 0.8rem;
  font-size: 1.4rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .cta__dt span, .cta__dd span {
    font-size: 1rem;
    white-space: wrap;
  }
}

@media screen and (max-width: 767px) {
  .cta__dt {
    font-weight: 700;
  }
  .cta__dt:not(:first-of-type) {
    -webkit-margin-before: 0.8rem;
            margin-block-start: 0.8rem;
  }
}

.cta__info-box-wrap {
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
}
@media screen and (max-width: 767px) {
  .cta__info-box-wrap {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
  }
}

.cta__btn-disabled {
  display: none;
  padding-block: 1.6rem;
  width: 100%;
  max-width: 44.8rem;
  margin-inline: auto;
  border-radius: 0.8rem;
  background: #B3ADAC;
  -webkit-box-shadow: 0.6rem 0.7rem 0 0 var(--Accents-Yellow, #FC0);
          box-shadow: 0.6rem 0.7rem 0 0 var(--Accents-Yellow, #FC0);
  color: var(--White, #FFF);
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .cta__btn-disabled {
    font-size: 1.6rem;
  }
}

.is-closed .cta {
  pointer-events: none;
}
.is-closed .cta .cta__dl,
.is-closed .cta .cta__info-box-wrap {
  opacity: 0.4;
}
.is-closed .cta .cta__btn-disabled {
  display: block;
}
.is-closed .cta .cta__btn {
  display: none;
}

/*===============================
footer
===============================*/
.footer {
  padding-block: 1.6rem 1rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 0.8rem 3.2rem;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3.4rem;
     -moz-column-gap: 3.4rem;
          column-gap: 3.4rem;
}
@media screen and (max-width: 767px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer__logo {
  width: 18.9rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 13.5rem;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__info-text {
  color: var(--base, #FFF);
  font-size: 1.3rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer__info-text {
    font-size: 1.1rem;
    text-align: center;
  }
}
.footer__info-text + .footer__info-text {
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
}

.footer__bottom {
  -webkit-margin-before: 1.4rem;
          margin-block-start: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
}

.footer__copyright {
  display: block;
  color: var(--base, #FFF);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 0.9rem;
  }
}

/*===============================
追従ボタン
===============================*/
.go-on-tour {
  width: 14.1rem;
  height: 14rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.go-on-tour.--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .go-on-tour {
    width: 7.6rem;
    height: 7.6rem;
    right: 0rem;
  }
}

.js-go-on-tour-link {
  display: block;
}
.js-go-on-tour-link img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 0;
  left: 0;
}
.js-go-on-tour-link img:nth-of-type(1) {
  opacity: 1;
  visibility: visible;
}
.js-go-on-tour-link img:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}
.js-go-on-tour-link:hover img:nth-of-type(1) {
  opacity: 0;
  visibility: hidden;
}
.js-go-on-tour-link:hover img:nth-of-type(2) {
  opacity: 1;
  visibility: visible;
}

.is-closed .go-on-tour {
  display: none;
}/*# sourceMappingURL=style.css.map */