@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;
  -moz-appearance: 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: -moz-fit-content;
  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;
  -o-object-fit: contain;
     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 */
}

.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: -moz-max-content;
  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;
  }
}

.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;
  opacity: 0;
}
.loading__logo-dog svg {
  width: 100%;
  height: auto;
  display: block;
}

.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%;
  -o-object-fit: cover;
     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: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  padding: 40px 20px;
}

.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);
}

.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: -moz-fit-content;
  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%;
  -o-object-fit: cover;
     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;
}

.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;
  -webkit-backdrop-filter: blur(6px);
          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;
}

.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%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.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;
  }
}