@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  color: #fff;
  background-color: #010000;
}

img,
svg {
  shape-rendering: geometricPrecision;
}

@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
html {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media (min-width: 1366px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

.header {
  position: fixed;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  padding: 24px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.header-wrapper {
  width: 100%;
}

.header-link {
  display: flex;
  justify-content: space-between;
  max-width: 375px;
  margin: 0 auto;
  padding: 0 2.8rem;
}

.header-link-item {
  font-family: "Helvetica Neue";
  font-size: 18px;
  line-height: 48px;
  letter-spacing: 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 7px;
}

.header-link-item::before {
  display: flex;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}

/* ナビメニュー */
header .nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  transform: translateX(100%);
  transition: 0.4s ease;
  z-index: 200;
  display: flex;
  justify-content: start;
  background-image: url(../img/nav-bg-img.png);
  background-size: cover;
  background-position: center;
}

.nav.open {
  transform: translateX(0);
}

.nav-inner {
  text-align: start;
  max-width: 375px;
  margin: 37px auto 0;
  padding: 0 28px;
}

.nav-head {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: start;
  gap: 8.1rem;
}

.close-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: "Helvetica Neue";
  font-size: 18px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 34px 0 105px;
}

.nav-links li {
  margin: 28px 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: "Helvetica Neue";
  font-size: 14px;
  letter-spacing: 1px;
}

.insta-icon {
  display: flex;
  justify-content: end;
}

.insta-icon img {
  width: 25px;
  margin-top: 20px;
}

.copyright {
  font-family: "Helvetica Neue";
  font-size: 9px;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 33px;
}

.pc-header .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2.8rem;
  max-width: 464px;
  margin: 0 auto;
  white-space: nowrap;
}

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

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

.footer {
  padding: 0 0 30px;
}

footer .nav {
  background-image: url(../img/nav-bg-img-02.png);
  background-size: cover;
  background-position: center;
}

footer .nav-inner {
  max-width: 1154px;
  margin: 120px auto 0;
  padding: 35px 28px 0;
}

.footer-logo {
  width: 182px;
}

.inner {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 1366px;
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
}

/* ==================================================
   MVセクション全体設定
================================================== */
.mv-section {
  position: relative;
  height: 100vh; /* スクロール距離を十分確保 */
  overflow: hidden;
}

