@charset "UTF-8";
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/* =========================================
   Font
========================================= */
/* base */
/* px → rem */
/* ==========================
  Responsive Clamp Function
  （固定＋特例custom）
========================== */
/* --------------------------
  Project Default Viewport
-------------------------- */
/* --------------------------
  通常版：基本はこれだけ使う
  rclamp(16, 24)
-------------------------- */
/* --------------------------
  特例版：ここだけviewport変えたい時用
  rclamp-custom(24, 64, 600, 1600)
-------------------------- */
/* Safari対策 */
* {
  min-height: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

.inner {
  max-width: 1280px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: 92%;
  }
}

.header {
  position: fixed;
  top: 42px;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 900px) {
  .header {
    display: none;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 60px;
  max-width: 1280px;
  width: 95%;
  margin-inline: auto;
  padding: 10px 40px;
}

.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: block;
}
.header__logo img {
  display: block;
  width: clamp(70px, 8vw, 91px);
  height: auto;
}

.header-nav {
  display: flex;
}

.header-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.9375rem, -4.2434210526rem + 9.2105263158vw, 3.125rem);
}

.header-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

.header-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.header-nav__link:hover::after {
  transform: scaleX(1);
}

.header-nav__jp {
  font-size: clamp(0.8125rem, 0.5rem + 0.625vw, 1rem);
  font-weight: 700;
}

.header-nav__en {
  font-size: clamp(0.625rem, 0.4166666667rem + 0.4166666667vw, 0.75rem);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-family: "Prompt", sans-serif;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, -1.0263157895rem + 3.1578947368vw, 1.5rem);
  padding-left: clamp(1.25rem, -1.7105263158rem + 5.2631578947vw, 2.5rem);
}

.header-actions__btn {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, -0.3541666667rem + 1.4583333333vw, 0.8125rem);
  white-space: nowrap;
  max-width: 158px;
  width: 90%;
  padding-block: 8px;
  padding-inline: clamp(0.625rem, -2.9276315789rem + 6.3157894737vw, 2.125rem);
  border-radius: 40px;
  border: 1px solid transparent;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

/* contact（茶） */
.header-actions__btn--contact {
  background: #6b3f1d;
}

.header-actions__btn--contact:hover {
  background: #fff;
  color: #6b3f1d;
  border-color: currentColor;
}

/* reserve（緑） */
.header-actions__btn--reserve {
  background: #0aa64f;
}

.header-actions__btn--reserve:hover {
  background: #fff;
  color: #0aa64f;
  border-color: currentColor;
}

/* 矢印も色連動 */
.header-actions__arrow {
  color: inherit;
}

.header-actions__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-actions__jp {
  font-size: clamp(0.75rem, 0.5416666667rem + 0.4166666667vw, 0.875rem);
  font-weight: 500;
}

.header-actions__en {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.drawer-header {
  display: none;
}
@media (max-width: 900px) {
  .drawer-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    display: block;
  }
}

.drawer-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.drawer-header__logo {
  display: block;
}
.drawer-header__logo img {
  width: 75px;
  height: auto;
  display: block;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer__icon--bar {
  width: 100%;
  height: 3px;
  background: #573c1e;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 25deg;
  translate: 0 7px;
  background: #573c1e;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -25deg;
  translate: 0 -10px;
  background: #573c1e;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 109px;
  height: 74px;
  clip-path: circle(51% at 69% 23%);
  background: #fff;
  overflow: hidden;
  z-index: 101;
  transition: width 0.5s ease, height 0.5s ease;
}

.drawer.js-show {
  width: 100%;
  height: 587px;
  clip-path: ellipse(92% 67% at 37% 24%);
}

.drawer__body {
  display: block;
  width: 100%;
  height: 0;
  transition: height 0.5s ease;
}

.drawer.js-show .drawer__body {
  height: fit-content;
}

.drawer-nav {
  margin-top: 72px;
  max-width: 500px;
  width: 80%;
  margin-inline: auto;
}

.drawer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--653-c-11, #653c11);
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.64px;
}
.drawer-nav__item .drawer__arrow {
  display: inline-flex;
  align-items: center;
}
.drawer-nav__item .drawer__arrow img {
  width: 16px;
  height: 16px;
}

.drawer-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-actions__btn {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 2; /* 32px */
  letter-spacing: 0.64px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 24px;
  width: 100%;
  border-radius: 40px;
  text-decoration: none;
  position: relative;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.drawer-actions__btn--contact {
  background: #653c11;
}

.drawer-actions__btn--contact:hover {
  background: #fff;
  color: #6b3f1d;
  border-color: currentColor;
}

.drawer-actions__btn--reserve {
  background: #00a144;
}

.drawer-actions__btn--reserve:hover {
  background: #fff;
  color: #0aa64f;
  border-color: currentColor;
}

.drawer-actions__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  translate: 0 -50%;
}
.drawer-actions__arrow svg {
  color: inherit;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 100; /* drawerより下 */
}

.drawer.js-show ~ .drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 294px;
  width: 100%;
  border-radius: 64px;
  background: #fff;
  box-shadow: 5px 4px 16px 0 rgba(0, 0, 0, 0.13);
  padding: 24px;
  color: #00a144;
  font-size: clamp(1rem, 0.8863636364rem + 0.4848484848vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: clamp(0.04rem, 0.0354545455rem + 0.0193939394vw, 0.05rem);
  text-decoration: none;
  transition: gap 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 343px;
    padding-right: 48px;
    padding-left: clamp(3.125rem, -30.2083333333rem + 166.6666666667vw, 6.25rem);
    justify-content: space-between;
  }
}

.btn__arrow {
  margin-top: 3px;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn__arrow {
    width: 20px;
    height: 20px;
  }
}
.btn__arrow img {
  width: 100%;
  height: 100%; /* ←これで16pxになる */
  display: block;
  object-fit: contain;
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--653-c-11, #653c11);
  z-index: 10;
  position: relative;
}

.section-title--white {
  color: #fff;
}

.section-title__image {
  width: 52px;
  height: auto;
}
.section-title__image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-title__en {
  font-family: "Prompt", sans-serif;
  font-size: clamp(1.625rem, 0.6590909091rem + 4.1212121212vw, 3.75rem);
  font-weight: 700;
  line-height: 1.5; /* 90px */
  letter-spacing: 0.625rem;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    letter-spacing: 4.68px;
  }
}

.section-title__ja {
  font-size: clamp(0.875rem, 0.5909090909rem + 1.2121212121vw, 1.5rem);
  letter-spacing: 0.96px;
  font-weight: 700;
  line-height: 1.5; /* 90px */
}

.section-title__sub {
  text-align: center;
  color: #653c11;
  text-align: center;
  font-size: clamp(1.625rem, 1.3409090909rem + 1.2121212121vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5; /* 54px */
  letter-spacing: 1.44px;
}
@media screen and (max-width: 767px) {
  .section-title__sub {
    letter-spacing: 1.04px;
  }
}

.section-title__underline {
  position: relative;
  padding-bottom: 24px;
  color: #653c11;
  text-align: center;
  font-size: clamp(1.625rem, 1.3409090909rem + 1.2121212121vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5; /* 54px */
  letter-spacing: 1.44px;
}
@media screen and (max-width: 767px) {
  .section-title__underline {
    letter-spacing: 1.04px;
  }
}

.section-title__underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 160px;
  height: 3px;
  background: var(--653-c-11, #653c11);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .section-title__underline::after {
    width: 64px;
    height: 1px;
  }
}

.loading-dog-svg {
  overflow: visible;
}

.js-message-popup {
  overflow: hidden;
}

.js-message-popup img {
  width: 100%;
  height: auto;
  display: block;
  /* 最初は小さい丸 */
  clip-path: circle(0% at 50% 50%);
  scale: 1.2;
}

.message__image06 img {
  animation: float-tree 4.5s ease-in-out infinite;
}

@keyframes float-tree {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(0, 0) rotate(3deg);
  }
  100% {
    transform: translate(0, 0) rotate(-3deg);
  }
}
.message__image07 img {
  animation: float-deer 1.5s ease-in-out infinite;
}

