@charset "UTF-8";
html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #F0F0F0;
  color: #77706A;
  font-family: "peridot-pe-variable", sans-serif;
  font-variation-settings: "ital" 0, "wdth" 100, "wght" 400;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(320px, 40vw, 700px);
  height: clamp(320px, 28vw, 500px);
  pointer-events: none;
  z-index: 900;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 35%, rgba(255, 255, 255, 0.3) 62%, rgba(255, 255, 255, 0) 100%);
  filter: blur(34px);
  transform: translate(-14%, -14%);
  will-change: transform;
}

/* ====================================
   PC版ヘッダー（左固定ナビ）
==================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 30vw;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  z-index: 1000;
}
.site-header .header-inner {
  width: 100%;
}
.site-header .logo {
  margin-bottom: 2rem;
}
.site-header .logo img {
  width: 100%;
  height: auto;
}
.site-header .pc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header .pc-nav ul li {
  margin-bottom: 2rem;
}
.site-header .pc-nav ul li a {
  position: relative;
  text-decoration: none;
  font-size: 1.3rem;
  color: #77706A;
  letter-spacing: 0.05em;
  padding-left: 1rem;
  transition: color 0.3s ease;
}
.site-header .pc-nav ul li a::before {
  position: absolute;
  content: "-";
  left: 0;
}
.site-header .pc-nav ul li a:hover {
  color: #000;
}
.site-header .pc-nav ul li a.is-active {
  color: #000;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ====================================
   スマホ用：上部バー＋開閉ナビ
==================================== */
/* 初期状態は非表示（PCでは表示させない） */
.sp-header,
.sp-nav {
  display: none;
}

.menu-open .sp-header {
  background: #fff;
}

/* スマホサイズのみ */
@media (max-width: 768px) {
  /* PCヘッダー非表示 */
  .site-header {
    display: none;
  }
  /* ===== 上部バー ===== */
  .sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    z-index: 1000;
  }
  .sp-header .sp-logo img {
    height: 50px;
    width: auto;
  }
  .sp-header .hamburger {
    width: 30px;
    height: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
  }
  .sp-header .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #3d3d3d;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .sp-header .hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .sp-header .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .sp-header .hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
  /* ===== 開閉ナビ ===== */
  .sp-nav {
    position: fixed;
    top: 60px; /* sp-headerの高さ分 */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
    z-index: 999;
  }
  .sp-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .sp-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .sp-nav ul li {
    margin: 1.2rem 0;
  }
  .sp-nav ul li a {
    font-size: 1.5rem;
    color: #77706A;
    text-decoration: none;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
  }
  .sp-nav ul li a:hover {
    color: #000;
  }
}
/* ラインの光流れ */
@keyframes lineFlow {
  0% {
    top: -50%;
    opacity: 0;
  }
  50% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: 150%;
    opacity: 0;
  }
}
/* 矢印がふわっと上下 */
@keyframes arrowFloat {
  0%, 100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(6px);
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}
.hero {
  position: relative;
  overflow: visible; /* ← これ大事：はみ出しを切らない */
  isolation: isolate;
  /* 波打ち＋横スライド（途切れない動き） */
}
.hero__lines--center {
  position: absolute;
  top: 58%;
  left: 0;
  width: 100%;
  height: 300px;
  overflow: visible;
  pointer-events: none;
  z-index: 5;
}
.hero__lines--center svg {
  position: absolute;
  width: 120%;
  height: 100%;
  left: -10%;
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 4;
  opacity: 0.9;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
  mix-blend-mode: screen;
  transform-origin: center;
  animation: heroLineMove 18s ease-in-out infinite;
}
.hero__lines--center svg:nth-child(2) {
  stroke-width: 3;
  opacity: 0.6;
  animation-duration: 22s;
  animation-delay: 4s;
}
@keyframes heroLineMove {
  0% {
    transform: translateX(0) translateY(0) scale(1);
  }
  25% {
    transform: translateX(-2%) translateY(-10px) scale(1.02);
  }
  50% {
    transform: translateX(-4%) translateY(10px) scale(1.03);
  }
  75% {
    transform: translateX(-2%) translateY(-8px) scale(1.01);
  }
  100% {
    transform: translateX(0) translateY(0) scale(1);
  }
}