/* ==================================================
   スライダー設定
================================================== */
.mv-fast .slider {
  position: relative;
  width: 100%;
  height: 100vh;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.mv-fast .slider-item {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 3s ease;
}

.mv-fast .slider-item.active {
  opacity: 1;
}

/* ==================================================
   各スライダー背景画像
================================================== */
.mv-fast .slider1 {
  background-image: url("../img/mv-img-01.png");
}

.mv-fast .slider2 {
  background-image: url("../img/mv-img-02.png");
}

.mv-fast .slider3 {
  background-image: url("../img/mv-img-03.png");
}

.mv-fast .slider4 {
  background-image: url("../img/mv-img-04.png");
}

/* ==================================================
   コンテンツ設定
================================================== */
.mv-bgc {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: relative;
}

.mv-content {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}

.fv-shadow {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  opacity: 20%;
}

/* ==================================================
   タイトル設定
================================================== */
.fv-title {
  position: fixed; /* 常に固定 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.fv-title h2 {
  width: 300px; /* 初期幅 */
  margin: 0;
  display: block; /* 高さ計算用 */
}

/* 固定された状態（上部） */
.fv-title.fixed {
  top: 20px; /* 停止位置 */
  left: 50%;
  transform: translateX(-50%);
}

.fv-title.fixed h2 {
  width: 140px; /* 最終幅 */
}

.mv-insta-icon {
  width: 24px;
  position: absolute;
  bottom: 23px;
  left: 50%;
  z-index: 90;
}
@media screen and (max-width: 768px) {
  .mv-insta-icon {
    left: 28px;
  }
}

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

.pc-fv-title {
  display: block;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .pc-fv-title {
    display: none;
  }
}

.event {
  margin-top: 80px;
}

.event-inner {
  max-width: 115.4rem;
  margin: 0 auto;
  padding: 0 28px;
}
@media screen and (max-width: 768px) {
  .event-inner {
    padding: 0;
  }
}

.title {
  width: 171px;
}

.event-flex-box {
  display: flex;
  gap: 9rem;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .event-flex-box {
    flex-direction: column;
  }
}

.event-sam-img {
  flex: 1;
  max-width: 438px;
  height: auto;
  margin: auto;
}

.event-contents {
  flex: 1.2;
}

.event-contents .event-content:nth-child(n+2) {
  margin-top: 12px;
}

.event-content-title {
  font-family: "Helvetica Neue";
  font-weight: 700;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.event-content-title::after {
  display: flex;
  content: "";
  width: 24px;
  border-bottom: 1px solid #EDEDED;
}

.event-content-text {
  font-weight: 500;
  font-size: 14px;
}

.event .date, .money {
  font-family: "Helvetica Neue";
  font-weight: 400;
  font-size: 14px;
}

.map-btn {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .map-btn {
    margin-top: 20px;
  }
}

.map-btn a {
  font-family: "Helvetica Neue";
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  gap: 58px;
  padding: 18px 20px;
  border: 1px solid #fff;
}

.map-icon {
  width: 24px;
}

.shop-list {
  margin-top: 120px;
}

.shop-list .title {
  margin: 0 auto 30px;
}

.shop-list .contects-inner {
  background-image: url(../img/shop-bg-img.png);
  background-size: cover;
  background-position: 20% top;
  padding: 36px 28px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.shop-list .tab {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 6px 16px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}

.tab.active {
  background: #fff;
  color: #000;
}

.shop-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 648px;
  margin: 0 auto;
  background-color: #010000;
  padding: 20px;
}

.shop-item {
  max-width: 132px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 375px) {
  .shop-item {
    height: auto;
    flex: 0 1 calc(50% - 10px);
    display: flex;
    justify-content: center;
  }
}

.shop-item img {
  width: 100%;
  display: block;
  border: 1px solid #fff;
  transition: transform 0.3s ease;
}

.shop-item img:hover {
  transform: scale(1.05);
}

.experiences {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 1098px;
  margin: 248px auto 0;
  padding: 28px;
  text-align: left;
}
@media screen and (max-width: 375px) {
  .experiences {
    align-items: start;
  }
}

/* 背景画像 */
.cactus-img {
  position: absolute;
  top: -128px;
  right: 0;
  width: 363px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .cactus-img {
    width: 270px;
  }
}
@media screen and (max-width: 375px) {
  .cactus-img {
    width: 180px;
  }
}

/* タイトル */
.experiences .title {
  width: 336px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .experiences .title {
    width: 220px;
  }
}

/* テキスト */
.experiences h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  margin-top: 57px;
}
@media screen and (max-width: 768px) {
  .experiences h3 {
    font-size: 18px;
  }
}

/* VIEW MOREボタン */
.accordion {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 319px;
  margin: 24px auto 0;
}

.accordion-text {
  font-family: "Helvetica Neue";
  font-size: 18px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .accordion-text {
    font-size: 14px;
  }
}

/* 矢印 */
.arrow {
  width: 20px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.arrow.rotate {
  transform: rotate(180deg);
}

/* アコーディオン内容 */
.accordion-content {
  display: none;
  max-width: 319px;
  margin: 20px auto 0;
  animation: fadeIn 0.4s ease;
}

.accordion-content img {
  width: 100%;
  margin-bottom: 15px;
}

.accordion-content p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
}

.accordion-content p:nth-child(n+2) {
  margin-top: 14px;
}

/* 閉じるボタン */
.experiences .close-btn {
  width: 20px;
  margin: 10px auto 0;
  cursor: pointer;
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.close-btn:hover {
  transform: translateY(-3px);
}

/* フェードイン */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 180px;
    overflow: hidden;
  }
}

.about-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 420px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-title-box {
    align-items: start;
  }
}

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

.about-title-bg-img {
  max-width: 628px;
  position: absolute;
  top: -26%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about-title-bg-img {
    max-width: 420px;
    top: -32%;
    right: -20%;
  }
}