@keyframes float-deer {
  0% {
    transform: translate(0, 0) rotate(-3deg);
  }
  50% {
    transform: translate(0, 0) rotate(3deg);
  }
  100% {
    transform: translate(0, 0) rotate(-3deg);
  }
}
/* コンセプト fadeUp */
.concept-item__content {
  overflow: hidden;
  opacity: 0;
  transform: translateY(150px);
}
@media screen and (max-width: 767px) {
  .concept-item__content {
    transform: translateY(80px);
  }
}

.concept-item__content.is-active {
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.concept-item__deco--dog01 {
  animation: dog01 1.5s ease-in-out infinite;
}

@keyframes dog01 {
  0% {
    transform: translate(0, 0) rotate(-10deg);
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(-10deg);
  }
}
.concept-item__deco--dog02 {
  animation: dog01 1.5s ease-in-out infinite;
}

@keyframes dog02 {
  0% {
    transform: translate(0, 0) rotate(10deg);
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(10deg);
  }
}
.concept-item__deco--dog03 {
  animation: dog01 1.5s ease-in-out infinite;
}

@keyframes dog03 {
  0% {
    transform: translate(0, 0) rotate(-10deg);
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(-10deg);
  }
}
/* intro bounce */
.intro-area__item {
  opacity: 0;
  transform: translateY(150px);
}

.intro-area__item.is-active {
  animation: introBounce 0.7s ease-out forwards;
}

@keyframes introBounce {
  0% {
    transform: translateY(150px);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  30% {
    transform: translateY(0px);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  70% {
    transform: translateY(-50px);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.scroll-animation {
  overflow: hidden; /* ←外にはみ出さない */
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .scroll-animation {
    top: 0;
  }
}

/* 横に流すレーン */
.scroll-animation__track {
  display: flex;
  width: max-content;
  animation: scroll-track 50s linear infinite;
}

/* 通常（左へ流れる） */
@keyframes scroll-track {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* 反転（右へ流れる） */
.scroll-animation__track--reverse {
  animation: scroll-track-reverse 50s linear infinite;
}

@keyframes scroll-track-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* 流れる文字 */
.scroll-animation__price {
  flex-shrink: 0;
  white-space: nowrap;
  color: #61ab80;
  font-family: "Prompt", sans-serif;
  font-size: clamp(5.3125rem, 3.75rem + 6.6666666667vw, 8.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 8.5px;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  .scroll-animation__price {
    letter-spacing: 4.2px;
    padding-right: 40px;
  }
}

.scroll-animation__instagram {
  flex-shrink: 0;
  white-space: nowrap;
  color: #f2efe4;
  font-family: "Prompt", sans-serif;
  font-size: clamp(5.3125rem, 3.75rem + 6.6666666667vw, 8.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 8.5px;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  .scroll-animation__instagram {
    letter-spacing: 4.2px;
    padding-right: 40px;
  }
}

.bg_green {
  background: #EFF8F3;
}

.breadcrumb {
  margin-top: 120px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--653-c-11, #653C11);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5; /* 24px */
  letter-spacing: 0.64px;
}

/* 静的下層（パンくず位置は各ページ用 CSS 側。ヘッダー下の 120px は付けない） */
body.intro-page .breadcrumb,
body.static-subpage .breadcrumb {
  margin-top: 0;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb__separator {
  margin-inline: 14px;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.footer {
  padding-block: 64px 217px;
  background: url(".././img/bg_footer.webp") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 24px 124px;
    background: url(".././img/bg_footer-sp.webp") no-repeat center/cover;
  }
}

.footer__list {
  display: flex;
  flex-direction: column;
}

/* ロゴ */
.footer__logo {
  width: 91px;
  margin-bottom: 32px;
}

.footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 各メニュー行 */
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__instagram {
  margin-bottom: 16px;
}

.footer__instagram-link img {
  width: 24px;
  height: 24px;
}

/* リンク全体 */
.footer__nav-link {
  display: inline-flex; /* ←文字幅にフィット */
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #6b3f15;
  text-decoration: none;
  position: relative;
}

/* 下線（左→右に伸びる） */
.footer__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer__nav-link:hover::after {
  transform: scaleX(1);
}

/* 左側テキスト */
.footer__nav-text {
  display: block;
}

/* 右側矢印 */
.footer__nav-arrow {
  width: 16px;
  height: 16px;
}
.footer__nav-arrow img {
  width: 100%;
  height: auto;
  display: block;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  /* flexで縦方向に並べる */
  display: flex;
  flex-direction: column;
}

/* 背景ライン共通 */
.loading__bg {
  flex: 1; /* 高さを均等に3分割 */
  clip-path: inset(0% 0% 0% 0%);
  background: white;
  transform: scaleY(1.01);
}

.loading__inner {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  clip-path: inset(0% 0% 0% 0%);
}

.loading__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.loading__texts {
  display: flex;
  flex-direction: column;
}

.loading__text {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  font-family: "Prompt", sans-serif;
}
.loading__text .char {
  opacity: 0;
}

.loading__logo-images {
  display: flex;
}

.loading__logo-dog {
  width: 110px;
}
.loading__logo-dog svg {
  width: 100%;
  height: auto;
  display: block;
}
.loading__logo-dog {
  opacity: 0;
}

.loading__logo-tent {
  width: 120px;
}
.loading__logo-tent img {
  width: 100%;
  height: auto;
  display: block;
}

.fv {
  position: relative;
  overflow: clip;
  height: 100lvh;
}

.fv__inner {
  position: relative;
}

.fv-slider {
  position: relative;
  overflow: hidden;
  height: 100lvh;
  z-index: 1;
}

/* 下40%だけグラデーションoverlay */
.fv-slider::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%; /* ←ここが下40% */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.fv-slider__slide {
  width: 100%;
  overflow: hidden;
}
.fv-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 10s ease;
}

/* アクティブスライド */
.swiper-slide-active.fv-slider__slide img {
  transform: scale(1.2);
}

.fv-message {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .fv-message {
    bottom: 0;
  }
}

.fv-message__ja {
  white-space: nowrap;
  font-size: clamp(20px, 4.43vw, 88px);
  font-weight: 700;
  letter-spacing: 0.21875rem;
  color: #fff;
  position: relative;
}

.fv-message__en {
  display: inline-flex;
  white-space: nowrap;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-size: 10.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1; /* 170px */
  letter-spacing: 0.53125rem;
  opacity: 0.5;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  will-change: transform;
  animation: fv-marquee 50s linear infinite;
}
@media (max-width: 900px) {
  .fv-message__en {
    font-size: 5.3125rem;
    letter-spacing: 0.2625rem;
  }
}

/* ============================
   animation
============================ */
@keyframes fv-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.fv__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.fv__wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

.message {
  padding-block: 280px;
  position: relative;
  overflow: hidden;
}

.message__inner {
  max-width: 811px;
  width: 90%;
  margin-inline: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .message__inner {
    width: 95%;
  }
}

.mesasge__title {
  font-size: clamp(1.375rem, 0.9772727273rem + 1.696969697vw, 2.25rem);
  color: var(--00-a-144, #00a144);
  text-align: center;
  font-weight: 700;
  line-height: 2; /* 72px */
  letter-spacing: 1.44px;
}

.message__lead {
  margin-top: 64px;
  color: var(--653-c-11, #653c11);
  text-align: center;
  font-size: clamp(1rem, 0.8863636364rem + 0.4848484848vw, 1.25rem);
  font-weight: 500;
  line-height: 2; /* 40px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .message__lead {
    max-width: 500px;
    width: 95%;
    margin-inline: auto;
  }
}

.message__lead + .message__lead {
  margin-top: 40px;
}

.message__image img {
  width: 100%;
  height: auto;
  display: block;
}

.message__image01 {
  position: absolute;
  width: clamp(10.0625rem, -0.2242286115rem + 21.4586255259vw, 19.625rem);
  top: clamp(1.5rem, 1.0454545455rem + 1.9393939394vw, 2.5rem);
  left: clamp(0.875rem, -2.3920454545rem + 13.9393939394vw, 8.0625rem);
}

.message__image02 {
  position: absolute;
  width: clamp(9.0625rem, 4.2329545455rem + 20.6060606061vw, 19.6875rem);
  top: clamp(4.375rem, -189.125rem + 215vw, 9.75rem);
  right: clamp(2.5rem, -0.1893408135rem + 5.6100981767vw, 5rem);
}
@media screen and (max-width: 767px) {
  .message__image02 {
    right: -7px;
  }
}

.message__image03 {
  position: absolute;
  width: 276px;
  bottom: 164px;
  right: calc(50% + 519px);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .message__image03 {
    display: none;
  }
}

.message__image04 {
  position: absolute;
  width: 276px;
  bottom: 208px;
  left: calc(50% + 493px);
}

.message__image05 {
  position: absolute;
  max-width: clamp(12.5rem, 7.3902524544rem + 10.6591865358vw, 17.25rem);
  bottom: clamp(1.5rem, 2.1818181818rem + -2.9090909091vw, 0rem);
  left: clamp(1rem, -1.3863636364rem + 10.1818181818vw, 6.25rem);
}

.message__image06 {
  position: absolute;
  width: clamp(2.875rem, 0.4034090909rem + 10.5454545455vw, 8.3125rem);
  top: 320px;
  left: clamp(1.875rem, -5.117286115rem + 14.5862552595vw, 8.375rem);
}
@media screen and (max-width: 767px) {
  .message__image06 {
    top: 154px;
    right: 0;
  }
}

.message__image07 {
  position: absolute;
  max-width: 64px;
  top: 467px;
  right: clamp(1.875rem, -10.2942671809rem + 25.3856942496vw, 13.1875rem);
}
@media screen and (max-width: 767px) {
  .message__image07 {
    display: none;
  }
}

.message__image08 {
  position: absolute;
  width: clamp(4.9375rem, 3.4886363636rem + 6.1818181818vw, 8.125rem);
  bottom: clamp(5.8125rem, 5.6136363636rem + 0.8484848485vw, 6.25rem);
  left: calc(50% + 316px);
}
@media screen and (max-width: 767px) {
  .message__image08 {
    left: auto;
    right: 5%;
  }
}

.concept {
  background: url(".././img/bg_concept.webp") no-repeat top/cover;
  padding-block: 120px;
}
@media screen and (max-width: 767px) {
  .concept {
    padding-block: 48px 44px;
    background: url(".././img/bg_concept-sp.webp") no-repeat top/cover;
  }
}

.concept__wrapper {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .concept__wrapper {
    gap: 80px;
  }
}

/* 1ブロック */
.concept-item {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左テキスト / 右画像 */
  align-items: center;
  gap: clamp(1.875rem, -0.1420056101rem + 4.2075736325vw, 3.75rem);
}
@media screen and (max-width: 767px) {
  .concept-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .concept-item .concept-item__content {
    order: 2;
  }
  .concept-item .concept-item__image {
    order: 1;
  }
}

.concept-item--02 {
  /* PCでは反転（デフォルト） */
}
.concept-item--02 .concept-item__content {
  order: 2; /* テキストを右へ */
}
.concept-item--02 .concept-item__image {
  order: 1; /* 画像を左へ */
}

/* 左側 */
.concept-item__content {
  color: #fff;
}

.concept-item__num {
  color: var(--f-8-eb-50, #f8eb50);
  font-family: "Prompt", sans-serif;
  font-size: clamp(4.125rem, 0.3181818182rem + 16.2424242424vw, 12.5rem);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  letter-spacing: clamp(0.66rem, 0.2781818182rem + 1.6290909091vw, 1.5rem);
}
@media screen and (max-width: 767px) {
  .concept-item__num {
    font-size: 5.5rem;
  }
}

.concept-item__title {
  color: var(--ffffff, #fff);
  font-size: clamp(2rem, 1.5454545455rem + 1.9393939394vw, 3rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: clamp(0.14rem, 0.1081818182rem + 0.1357575758vw, 0.21rem);
  margin-bottom: clamp(1rem, 0.3181818182rem + 2.9090909091vw, 2.5rem);
}

.concept-item__text {
  color: var(--ffffff, #fff);
  font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: clamp(0.04rem, 0.0377272727rem + 0.0096969697vw, 0.045rem);
  margin-bottom: 40px;
}

/* ボタン */
@media screen and (max-width: 767px) {
  .concept-item__btn {
    text-align: center;
  }
}

/* 右画像 */
.concept-item__image {
  max-width: 616px;
  position: relative;
}

.concept-item__deco--dog01 {
  position: absolute;
  top: -62px;
  right: -40px;
  width: 166px;
  height: 140px;
  aspect-ratio: 83/70;
}
@media screen and (max-width: 767px) {
  .concept-item__deco--dog01 {
    width: 86px;
    height: 73px;
    right: 0;
    top: -44px;
  }
}

.concept-item__deco--text01 {
  position: absolute;
  top: -63px;
  right: 133px;
  width: 179px;
  height: 72px;
}
@media screen and (max-width: 767px) {
  .concept-item__deco--text01 {
    width: 135px;
    height: 68px;
    top: -85px;
    right: 80px;
  }
}

.concept-item__deco--dog02 {
  position: absolute;
  bottom: -62px;
  left: -40px;
  width: 137px;
  height: 148px;
  aspect-ratio: 112/121;
}
@media screen and (max-width: 767px) {
  .concept-item__deco--dog02 {
    width: 68px;
    height: 74px;
    aspect-ratio: 34/37;
    top: -45px;
    left: 0;
  }
}

.concept-item__deco--text02 {
  position: absolute;
  bottom: -26px;
  left: 99px;
  width: 213px;
  height: 51px;
}
@media screen and (max-width: 767px) {
  .concept-item__deco--text02 {
    width: 148px;
    height: 68px;
    top: -104px;
    left: 40px;
  }
}

.concept-item__deco--dog03 {
  position: absolute;
  bottom: -62px;
  right: -40px;
  width: 135px;
  height: 157px;
  aspect-ratio: 92/107;
}
@media screen and (max-width: 767px) {
  .concept-item__deco--dog03 {
    width: 71px;
    height: 82px;
    aspect-ratio: 71/82;
    top: -49px;
    right: 0;
  }
}

.concept-item__deco--text03 {
  position: absolute;
  bottom: -60px;
  right: 99px;
  width: 206px;
  height: 67px;
}
@media screen and (max-width: 767px) {
  .concept-item__deco--text03 {
    width: 148px;
    height: 68px;
    top: -75px;
    right: 55px;
  }
}

@media (max-width: 1200px) {
  .concept-hidden {
    display: none;
  }
}

.concept-item__num--02 {
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .concept-item__num--02 {
    margin-left: auto;
  }
}

.concept-item__num--02::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: -101px;
  width: 102px;
  height: 155px;
  background: url("../img/deco_fire.webp") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .concept-item__num--02::after {
    width: 58px;
    height: 88px;
    left: -56px;
    bottom: -4px;
  }
}

.intro {
  padding-block: 160px;
  overflow-x: hidden;
  position: relative;
  background: url(".././img/bg_intro.webp") no-repeat top/cover;
}
@media screen and (max-width: 767px) {
  .intro {
    background: url(".././img/bg_intro-sp.webp") no-repeat top/cover;
    padding-block: 40px 80px;
  }
}

.intro__deco-tent {
  position: absolute;
  top: 40px;
  right: 5%;
  width: clamp(4.0625rem, -1.2784090909rem + 22.7878787879vw, 15.8125rem);
  aspect-ratio: 253/233;
  height: auto;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .intro__deco-tent {
    top: 0px;
  }
}

.intro__inner {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .intro-map {
    margin-top: 30px;
  }
}

.intro-title {
  position: relative;
  padding-left: 40px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .intro-title {
    padding-left: 20px;
  }
}

.intro-title__en {
  position: relative; /* ←ここが基準点 */
  width: clamp(13.0625rem, 2.8352272727rem + 43.6363636364vw, 35.5625rem);
}
.intro-title__en img {
  width: 100%;
  height: auto;
  display: block;
}

/* 日本語タイトル（MAPの中央） */
.intro-title__jp {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  color: #fff;
  font-size: clamp(1.125rem, 0.2727272727rem + 3.6363636364vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 3.36px;
  z-index: 2;
}

.intro-title__rabbit {
  position: absolute;
  bottom: 33px;
  left: 10px;
  width: clamp(0.9375rem, 0.0852272727rem + 3.6363636364vw, 2.8125rem);
  height: auto;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .intro-title__rabbit {
    bottom: 20px;
  }
}

.intro-map__image {
  position: relative;
  max-width: 1000px;
  width: 92%;
  margin-inline: auto;
  margin-top: 40px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .intro-map__image {
    margin-top: 20px;
  }
}
.intro-map__image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-title--area {
  margin-top: 80px;
  padding-right: 60px;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .intro-title--area {
    margin-top: 60px;
    padding-right: 20px;
  }
}

.intro-title__en--area {
  width: clamp(16.5rem, 3.6022727273rem + 55.0303030303vw, 44.875rem);
  margin-left: auto;
}

.intro-title__jp--area {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 107px;
  color: #4a2a08;
  font-size: clamp(1.125rem, 0.2727272727rem + 3.6363636364vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 3.36px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .intro-title__jp--area {
    right: 10%;
  }
}

.intro-title__squirrel {
  position: absolute;
  bottom: 0;
  right: 5px;
  width: 146px;
}
@media screen and (max-width: 767px) {
  .intro-title__squirrel {
    width: 51px;
    bottom: 25px;
    right: 2px;
  }
}
.intro-title__squirrel img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-area__list {
  margin-top: 145px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro-area__list {
    margin-top: -257px;
  }
}

.intro-area__list-bg {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .intro-area__list-bg {
    padding-left: 30px;
  }
}
.intro-area__list-bg img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .intro-area__list-bg img {
    min-height: 1055px;
  }
}

.intro-area__item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.intro-area__item-image {
  width: clamp(12.5rem, 3.2217741935rem + 19.3548387097vw, 21.125rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro-area__item-image {
    width: clamp(12.5rem, 6.4903846154rem + 25.641025641vw, 18.75rem);
  }
}
@media (max-width: 340px) {
  .intro-area__item-image {
    width: 160px;
  }
}
.intro-area__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.intro-area__item-image:hover img {
  transform: scale(1.1);
}

.intro-area__item-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 16px solid #00a144;
  border-radius: 50%;
  pointer-events: none;
}

.intro-area__item-title {
  font-size: clamp(1rem, 0.6590909091rem + 1.4545454545vw, 1.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5; /* 42px */
  letter-spacing: 1.12px;
}

.intro-area__free {
  position: absolute;
  top: -79px;
  left: 60px;
}
@media screen and (max-width: 767px) {
  .intro-area__free {
    top: 25%;
    left: 10px;
  }
}

.intro-area__cottage {
  bottom: -84px;
  left: 28%;
}
@media screen and (max-width: 767px) {
  .intro-area__cottage {
    top: 43%;
    right: -20px;
  }
}

.intro-area__dogrun {
  top: 0;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .intro-area__dogrun {
    top: 60%;
    left: 10px;
  }
}

.intro-area__bbq {
  bottom: -120px;
  left: 73%;
}
@media screen and (max-width: 767px) {
  .intro-area__bbq {
    bottom: 0px;
    left: auto;
    right: 10px;
  }
}

.intro__btn {
  text-align: center;
  margin-top: 100px;
}

.lower-page-access {
  position: relative;
  background: #fff;
  padding: 96px 80px 0;
}
@media (max-width: 1359px) {
  .lower-page-access {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .lower-page-access {
    padding: 64px 20px 0;
  }
}

.lower-page-access__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .lower-page-access__deco {
    display: none;
  }
}

.lower-page-access__deco--top {
  top: 40px;
  right: 24px;
  width: 143px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lower-page-access__deco--top {
    top: 20px;
    right: 8px;
    width: 86px;
  }
}

.lower-page-access__inner,
.lower-page-cta__inner,
.lower-page-guide__inner {
  max-width: 1440px;
  margin-inline: auto;
}

.lower-page-access__inner {
  display: grid;
  grid-template-columns: minmax(459px, max-content) 691px;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 40px;
  align-items: start;
  max-width: 1280px;
  /* 768〜1359px：テキスト列と地図列を横並びで追従（767以下のみ縦並び） */
}
@media screen and (min-width: 768px) and (max-width: 1359px) {
  .lower-page-access__inner {
    grid-template-columns: minmax(min(289px, 100%), min(459px, 43%)) minmax(min(337px, 100%), min(691px, 57%));
  }
}
@media screen and (max-width: 767px) {
  .lower-page-access__inner {
    display: block;
  }
}

.lower-page-access__title {
  grid-column: 1/-1;
}
.lower-page-access__title .section-title__en,
.lower-page-access__title .section-title__ja {
  color: #653c11;
}

.lower-page-access__content {
  grid-column: 1;
  grid-row: 2;
  padding-top: 73.5px;
}
@media (max-width: 1359px) {
  .lower-page-access__content {
    padding-top: 48px;
  }
}
@media screen and (max-width: 767px) {
  .lower-page-access__content {
    padding-top: 40px;
  }
}

.lower-page-access__image {
  position: relative;
  width: 459px;
  max-width: 100%;
  aspect-ratio: 459/46;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lower-page-access__image {
    margin-inline: auto;
  }
}
.lower-page-access__image > img:not(.lower-page-access__deco) {
  width: 100%;
  height: auto;
  display: block;
}

.lower-page-access__deco--heading {
  top: -76px;
  left: -62px;
  width: 84.183px;
  height: 84.738px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .lower-page-access__deco--heading {
    top: -48px;
    left: -20px;
    width: 56px;
  }
}

.lower-page-access__info {
  margin: 24px 0 0;
}
@media screen and (max-width: 767px) {
  .lower-page-access__info {
    margin-top: 16px;
  }
}

.lower-page-access__info-block + .lower-page-access__info-block {
  margin-top: 32px;
}

.lower-page-access__info-title {
  margin: 0;
  color: #5b3818;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.96px;
}

.lower-page-access__info-text {
  margin: 16px 0 0;
  text-align: left;
  color: var(--653-c-11, #653c11);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .lower-page-access__info-text {
    margin-top: 8px;
  }
}

/* 住所：SP のみ郵便番号の直後で改行 */
.lower-page-access__info-text--address .lower-page-access__address-body {
  margin-left: 0.35em;
}
@media screen and (max-width: 767px) {
  .lower-page-access__info-text--address .lower-page-access__address-body {
    display: block;
    margin-left: 0;
    margin-top: 0;
  }
}

.lower-page-access__map-wrap {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  border-radius: 24px;
  overflow: visible;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1359px) {
  .lower-page-access__map-wrap {
    width: 100%;
    max-width: 691px;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .lower-page-access__map-wrap {
    margin-top: 24px;
    width: 100%;
    max-width: 691px;
  }
}

.lower-page-access__deco--map {
  right: -72px;
  bottom: -48px;
  width: 163px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lower-page-access__deco--map {
    right: -20px;
    bottom: -28px;
    width: 104px;
  }
}

.lower-page-access__map {
  width: 100%;
  max-width: 691px;
  aspect-ratio: 691/478;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.lower-page-access__bg {
  width: calc(100% + 160px);
  margin: 18px -80px 0;
}
.lower-page-access__bg img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1359px) {
  .lower-page-access__bg {
    width: calc(100% + 80px);
    margin-inline: -40px;
  }
}
@media screen and (max-width: 767px) {
  .lower-page-access__bg {
    width: calc(100% + 40px);
    margin: 18px -20px 0;
  }
}

/* PC: DOM のまま（CTA → ご利用ガイド）。SP: flex の order でご利用ガイドを先行 */
.lower-page-cta-guide-stack {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .lower-page-cta-guide-stack .lower-page-guide {
    order: -1;
  }
  .lower-page-cta-guide-stack .lower-page-cta {
    order: 1;
  }
}

.lower-page-cta {
  background: #fff;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .lower-page-cta {
    padding-inline: 16px;
  }
}

.lower-page-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  max-width: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lower-page-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.lower-page-cta__card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 300px;
}
.lower-page-cta__card:hover {
  opacity: 1;
}
.lower-page-cta__card > img:first-child {
  grid-area: 1/1;
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.lower-page-cta__card:hover > img:first-child {
  transform: scale(1.06);
}

.lower-page-cta__text-image {
  grid-area: 1/1;
  position: absolute;
  z-index: 1;
  width: 82%;
  max-width: 586px;
  height: auto;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .lower-page-cta__text-image {
    width: 78%;
  }
}

.lower-page-cta__text-image--reserve {
  left: 0;
  bottom: 0;
}

.lower-page-cta__text-image--contact {
  top: 0;
  right: 0;
}

.lower-page-cta__button {
  grid-area: 1/1;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 335px;
  max-width: calc(100% - 40px);
  min-height: 64px;
  padding: 14px 72px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ffffff, #fff);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.96px;
  transition: background 0.25s ease, color 0.25s ease;
}
.lower-page-cta__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("../img/icon_arrow-white.svg") center/contain no-repeat;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.lower-page-cta__card:hover .lower-page-cta__button {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}
.lower-page-cta__card:hover .lower-page-cta__button::after {
  transform: translate(5px, -50%);
}

.lower-page-guide {
  background: #fff;
  padding: 80px;
}
@media screen and (max-width: 767px) {
  .lower-page-guide {
    padding: 40px 20px;
  }
}

.lower-page-guide__inner {
  position: relative;
  overflow: hidden;
  background: #00a144;
  border-radius: 24px;
  max-width: 1280px;
  min-height: 240px;
  display: grid;
  place-items: center;
}
.lower-page-guide__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0, rgba(217, 217, 217, 0.1) 44px, transparent 44px, transparent 100%);
  background-size: 88px 100%;
  background-repeat: repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .lower-page-guide__inner::before {
    background-image: linear-gradient(90deg, rgba(217, 217, 217, 0.1) 0, rgba(217, 217, 217, 0.1) 17px, transparent 17px, transparent 100%);
    background-size: 34px 100%;
  }
}
.lower-page-guide__inner::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid #fff;
  border-radius: 12px;
  pointer-events: none;
}

.lower-page-guide__book {
  position: relative;
  z-index: 1;
  text-align: center;
}
.lower-page-guide__book img {
  width: 48px;
  height: auto;
  display: inline-block;
}

.lower-page-guide__text {
  margin: 8px 0 0;
  color: var(--ffffff, #fff);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 3.36px;
}
@media screen and (max-width: 767px) {
  .lower-page-guide__text {
    font-size: 24px;
    letter-spacing: 1.68px;
  }
}

.lower-page-guide__lead {
  margin: 16px 0 0;
  color: var(--ffffff, #fff);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.54px;
}
@media screen and (max-width: 767px) {
  .lower-page-guide__lead {
    font-size: 12px;
    letter-spacing: 0.84px;
  }
}

.price {
  padding-block: 120px;
  background: #00a144;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price {
    padding-block: 80px 64px;
  }
}

.price__lead {
  margin-top: 48px;
  color: var(--ffffff, #fff);
  font-size: clamp(1rem, 0.9431818182rem + 0.2424242424vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5; /* 27px */
  letter-spacing: 0.72px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__lead {
    margin-top: 24px;
  }
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .price-cards {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.price-card {
  position: relative;
  display: block;
  overflow: hidden; /* ←拡大してもはみ出さない */
  text-decoration: none;
  border-radius: 40px;
  border: 6px solid var(--ffffff, #fff);
}
@media screen and (max-width: 767px) {
  .price-card {
    border: 4px solid #fff;
  }
}

/* 画像だけにアニメーションを付ける */
.price-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease; /* ←なめらか */
}

/* hoverしたとき画像だけ拡大 */
.price-card:hover img {
  transform: scale(1.1);
}

/* 中央ラベル */
.price-card__label {
  display: flex;
  align-items: center; /* ←上下中央揃え */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 40px;
  width: 90%;
  max-width: 360px;
  padding-block: 16px;
  backdrop-filter: blur(6px);
  border-radius: 64px;
  border: 2px solid var(--ffffff, #fff);
  background: rgba(0, 0, 0, 0);
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price-card__label {
    width: 80%;
    max-width: 260px;
    gap: 16px;
  }
}

/* 左側テキスト2行グループ */
.price-card__texts {
  display: flex;
  flex-direction: column; /* ←縦並び */
  justify-content: center;
  padding-left: 23%;
  padding-block: 8px;
}
.price-card__texts p {
  font-size: clamp(1rem, 0.7727272727rem + 0.9696969697vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5; /* 36px */
  letter-spacing: 0.96px;
}
@media screen and (max-width: 767px) {
  .price-card__texts {
    padding-left: 20%;
  }
}

/* 矢印 */
.price-card__arrow {
  width: 26px;
  height: 26px;
}
@media screen and (max-width: 767px) {
  .price-card__arrow {
    width: 20px;
    height: 20px;
  }
}
.price-card__arrow img {
  width: 100%;
  height: auto;
  display: block;
}

.price-page-fv {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.price-page-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

.price-page-fv__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 10;
  pointer-events: none;
}
.price-page-fv__wave canvas {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .price-page-fv__wave {
    height: 80px;
  }
}

.price-page {
  padding-block: 0;
  padding-inline: 40px;
  overflow-x: clip;
  position: relative;
  background-color: #fff;
}
@media (min-width: 1440px) {
  .price-page {
    padding-inline: 220px;
  }
}
@media screen and (max-width: 767px) {
  .price-page {
    padding-inline: 20px;
  }
}
.price-page .breadcrumb__list,
.price-page .breadcrumb__item {
  color: #333;
}
.price-page .breadcrumb__item::after {
  color: rgba(0, 0, 0, 0.45);
}
.price-page .breadcrumb__item a {
  color: #333;
}

.price-page__fv-copy {
  position: absolute;
  left: 80px;
  top: 234px;
  margin: 0;
  z-index: 20;
  color: var(--ffffff, #fff);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 1.92px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .price-page__fv-copy {
    left: 20px;
    top: 52%;
    font-size: 34px;
  }
}

.price-page__inner {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 80px;
}

.price-page__title {
  margin-top: 48px;
}

.price-page__stay {
  position: relative;
  margin-top: 74px;
}

.price-page__stay-bg {
  position: absolute;
  top: -10%;
  right: calc((100vw - 100%) / -2);
  width: 510px;
  max-width: 45vw;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .price-page__stay-bg {
    right: -120px;
    width: 80vw;
    max-width: none;
  }
}

.price-page__stay-head {
  position: relative;
  z-index: 1;
  display: table;
  margin-inline: auto;
  max-width: 100%;
}

.price-page__stay-head-row {
  display: table-row;
}

.price-page__stay-head-cell {
  display: table-cell;
  text-align: center;
}

.price-page__stay-heading {
  margin: 0;
  display: inline-block;
  color: #653c11;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.44px;
}

.price-page__title-wave {
  display: block;
  width: 109px;
  max-width: 100%;
  height: auto;
}

.price-page__plan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .price-page__plan-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.price-page__plan-grid-item {
  min-width: 0;
}
.price-page__plan-grid-item:nth-child(even) {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .price-page__plan-grid-item:nth-child(even) {
    margin-top: 0;
  }
}

.price-page__calendar {
  margin-top: 80px;
}

.price-calendar__placeholder {
  display: grid;
  place-items: center;
  width: 1000px;
  max-width: 100%;
  height: 750px;
  margin-inline: auto;
  border: 2px dashed rgba(101, 60, 17, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}
@media screen and (max-width: 767px) {
  .price-calendar__placeholder {
    height: 75vw;
    min-height: 420px;
  }
}

.price-calendar__placeholder-text {
  margin: 0;
  color: var(--653-c-11, #653c11);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.8px;
}

.price-plan-card {
  overflow: hidden;
  height: 100%;
  border-radius: 20px;
  background: transparent;
}

.price-plan-card__media {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.price-plan-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.price-plan-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px 16px;
  padding: 16px 20px 12px;
}

.price-plan-card__title {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: var(--653-c-11, #653c11);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.12px;
}

.price-plan-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 0;
  color: var(--653-c-11, #653c11);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
}

.price-plan-card__price-num {
  font-size: 48px;
}

.price-plan-card__price-yen {
  margin-left: 2px;
  font-size: clamp(0.75rem, 0.6931818182rem + 0.2424242424vw, 0.875rem);
}

.price-plan-card__price-suffix {
  margin-left: 1px;
  font-size: clamp(0.75rem, 0.6363636364rem + 0.4848484848vw, 1rem);
}

.price-plan-card__lead {
  margin: 0 16px 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff1cc;
  text-align: center;
}
.price-plan-card__lead p {
  margin: 0;
  color: var(--653-c-11, #653c11);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.8px;
}

.price-plan-card__spec {
  display: grid;
  gap: 12px;
  margin: 0 16px 12px;
}

.price-plan-card__spec-row {
  display: grid;
  grid-template-columns: minmax(0, 38%) 1fr;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.75rem, 0.6931818182rem + 0.2424242424vw, 0.875rem);
  line-height: 1.5;
}

.price-plan-card__spec-label,
.price-plan-card__spec-value {
  margin: 0;
  padding: 10px 12px;
  color: #653c11;
}

.price-plan-card__spec-label {
  background: #f8f3eb;
  font-weight: 600;
}

.price-plan-card__spec-value {
  background: #ececec;
  font-weight: 500;
}

.price-plan-card__notes {
  margin: 0;
  padding: 4px 20px 16px;
  list-style: none;
  color: #653c11;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.6875rem, 0.6590909091rem + 0.1212121212vw, 0.75rem);
  line-height: 1.6;
}
.price-plan-card__notes li + li {
  margin-top: 6px;
}

.price-plan-card__btn {
  display: block;
  margin: 0 20px 20px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #00a144;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(0.9375rem, 0.9090909091rem + 0.1212121212vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.price-bbq-intro {
  background: transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.price-bbq-intro__wave {
  position: relative;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
.price-bbq-intro__wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

.price-bbq-intro__deco {
  position: absolute;
  left: 0;
  top: 120px;
  margin: 0;
  color: #f3f1ef;
  font-family: "Prompt", sans-serif;
  font-size: 240px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 43.2px;
  -webkit-transform: translate(30%, 0) rotate(90deg);
          transform: translate(30%, 0) rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .price-bbq-intro__deco {
    color: rgba(255, 255, 255, 0.24);
    font-size: 100px;
    letter-spacing: 18px;
  }
}

.price-bbq-intro__deco-image {
  position: absolute;
  top: -74px;
  right: 0;
  width: 423px;
  height: 659px;
  aspect-ratio: 43/67;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .price-bbq-intro__deco-image {
    top: 0;
    width: 42vw;
    height: auto;
  }
}

.price-bbq-intro__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 20px 120px;
  background: transparent;
}
.price-bbq-intro__inner::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #00a144;
  z-index: 0;
}
.price-bbq-intro__inner > * {
  position: relative;
  z-index: 4;
}

.price-bbq-intro__catch {
  margin: 0;
  color: var(--ffffff, #fff);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.8px;
  text-align: center;
}

.price-bbq-intro__title {
  margin: 0;
  color: var(--ffffff, #fff);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.44px;
}

.price-bbq-intro__image {
  display: block;
  width: 1000px;
  max-width: 100%;
  height: auto;
  margin-top: 48px;
}

.price-bbq-intro__title-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 1000px;
  max-width: 100%;
  gap: 8px;
  margin: 16px 0 0;
}

.price-bbq-intro__plan-name {
  margin: 0;
  color: var(--ffffff, #fff);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.2px;
}

.price-bbq-intro__price {
  margin: 0;
  color: var(--ffffff, #fff);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.96px;
}

.price-bbq-intro__note {
  margin: 0;
  color: var(--ffffff, #fff);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.64px;
}

.price-bbq-intro__desc {
  width: 1000px;
  max-width: 100%;
  margin: 16px 0 0;
  color: var(--ffffff, #fff);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.72px;
  text-align: left;
}

.price-bbq-intro__divider {
  width: 840px;
  max-width: 100%;
  height: 2px;
  margin-top: 64px;
  background: var(--ffffff, #fff);
}

.price-bbq-intro__dogrun {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 64px;
}

.price-bbq-intro__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 64px;
}

.price-option-block {
  width: 1000px;
  max-width: 100%;
  margin: 48px 0 0;
}

.price-option-block__rest {
  position: relative;
  margin-top: 32px;
}

.price-option-block__bg {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 550px;
  z-index: 0;
  pointer-events: none;
  background: url("../img/price-option_bg.png") no-repeat left top/contain;
}

.price-option-block .price-option-list {
  margin: 0;
}

.price-option-block__rest > .price-option-list {
  position: relative;
  z-index: 1;
}

.price-option-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 32px;
  width: 1000px;
  max-width: 100%;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .price-option-list {
    grid-template-columns: 1fr;
  }
}

.price-option-list__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.price-option-list__text {
  margin: 17px 0 0;
  color: var(--ffffff, #fff);
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.8px;
}

.price-bbq-intro__text-box {
  width: 1280px;
  max-width: 100%;
  margin-top: 96px;
  padding: 40px;
  border-radius: 80px;
  background: #fcfaf3;
}
@media screen and (max-width: 767px) {
  .price-bbq-intro__text-box {
    padding-inline: 24px;
    border-radius: 40px;
  }
}

.price-bbq-intro__text-box-text {
  margin: 0;
  color: #653c11;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.28px;
}

.price-toy-stack {
  width: min(882px, 100%);
  margin-inline: auto;
  margin-top: 32px;
}

.price-toy-stack .price-toy-list {
  margin-top: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  width: 100%;
}

.price-toy-list {
  display: grid;
  grid-template-columns: repeat(3, 294px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .price-toy-list {
    grid-template-columns: 294px;
  }
}

.price-toy-list__item {
  width: 294px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 8px;
  color: #653c11;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.price-toy-list__item::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6px;
          flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  content: "";
  border-radius: 999px;
  background: #00a144;
}

.price-toy-list__notes {
  margin: 16px 0 0;
  text-align: left;
  color: var(--653-c-11, #653c11);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}

.rental-page {
  padding-block: 0;
  padding-inline: 40px;
  overflow-x: clip;
  position: relative;
  background-color: #fff;
}
@media (min-width: 1440px) {
  .rental-page {
    padding-inline: 80px;
  }
}
@media screen and (max-width: 767px) {
  .rental-page {
    padding-inline: 20px;
  }
}
.rental-page .breadcrumb__list,
.rental-page .breadcrumb__item {
  color: #333;
}
.rental-page .breadcrumb__item::after {
  color: rgba(0, 0, 0, 0.45);
}
.rental-page .breadcrumb__item a {
  color: #333;
}

.rental-page__deco {
  position: absolute;
  left: calc(50% - 50vw);
  top: 120px;
  margin: 0;
  color: #e0d8cf;
  font-family: "Prompt", sans-serif;
  font-size: 240px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 43.2px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .rental-page__deco {
    font-size: 120px;
    letter-spacing: 20px;
    top: 80px;
  }
}

.rental-page__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 80px;
}

.rental-page__title {
  margin-top: 48px;
}

.rental-page__head {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  margin-top: 80px;
  max-width: 100%;
}

.rental-page__heading {
  margin: 0;
  color: #653c11;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.44px;
  text-align: center;
}

.rental-page__title-wave {
  display: block;
  width: 109px;
  max-width: 100%;
  height: auto;
  margin-top: 0;
}

.rental-page__text-box {
  width: min(1340px, 100%);
  max-width: 100%;
  margin: 48px auto 0;
  padding: 80px 120px;
  border-radius: 80px;
  background: #fcfaf3;
}
@media screen and (max-width: 767px) {
  .rental-page__text-box {
    padding: 40px 24px;
    border-radius: 40px;
  }
}

.rental-page__stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .rental-page__stack {
    gap: 48px;
  }
}

.rental-page__row {
  display: grid;
  grid-template-columns: 11em minmax(0, 882px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .rental-page__row {
    grid-template-columns: 1fr;
    row-gap: 32px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}

.rental-page__category {
  margin: 0;
  justify-self: stretch;
  width: 100%;
  max-width: 100%;
  color: #653c11;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .rental-page__category {
    justify-self: center;
    width: 100%;
  }
}

.rental-page__dots-list.price-toy-list {
  margin-top: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.rental-page__dots-list {
  margin: 0;
  width: 100%;
  max-width: 882px;
  min-width: 0;
}

.rental-page__sale-block {
  margin-top: 120px;
}

.rental-page__sale-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  max-width: 100%;
}

.rental-page__sale-note {
  margin: 24px 0 0;
  color: var(--653-c-11, #653c11);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.8px;
  text-align: center;
}

.rental-page__text-box--sale-follow {
  margin-top: 48px;
}

.rental-page__stack--sale {
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .rental-page__stack--sale {
    gap: 48px;
  }
}

.rental-page__sale-side {
  min-width: 0;
}

.rental-page__sale-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  gap: 24px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (max-width: 767px) {
  .rental-page__sale-gallery {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.rental-page__sale-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-width: 0;
}

.rental-page__sale-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
}

.rental-page__sale-caption {
  margin: 16px 0 0;
  color: #653c11;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.72px;
}

.instagram {
  padding-block: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .instagram {
    padding-block: 64px;
  }
}

.instagram::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 0;
  width: 450px;
  height: 785px;
  background: url("../img/bg_instagram.webp") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .instagram::before {
    display: none;
  }
}

.instagram__bg {
  position: absolute;
  top: 40px;
  right: 0;
  width: 450px;
  z-index: 10;
}
.instagram__bg img {
  width: 100%;
  height: auto;
  display: block;
}

.instagram__lead {
  color: var(--653-c-11, #653c11);
  font-size: clamp(1rem, 0.8863636364rem + 0.4848484848vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5; /* 30px */
  letter-spacing: 0.8px;
  margin-top: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .instagram__lead {
    margin-top: 24px;
    text-align: left;
  }
}

.instagram__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PCは4列 */
}
@media screen and (max-width: 767px) {
  .instagram__grid {
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr); /* SPは3列 */
  }
}

.instagram__item {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1; /* 正方形に揃える */
}

.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hoverでズーム */
.instagram__item:hover img {
  transform: scale(1.1);
}

.contact-top {
  margin-top: 120px;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .contact-top {
    padding: 60px 0;
  }
}

.contact-top__head {
  background: #fff;
  text-align: center;
  border-radius: 64px;
  padding-block: clamp(4rem, 3.5454545455rem + 1.9393939394vw, 5rem);
  padding-inline: clamp(1.5rem, -1.7954545455rem + 14.0606060606vw, 8.75rem);
}
@media screen and (max-width: 767px) {
  .contact-top__head {
    border-radius: 40px;
  }
}

.contact-top__lead {
  margin-top: 24px;
  color: var(--653-c-11, #653c11);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .contact-top__lead {
    font-size: 14px;
    letter-spacing: 0.4px;
  }
}

.contact-top__cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .contact-top__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-top__card {
  padding: 60px 30px;
  border-radius: 40px;
  border: 3px solid #00a144;
  background: #eff8f3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-top__card {
    padding: 40px 20px;
    border-radius: 24px;
  }
}

.contact-top__card-title {
  color: #653c11;
  font-weight: 700;
  line-height: 1.5; /* 39px */
  letter-spacing: 1.82px;
  font-size: clamp(1.25rem, 1.0795454545rem + 0.7272727273vw, 1.625rem);
}
@media screen and (max-width: 767px) {
  .contact-top__card-title {
    font-size: 22px;
    letter-spacing: 1px;
  }
}

.contact-top__btn {
  margin: 40px auto 0;
  max-width: 320px;
  min-height: 60px;
  border-radius: 40px;
  background: #00a144;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}
.contact-top__btn .tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(1.25rem, 0.7121318373rem + 1.1220196353vw, 1.75rem);
  font-weight: 900;
  line-height: 1.5; /* 42px */
  letter-spacing: 1.12px;
}
@media screen and (max-width: 767px) {
  .contact-top__btn .tel {
    font-size: 1.625rem;
  }
}
.contact-top__btn .tel::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon_phone.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.contact-top__btn span {
  font-size: 16px;
  font-weight: 900;
  line-height: 2; /* 32px */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .contact-top__btn {
    margin-top: 28px;
    max-width: 280px;
  }
}

.contact-top__btn:hover {
  opacity: 0.8;
}

.contact-top__time {
  color: var(--653-c-11, #653c11);
  text-align: center;
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2424242424vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5; /* 30px */
  letter-spacing: 1.4px;
  margin-top: 8px;
}

.contact-form {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding-bottom: 80px;
  }
}

.contact-form__text {
  margin-top: 40px;
  margin-bottom: 64px;
  text-align: center;
  color: var(--653-c-11, #653c11);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5; /* 24px */
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .contact-form__text {
    margin-top: 24px;
    padding-bottom: 40px;
  }
}

.contact-form__wrapper {
  width: 90%;
  max-width: 1280px;
  margin-top: 64px;
  margin-inline: auto;
  padding-block: 80px;
  padding-inline: clamp(1.5rem, -1.7954545455rem + 14.0606060606vw, 8.75rem);
  border-radius: 64px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .contact-form__wrapper {
    width: 100%;
    margin-top: 40px;
    padding-block: 64px;
    border-radius: 40px;
  }
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.contact-form__field {
  margin-top: 32px;
}

.contact-form__row .contact-form__field {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .contact-form__row .contact-form__field {
    margin-top: 0;
  }
}

.contact-form__label {
  color: var(--653-c-11, #653c11);
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5; /* 24px */
  letter-spacing: 0.64px;
}

.contact-form__label--empty {
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .contact-form__label--empty {
    display: none;
  }
}

.contact-form__required {
  color: var(--e-20303, #e20303);
}

.contact-form__note {
  font-weight: 700;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: var(--f3, #f3f3f3);
  color: #653c11;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form__input {
  height: 56px;
  padding: 16px;
}

.contact-form__textarea {
  min-height: 208px;
  padding: 16px;
  resize: vertical;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #999;
}

/* ----------------------------
checkbox
----------------------------- */
.contact-form__checkbox .wpcf7-list-item {
  margin: 0 32px 12px 0;
}

.contact-form__checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact-form__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form__checkbox input[type=checkbox]:checked {
  border-color: #00a144;
  background: #00a144;
}

.contact-form__checkbox input[type=checkbox]:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.contact-form__checkbox .wpcf7-list-item-label {
  color: #653c11;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact-form__checkbox .wpcf7-list-item-label {
    font-size: 13px;
  }
}

.contact-form__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .contact-form__checkbox {
    flex-direction: column;
    gap: 12px;
  }
}

.contact-form__checkbox .wpcf7-list-item {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .contact-form__checkbox .wpcf7-list-item {
    display: block;
    margin: 0 0 8px;
  }
}

/* ----------------------------
privacy
----------------------------- */
.contact-form__privacy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}

.contact-form__privacy-check input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form__privacy-check input[type=checkbox]:checked {
  border-color: #00a144;
  background: #00a144;
}

.contact-form__privacy-check input[type=checkbox]:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.contact-form__privacy-text {
  color: #653c11;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form__privacy-text a {
  color: #e60012;
  text-decoration: underline;
}

/* ----------------------------
submit
----------------------------- */
.contact-form__submit-wrap {
  margin-top: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-form__submit-wrap {
    margin-top: 32px;
  }
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 48px;
  padding-inline: 24px;
  border: none;
  border-radius: 999px;
  background: #00a144;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contact-form__submit {
    width: 100%;
    max-width: 280px;
    height: 44px;
    font-size: 13px;
  }
}

.contact-form__submit:hover {
  opacity: 0.8;
}

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form .wpcf7-not-valid {
  border: 1px solid var(--e-20303, #e20303);
}

.contact-form__privacy-check .wpcf7-not-valid {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.contact-form__privacy-check .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  color: var(--e-20303, #e20303);
  font-size: 0.875rem;
}

.contact-form__text.is-error {
  color: var(--e-20303, #e20303);
}

.wpcf7-response-output {
  display: none;
}

.status-page {
  background: #EFF8F3;
}

.status-page__panel {
  padding-block: 80px 120px;
}
@media screen and (max-width: 767px) {
  .status-page__panel {
    padding-block: 40px 80px;
  }
}

.status-page__panel__inner {
  border-radius: 64px;
  background: #ffffff;
  padding-block: clamp(4rem, 3.5454545455rem + 1.9393939394vw, 5rem);
  padding-inline: clamp(1.5rem, -1.7954545455rem + 14.0606060606vw, 8.75rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .status-page__panel__inner {
    border-radius: 40px;
  }
}

.status-page__title {
  color: #653c11;
  font-size: clamp(1.625rem, 1.3409090909rem + 1.2121212121vw, 2.25rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.44px;
}
@media screen and (max-width: 767px) {
  .status-page__title {
    letter-spacing: 1.04px;
  }
}

.status-page__message {
  margin-top: 24px;
  color: #653c11;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 767px) {
  .status-page__message {
    margin-top: 20px;
    font-size: 0.875rem;
    letter-spacing: 0.56px;
  }
}

.status-page__actions {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .status-page__actions {
    margin-top: 40px;
  }
}

.status-page__button {
  position: relative;
  margin: 0 auto;
  width: min(100%, 320px);
  min-height: 48px;
  border: 2px solid #00a144;
  border-radius: 40px;
  background: #00a144;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 0.64px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media screen and (max-width: 767px) {
  .status-page__button {
    min-height: 44px;
  }
}

.status-page__button:hover {
  background: #fff;
  color: #00a144;
  border-color: #00a144;
}

.status-page__button-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .status-page__button-icon {
    left: 14px;
  }
}

.status-page__button-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(225deg);
}

.hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: block;
  }
}

.hidden-sp {
  display: block;
}
@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}