.fv {
  position: relative;
  margin-left: 15vw;
  /* 動画そのもの */
  /* ノイズ + 茶系グラデーションのオーバーレイ */
}
@media (max-width: 768px) {
  .fv {
    margin-left: 0;
  }
}
.fv__bg {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background: #fff;
}
.fv__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fv__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(82, 64, 46, 0.3) 0%, rgba(102, 84, 65, 0) 60%), radial-gradient(circle at 10% 90%, rgba(109, 87, 65, 0.2) 0%, rgba(88, 69, 49, 0) 50%), linear-gradient(to bottom, rgba(168, 142, 118, 0.1), rgba(114, 94, 74, 0.2));
  mix-blend-mode: multiply;
  z-index: 1;
}
.fv__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/noise.png") repeat;
  opacity: 0.3;
  mix-blend-mode: soft-light;
  z-index: 2;
}

/* デコ用のレイヤー */
.fv-decos {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

:root {
  --fv-left-top: -30vw;
  --fv-left-left: -14vw;
  --fv-right-btm: -15vw;
  --fv-right-rgt: -16vw;
}

/* 値が足りなければここだけ変えればOK */
@media (max-width: 768px) {
  :root {
    --fv-left-top: -47vw;
    --fv-left-left: -32vw;
    --fv-right-btm: -25vw;
    --fv-right-rgt: -26vw;
  }
}
/* ラッパ（位置・サイズ担当） */
.fv-deco {
  position: absolute;
  max-width: none; /* reset対策 */
  /* 左のラッパ：位置も大きさも“可変”。SPで大きめに */
  /* 右のラッパ */
}
.fv-deco.fv-deco--left {
  top: var(--fv-left-top);
  left: var(--fv-left-left);
  width: clamp(560px, 80vw, 1500px);
}
.fv-deco.fv-deco--right {
  bottom: var(--fv-right-btm);
  right: var(--fv-right-rgt);
  width: clamp(340px, 52vw, 1000px);
}

/* 中身（画像）：回転＆transformはここだけで操作 → top/leftと“分離” */
.fv-deco__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none; /* reset.cssの max-width:100% を無効化 */
  will-change: transform;
}
.fv-deco__img--left {
  transform: rotate(-5deg);
}
.fv-deco__img--right {
  transform: rotate(5deg);
}

.scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 7.5vw;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #77706A;
  pointer-events: none;
  z-index: 50;
  /* 矢印部分 */
}
.scroll-indicator .scroll-text {
  writing-mode: vertical-rl;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 120px;
  background: rgba(119, 112, 106, 0.6);
  position: relative;
  overflow: hidden;
}
.scroll-indicator .scroll-line::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #bbb, transparent);
  animation: lineFlow 3s linear infinite;
}
.scroll-indicator .scroll-arrow {
  display: block;
  width: 12px;
  height: 12px;
  position: relative;
  animation: arrowFloat 2.2s ease-in-out infinite;
}
.scroll-indicator .scroll-arrow .scroll-arrow-inner {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  border-left: 1px solid rgba(119, 112, 106, 0.8);
  border-bottom: 1px solid rgba(119, 112, 106, 0.8);
  transform: translateX(-50%) rotate(-45deg);
}

/* 光が流れる */
@keyframes lineFlow {
  0% {
    top: -50%;
    opacity: 0;
  }
  50% {
    top: 50%;
    opacity: 1;
  }
  100% {
    top: 150%;
    opacity: 0;
  }
}
/* 矢印が真下を向いたまま上下に動く */
@keyframes arrowFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}
h2 {
  font-size: 1.8vw;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05vw;
  font-feature-settings: "palt";
  word-break: break-word;
}
@media (max-width: 768px) {
  h2 {
    font-size: 7.2vw;
  }
}
h2 span {
  color: #AD7D4C;
  font-size: 1.5vw;
}
@media (max-width: 768px) {
  h2 span {
    font-size: 6vw;
  }
}

h3 {
  font-size: 1.5vw;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 0.05vw;
  font-feature-settings: "palt";
  word-break: break-word;
}
@media (max-width: 768px) {
  h3 {
    font-size: 6vw;
  }
}

p, a {
  font-size: 1.1vw;
  letter-spacing: 0.05vw;
  font-feature-settings: "palt";
  word-break: break-word;
}
@media (max-width: 768px) {
  p, a {
    font-size: 4.4vw;
  }
}