.title-bg-img {
  width: 100%;
  height: 508px;
  margin: auto;
  background-image: url(../img/about-bg-img-01.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.title-bg-img .title {
  padding: 134px 0 0 28px;
}

.plants-style-img {
  max-width: 60.2rem;
  margin: 0 auto;
  position: absolute;
  bottom: -60%;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .plants-style-img {
    max-width: 376px;
    bottom: -25%;
  }
}

.about-img-02 {
  margin-top: 86px;
  width: 100%;
  height: 841px;
  background-image: url(../img/about-bg-img-02.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .about-img-02 {
    height: 250px;
  }
}

.about-content-01 {
  max-width: 687px;
  margin: 94px auto 0;
}
@media screen and (max-width: 768px) {
  .about-content-01 {
    max-width: 375px;
    margin-top: 35px;
  }
}

.about-text {
  font-family: "Helvetica Neue";
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-text {
    font-size: 12px;
  }
}

.about-img-03 {
  max-width: 687px;
  height: 411px;
  background-image: url(../img/about-bg-img-03.png);
  background-size: cover;
  background-position: center;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .about-img-03 {
    max-width: 375px;
    height: 286px;
    margin-top: 20px;
  }
}

.about-content-02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
  margin-top: 92px;
}
@media screen and (max-width: 768px) {
  .about-content-02 {
    margin-top: 37px;
    justify-content: initial;
  }
}

.about-img-04 {
  width: 331px;
}
@media screen and (max-width: 768px) {
  .about-img-04 {
    width: 155px;
  }
}

.about-content-02 .about-text {
  max-width: 428px;
  text-align: start;
}
@media screen and (max-width: 768px) {
  .about-content-02 .about-text {
    max-width: 166px;
  }
}

.about-content-02 .about-text:nth-child(2) {
  margin-top: 38px;
}

/* ギャラリー */
.gallery {
  padding: 0 28px;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery .tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.tab {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 6px 16px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.tab.active {
  background: #fff;
  color: #000;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 24px;
  max-width: 1146px;
}
@media screen and (max-width: 768px) {
  .gallery-grid {
    gap: 9px 7px;
  }
}

.gallery-item {
  display: none;
  width: 257px;
  aspect-ratio: 257/170;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .gallery-item {
    flex: 0 1 calc(33.333% - 4.7px);
  }
}
@media screen and (max-width: 375px) {
  .gallery-item {
    flex: 0 1 calc(50% - 3.5px);
  }
}

.gallery-item.active {
  display: block;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ==============================
   モーダル（画像拡大表示）
============================== */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal img.modal-image {
  max-width: 60%;
  max-height: 50%;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}

.gallery-modal button {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.gallery-modal button:hover {
  opacity: 0.6;
}

/* 閉じるボタン */
.gallery-modal .modal-close {
  top: 20px;
  right: 30px;
  font-size: 48px;
}

/* 次・前ボタン */
.gallery-modal .modal-prev {
  left: 40px;
}

.gallery-modal .modal-next {
  right: 40px;
}

/* ==================================================
   FAQ
================================================== */
.faq {
  max-width: 375px;
  margin: 120px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-contents {
  max-width: 319px;
  margin: 40px auto;
}

.faq-item:nth-child(n+2) {
  margin-top: 40px;
}

/* Q&A切替コンテナ */
.faq-toggle {
  position: relative;
  cursor: pointer;
}

/* QタイトルとAタイトルは重ねておく */
.faq-question,
.faq-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.faq-question {
  position: relative;
  z-index: 2;
}

.faq-title-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

/* アクティブ状態でQを消してAを表示 */
.faq-item.active .faq-question {
  opacity: 0;
  visibility: hidden;
}

.faq-item.active .faq-title-box {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Aテキスト部分 */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease;
}

.faq-answer.open {
  max-height: 1000px;
  opacity: 1;
}

.faq-title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.q-label, .a-label {
  font-family: "Optima", sans-serif;
  font-weight: 400;
  font-size: 18px;
  margin-right: 5px;
}

.faq-item .arrow img {
  width: 12px;
  height: auto;
  transition: transform 0.3s ease;
}

/* Aタイトル矢印回転 */
.faq-item.active .faq-title-box .arrow img {
  transform: rotate(180deg);
}

/* 回答テキスト */
.faq-answer p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Contact */
.contact {
  max-width: 375px;
  margin: 120px auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
}

form {
  margin-top: 61px;
  width: 100%;
}

.form-item {
  display: flex;
  align-items: center;
}

.form-item:nth-child(n+2) {
  margin-top: 20px;
}

.form-item:nth-child(3) {
  flex-direction: column;
  align-items: start;
}

label {
  font-weight: 500;
  font-size: 14px;
  flex: 1;
}

.wpcf7-form-control-wrap {
  flex: 1.5;
  width: 100%;
}

input {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px;
  width: 100%;
  height: 35px;
  flex: 1.5;
}

textarea {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px;
  width: 100%;
  height: 183px;
  margin-top: -12px;
}

.submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

button {
  color: #fff;
  font-family: "Helvetica Neue";
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  padding: 20px;
}

.submit-btn .arrow {
  transform: rotate(-90deg);
}

button p {
  display: none;
}

button br {
  display: none;
}

.recaptcha {
  display: flex;
  justify-content: center;
}

body, html {
  margin: 0;
  padding: 0;
}

.pararakusu {
  position: relative;
  /* スクロール領域を十分に確保（画像2枚分） */
  height: 200vh;
  /* overflowを指定しない（←これ大事） */
}

.pararakusu-img {
  height: 100vh;
}

.pararakusu-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 固定される1枚目 */
.pararakusu-img.img01 {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #000; /* 背景指定で重なりがわかりやすく */
}

/* 下から出てくる2枚目 */
.pararakusu-img.img02 {
  position: relative;
  z-index: 3;
}

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */