@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

.c-column2 {
  display: grid;
  gap: 30px;
  gap: clamp(1.25rem,
      1.094rem + 0.78vw,
      1.875rem);
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .c-column2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-column2--gap60 {
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .c-column2--gap60 {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .c-column2--gapSp20 {
    gap: 20px;
  }
}

.c-column3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

@media screen and (max-width: 1200px) {
  .c-column3 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
    row-gap: clamp(1.25rem,
        0.938rem + 1.56vw,
        2.5rem);
  }
}

.c-column4 {
  display: grid;
  gap: 10rem;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 767px) {
  .c-column4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .c-column4--sp2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-headline {
  border-left: 1px solid black;
  font-size: 16px;
  font-weight: 400;
  color: black;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .c-headline {
    padding-left: 15px;
    font-size: 20px;
  }
}

.c-hoverRun {
  text-decoration: none;
  color: black;
  background-image: linear-gradient(90deg, black, black);
  background-repeat: no-repeat;
  display: inline;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.5s;
}

@media screen and (min-width: 768px) {
  .c-hoverRun:hover {
    background-size: 100% 1px;
  }
}

.c-hoverUnderline {
  position: relative;
  display: inline-block;
}

.c-hoverUnderline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: black;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

@media screen and (min-width: 768px) {
  .c-hoverUnderline:hover::after {
    opacity: 1;
  }
}

.c-imgHover {
  position: relative;
}

.c-imgHover img {
  width: 50px;
  transition: 0.5s opacity;
}

.c-imgHover img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s opacity;
}

@media screen and (min-width: 768px) {
  .c-imgHover:hover img:nth-of-type(1) {
    opacity: 0;
    transition: 0.5s opacity;
  }

  .c-imgHover:hover img:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity;
  }
}

.c-link {
  position: relative;
  line-height: 1;
}

.c-link::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  right: -1em;
  top: 0.3em;
  background: url(画像のバスを入れる) center center/contain no-repeat;
}

.c-underBar {
  position: relative;
  display: inline-block;
}

.c-underBar::before {
  background-color: #333333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 1;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-underBar:hover:before {
    opacity: 0;
    transition: 0.5s all;
  }
}

.l-inner {
  width: 1200px;
  max-width: 100%;
  margin-inline: auto;
}



.l-section {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .l-section {
    padding: 0;
  }
}

.u-font12 {
  font-size: 12rem;
}

.u-font14 {
  font-size: 14rem;
}

.u-font16 {
  font-size: 16rem;
}

.u-font18 {
  font-size: 18rem;
}

.u-font20 {
  font-size: 20rem;
}

.u-font22 {
  font-size: 22rem;
}

.u-font24 {
  font-size: 24rem;
}

.u-font28 {
  font-size: 28rem;
}

.u-font32 {
  font-size: 32rem;
}

.u-font40 {
  font-size: 40rem;
}

.u-hover {
  transition: opacity 0.5s;
}

.u-hover:hover {
  opacity: 0.6;
  transition: opacity 0.5s;
}

.u-lh10 {
  line-height: 1;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh20 {
  line-height: 2;
}

.u-ls05 {
  letter-spacing: 0.05em;
}

.u-ls10 {
  letter-spacing: 0.1em;
}

.u-ls15 {
  letter-spacing: 0.15em;
}

.u-ls20 {
  letter-spacing: 0.2em;
}

@media screen and (max-width: 1200px) {
  .u-pc-1200 {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .u-tab {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .u-tab {
    display: block;
  }
}

@media screen and (min-width: 1501px) {
  .u-pc-1500 {
    display: none;
  }
}

@media screen and (max-width: 1500px) {
  .u-pc-1500 {
    display: block;
  }
}

@media screen and (max-width: 1200px) {
  .u-pc-1500 {
    display: none;
  }
}

.u-shadow {
  box-shadow: 0 0 13px rgba(195, 0, 0, 0.5);
}

.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-sm {
  display: none;
}

@media screen and (max-width: 524px) {
  .u-sm {
    display: block;
  }
}

.u-textLeft {
  text-align: Left !important;
}

.u-textCenter {
  text-align: Center !important;
}

.u-textRight {
  text-align: Right !important;
}

.u-textJustify {
  text-align: Justify !important;
}

@media screen and (max-width: 767px) {
  .u-textMdLeft {
    text-align: Left !important;
  }

  .u-textMdCenter {
    text-align: Center !important;
  }

  .u-textMdRight {
    text-align: Right !important;
  }

  .u-textMdJustify {
    text-align: Justify !important;
  }
}

.u-w300 {
  font-weight: 300;
}

.u-w400 {
  font-weight: 400;
}

.u-w500 {
  font-weight: 500;
}

.u-w600 {
  font-weight: 600;
}

.u-w700 {
  font-weight: 700;
}

.u-w900 {
  font-weight: 900;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  height: clamp(5rem,
      5rem + 0vw,
      5rem);
  background-color: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  height: inherit;
}

.header__left-wrapper {
  display: flex;
  align-items: center;
  -moz-column-gap: 18px;
  column-gap: 18px;
  -moz-column-gap: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  column-gap: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
}

.header__name {
  margin-right: auto;
  height: inherit;
  display: flex;
  align-items: center;
  width: 190px;
  width: clamp(10rem,
      9.531rem + 2.34vw,
      11.875rem);
}


.header__name-right {
  font-size: clamp(1.125rem,
      0.236rem + 1.39vw,
      1.625rem);
}

@media screen and (max-width: 768px) {
  .header__name-right {
    font-size: clamp(0.875rem,
        0.696rem + 0.89vw,
        1.125rem);
  }
}

.header__logo {
  width: 190px;
  width: clamp(10rem,
      9.531rem + 2.34vw,
      11.875rem);
  height: auto;
  aspect-ratio: 201/57;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.header__nav {
  height: inherit;
  display: flex;
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  height: inherit;
  display: flex;
  align-items: center;
  -moz-column-gap: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
  column-gap: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
  margin-right: 20px;
}

.header__list-right {
  display: flex;
  align-items: center;
  -moz-column-gap: 0;
  column-gap: 0;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__link {
  display: flex;
  align-items: center;
  font-size: 18px;
  letter-spacing: 0.01em;
  color: #000;
  height: inherit;
  position: relative;
  text-decoration: none;
}

@media screen and (max-width: 1440px) {
  .header__link {
    font-size: 16px;
  }
}

.header__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  bottom: 25px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.header__link:hover::after {
  transform: scale(1, 1.1);
}

.header__link-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: inherit;
}

.header__link--line {
  background-color: #1bb544;
  color: #fff;
  font-size: 15px;
  font-size: clamp(0.75rem,
      0.703rem + 0.23vw,
      0.938rem);
}

.header__link--calendar {
  background-color: #c30000;
  color: #fff;
  font-size: 15px;
  font-size: clamp(0.75rem,
      0.703rem + 0.23vw,
      0.938rem);
}

.header__link--line p,
.header__link--calendar p {
  margin-top: 5px;
}

.header__icon {
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.header__icon-line {
  width: 43px;
  width: clamp(2.25rem,
      2.141rem + 0.55vw,
      2.688rem);
  aspect-ratio: 45/43;
}

.header__icon-calender {
  width: 41px;
  width: clamp(2.563rem,
      2.563rem + 0vw,
      2.563rem);
  aspect-ratio: 1/1;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 20px;
  right: 15px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transition: transform 0.3s, background-color 0.3s;
  background-color: #000;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: opacity 0.3s;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  top: 15px;
  transform: rotate(-45deg);
  background-color: #000;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
  background-color: #000;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: none;
  z-index: 9998;
}

.drawer-menu.is-active {
  display: block;
}

.drawer-menu__inner {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-menu__list {
  width: 100%;
  height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.drawer-menu__item {
  display: inline-block;
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 25px;
}

.drawer-menu__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.drawer-menu__link {
  display: block;
  font-size: 18px;
  color: #000;
  text-align: center;
  width: 300px;
}

@media screen and (max-width: 524px) {
  .drawer-menu__link {
    width: 201px;
  }
}

.drawer-menu__link img {
  width: 150px;
  width: clamp(7.5rem,
      7.031rem + 2.34vw,
      9.375rem);
  height: auto;
  margin-inline: auto;
  aspect-ratio: 201/57;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.fv {
  width: 100%;
  position: relative;
  padding-top: 56px;
  margin-bottom: 100px;
}



.swiper-wrapper {
  position: relative;
}

.p-slider {
  height: 100%;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-slider {
    height: 100%;
  }
}

.p-slider .swiper-slide {
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
}

.p-slider .slide-img {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-slider .slide-img {
    height: 100%;
  }
}

.p-slider .slide-img img {
  width: 100%;
  aspect-ratio: 16/7;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-slider .slide-img img {
    aspect-ratio: 16/9;
    max-height: 60vh;
  }
}

.p-slider img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.my-swiper-button-prev,
.my-swiper-button-next {
  position: absolute;
  top: 49%;
  width: 40px;
  /* ボタンの幅 */
  height: 40px;
  /* ボタンの高さ */
  width: clamp(1.5rem,
      1.25rem + 1.25vw,
      2.5rem);
  height: clamp(1.5rem,
      1.25rem + 1.25vw,
      2.5rem);
  margin-top: -20px;
  /* ボタンの高さの半分 */
  margin-top: clamp(-1rem,
      -0.938rem + -0.31vw,
      -1.25rem);
  background-size: cover;
  z-index: 5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.my-swiper-button-prev:hover,
.my-swiper-button-next:hover {
  opacity: 0.8;
}

.my-swiper-button-prev {
  background-image: url("../images/arrow-left@2x.png");
  left: 17px;
  left: clamp(0.85rem,
      0.797rem + 0.27vw,
      1.063rem);
}

.my-swiper-button-next {
  background-image: url("../images/arrow-right@2x.png");
  right: 25px;
  right: clamp(1.25rem,
      1.172rem + 0.39vw,
      1.563rem);
}

.my-swiper-pagination {
  position: absolute !important;
  bottom: -40px !important;
  /* スライドの下端からの距離 */
  left: 50% !important;
  /* スライドの左端からの距離 */
  transform: translateX(-50%) !important;
  /* 横方向の中央揃え */
  z-index: 1 !important;
  text-align: center !important;
  /* 追加 */
}

.my-swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  /* bulletの幅 */
  height: 13px;
  /* bulletの高さ */
  background-color: #666666;
  /* bulletの背景色 */
  border: 1px solid #000;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .my-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    /* bulletの幅 */
    height: 8px;
    /* bulletの高さ */
    background-color: #666666;
    /* bulletの背景色 */
    border: 1px solid #000;
    border-radius: 50%;
  }
}


.swiper-container {
  position: relative;
}

.slide-content {
  position: absolute;
  top: 24.3%;
  left: 50.7%;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1200px) {
  .slide-content {
    top: 18%;
  }
}

@media screen and (max-width: 768px) {

  .slide-content {
    top: 22%;
    left: 0;
    right: 0;
    width: 70%;
    margin: auto;
  }
}


.slide-content h2 {
  font-size: 48px;
  font-size: clamp(1.5rem,
      0.115rem + 2.88vw,
      3rem);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.4375;
  text-shadow: 0px 0px 10px #000;
}

@media screen and (max-width: 768px) {
  .slide-content h2 {
    font-size: clamp(1.125rem,
        0.857rem + 1.34vw,
        1.5rem);
    /* text-wrap: nowrap; */
    text-align: center;
  }
}

.slide-content__text {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.4117647059;
  font-size: 34px;
  font-size: clamp(1.5rem,
      0.389rem + 1.74vw,
      2.125rem);
  margin-top: 31px;
  margin-top: clamp(1.5rem,
      1.391rem + 0.55vw,
      1.938rem);
  text-shadow: 0px 0px 10px #000;
}

@media screen and (max-width: 768px) {
  .slide-content__text {
    font-size: clamp(1rem,
        0.643rem + 1.79vw,
        1.5rem);
    text-wrap: nowrap;
    text-align: center;
  }
}

.slide-content__text span {
  font-size: 24px;
  font-size: clamp(1.063rem,
      0.729rem + 0.52vw,
      1.25rem);
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .slide-content__text span {
    font-size: clamp(0.875rem,
        0.741rem + 0.67vw,
        1.063rem);
    line-height: initial;
  }
}

.fv__sns-button {
  max-width: 370px;
}

.fv__button-wrapper {
  margin-top: 63px;
  margin-top: clamp(3rem,
      2.766rem + 1.17vw,
      3.938rem);
  margin-left: 4px;
  margin-left: clamp(0.188rem,
      0.172rem + 0.08vw,
      0.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 11px;
  column-gap: 11px;
  -moz-column-gap: clamp(0.563rem,
      0.531rem + 0.16vw,
      0.688rem);
  column-gap: clamp(0.563rem,
      0.531rem + 0.16vw,
      0.688rem);
}

@media screen and (max-width: 1200px) {
  .fv__button-wrapper {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 30px;
    row-gap: clamp(0.938rem,
        0.67rem + 1.34vw,
        1.875rem);
    margin-top: clamp(1.563rem,
        -0.993rem + 5.32vw,
        3rem);
  }
}

@media screen and (max-width: 768px) {
  .fv__button-wrapper {
    align-items: center;
  }
}

.button {
  width: 304px;
  width: clamp(15.188rem,
      14.234rem + 4.77vw,
      19rem);
  height: 58px;
  height: clamp(2.875rem,
      2.688rem + 0.94vw,
      3.625rem);
  padding: 3px 10px;
  padding: clamp(0.125rem,
      0.109rem + 0.08vw,
      0.188rem) clamp(0.5rem,
      0.469rem + 0.16vw,
      0.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 3px;
  column-gap: 3px;
  -moz-column-gap: clamp(0.125rem,
      0.109rem + 0.08vw,
      0.188rem);
  column-gap: clamp(0.125rem,
      0.109rem + 0.08vw,
      0.188rem);
  border: 1px solid #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.button--line {
  background-color: #1bb544;
  color: #fff;
  font-size: 25px;
  font-size: clamp(1.125rem,
      1.016rem + 0.55vw,
      1.563rem);
}

.button--line p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 0.92;
  margin-top: -10px;
  margin-top: clamp(-0.5rem,
      -0.469rem + -0.16vw,
      -0.625rem);
  font-size: 25px;
  font-size: clamp(1rem,
      0.859rem + 0.7vw,
      1.563rem);
  text-align: center;
}

.button--line img {
  width: 37px;
  width: clamp(1.813rem,
      1.688rem + 0.63vw,
      2.313rem);
  height: auto;
  aspect-ratio: 45/43;
  -o-object-fit: cover;
  object-fit: cover;
}

.button--line span {
  font-size: 13px;
  font-size: clamp(0.625rem,
      0.578rem + 0.23vw,
      0.813rem);
  line-height: 1.7692307692;
}

.button--calendar {
  background-color: #c30000;
  color: #fff;
  font-size: 16px;
  font-size: clamp(0.875rem,
      0.844rem + 0.16vw,
      1rem);
  position: relative;
}

.button--calendar::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 10px;
  right: clamp(0.5rem,
      0.469rem + 0.16vw,
      0.625rem);
  transform: translateY(-50%);
  font-size: 24px;
  font-size: clamp(1.188rem,
      1.109rem + 0.39vw,
      1.5rem);
}

.button--calendar p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: clamp(0.875rem,
      0.844rem + 0.16vw,
      1rem);
}

.button--calendar img {
  width: 25px;
  width: clamp(1.25rem,
      1.172rem + 0.39vw,
      1.563rem);
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: 20px;
  margin-left: clamp(1rem,
      0.938rem + 0.31vw,
      1.25rem);
}

.fv+.price {
  padding-bottom: 120px;
  padding-bottom: clamp(3.75rem,
      2.813rem + 4.69vw,
      7.5rem);
}

@media screen and (max-width: 768px) {
  .fv+.price {
    padding-top: 60px;
  }
}

.reason {
  width: 100%;
  background-color: #fff;
}

.reason__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.reason__title {
  font-size: 48px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .reason__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

.reason__title span {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .reason__title span {
    font-size: 18px;
  }
}

.p-media {
  display: flex;
  align-items: stretch;
  gap: 0;
}

@media screen and (max-width: 768px) {

  .p-media.p-media1,
  .p-media.p-media3 {
    flex-direction: column-reverse;
    gap: 0;
  }

  .p-media.p-media2 {
    flex-direction: column;
    gap: 0;
  }

}

.p-media__point {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p-media__point {
    width: 150px;
  }
}

.p-media__head {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .p-media__head {
    font-size: 20px;
  }
}

.p-media__txt {
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .p-media__txt {
    font-size: 14px;
  }
}

.p-media__body {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .p-media__body {
    padding: 30px 20px;
    width: 100%;
  }
}

.p-media__img {
  flex: 1;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-media__img {
    width: 100%;
  }
}

.p-media__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.p-media__body2 {
  -webkit-clip-path: polygon(0 0, 100% 0, 77% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 77% 100%, 0 100%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding-left: 1.6%;
  padding-top: 7%;
}

@media screen and (max-width: 1200px) {
  .p-media__body2 {
    width: 80%;
    -webkit-clip-path: none;
    clip-path: none;
    margin-inline: auto;
    padding-right: 20px;
    padding-right: clamp(0.75rem,
        0.568rem + 0.91vw,
        1.25rem);
    padding-left: 20px;
    padding-left: clamp(0.75rem,
        0.568rem + 0.91vw,
        1.25rem);
    text-align: center;
    padding-top: 20px;
    padding-top: clamp(0.75rem,
        0.568rem + 0.91vw,
        1.25rem);
    padding-bottom: 20px;
    padding-bottom: clamp(0.75rem,
        0.568rem + 0.91vw,
        1.25rem);
  }
}

@media screen and (max-width: 768px) {
  .p-media__body2 {
    width: 90%;
  }
}

@media screen and (max-width: 524px) {
  .p-media__body2 {
    width: 100%;
  }
}

.p-media__body2 .p-media__head {
  margin-top: 2px;
  margin-top: clamp(0.125rem,
      0.125rem + 0vw,
      0.125rem);
  line-height: 1.7;
  letter-spacing: -0.05em;
}

.p-media__body2 .p-media__txt {
  margin-top: 23px;
  margin-top: clamp(0.938rem,
      0.813rem + 0.63vw,
      1.438rem);
}

.p-cards {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  box-sizing: border-box;
  padding: 40px 20px;
}


.p-cards2 {
  background-color: rgba(0, 0, 0, 0.1);
  color: #000;
  padding-bottom: 41px;
  padding-bottom: clamp(1.281rem,
      0.961rem + 1.6vw,
      2.563rem);
}

@media screen and (max-width: 1200px) {
  .p-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.p-card__head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 20px;
}

.p-card__head img {
  width: 128px;
  width: clamp(6.375rem,
      5.969rem + 2.03vw,
      8rem);
  aspect-ratio: 128/67;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.p-card__head span {
  width: 128px;
  width: clamp(6.375rem,
      5.969rem + 2.03vw,
      8rem);
  margin-left: -18px;
}

.p-card__head .p-card__head-text {
  display: block;
  font-size: 24px;
  font-size: clamp(1.125rem,
      1.031rem + 0.47vw,
      1.5rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.1666666667;
  margin-top: -16px;
  width: initial;
  margin-left: 0;
}

@media screen and (max-width: 1440px) {
  .p-card__head .p-card__head-text {
    padding-left: 5px;
  }
}

@media screen and (max-width: 1200px) {
  .p-card__head .p-card__head-text {
    padding-left: 15px;
  }
}

@media screen and (max-width: 768px) {
  .p-card__head .p-card__head-text {
    margin-top: -8px;
  }
}

@media screen and (max-width: 375px) {
  .p-card__head .p-card__head-text {
    font-size: clamp(1rem,
        0.273rem + 3.64vw,
        1.125rem);
  }
}

.p-card__img {
  margin: 0 20px 20px 20px;
}

.p-card__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
}

@media screen and (max-width: 1200px) {
  .p-card__img {
    margin: 0 10px 20px 10px;
  }

  .p-card__img img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-card__head {
    padding: 0 15px;
    margin-bottom: 15px;
  }

  .p-card__img {
    margin: 0 15px 15px 15px;
  }

  .p-card__body {
    padding: 0 15px 15px 15px;
  }
}

.p-card__body {
  padding: 0 20px 20px 20px;
}

.p-card__txt {
  padding-top: 16px;
  padding-top: clamp(0.5rem,
      0.375rem + 0.63vw,
      1rem);
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  line-height: 1.8888888889;
  letter-spacing: -0.08em;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .p-card__txt {
    max-width: 500px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 524px) {
  .p-card__txt {
    max-width: 370px;
  }
}

/* 数字ハイライト用スタイル */
.highlight-number {
  font-weight: bold;
  font-size: 18px;
}

/* ========================================
   会員プラン（Membership）
   ======================================== */

.membership {
  padding: 80px 1rem 148px;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .membership {
    padding: 40px 1rem 80px;
  }
}


.membership__title {
  font-size: 40px;
  line-height: 1.3125;
  font-weight: 700;
  text-align: center;
}

.membership__title sub {
  font-size: clamp(0.8125rem, -0.4018rem + 2.5298vw, 1.875rem);
  font-weight: 400;
  vertical-align: baseline;
}

.membership__subtitle {
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem);
  line-height: 1.8888888889;
  display: block;
  margin-top: 5px;
}

.membership__note {
  text-align: center;
  margin: 30px 0;
}

/* キャンペーン */
.membership__campaign {
  margin: 2rem 0;
  text-align: center;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.membership__campaign-shops {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
  min-height: 80px;
}

.membership__campaign-shop {
  display: flex;
  align-items: center;
  justify-content: center;
}

.membership__campaign-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.membership__campaign p {
  font-size: clamp(1rem, 0.875rem + 0.63vw, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  color: #333;
}

.membership__campaign-highlight {
  background: #c30000;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.2em;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(195, 0, 0, 0.3);
  animation: pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.membership__campaign-highlight span {
  font-size: 1.6em;
}

@media screen and (max-width: 768px) {
  .membership__campaign {
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .membership__campaign-shops {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .membership__campaign-logo {
    height: 50px;
  }

  .membership__campaign p {
    font-size: 1rem;
  }

  .membership__campaign-highlight {
    padding: 0.8rem 1.5rem;
    font-size: 1.1em;
  }
}

@media screen and (max-width: 480px) {
  .membership__campaign {
    padding: 0.8rem;
    margin: 1rem 0;
  }

  .membership__campaign-logo {
    height: 40px;
  }

  .membership__campaign p {
    font-size: 0.9rem;
  }

  .membership__campaign-highlight {
    padding: 0.7rem 1.2rem;
    font-size: 1em;
    margin-top: 0.5rem;
  }
}

/* 入会金・特典 */
.membership__entry-info {
  display: flex;
  gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
  margin-top: clamp(1.25rem, 1.031rem + 1.09vw, 2.125rem);
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .membership__entry-info {
    flex-direction: column;
    align-items: stretch;
  }
}

.membership__entry-label {
  background-color: #333333;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  margin:0 auto 10px;
  width: 100%;
  max-width: 200px;
  line-height: 30px;
  font-size: 1.5rem;
}


.membership__benefits {
  width: 60%;
  display: flex;
  flex-direction: column;
}

.membership__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.membership__benefits-list li {
  margin-bottom: 5px;
  color: #000;
}

.membership__entry-card {
  width: 50%;
}

.membership__entry-title {
  font-size: clamp(1.125rem, 0.938rem + 0.94vw, 1.875rem);
  background-color: #007180;
  padding: clamp(0.563rem, 0.516rem + 0.23vw, 0.75rem);
  color: #fff;
  text-align: center;
  line-height: 0.9333333333;
}

.membership__entry-price {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.membership__benefits {
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .membership__benefits,
  .membership__entry-card {
    width: 100%;
  }

  .membership__entry-price {
    font-size: 25px;
    padding: 20px 0;
}

.membership__benefits-list{
  
}
}

.membership__benefits-header {
  display: flex;
  gap: clamp(0.656rem, 0.633rem + 0.12vw, 0.75rem);
  align-items: center;
}

.membership__benefits-title {
  font-size: clamp(1rem, 0.875rem + 0.63vw, 1.5rem);
  width: clamp(4.938rem, 4.613rem + 1.63vw, 6.238rem);
  height: clamp(4.938rem, 4.613rem + 1.63vw, 6.238rem);
  background-color: #007180;
  color: #fff;
  text-align: center;
  line-height: 1.1666666667;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.membership__benefits-list {
  list-style: none;
  padding: 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  width: fit-content;
    margin: auto;
}

.membership__benefits-list li {
  margin-bottom: 0.25rem;
}

.membership__benefits-text {
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem);
  line-height: 1.8888888889;
  margin-top: clamp(1.031rem, 0.93rem + 0.51vw, 1.438rem);
}

@media screen and (max-width: 768px) {
  .membership__benefits-text {
    margin-top: clamp(0.625rem, 0.402rem + 1.12vw, 0.938rem);
  }
}

/* 月会費プラン */
.membership__plans {
  margin-top: 50px;
  box-sizing: border-box;
  width: 100%;
}

.pricing-table {
  width: 100%;
  border: inherit;
  border-radius: 1rem;
  overflow: hidden;
}

.pricing-table thead th {
  background-color: #333333;
  color: white;
  text-align: center;
  font-weight: bold;
  border: none;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
  color: #333333;
}

.pricing-table tbody tr:nth-child(odd) {
  color: #333333;
}

.pricing-table tbody td {
line-height: 1.5;
  border: 1px solid #cccccc;
}

.pricing-table thead th,
.pricing-table tbody td {
  padding: 8px 5px;
}

.pricing-table tbody td:first-child {
  font-weight: 500;
}

.pricing-table tbody td:nth-child(2) {
  text-align: right;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .pricing-table {
    font-size: 0.9rem;
  }


}

.membership__plan {
  border: 1px solid #cccccc;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.membership__plan-name {
  font-size: 30px;
  padding: 15px;
  background-color: #007180;
  border: 1px solid #007180;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
}

.membership__plan-name span {
  font-size: clamp(0.813rem, 0.75rem + 0.31vw, 1.063rem);
  line-height: 1.6470588235;
}

.membership__plan-description {
  line-height: 1.5555555556;
  text-align: center;
  padding: 10px;
  flex: 0 0 85px;
}

.membership__plan-time {
  display: block;
  font-weight: 700;
  color: #007180;
  margin-top: 0.5rem;
}

.membership__plan-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.membership__detail-item {
  display: flex;
  align-items: center;
  margin: 15px 10px 10px;
}

.membership__detail-label {
  padding: 10px 5px;
  background-color: #333333;
  color: #fff;
  width: 83px;
  text-align: center;
  margin-right: 7px;
}


.membership__detail-value span {
  font-size: clamp(0.75rem, 0.688rem + 0.31vw, 1rem);
  line-height: 1.75;
}

/* 料金専用スタイル */
.membership__detail-price {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 0.7;
}

.membership__detail-price span {
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  .membership__detail-price span {
    display: inline-block;
  }
}

/* プラン注釈 */
.membership__notes {
  margin-top: 1.5rem;
}

.membership__notes-text {
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem);
  line-height: 1.6;
  margin: 0.5rem 0;
}

/* シングルショットプラン */
.membership__single-shot {
  margin-top: clamp(1.938rem, 1.453rem + 2.42vw, 3.875rem);
}

.single-shot-header {
  color: #333333;
  padding: 15px 20px;
  border-radius: 12px 12px 0 0;
  text-align: center;
  margin-bottom: 0;
}

.single-shot-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}


.single-shot-pricing-table {
  border-radius: 0.8rem;
  overflow: hidden;
}

.single-shot-pricing-table thead th {
  background-color: #333333;
  color: white;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  border: none;
}

.single-shot-pricing-table tbody tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.1);
}

.single-shot-pricing-table tbody tr:nth-child(odd) {
  color: #333333;
}

.single-shot-pricing-table tbody td {
  padding: 12px 10px;
  border: 1px solid #cccccc;
}

.single-shot-pricing-table tbody td:first-child {
  font-weight: 500;
}

.single-shot-pricing-table tbody td:nth-child(2) {
  text-align: right;
  font-weight: bold;
}

.membership__single-title sub {
  font-size: clamp(0.8125rem, -0.4018rem + 2.5298vw, 1.875rem);
  font-weight: 400;
  vertical-align: baseline;
}

.membership__single-title span {
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem);
  line-height: 1.8888888889;
  display: block;
  margin-top: 5px;
}

.membership__single-plans {
  display: flex;
  gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
  margin-top: clamp(0.938rem, 0.781rem + 0.78vw, 1.563rem);
  max-width: 770px;
  margin-inline: auto;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .membership__single-plans {
    flex-direction: column;
    align-items: center;
  }
}

.membership__single-item {
  flex: 1;
  border: 1px solid #cccccc;
  min-width: 280px;
}

@media screen and (max-width: 768px) {
  .membership__single-item {
    width: 100%;
  }
}

.membership__single-name {
  font-size: clamp(1.125rem, 1rem + 0.63vw, 1.625rem);
  font-weight: 600;
  background-color: #007180;
  padding: clamp(0.563rem, 0.516rem + 0.23vw, 0.75rem);
  color: #fff;
  text-align: center;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .membership__single-name {
    padding: 10px;
  }
}

.membership__single-price {
  font-size: 35px;
  font-weight: bold;
  line-height: 1.125;
  text-align: center;
  padding: 30px 0;
  letter-spacing: -0.01em;
}

.membership__single-price span {
  font-size: 12px;
}

/* CTA */
.membership__cta-text {
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem);
  line-height: 1.8888888889;
  text-align: center;
  margin-top: 50px;
  letter-spacing: 0.05em;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  .membership__cta-text {
    max-width: 80%;
    margin-inline: auto;
    margin-top: 30px;
    text-align: left;
  }
}

@media screen and (max-width: 524px) {
  .membership__cta-text {
    max-width: 100%;
  }
}

.membership__cta-title {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem);
  font-weight: 700;
}

.membership__cta-title::before,
.membership__cta-title::after {
  background: #007180;
  border-radius: 5px;
  content: "";
  height: 5px;
  width: 60px;
}

.membership__cta-title::before {
  transform: rotate(60deg);
}

.membership__cta-title::after {
  transform: rotate(-60deg);
}


.free-trial .price__plan-text {
  font-size: 22px;
  font-size: clamp(0.75rem,
      0.594rem + 0.78vw,
      1.375rem);
  line-height: 1.5454545455;
}

.free-trial .price__title span {
  font-size: 22px;
  font-size: clamp(0.75rem,
      0.594rem + 0.78vw,
      1.375rem);
}

.free-trial span {
  line-height: 1.5454545455;
}

.free-trial span.u-sm {
  display: inline-block;
  font-size: 22px;
  font-size: clamp(0.75rem,
      0.594rem + 0.78vw,
      1.375rem);
  line-height: 1.5454545455;
}

@media screen and (max-width: 524px) {
  .free-trial span.u-sm {
    display: inline-block;
    margin-top: 0;
  }
}

.price__content {
  margin-top: 34px;
  margin-top: clamp(1.25rem,
      1.031rem + 1.09vw,
      2.125rem);
  align-items: center;
}

.price__content1 {
  display: flex;
  gap: 30px;
  gap: clamp(0.938rem,
      0.703rem + 1.17vw,
      1.875rem);
}

@media screen and (max-width: 768px) {
  .price__content1 {
    flex-direction: column;
    align-items: center;
  }
}

.price__content3 {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
  .price__content3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.price__card {
  border: 1px solid #cccccc;
  height: 100%;
}

.price__card1 {
  width: 57%;
}

@media screen and (max-width: 1024px) {
  .price__card1 {
    width: 45%;
  }
}

@media screen and (max-width: 768px) {
  .price__card1 {
    width: 100%;
  }
}

.price__head {
  font-size: 30px;
  font-size: clamp(1.125rem,
      0.938rem + 0.94vw,
      1.875rem);
  background-color: #007180;
  padding: 12px;
  padding: clamp(0.563rem,
      0.516rem + 0.23vw,
      0.75rem);
  color: #fff;
  text-align: center;
  line-height: 0.9333333333;
}

.price__head.price__head3 {
  width: 366px;
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .price__head.price__head3 {
    width: 180px;
    padding: 10px;
  }
}

.price__price {
  font-size: 48px;
  font-size: clamp(1.25rem,
      0.813rem + 2.19vw,
      3rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.125;
  text-align: center;
  padding-top: 58px;
  padding-top: clamp(1.75rem,
      1.281rem + 2.34vw,
      3.625rem);
  padding-bottom: 45px;
  padding-bottom: clamp(1.406rem,
      1.055rem + 1.76vw,
      2.813rem);
  letter-spacing: -0.01em;
}

.price__price span {
  font-size: 21px;
  font-size: clamp(0.875rem,
      0.766rem + 0.55vw,
      1.313rem);
  line-height: 2.5714285714;
}

.price__body-head {
  display: flex;
  -moz-column-gap: 12px;
  column-gap: 12px;
  -moz-column-gap: clamp(0.656rem,
      0.633rem + 0.12vw,
      0.75rem);
  column-gap: clamp(0.656rem,
      0.633rem + 0.12vw,
      0.75rem);
  align-items: center;
}

.price__body-left {
  font-size: 24px;
  font-size: clamp(1rem,
      0.875rem + 0.63vw,
      1.5rem);
  width: 99.8px;
  width: clamp(4.938rem,
      4.613rem + 1.63vw,
      6.238rem);
  height: 99.8px;
  height: clamp(4.938rem,
      4.613rem + 1.63vw,
      6.238rem);
  background-color: #007180;
  color: #fff;
  text-align: center;
  line-height: 1.1666666667;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price__body-right {
  font-size: 22px;
  font-size: clamp(0.813rem,
      0.672rem + 0.7vw,
      1.375rem);
  line-height: 1.7727272727;
}

.price__body-text {
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  line-height: 1.8888888889;
  margin-top: 23px;
  margin-top: clamp(1.031rem,
      0.93rem + 0.51vw,
      1.438rem);
}

@media screen and (max-width: 768px) {
  .price__body-text {
    margin-top: 15px;
    margin-top: clamp(0.625rem,
        0.402rem + 1.12vw,
        0.938rem);
  }
}

.price__plan {
  margin-top: 52px;
  margin-top: clamp(1.625rem,
      1.219rem + 2.03vw,
      3.25rem);
}

.price__plan2 {
  margin-top: 62px;
  margin-top: clamp(1.938rem,
      1.453rem + 2.42vw,
      3.875rem);
}

.price__plan-title {
  font-size: 43px;
  font-size: clamp(1.25rem,
      0.891rem + 1.8vw,
      2.688rem);
  line-height: 1.2325581395;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 1px solid #007180;
}

.price__plan-title span {
  font-size: 22px;
  font-size: clamp(0.875rem,
      0.75rem + 0.63vw,
      1.375rem);
  line-height: 1.5454545455;
}

.price__plan-text {
  font-size: 22px;
  font-size: clamp(0.813rem,
      0.672rem + 0.7vw,
      1.375rem);
  line-height: 1.5454545455;
  text-align: center;
  margin-top: 20px;
  margin-top: clamp(0.625rem,
      0.469rem + 0.78vw,
      1.25rem);
  letter-spacing: -0.05em;
}

.price__plan-text2 {
  margin-top: 30px;
  margin-top: clamp(0.938rem,
      0.703rem + 1.17vw,
      1.875rem);
}

.price__plan-text span {
  font-size: 16px;
  font-size: clamp(0.75rem,
      0.688rem + 0.31vw,
      1rem);
  line-height: 2.125;
  margin-top: 1px;
}

.price__content2 {
  -moz-column-gap: 30px;
  column-gap: 30px;
  -moz-column-gap: clamp(0.938rem,
      0.703rem + 1.17vw,
      1.875rem);
  column-gap: clamp(0.938rem,
      0.703rem + 1.17vw,
      1.875rem);
  margin-top: 25px;
  margin-top: clamp(0.938rem,
      0.781rem + 0.78vw,
      1.563rem);
  max-width: 770px;
  margin-inline: auto;
}

.price__head2 {
  font-size: 26px;
  font-size: clamp(1.125rem,
      1rem + 0.63vw,
      1.625rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  padding: 10px;
  padding: clamp(0.313rem,
      0.234rem + 0.39vw,
      0.625rem);
}

.price__head2 span {
  font-size: 17px;
  font-size: clamp(0.813rem,
      0.75rem + 0.31vw,
      1.063rem);
  line-height: 1.6470588235;
}

.price__head3 {
  font-size: clamp(1.125rem,
      1rem + 0.63vw,
      1.625rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.price__head3 span {
  font-size: 17px;
  font-size: clamp(0.813rem,
      0.75rem + 0.31vw,
      1.063rem);
  line-height: 1.6470588235;
}

.price__price2 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.price__price-outer {
  padding-top: 11px;
  padding-top: clamp(0.5rem,
      0.453rem + 0.23vw,
      0.688rem);
  padding-bottom: 10px;
  padding-bottom: clamp(0.313rem,
      0.234rem + 0.39vw,
      0.625rem);
}

.price__price-outer3 {
  padding-bottom: 22px;
  padding-bottom: clamp(0.688rem,
      0.516rem + 0.86vw,
      1.375rem);
}

.price__price-outer4 {
  padding-bottom: 20px;
}

.price__price-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
}

.price__price-inner {
  display: flex;
  align-items: center;
  margin-left: 13px;
}

.price__price-left {
  font-size: 17px;
  font-size: clamp(0.813rem,
      0.75rem + 0.31vw,
      1.063rem);
  padding: 3px 7px;
  background-color: #333333;
  color: #fff;
}

.price__price-left.price__price-left2 {
  width: 83px;
  text-align: center;
  margin-right: 7px;
}

.price__price-left5 {
  padding: 3px 15px;
}

.price__price-explanation {
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  line-height: 1.5555555556;
  text-align: center;
}

.price__price-explanation.price__price-explanation1 {
  padding: 15px;
  height: 79px;
  font-size: clamp(0.875rem, 0.7321rem + 0.2976vw, 1rem);
}


.price__price-explanation5 {
  margin-top: -6px;
}

.price__card3 {
  max-width: 570px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .price__card3 {
    width: 100%;
  }
}

.price__plus {
  font-size: 60px;
  font-size: clamp(1.875rem,
      1.406rem + 2.34vw,
      3.75rem);
  text-align: center;
  margin-top: -4px;
  margin-bottom: 1px;
}

.price__card5 {
  margin-top: 18px;
  margin-top: clamp(0.563rem,
      0.422rem + 0.7vw,
      1.125rem);
  border: none;
}

.price__head5 {
  background-color: #fff;
  font-size: 24px;
  font-size: clamp(1rem,
      0.875rem + 0.63vw,
      1.5rem);
  color: #000;
  letter-spacing: -0.05em;
}

.price__price-explanation span {
  font-size: 16px;
  font-size: clamp(0.75rem,
      0.688rem + 0.31vw,
      1rem);
  line-height: 1.75;
}



img.price__icon-calendar {
  width: 30px;
  width: clamp(1.5rem,
      1.406rem + 0.47vw,
      1.875rem);
}


.staff {
  padding-top: 100px;
  padding-top: clamp(3.125rem,
      2.344rem + 3.91vw,
      6.25rem);
  padding-bottom: 100px;
  padding-bottom: clamp(3.125rem,
      2.344rem + 3.91vw,
      6.25rem);
  background-color: rgba(0, 113, 128, 0.1);
  overflow: hidden;
}

.staff__inner {
  overflow: hidden;
}

.staff__title {
  font-size: 48px;
  font-size: clamp(1.5rem,
      1.125rem + 1.88vw,
      3rem);
  line-height: 1.3125;
  text-align: center;
  font-weight: 700;
}

.staff__title-text {
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  line-height: 1.8888888889;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.05em;
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .staff__title-text {
    max-width: 80%;
    margin-inline: auto;
    margin-top: 15px;
    margin-top: clamp(0.625rem,
        0.402rem + 1.12vw,
        0.938rem);
    text-align: left;
  }
}

@media screen and (max-width: 524px) {
  .staff__title-text {
    max-width: 100%;
  }
}

.staff__title-text2 {
  margin-top: 50px;
  text-align: center;
}

.staff__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-inline: auto;
  padding: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .staff__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.staff__card {
  overflow: hidden;
}

.staff__img img {
  width: 100%;
  aspect-ratio: 532/681;
  object-fit: cover;
  height: auto;
  display: block;
}

.staff__body {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
}

@media screen and (max-width: 768px) {
  .staff__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.staff__name {
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  font-weight: 700;
  color: #fff;
}

.staff__text {
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1rem);
  line-height: 1.6;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .staff__text {
    font-size: 0.875rem;
  }
}

.trial {
  padding: 130px 1rem;
}

.trial__title {
  font-size: 48px;
  font-size: clamp(1.5rem,
      1.125rem + 1.88vw,
      3rem);
  line-height: 1.3125;
  text-align: center;
  font-weight: 700;
  color: #007180;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-left: 16%;
}

@media screen and (max-width: 768px) {
  .trial__title {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-img {
    width: 130px;
    width: clamp(6.5rem,
        6.094rem + 2.03vw,
        8.125rem);
    aspect-ratio: 181/133;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
    margin-inline: auto;
    margin-left: 125px;
  }
}

@media screen and (max-width: 524px) {
  .u-sp-img {
    margin-left: 18px;
  }
}

.trial__title-blue {
  font-size: 72px;
  font-size: clamp(2.25rem,
      1.688rem + 2.81vw,
      4.5rem);
  line-height: 0.875;
  color: #fff;
  background-color: #007180;
  width: 110px;
  width: clamp(3.438rem,
      2.578rem + 4.3vw,
      6.875rem);
  height: 110px;
  height: clamp(3.438rem,
      2.578rem + 4.3vw,
      6.875rem);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.trial__title-number {
  position: relative;
  top: -5px;
}

.trial__title-small {
  font-size: 48px;
  font-size: clamp(1.5rem,
      1.125rem + 1.88vw,
      3rem);
  line-height: 1.3125;
  position: relative;
  top: -4px;
}

.trial__title-img {
  width: 181px;
  width: clamp(9.05rem,
      8.484rem + 2.83vw,
      11.313rem);
  aspect-ratio: 181/133;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  position: absolute;
  left: 11%;
  top: -17%;
}

@media screen and (max-width: 1024px) {
  .trial__title-img {
    left: 3%;
    top: -27%;
  }
}

@media screen and (max-width: 768px) {
  .trial__title-img {
    display: none;
  }
}

.trial__text {
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  line-height: 1.8888888889;
  text-align: center;
  letter-spacing: -0.05em;
  margin-top: 11px;
  margin-top: clamp(0.344rem,
      0.258rem + 0.43vw,
      0.688rem);
}

.top_experience_plan_content {
  position: relative;
}

.top_experience_plan_scroll_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  animation: fadeInOut 3s ease-in-out;
}

.scroll-hint-icon {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.scroll-hint-arrows {
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}

.scroll-hint-text {
  font-size: 14px;
  font-weight: bold;
  text-transform: lowercase;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }

  20% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  80% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* スクロール用ラッパー */
.top_experience_plan_table-wrapper {
  width: 100%;
  position: relative;
}

.top_experience_plan_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  margin-top: clamp(0.656rem,
      0.352rem + 1.52vw,
      1.875rem);
}

@media screen and (max-width: 768px) {

  /* ラッパーに横スクロールを付与 */
  .top_experience_plan_table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* テーブルは"はみ出す幅"を持たせる（＝横スクロールの対象になる） */
  .top_experience_plan_table {
    width: 820px;
    min-width: 820px;
  }

  .top_experience_plan_table th {
    font-size: 18px;
    padding: 20px 15px;
    white-space: nowrap;
    min-width: 200px;
  }

  .top_experience_plan_table td {
    font-size: 16px;
    padding: 15px;
    min-width: 200px;
    white-space: nowrap;
  }

  .top_experience_plan_table th:first-child,
  .top_experience_plan_table td:first-child {
    min-width: 150px;
  }

  .top_experience_plan_price_large {
    font-size: 28px;
  }

  .top_experience_plan_campaign_badge {
    width: 80px;
    font-size: 10px;
    padding: 2px 4px;
  }

  .top_experience_plan_price_arrow {
    font-size: 16px;
  }
}

.top_experience_plan_table th:nth-child(n+2) {
  background-color: #007180;
  color: #ffff00;
  font-size: 24px;
  padding: 34px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}

.top_experience_plan_table td:first-child {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000;
}

.top_experience_plan_table td {
  font-size: 24px;
  padding: 10px;
  text-align: center;
  line-height: 1.5;
  vertical-align: middle;
}

.top_experience_plan_table th:first-child {
  background-color: transparent;
  color: transparent;
}

.top_experience_plan_table th:nth-child(1),
.top_experience_plan_table td:nth-child(1) {
  width: 20%;
}

.top_experience_plan_table th:nth-child(2),
.top_experience_plan_table td:nth-child(2),
.top_experience_plan_table th:nth-child(3),
.top_experience_plan_table td:nth-child(3) {
  width: 40%;
}

.top_experience_plan_table th,
.top_experience_plan_table td {
  border: 1.14px solid #808080;
}

.top_experience_plan_table th:first-child {
  border-left: none;
  border-top: none;
}

.top_experience_plan_table tr:nth-of-type(5) td,
.top_experience_plan_table tr:nth-of-type(6) td {
  padding: 13px 10px;
  padding: clamp(0.406rem,
      0.305rem + 0.51vw,
      0.813rem) clamp(0.313rem,
      0.234rem + 0.39vw,
      0.625rem);
}

.trial__table-text {
  font-size: 18px;
  line-height: 1.8888888889;
  margin-top: 20px;
  margin-top: clamp(0.625rem,
      0.469rem + 0.78vw,
      1.25rem);
}

@media screen and (max-width: 768px) {
  .trial__table-text {
    text-indent: -1em;
    padding-left: 1em;
  }
}

.trial__table-text+.trial__table-text {
  margin-top: 0;
}

.trial__pictures {
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trial__pictures img {
  width: 100%;
  height: auto;
  aspect-ratio: 535/378;
  -o-object-fit: cover;
  object-fit: cover;
}

.news {
  padding: 50px 10px;
  box-sizing: border-box;
  width: 100%;
  background-color: rgba(0, 113, 128, 0.1);
}

.news__inner {
  display: flex;
  -moz-column-gap: 55px;
  column-gap: 55px;
  -moz-column-gap: clamp(1.719rem,
      1.289rem + 2.15vw,
      3.438rem);
  column-gap: clamp(1.719rem,
      1.289rem + 2.15vw,
      3.438rem);
  row-gap: 30px;
  row-gap: clamp(0.938rem,
      0.703rem + 1.17vw,
      1.875rem);
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .news__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1024px) {
  .news__content-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin-inline: auto;
  }
}

.news__title {
  font-size: 48px;
  font-size: clamp(1.5rem,
      1.125rem + 1.88vw,
      3rem);
  line-height: 1.3125;
  color: #007180;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  margin-top: 13px;
  margin-top: clamp(0.406rem,
      0.305rem + 0.51vw,
      0.813rem);
}

@media screen and (max-width: 1024px) {
  .news__title {
    margin-top: 0;
  }
}

.news__button {
  width: 241px;
  width: clamp(12.05rem,
      11.297rem + 3.77vw,
      15.063rem);
  height: 61px;
  height: clamp(1.906rem,
      1.43rem + 2.38vw,
      3.813rem);
  display: grid;
  place-content: center;
  background-color: #fff;
  position: relative;
  margin-top: 215px;
  margin-top: clamp(6.719rem,
      5.039rem + 8.4vw,
      13.438rem);
  border: 1px solid #000;
  margin-top: 211px;
  margin-top: clamp(6.563rem,
      4.906rem + 8.28vw,
      13.188rem);
  color: #000;
}

@media screen and (max-width: 1024px) {
  .news__button {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .news__button {
    width: 192px;
    width: clamp(9.375rem,
        8.719rem + 3.28vw,
        12rem);
  }
}

.news__button::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 10px;
  right: clamp(0.5rem,
      0.469rem + 0.16vw,
      0.625rem);
  transform: translateY(-50%);
  font-size: 24px;
  font-size: clamp(1.188rem,
      1.109rem + 0.39vw,
      1.5rem);
}

.news__content-right {
  max-width: 868px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .news__content-right {
    width: 100%;
    margin-inline: auto;
  }
}

.news__list {
  width: 100%;
}

.news__item {
  display: flex;
  width: 100%;
  padding: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem) 0 clamp(0.625rem, 0.484rem + 0.7vw, 1.188rem);
  border-bottom: 1.11px solid #808080;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .news__item {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(0.625rem, 0.469rem + 0.78vw, 1.25rem);
  }
}

.news__item a {
  width: 100%;
}

.news__link {
  display: flex;
  align-items: center;
  width: 100%;
  color: #000;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .news__link {
    flex-wrap: wrap;
  }
}

.news__date {
  padding-left: clamp(0.781rem, 0.586rem + 0.98vw, 1.563rem);
  font-size: clamp(0.75rem, 0.625rem + 0.62vw, 1.249rem);
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .news__date {
    padding-left: 0;
  }
}

.news__item-title {
  margin-left: clamp(1.25rem, 0.938rem + 1.56vw, 2.5rem);
  font-size: clamp(0.75rem, 0.625rem + 0.62vw, 1.249rem);
  letter-spacing: -0.05em;
  color: #000;
}

@media screen and (max-width: 768px) {
  .news__item-title {
    margin-left: 0;
  }
}

.news__new {
  color: #c30000;
  margin-left: clamp(0.469rem, 0.352rem + 0.59vw, 0.938rem);
  font-size: clamp(0.75rem, 0.625rem + 0.62vw, 1.249rem);
}

@media screen and (max-width: 768px) {
  .news__new {
    margin-left: 0;
  }
}

.news__new-sp {
  display: inline-block;
  font-size: clamp(0.75rem, 0.625rem + 0.62vw, 1.249rem);
  padding-left: 10px;
  color: #c30000;
}

@media screen and (max-width: 768px) {
  .news__new-sp {
    display: inline-block;
  }
}

.sns {
  padding: 140px 10px;
  box-sizing: border-box;
  width: 100%;
}


.sns__title {
  font-size: 48px;
  font-size: clamp(1.5rem,
      1.125rem + 1.88vw,
      3rem);
  line-height: 1.3125;
  text-align: center;
  font-weight: 700;
}

.sns__text {
  margin-top: 15px;
  margin-top: clamp(0.469rem,
      0.352rem + 0.59vw,
      0.938rem);
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  line-height: 1.8888888889;
  text-align: center;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 524px) {
  .sns__text {
    text-align: left;
  }
}

.sns__text+.sns__text {
  margin-top: 32px;
  margin-top: clamp(1rem,
      0.75rem + 1.25vw,
      2rem);
}

@media screen and (max-width: 768px) {
  .sns__text+.sns__text {
    margin-top: 20px;
    margin-top: clamp(0.625rem,
        0.179rem + 2.23vw,
        1.25rem);
  }
}

.sns__content {
  margin: 0 auto;
  max-width: 1200px;
}

.sns__button {
  width: clamp(23.5rem, 22.031rem + 7.34vw, 29.375rem);
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -moz-column-gap: clamp(0.313rem, 0.234rem + 0.39vw, 0.625rem);
  column-gap: clamp(0.313rem, 0.234rem + 0.39vw, 0.625rem);
  font-size: 22px;
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.375rem);
  background-image: linear-gradient(to right, #df551d, #e02337, #de155b);
  margin-inline: auto;
  margin-top: 60px;
  margin-top: clamp(1.875rem, 1.406rem + 2.34vw, 3.75rem);
  color: #fff;
}


.sns__button img {
  width: 47px;
  width: clamp(2.35rem,
      2.203rem + 0.73vw,
      2.938rem);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.faq {
  padding: 50px 10px;
  box-sizing: border-box;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}


.faq__title {
  font-size: 48px;
  font-size: clamp(1.5rem,
      1.125rem + 1.88vw,
      3rem);
  line-height: 1.3125;
  text-align: center;
  font-weight: 700;
}

.faq__items {
  margin-top: clamp(1.25rem, 0.859rem + 1.95vw, 2.813rem);
}

.faq__item {
  margin-top: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
}

.faq__item+.faq__item {
  margin-top: clamp(1.375rem, 1.031rem + 1.72vw, 2.75rem);
}

.faq__question {
  position: relative;
  padding: 28px 84px 28px 69px;
  background-color: #fff;
  border-radius: 16px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .faq__question {
    padding: 15px 52px 15px 50px;
    border-radius: 12px;
  }
}

@media screen and (max-width: 524px) {
  .faq__question {
    padding: 15px 40px 15px 40px;
  }
}

.faq__question.is-open {
  border-radius: 16px 16px 0 0;
}

@media screen and (max-width: 768px) {
  .faq__question.is-open {
    border-radius: 12px 12px 0 0;
  }
}

.faq__q-label {
  font-size: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem);
  padding-right: clamp(1.05rem, 0.984rem + 0.33vw, 1.313rem);
  border-right: 1px solid #007180;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 43px;
  color: #007180;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .faq__q-label {
    left: 5%;
  }
}

@media screen and (max-width: 524px) {
  .faq__q-label {
    padding-right: clamp(1rem, -0.455rem + 7.27vw, 1.25rem);
  }
}

.faq__icon::before,
.faq__icon::after {
  position: absolute;
  content: "";
  right: 36px;
  top: 50%;
  width: 19px;
  height: 3px;
  border-radius: 6px;
  background-color: #000;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

@media screen and (max-width: 768px) {

  .faq__icon::before,
  .faq__icon::after {
    width: 10px;
    height: 1.5px;
    border-radius: 3px;
    right: 3%;
  }
}

.faq__icon::before {
  transform: rotate(90deg);
}

.faq__icon.is-open::before {
  transform: rotate(180deg);
}

.faq__icon.is-open::after {
  opacity: 0;
}

.faq__q-text {
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem);
  line-height: 1.8;
  padding-left: 27px;
}

@media screen and (max-width: 1024px) {
  .faq__q-text {
    padding-left: 55px;
  }
}

@media screen and (max-width: 524px) {
  .faq__q-text {
    padding-left: 33px;
    padding-right: 1em;
  }
}

.faq__answer {
  position: relative;
  border-radius: 0 0 16px 16px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.faq__answer.is-open {
  max-height: 500px;
}

.faq__a-label {
  position: absolute;
  top: 30px;
  left: 43px;
  color: #000;
  font-size: clamp(1.25rem, 1.094rem + 0.78vw, 1.875rem);
  padding-right: 25px;
  border-right: 1px solid #007180;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .faq__answer {
    border-radius: 0 0 12px 12px;
  }

  .faq__a-label {
    left: 5%;
    padding-right: 22px;
    top: 20px;
  }
}

@media screen and (max-width: 524px) {
  .faq__a-label {
    padding-right: clamp(1rem, -0.455rem + 7.27vw, 1.25rem);
  }
}

.faq__a-text {
  padding: 26px 24px 36px 110px;
  font-size: clamp(0.875rem, 0.813rem + 0.31vw, 1.125rem);
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .faq__a-text {
    padding: 20px 16px 20px 90px;
  }
}

@media screen and (max-width: 524px) {
  .faq__a-text {
    padding: 16px;
    padding-left: 70px;
  }
}

.access {
  padding: 50px 10px;
  box-sizing: border-box;
  width: 100%;
}


.access__shop {
  margin-top: clamp(1.25rem, 0.938rem + 1.56vw, 2.5rem);
  padding-bottom: clamp(1.813rem, 1.359rem + 2.27vw, 3.625rem);
  display: flex;
  gap: clamp(2.063rem, 1.547rem + 2.58vw, 4.125rem);
  align-items: center;
}

@media screen and (max-width: 768px) {
  .access__shop {
    flex-direction: column;
    gap: clamp(1.25rem, 0.357rem + 4.46vw, 2.5rem);
  }
}

.access__shop-info {
  flex: 1;
}

.access__shop-badge {
  background: #c30000;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin: 1rem 0;
  box-shadow: 0 8px 32px rgba(195, 0, 0, 0.3);
}





@media screen and (max-width: 768px) {
  .access__shop-badge {
    padding: 0.8rem 1.5rem;
    font-size: 1.3rem;
    margin: 0.8rem 0;
  }
}

@media screen and (max-width: 480px) {
  .access__shop-badge {
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
    margin: 0.6rem 0;
  }
}

.access__shop-header {
  margin-bottom: 1.5rem;
}

.access__shop-logo {
  display: block;
  width: 80%;
  margin: auto;
  object-fit: contain;
  flex-shrink: 0;
}


.access__shop-name {
  font-size: 23px;
  font-weight: bold;
  margin: 20px 0 0;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .access__shop-name {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .access__shop-name {
    font-size: 18px;
  }
}

.access__title {
  font-size: 48px;
  font-size: clamp(1.5rem,
      1.125rem + 1.88vw,
      3rem);
  line-height: 1.3125;
  text-align: center;
  font-weight: 700;
}

.access__details {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.access__detail {
  padding: clamp(0.625rem, 0.531rem + 0.47vw, 1rem) 0;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .access__detail {
    flex-direction: column;
  }
}

.access__detail-label {
  font-size: clamp(1rem, 0.922rem + 0.39vw, 1.313rem);
  letter-spacing: 0.05em;
  width: 17%;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .access__detail-label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.access__detail-text {
  font-size: clamp(1rem, 0.922rem + 0.39vw, 1.313rem);
  letter-spacing: -0.05em;
  width: 83%;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .access__detail-text {
    width: 100%;
  }
}

.access__map {
  flex: 1;
  max-width: 50%;
}

@media screen and (max-width: 768px) {
  .access__map {
    max-width: 100%;
    width: 100%;
  }
}

.access__map iframe {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
}



.footer__nav {
  width: 100%;
  background-color: #000;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 30px;
  gap: clamp(0.625rem,
      0.313rem + 1.56vw,
      1.875rem);
}

@media screen and (max-width: 524px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-item+.footer__nav-item {
  margin-left: 24px;
  margin-left: clamp(0.75rem,
      0.563rem + 0.94vw,
      1.5rem);
}

@media screen and (max-width: 524px) {
  .footer__nav-item+.footer__nav-item {
    margin: 0;
  }
}

.footer__nav-link {
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer__nav-link {
    font-size: clamp(0.75rem,
        0.661rem + 0.45vw,
        0.875rem);
  }
}

.footer__link {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-size: clamp(1rem, 0.778rem + 0.35vw, 1.125rem);
  letter-spacing: 0.01em;
  color: #fff;
  height: inherit;
  position: relative;
}

.footer__logo {
  margin-top: 34px;
  margin-top: clamp(1.063rem,
      0.797rem + 1.33vw,
      2.125rem);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer__logo img {
  width: 231px;
  width: clamp(11.55rem,
      10.828rem + 3.61vw,
      14.438rem);
  aspect-ratio: 231/66;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  text-align: center;
  width: 190px;
  width: clamp(10rem,
      9.531rem + 2.34vw,
      11.875rem);
}

@media screen and (max-width: 768px) {
  .footer__logo img {
    width: 150px;
    width: clamp(7.5rem,
        7.031rem + 2.34vw,
        9.375rem);
  }
}




.footer__logo p {
  font-size: 16px;
  font-size: clamp(0.75rem,
      0.688rem + 0.31vw,
      1rem);
}


p.footer__icon-line {
  width: 45px;
  width: clamp(2.25rem,
      2.109rem + 0.7vw,
      2.813rem);
  aspect-ratio: 45/42;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.footer__icon-calendar {
  width: 30px;
  width: clamp(1.5rem,
      1.406rem + 0.47vw,
      1.875rem);
  aspect-ratio: 30/31;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.footer__text-wrap {
  width: 100%;
  text-align: center;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px;
  margin-bottom: 80px;
  box-sizing: border-box;
}

.footer__text-wrap small {
  color: #000;
}

.button--calendar-footer {
  background-color: #c30000;
  color: #fff;
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
}

.footer__inner {
  padding-bottom: 42px;
  padding-bottom: clamp(1.313rem,
      0.984rem + 1.64vw,
      2.625rem);
}

.page-top {
  position: fixed;
  bottom: 71px;
  right: 25px;
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media screen and (max-width: 1200px) {
  .page-top {
    bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .page-top {
    bottom: 40px;
    right: 15px;
  }
}

.page-top img {
  width: 61px;
  height: 61px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .page-top img {
    width: 40px;
    height: 40px;
  }
}

.stickynav {
  display: none;
}

@media screen and (max-width: 1200px) {
  .stickynav {
    display: grid;
    position: fixed;
    grid-template-columns: repeat(2, 1fr);
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
  }
}

.stickynav__item {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  -moz-column-gap: clamp(0.313rem,
      0.234rem + 0.39vw,
      0.625rem);
  column-gap: clamp(0.313rem,
      0.234rem + 0.39vw,
      0.625rem);
  color: #fff;
  font-size: 18px;
  font-size: clamp(0.875rem,
      0.813rem + 0.31vw,
      1.125rem);
  padding: 8px 20px;
  padding: clamp(0.25rem,
      0.188rem + 0.31vw,
      0.5rem) clamp(0.625rem,
      0.469rem + 0.78vw,
      1.25rem);
}

@media screen and (max-width: 768px) {
  .stickynav__item {
    font-size: clamp(0.75rem,
        0.661rem + 0.45vw,
        0.875rem);
  }
}

.stickynav__item a {
  color: #fff;
}

.stickynav-line {
  background-color: #1bb544;
}

.stickynav-line img {
  width: 30px;
  width: clamp(1.25rem,
      1.094rem + 0.78vw,
      1.875rem);
  aspect-ratio: 30/30;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}

.stickynav-calender {
  background-color: #c30000;
}

.stickynav-calender img {
  width: 30px;
  width: clamp(1.25rem,
      1.094rem + 0.78vw,
      1.875rem);
  aspect-ratio: 30/30;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
}


#sb_instagram #sbi_load .sbi_follow_btn {
  display: none;
}

.swiper2 .swiper-slide {
  margin-right: 30px;
}

.swiper2 .swiper-wrapper {
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .p-media__body {
    text-align: left;
  }

  .swiper2 .swiper-slide {
    width: 100%;
    margin-bottom: 30px;
  }

  .swiper2 .swiper-wrapper {
    display: block;
  }
}



@media screen and (max-width: 768px) {
  .p-media__txt span.u-sp {
    display: inline;
  }
}

/* ==================================================
   Archive & Single Page Styles
   ================================================== */

/* 共通MVスタイル */
.archive-mv, .single-mv {
  padding: 100px 0;
  background-color: rgba(0, 113, 128, 0.1);
  text-align: center;
  margin-top: 56px;
}

.archive-mv h2, .single-mv h2 {
  font-size: 36px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .archive-mv h2, .single-mv h2 {
    font-size: 24px;
  }
}

/* パンくずリスト */
.bread {
  width: 100%;
  margin-bottom: 50px;
  padding-top: 10px;
}

.bread ul {
  display: flex;
}

.bread ul li {
  padding: 5px;
}

.bread ul li a {
  transition: 0.15s;
  color: #000;
}

@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}

.bread ul li a:hover {
  opacity: 0.7;
}

.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}

.bread ul li:last-child:after {
  content: "";
}

/* Archive Page Styles */
.news.archive-news {
  background-color: #fff;
  padding: 10px;
  padding-bottom: 50px;
}

.news.archive-news .news__inner {
  display: block;
}

.archive-news .archive-content {
  max-width: 100%;
}

.archive-news .archive-list {
  margin-bottom: 50px;
}

.archive-news .archive-item {
  margin-bottom: 30px;
}

/* Single Page Styles */
.news.single-news {
  background-color: #fff;
  padding: 10px;
  padding-bottom: 50px;
}

.single-news h2 {
  font-size: 32px;
  line-height: 1.3125;
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.single-news .single-content {
  padding-bottom: 80px;
}

/* 日付スタイル */
.single-news .date {
  font-size: 14px;
  color: #666666;
  margin: 0 0 30px 0;
  padding: 8px 12px;
  background-color: #f5f5f5;
  border-left: 4px solid #007180;
  border-radius: 4px;
  display: inline-block;
  font-weight: 500;
}

/* コンテンツ部分のスタイリング */
.single-news .single-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

.single-news .single-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.single-news .single-content h3,
.single-news .single-content h4,
.single-news .single-content h5 {
  margin: 30px 0 15px 0;
  font-weight: 600;
}

.single-news .single-content h3 {
  font-size: 24px;
  border-bottom: 2px solid #007180;
  padding-bottom: 8px;
}

.single-news .single-content h4 {
  font-size: 20px;
}

.single-news .single-content h5 {
  font-size: 18px;
}

.single-news .single-content ul,
.single-news .single-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.single-news .single-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.single-news .single-content blockquote {
  margin: 25px 0;
  padding: 20px;
  background-color: #f5f5f5;
  border-left: 4px solid #007180;
  font-style: italic;
  color: #666666;
}

.single-news .single-button {
  margin: 0 auto;
  width: 241px;
  height: 61px;
  display: grid;
  place-content: center;
  background-color: #fff;
  position: relative;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}

.single-news .single-button:hover {
  opacity: 0.7;
}

.single-news .single-button::after {
  content: "←";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 24px;
}

/* ページネーション */
.archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  padding: 10px 0;
  font-size: 16px;
}

.archive-pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.archive-pagination .page-numbers:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.archive-pagination .current {
  background-color: #000;
  color: #fff;
  border-color: #000;
  pointer-events: none;
}

.archive-pagination .prev,
.archive-pagination .next {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.archive-pagination .prev:hover,
.archive-pagination .next:hover {
  color: #000;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .single-news h2 {
    font-size: 24px;
  }

  /* 日付のスマホ対応 */
  .single-news .date {
    font-size: 12px;
    margin: 0 0 20px 0;
    padding: 6px 10px;
  }

  /* コンテンツ部分のスマホ対応 */
  .single-news .single-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .single-news .single-content h3 {
    font-size: 20px;
    margin: 25px 0 12px 0;
  }

  .single-news .single-content h4 {
    font-size: 18px;
    margin: 20px 0 10px 0;
  }

  .single-news .single-content h5 {
    font-size: 16px;
    margin: 15px 0 8px 0;
  }

  .single-news .single-content ul,
  .single-news .single-content ol {
    margin: 12px 0;
    padding-left: 20px;
  }

  .single-news .single-content li {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .single-news .single-content blockquote {
    margin: 20px 0;
    padding: 15px;
    font-size: 14px;
  }

  .archive-pagination {
    font-size: 14px;
  }

  .archive-pagination .page-numbers {
    padding: 6px 10px;
  }
}

/* 体験プラン用スタイル */
.day_plan_time {
  font-weight: bold;
  color: #c30000;
  display: block;
}

.top_experience_plan_price_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.top_experience_plan_price_large {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}

.top_experience_plan_price_strikethrough {
  text-decoration: line-through;
  color: #666666;
  opacity: 0.7;
}

.top_experience_plan_price_special {
  color: #c30000;
  font-weight: bold;
}

.top_experience_plan_campaign_badge {
  font-size: 14px;
  background: #c30000;
  color: white;
  font-weight: bold;
  width: 120px;
  margin: 0 auto 8px auto;
  padding: 4px 8px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(195, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.top_experience_plan_price_comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top_experience_plan_price_arrow {
  font-size: 24px;
  color: #e02337;
  font-weight: bold;
  margin: 0 4px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 768px) {
  .top_experience_plan_price_large {
    font-size: 36px;
  }

  .top_experience_plan_campaign_badge {
    width: 100px;
    font-size: 12px;
    padding: 3px 6px;
  }

  .top_experience_plan_price_arrow {
    font-size: 20px;
  }

  .top_experience_plan_price_comparison {
    gap: 4px;
  }
}

.price__price-explanation.price__price-explanation2 {
  padding: 15px 5px;
  font-size: 14px;
}

@media (max-width: 938px) {
  .price__price-text {
    height: 78px;
  }
}

/* ========================================
   固定CTAボタン（Fixed CTA Buttons）
   ======================================== */

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.938rem, 0.703rem + 1.17vw, 1.875rem);
  padding: 10px;
}

@media screen and (max-width: 768px) {
  .fixed-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
}

.fixed-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: clamp(20rem, 18rem + 5vw, 25rem);
  height: 60px;
  padding: 0 20px;
  text-decoration: none;
  transition: opacity 0.3s;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .fixed-cta__button {
    width: 100%;
    height: 50px;
    padding: 0;
    gap: clamp(0.313rem, 0.234rem + 0.39vw, 0.625rem);
    font-size: clamp(0.75rem, 0.661rem + 0.45vw, 0.875rem);
    border-radius: 0;
  }
}

.fixed-cta__button:hover {
  opacity: 0.8;
}

.fixed-cta__button--line {
  background-color: #1bb544;
  color: #fff;
}

.fixed-cta__button--calendar {
  background-color: #c30000;
  color: #fff;
  border: none;
}

.fixed-cta__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .fixed-cta__icon {
    width: 30px;
    height: 30px;
  }
}

.fixed-cta__text {
  font-size: 1.125rem;
  line-height: 1.3;
  text-align: left;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .fixed-cta__text {
    font-size: clamp(0.75rem, 0.661rem + 0.45vw, 0.875rem);
    line-height: 1.2;
    text-align: center;
  }
}

.fixed-cta__text span {
  font-size: 0.875rem;
  line-height: 1.3;
  display: block;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

@media screen and (max-width: 768px) {
  .fixed-cta__text span {
    display: none;
  }
}

.fixed-cta__text--small {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .fixed-cta__text--small {
    font-size: clamp(0.75rem, 0.661rem + 0.45vw, 0.875rem);
    line-height: 1.2;
  }
}