.about {
  position: relative;
  padding: 160px 0 200px;
  color: #77706A;
  overflow: visible;
}
@media (max-width: 768px) {
  .about {
    padding: 4rem 0 2rem;
  }
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: inset(0 0 0 15vw);
  z-index: -1;
}
.about__head {
  color: #CCC;
}
.about .about-block {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: visible;
  padding: 0 20px;
}
.about .about-block--1 {
  margin-top: 8rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about .about-block--1 {
    margin-top: 2rem;
  }
}
.about .about-block__img {
  flex: 1;
  position: relative;
  z-index: 1;
}
.about .about-block__img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: block;
  transition: transform 0.3s ease;
}
.about .about-block__img--left {
  flex: 0 0 50%;
  margin-left: -3%;
  transform: rotate(-8deg);
}
.about .about-block__img--center {
  margin-left: 30%;
  transform: rotate(6deg);
}
.about .about-block__img--center img {
  width: 80%;
}
@media (max-width: 768px) {
  .about .about-block__img--center img {
    width: 100%;
  }
}
.about .about-block__img--right {
  width: 46%;
  margin-right: -10%;
  transform: rotate(-7deg);
}
.about .about-block__text {
  flex: 1 1 auto;
  position: relative;
  z-index: 2;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .about .about-block__text {
    margin-left: 0;
  }
}
.about .about-block__text p {
  line-height: 1.9;
}
.about .about-block--2 {
  justify-content: center;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .about .about-block {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 140px;
  }
  .about .about-block__img {
    width: 100% !important;
    margin: 0 !important;
    transform: none !important;
  }
  .about .about-block__text {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .about .about-block {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 4rem;
  }
}

.mission {
  position: relative;
  color: #fff;
  padding: clamp(100px, 10vw, 160px) 0;
  overflow: hidden;
  margin-left: 15vw;
  /* コンテナ */
  /* グリッド */
  /* カード */
}
@media (max-width: 768px) {
  .mission {
    margin-left: 0;
  }
}
.mission h2 {
  text-align: left;
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  .mission h2 {
    padding-bottom: 4rem;
  }
}
.mission h2 span {
  color: #fff;
}
.mission__bg {
  position: absolute;
  top: -50%;
  left: -5%;
  width: 110%;
  height: 130%;
  background: url("../img/missionBg.webp") center/cover no-repeat;
  filter: blur(8px);
  z-index: 0;
  will-change: transform;
}
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(50, 40, 30, 0.4), rgba(20, 20, 20, 0.6));
  z-index: 1;
}
.mission::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/noise.png") repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 2;
}
.mission__inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
}
.mission__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 100px);
  overflow: visible;
  align-items: start;
}
@media (max-width: 768px) {
  .mission__grid {
    grid-template-columns: 1fr;
    gap: clamp(80px, 4vw, 120px);
  }
}
.mission__card {
  position: relative;
  background: rgba(197, 193, 189, 0.25);
  border-radius: 12px;
  padding: clamp(3rem, 9vw, 120px) clamp(24px, 3vw, 40px) clamp(32px, 4vw, 50px);
  -webkit-backdrop-filter: blur(0.6vw);
          backdrop-filter: blur(0.6vw);
  overflow: visible;
  z-index: 1;
  /* 数字・アイコン */
  /* テキスト */
}
.mission__card .num,
.mission__card .icon {
  position: absolute;
  bottom: calc(100% - 2vw);
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .mission__card .num,
  .mission__card .icon {
    bottom: calc(100% - 6vw);
  }
}
.mission__card .num {
  left: clamp(-30px, -3vw, -60px);
  font-size: clamp(4.5rem, 8vw, 9rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.22);
  z-index: 2;
}
@media (max-width: 768px) {
  .mission__card .num {
    left: clamp(-10px, -3vw, -60px);
  }
}
.mission__card .icon {
  right: clamp(12px, 2vw, 32px);
  width: clamp(64px, 6vw, 100px);
  height: clamp(64px, 6vw, 100px);
  opacity: 0.95;
  z-index: 3;
}
.mission__card h3 {
  margin-bottom: 0.8rem;
  font-weight: 600;
  position: relative;
  z-index: 4;
}
.mission__card p {
  line-height: 1.7;
  position: relative;
  z-index: 4;
}

.gallery {
  position: relative;
  overflow: visible;
  background: linear-gradient(90deg, transparent 0 15vw, #fff 15vw 100%);
}
@media (max-width: 768px) {
  .gallery {
    padding-top: 2rem;
  }
}
.gallery__title {
  color: #E5E0D7;
  margin-bottom: -1.5rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .gallery__title {
    margin-bottom: -0.5rem;
  }
}
.gallery__list {
  position: relative;
  overflow: visible;
  /* 画面高さに応じて縦伸び（800px〜2600pxの間） */
  min-height: clamp(1600px, 230vh, 2600px);
  padding: clamp(120px, 14vw, 200px) 0 clamp(360px, 32vw, 600px);
  background: linear-gradient(90deg, transparent 0 15vw, #E5E0D7 15vw 100%);
  z-index: 2;
}
.gallery__list img {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s ease-out, transform 1s ease-out;
}
.gallery__list img:nth-child(1) {
  width: clamp(500px, 70vw, 1000px);
  top: 0%;
  left: 4%;
  z-index: 3;
  transform: rotate(-4deg) translateY(80px);
}
.gallery__list img:nth-child(2) {
  width: clamp(300px, 50vw, 420px);
  top: 12%;
  right: 0%;
  z-index: 2;
  transform: rotate(5deg) translateY(80px);
}
.gallery__list img:nth-child(3) {
  width: clamp(450px, 65vw, 900px);
  top: 34%;
  left: 30%;
  z-index: 4;
}
.gallery__list img:nth-child(4) {
  width: clamp(300px, 30vw, 400px);
  top: 52%;
  left: 10%;
  z-index: 5;
  transform: rotate(-8deg) translateY(80px);
}
.gallery__list img:nth-child(5) {
  width: clamp(280px, 28vw, 350px);
  top: 70%;
  right: 3%;
  z-index: 3;
  transform: rotate(-2deg) translateY(80px);
}
.gallery__list img:nth-child(6) {
  width: clamp(500px, 55vw, 900px);
  top: 73%;
  left: 6%;
  z-index: 2;
  transform: rotate(-5deg) translateY(80px);
}
.gallery__list img:nth-child(7) {
  width: clamp(300px, 33vw, 400px);
  top: 87%;
  left: 50%;
  z-index: 3;
  transform: rotate(2deg) translateY(80px);
}
@media (max-width: 768px) {
  .gallery__list {
    margin-left: 0;
    padding: 2rem 1rem;
    min-height: auto;
  }
  .gallery__list img {
    position: relative;
    width: 100%;
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 24px;
  }
}

.access {
  padding-top: 6rem;
  background: linear-gradient(90deg, transparent 0 15vw, #E5E0D7 15vw 100%);
}
@media (max-width: 768px) {
  .access {
    padding-top: 0;
  }
}
.access__head {
  color: #C0C0C0;
}
.access__map {
  margin: 6rem 0;
}
@media (max-width: 768px) {
  .access__map {
    margin: 4rem 0;
  }
}
.access__inner {
  margin-left: 15vw;
  padding: 2rem;
  padding-top: 0;
}
@media (max-width: 768px) {
  .access__inner {
    margin-left: 0;
  }
}

.contact {
  position: relative;
  background: linear-gradient(90deg, transparent 0 15vw, #E5E0D7 15vw 100%);
  padding: 120px 20px;
  text-align: center;
  color: #77706A;
  overflow: hidden;
}
.contact .fit-text {
  color: rgba(255, 255, 255, 0.7);
}
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 4rem;
}
.contact__inner h2 {
  margin-bottom: 1.5rem;
}
.contact__inner p {
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: left;
}
.contact__inner form {
  display: grid;
  gap: 1rem;
}
.contact__inner form input,
.contact__inner form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}
.contact__inner form input[type=submit] {
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  background: #77706a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact__inner form input[type=submit]:hover {
  background: #5c5650;
}
@media (max-width: 768px) {
  .contact {
    padding: 2rem 1rem;
  }
  .contact__bgtitle {
    font-size: 16vw;
  }
  .contact__inner h2 {
    font-size: 1.5rem;
  }
}

input::-moz-placeholder {
  color: #ccc !important;
}

input::placeholder {
  color: #ccc !important;
}

textarea::-moz-placeholder {
  color: #ccc !important;
  opacity: 1;
}

textarea::placeholder {
  color: #ccc !important;
  opacity: 1;
}

.comingsoon {
  background: linear-gradient(90deg, transparent 0 15vw, #ddd5ca 15vw 100%);
  text-align: center;
  padding: 80px 20px;
  color: #77706a;
}
.comingsoon .fit-text {
  color: rgba(255, 255, 255, 0.7);
}
.comingsoon p {
  font-style: italic;
  letter-spacing: 0.05em;
}

.site-footer {
  background: linear-gradient(90deg, transparent 0 15vw, #ddd5ca 15vw 100%);
  text-align: center;
  color: #77706a;
  text-align: center;
  font-size: 0.85rem;
}
.site-footer p {
  margin: 0;
  line-height: 1.6;
}
.site-footer a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: #77706A;
}

.fit-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  gap: clamp(0.4em, 1vw, 0.8em);
}
.fit-text__icon {
  flex-shrink: 0;
  height: clamp(36px, 5vw, 60px);
  width: auto;
}
.fit-text__text {
  font-size: clamp(1.6rem, 4vw, 4.6rem);
  line-height: 1;
}

.back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 900;
}
.back-to-top .arrow {
  display: block;
  font-size: 1.4rem;
  color: #77706A;
}
.back-to-top:hover {
  background: #f5f3f0;
  transform: translateY(-3px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .back-to-top {
    width: 42px;
    height: 42px;
    right: 1rem;
    bottom: 1rem;
  }
}

.gtranslate_wrapper *, .gtranslate_wrapper {
  pointer-events: auto !important;
  z-index: 999999 !important;
}
.gtranslate_wrapper .gt_switcher_wrapper {
  color: #fff;
  position: fixed !important;
  top: 15px !important;
  right: 15px !important;
  z-index: 999999 !important;
}
@media (max-width: 768px) {
  .gtranslate_wrapper .gt_switcher_wrapper {
    top: auto !important;
    bottom: 15px !important;
    left: 15px !important;
    right: auto !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 10px;
    border-radius: 8px;
  }
  .gtranslate_wrapper .gt_switcher_wrapper::before {
    content: "🌐 Language";
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
  }
  .gtranslate_wrapper .gt_switcher_wrapper .glink {
    display: none;
  }
  .gtranslate_wrapper .gt_switcher_wrapper:hover .glink, .gtranslate_wrapper .gt_switcher_wrapper.open .glink {
    display: inline-block;
  }
}

.safari-translate-btn {
  display: block;
  position: fixed;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  z-index: 999999;
}
.safari-translate-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

.privacy {
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(90deg, transparent 0 15vw, #E5E0D7 15vw 100%);
}
.privacy__inner {
  margin: 0 auto;
  padding: 4rem 2rem;
  padding-bottom: 0;
  margin-left: 15vw;
}
@media (max-width: 768px) {
  .privacy__inner {
    padding: 2rem 1rem;
    margin-left: 0;
  }
}
.privacy__content h2 {
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  position: relative;
}
.privacy__content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 50px;
  height: 2px;
  background: #4B433D;
}
.privacy__content p {
  line-height: 1.9;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .privacy__content p {
    margin-bottom: 4rem;
  }
}
.privacy__content a {
  color: #4B433D;
  text-decoration: underline;
}
.privacy__content a:hover {
  opacity: 0.7;
}
.privacy__date {
  text-align: right;
  font-size: 0.9rem;
  color: #7A706A;
  margin-top: 80px;
}

.under-head {
  position: relative;
  background: url("../img/under-bg.webp") center center/cover no-repeat;
  margin-left: 15vw;
  padding: 8rem 2rem 2rem;
}
.under-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(82, 64, 46, 0.3) 0%, rgba(102, 84, 65, 0) 60%), radial-gradient(circle at 10% 90%, rgba(109, 87, 65, 0.2) 0%, rgba(88, 69, 49, 0) 50%), linear-gradient(to bottom, rgba(168, 142, 118, 0.1), rgba(114, 94, 74, 0.2));
  mix-blend-mode: multiply;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 0;
}
.under-head h2 {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
  font-size: 6rem;
}
@media (max-width: 768px) {
  .under-head {
    margin-left: 0;
    padding: 2rem 1rem;
    padding-top: 70px;
  }
}

.privacy-note {
  margin-top: 1.5em;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}
.privacy-note a {
  color: #0072ce;
  text-decoration: underline;
}
.privacy-note a:hover {
  text-decoration: none;
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */