
@charset "utf-8";

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

body {
margin: 0;
font-family: 'Cormorant Garamond', serif;
color: #2c1d00;
background-color: #C8BBA8;
}


/* ヘッダー */



nav ul {
display: flex;
gap: 24px;
list-style: none;
}

nav a {
text-decoration: none;
color: #000;
font-family: 'Cormorant Garamond', serif;

font-size: 1.0rem;

}



.left-content {
width: 20%;
padding: 40px 10px 0 20px;
position: relative;
z-index: 6;
}

.description {
font-size: 1rem;
line-height: 1.7;
margin-top: 150px;
color: #111;
mix-blend-mode: darken;
}

.vertical-text {
writing-mode: vertical-rl;
position: absolute;
left: 140px;
bottom: 200px;
font-size: 0.85rem;
opacity: 0.6;
font-family: monospace;

}

.slider-wrapper {
width: 100vw;
overflow: hidden;
height: 90vh;
transform: translateY(100px);
}

.slider-track {
display: flex;
height: 100%;
width: fit-content;
animation: scroll 45s linear infinite;
}

.slide {
flex: 0 0 auto;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.zoom-wrap {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
animation: subtleZoom 20s ease-in-out infinite;
will-change: transform;
backface-visibility: hidden;
transform-style: preserve-3d;
}

.zoom-wrap img {
height: 100%;
width: auto;
display: block;
}

@keyframes scroll {
0%   { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

@keyframes subtleZoom {
0%   { transform: scale(1); }
50%  { transform: scale(1.05); }
100% { transform: scale(1); }
}


.slider-track img {
filter: brightness(0.95) contrast(1.05) saturate(0.9) sepia(0.05);
transition: filter 0.3s ease;
}

.main-visual {
display: flex;
height: 100vh;
overflow: hidden;
position: relative;
}



.vertical-text {
writing-mode: vertical-rl;
position: absolute;
left: 250px;
bottom: 10px;
font-size: 0.75rem;
font-family: 'Josefin Sans', sans-serif;
opacity: 0.9;
letter-spacing: 0.15em;
text-transform: uppercase;
color: #000;
text-decoration: none;
text-align: center;
line-height: 1.4;
padding-bottom: 120px; 
font-family: 'Cormorant Garamond', serif;

}

.vertical-text::before,
.vertical-text::after {
content: '';
position: absolute;
left: 50%;
width: 2px;
height: 100px;
transform: translateX(-50%);
}

.vertical-text::before {
background: #ccc;
bottom: 0;
}

.vertical-text::after {
background: #000;
bottom: 0;
animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
animation: sdl01 3s ease-in-out infinite;
}

@keyframes sdl01 {
0% {
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
}
50% {
  transform: translateX(-50%) scaleY(1);
  transform-origin: top;
}
50.1% {
  transform: translateX(-50%) scaleY(1);
  transform-origin: bottom;
}
100% {
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom;
}
}

.description {
position: absolute;
top: 10%;
left: 2vw;
max-width: 30vw;
z-index: 10;
font-size: 1.55rem;
line-height: 1.8;
/* font-family: 'Noto Sans JP', sans-serif; */
color: #2c1d00;
font-family: 'Noto Serif JP', serif;
margin-top: 200px;

}

.description .sub-en {
display: block;
margin-top: 8px;
font-size: 0.75rem;
font-family: 'Cormorant Garamond', serif;
/* font-family: 'Playfair Display', serif; */

color: #555;
letter-spacing: 0.04em;
font-style: italic;
}




/* LUNOAのロゴ */

.logo span {
display: inline-block;
opacity: 0;
transform: translateY(30px);
}

.logo span.animate {
animation: fadeUp 0.5s ease-out forwards;
}

@keyframes fadeUp {
to {
  opacity: 1;
  transform: translateY(0);
}
}

.description.animate {
animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
0% {
  opacity: 0;
  transform: translateY(20px);
}
100% {
  opacity: 1;
  transform: translateY(0);
}
}

.description {
opacity: 0;
transition: opacity 0.3s;
}

/* 共通アニメーション */
.fade-in-up {
opacity: 0;
transform: translateY(20px);
transition: all 0.8s ease-out;
}

.fade-in-up.show {
opacity: 1;
transform: translateY(0);
}

/* スライドショーアニメーション */

.fade-in-up {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 1s ease-out 1.6s forwards; /* ← ロゴとテキスト後に出てくるように */
}

@keyframes fadeInUp {
to {
  opacity: 1;
  transform: translateY(0);
}
}

.slider-wrapper {
opacity: 0;
animation: fadeInSimple 1.2s ease-out 1.2s forwards;
}

@keyframes fadeInSimple {
to {
  opacity: 1;
}
}

.sub-en.fade-in-up {
transform: none; 
transition: opacity 1s ease-out;
}

/* アバウトセクション */

.about-section {
position: relative;
/* background-color: #f2eee9; */
height: 100vh;
overflow: hidden;
margin-top: 100px;
}

.about-img {
position: absolute;
width: 30vw;
max-width: 600px;
}

.img-left {
top: 10%;
left: 8%;
}

.img-right {
top: 20%;
right: 0%;
}

.about-img img {
width: 70%;
height: auto;
object-fit: cover;
}

.about-text {
position: absolute;
top: 10%;
left: 50%;
transform: translateX(-50%);
text-align: center;
z-index: 2;
}



.about-text .en {
font-size: 0.75rem;
color: #888;

font-style: italic;
color: #555;
letter-spacing: 0.04em;
font-family: 'Cormorant Garamond', serif;


}





.about-thumb {
position: absolute;
bottom: 5%;
left: 65%;
transform: translateX(-50%);
width: 300px;
height: auto;
overflow: hidden;
}

.about-thumb img {
width: 70%;
height: auto;
object-fit: cover;
}

/* aboutのアニメーション */

/* アバウトセクション文字 */

.jp {
font-size: 1.3rem;
color: #2c1d00;
font-family: 'Noto Serif JP', serif;
line-height: 2.2; 
}

.en {
font-size: 0.75rem;
margin-top: 20px;
/* font-family: 'Playfair Display', serif; */
font-style: italic;
line-height: 2; 
color: #555;
font-family: 'Cormorant Garamond', serif;
}

.about-heading {
font-family: 'Cormorant Garamond', serif;
font-size: 6vw; 
font-weight: 500;
color: black;
opacity: 0.8;
mix-blend-mode: multiply;
line-height: 1;
margin-bottom: 50px;
letter-spacing: 0.02em;
position: relative;
font-size: 2vw; 
}

.img-left-size {
width: 75% !important;
}

.img-right-size {
width: 55% !important;
}

/* ボタン */





/* ここまでボタン */

/* 試し */

.read-more-wrap {
  margin-top: 40px;
  text-align: center;
}

.about-readmore-button {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
  border: 1px solid #aaa;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-readmore-button .arrow {
  font-size: 1.4rem;
  color: #000;
  transition: transform 0.3s ease;
}

.about-readmore-button:hover {
  background-color: #2c1d00;
}

.about-readmore-button:hover .arrow {
  color: #fff;
  transform: translateX(2px);
}

.read-more-wrap .more-label {
  font-size: 0.75rem;
  color: #2c1d00;
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1em;
}


/* ここまで */
.yuragi-effect {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.yuragi-effect.show {
opacity: 1;
transform: translateY(0);
}

.about-img img,
.about-thumb img {
animation: zoomIn 5s ease-in-out infinite alternate;
transform-origin: center center;
will-change: transform;
}

@keyframes zoomIn {
0% {
  transform: scale(1);
}
100% {
  transform: scale(1.07); 
}
}

.zoom-in {
animation: zoomIn 12s ease-in-out infinite;
}

.zoom-in.delay-1 {
animation-delay: 0s;
}
.zoom-in.delay-2 {
animation-delay: 1.5s;
}
.zoom-in.delay-3 {
animation-delay: 3s;
}

/* アバウト文字部分アニメーション */

.about-heading span {
display: inline-block;
opacity: 0;
transform: translateY(30px);
}

.about-heading span.animate {
animation: fadeUp 0.5s ease-out forwards;
}

#aboutJP,
#aboutEN {
opacity: 0;
transform: translateY(30px);
}

#aboutJP.animate,
#aboutEN.animate {
animation: fadeUp 0.6s ease-out forwards;
}


/* 練習 */

/* フッター */
/* フッター全体 */
.footer {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-color: #C8BBA8;
  margin-top: 160px;
}

/*LUNOA 流れる*/
.footer-marquee {
  white-space: nowrap;
  overflow: hidden;
}
.marquee-content {
  display: inline-block;
  font-size: 15vw;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: black;
  opacity: 0.08;
  mix-blend-mode: multiply;
  animation: marquee 30s linear infinite;
}
.marquee-content span {
  margin-right: 4vw;
}
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* CONTACTCOMPANY セクション  */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.footer-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 340px;
  color: #2c1d00;
}


.footer-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 見出し */
.footer-box h3 {
  font-size: 4.6rem;
    font-family: 'Cormorant Garamond', serif;
    mix-blend-mode: multiply;
  margin: 0;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: black;
  opacity: 0.8;


  
}

/* 日本語テキスト */
.footer-box p {
  color: #2c1d00;
  line-height: 2.2;
  font-family: 'Noto Serif JP', serif;

  font-size: 1.3rem;
}


/* --- FOLLOW US セクション --- */
.footer-bottom {
  padding: 40px 60px;
  font-size: 0.9rem;
  color: #2c1d00;
  display: flex;
  flex-direction: column;
  gap: 20px;

}
.follow-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.follow-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.follow-left h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;

}
.sns-icons {
  display: flex;
  gap: 16px;
}
.sns-icons img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%);
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-family: 'Cormorant Garamond', serif;

}
.footer-nav a {
  text-decoration: none;
  color: #000;
  font-family: 'Cormorant Garamond', serif;

}

.footer-nav a:hover {
  opacity: 0.5;
}

.copyright {
  text-align: right;
  font-size: 0.75rem;
  opacity: 0.8;
  font-family: 'Cormorant Garamond', serif;

}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 160px; 
  padding: 60px 20px;
  flex-wrap: wrap;
}

.footer-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px; 
}

/* 正円ボタン */
.circle-button {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1; /* 正円 */
  border: 1px solid #aaa;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.circle-button .arrow {
  font-size: 1.4rem;
  color: #000;
  transition: transform 0.3s ease;
}

.circle-button:hover .arrow {
  transform: translateX(3px);
}
.circle-button:hover {
  background-color: #2c1d00;
  }
  
  .circle-button:hover .arrow {
  color: #fff;
  transform: translateX(2px);
  }
  

/* フッター見出しアニメーション用 */
.footer-box h3 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}

.footer-box h3 span.animate {
  animation: fadeUp 0.5s ease-out forwards;
}

/* 日本語 */

.footer-jp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.footer-jp.animate {
  opacity: 1;
  transform: translateY(0);
}

/* オンラインショップショップリスト */
.shop-zoom-area {
  height: 260vh; 
  position: relative;
  /* background: #C8BBA8; */
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-link {
  display: block;
  text-decoration: none;
  pointer-events: auto;
}

.shop-image-wrapper {
  width: 60vw;
  transition: transform 0.3s ease-out;
  transform-origin: center;
  position: relative;
  pointer-events: auto;
}

.shop-image-wrapper img {
  width: 100%;
  display: block;
  filter: brightness(88%);
}

.shop-image-wrapper {
  overflow: hidden; 
}

.shop-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 1.2s ease; 
}

.shop-link:hover .shop-image-wrapper img {
  transform: scale(1.05); 
}


.shop-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 7rem;
  color: black;
  font-family: 'Cormorant Garamond', serif;
  /* opacity: 0; */
  transition: opacity 0.6s ease;
  pointer-events: none;
  white-space: nowrap; 

}

.shop-overlay-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}





/* オンラインショップアニメーション */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* 練習 */
.section__pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}







.about-section {
  position: relative;
  z-index: 2;
  background-color: #C8BBA8; /* ← LUNOAが透けないように必須 */
}

/* LUNOA文字ヘッダー戻し */


header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  z-index: 1000; /* 必ず一番上に */
  display: flex;
  justify-content: flex-end;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}

.logo {
  position: absolute;
  /* top: 20px; */
  top: 0;
  left: 30px;
  font-size: 15vw;
  line-height: 1;
  z-index: 5;
  pointer-events: none;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  opacity: 0.8;
  mix-blend-mode: multiply;
  color: #000;
  left: 30px; /* 必要に応じて調整 */
  z-index: 900;  /* header より下にならないよう注意 */

}

nav {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 6;
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #000;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-size: 1.0rem;

}

nav a:hover {
  opacity: 0.5;
}

.main-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slider-wrapper {
  width: 100vw;
  overflow: hidden;
  height: 90vh;
  transform: translateY(150px); /* ← 前より下げる（100 → 180pxなどに） */
  opacity: 0;
  animation: fadeInSimple 1.2s ease-out 1.2s forwards;
}

/* 練習 */
.scroll-wrapper {
  position: relative;
}

.main-visual {
  position: relative;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.8s ease-in-out;
}

.main-visual.push-up {
  transform: translateY(-100vh); /* 1画面ぶん上へ */
}

.main-visual {
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-section {
  margin-top: 0;
  padding-top: 0;
}

/* 練習 */
/* 画面拡大するアニメーションのセクション */

.shop-zoom-area {
  height: 260vh;
  position: relative;
  /* background: #C8BBA8; */
  overflow: visible;
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-link {
  display: block;
  text-decoration: none;
  pointer-events: auto;
}

.shop-image-wrapper {
  width: 60vw;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-out;
  transform-origin: center;
}

.shop-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform 1.5s ease;
  filter: brightness(88%);
}

.shop-link:hover .shop-image-wrapper img {
  transform: scale(1.05);
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: white;
  text-shadow: 0 0 6px rgba(0,0,0,0.3);
  font-family: 'Cormorant Garamond', serif;
  max-width: 50%;
  z-index: 2;
}

.shop-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  color: black;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}

.shop-main {
  font-size: 4vw; /* 大きな見出し：例 ALL PRODUCTS */
  font-weight: 500;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: black;
  opacity: 0.8;
  mix-blend-mode: multiply;
  line-height: 1;

}

.shop-sub-jp {

  font-size: 1.3rem;
  color: #2c1d00;
  font-family: 'Noto Serif JP', serif;
  line-height: 2.2; 
}

.shop-sub-en {

  font-size: 0.75rem;
  /* font-family: 'Playfair Display', serif; */
  font-style: italic;
  line-height: 2; 
  color: #555;
}


.view-detail {
  position: absolute;
  right: 2%;
  bottom: 5%;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: white;
  font-family: 'Josefin Sans', sans-serif;
  border-top: 1px solid white;
  padding-top: 0.5rem;
  text-align: right;
}

.shop-overlay-wrap {
  position: absolute;
  top: 50%;
  left: 8%; /* ← 左に大きくはみ出す */
  transform: translateY(-50%);
  text-align: left;
  color: white;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

/* 横の線伸びる要素 */
.scroll_right {
  position: absolute; /* または fixed / relative に調整可 */
  top: 50%;
  right: 100px; /* 画像の近くに調整 */
  transform: translateY(-50%);
  z-index: 10;
}

.scroll_right a {
  display: inline-block;
  position: relative;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  padding-left: 60px; /* テキストと棒の間隔 */

  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  line-height: 1.4;
  font-family: 'Cormorant Garamond', serif;

}

.scroll_right a:hover {
  opacity: 0.6;
}

/* 下地の薄いライン */
.scroll_right a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 2px;
  background: #ddd;
  transform: translateY(-50%);
}

/* アニメーションするライン */
.scroll_right a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 2px;
  background: #000;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  animation: sdl-horizontal 3.0s cubic-bezier(1, 0, 0, 1) infinite;
}

/* アニメーション定義 */
@keyframes sdl-horizontal {
  0% {
    transform: translateY(-50%) scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: translateY(-50%) scaleX(1);
    transform-origin: left;
  }
  50.1% {
    transform: translateY(-50%) scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: translateY(-50%) scaleX(0);
    transform-origin: right;
  }
}

.scroll_right a {
  padding-left: 140px; /* ← 棒線の長さとテキストの距離を広げる */
}

/* 棒線をもっと長くして画像へ届かせる */
.scroll_right a::before,
.scroll_right a::after {
  width: 120px; /* ← ここも増やす */
}

/* 棒のふわっとアニメーション */

/* オールプロダクト文字 */


/* ジャーナル部分 */
.lunoa-news-section {
  /* background-color: #f6f5f3; */
  padding: 80px 20px;
  font-family: "Noto Serif JP", serif;
  margin-top: 120px;
}

.lunoa-news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.lunoa-news-list li {
  position: relative;
  /* border-bottom: 1px solid #2c1d00; */
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.news-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding: 30px;
  transition: background-color 0.3s ease;
}

.news-date {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.news-title {
  font-size: 15px;
  /* font-weight: bold; */
  margin-bottom: 8px;
  color: #2c1d00;
}

.news-description {
  font-size: 12px;
  color: #555;
}

.hover-image {
  position: absolute;
  top: 50%;
  right: -150px;
  transform: translateY(-50%) scale(0.96);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 10;
  width: 300px;
  /* border-radius: 8px; */
  /* box-shadow: 0 6px 20px rgba(0,0,0,0.1); */
  overflow: hidden;
}

.hover-image img {
  width: 100%;
  display: block;
}

.news-link:hover .hover-image {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ジャーナル見出し部分 */

.lunoa-journal-header {
  text-align: center;
  margin-bottom: 60px;
}

.journal-title {
  font-weight: 500;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  color: black;
  opacity: 0.8;
  mix-blend-mode: multiply;
  line-height: 1;

  margin-bottom: 20px;
  font-size: 2vw; 

}

.journal-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.journal-tags span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: #2c1d00;
  /* background-color: #e4ded2; */
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;

}

/* ジャーナル見出しアニメーション */
/* アニメーション初期状態 */
.journal-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.2em);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.journal-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.2em);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 初期は非表示 */
.journal-tags,
.lunoa-news-list {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.journal-tags.visible,
.lunoa-news-list.visible {
  opacity: 1;
  transform: translateY(0);
}

/* READ MOREボタン */
.lunoa-news-more-wrap {
  text-align: center;
  margin-top: -80px;
}

.lunoa-news-more-button {
  width: 64px;
  height: 64px;
  aspect-ratio: 1 / 1;
  border: 1px solid #aaa;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lunoa-news-more-button .arrow {
  font-size: 1.4rem;
  color: #000;
  transition: transform 0.3s ease;
}

.lunoa-news-more-button:hover .arrow {
  transform: translateX(3px);
}
.lunoa-news-more-button:hover {
  background-color: #2c1d00;
  }
  
  .lunoa-news-more-button:hover .arrow {
  color: #fff;
  transform: translateX(2px);
  }
  
.more-label {
  font-size: 0.75rem;
  color: #2c1d00;
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.1em;
}




/* インスタセクションここから */
.lunoa-instagram-section {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  margin-top: 160px;
}

.insta-inner {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.insta-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 14px; */
  width: 500px; 
  transform: translateX(50%); 
}

.insta-left {
  position: absolute;
  right: calc(50% + 220px); 
  text-align: right;
}

.insta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.2;
  color: black;
  opacity: 0.8;
  mix-blend-mode: multiply;
  line-height: 1;

}

.insta-account {
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
  font-style: italic;
line-height: 2; 
color: #555;
font-family: 'Cormorant Garamond', serif;

}

.insta-img {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
  /* border-radius: 8px; */
}

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

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


/* インスタセクションここまで */

/* インスタ文字アニメーション */
.split-text span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  transition: all 0.4s ease;
}

.split-text.active span {
  opacity: 1;
  transform: translateY(0);
}

.split-text.active span:nth-child(1) { transition-delay: 0.05s; }
.split-text.active span:nth-child(2) { transition-delay: 0.1s; }
.split-text.active span:nth-child(3) { transition-delay: 0.15s; }
.split-text.active span:nth-child(4) { transition-delay: 0.2s; }
.split-text.active span:nth-child(5) { transition-delay: 0.25s; }
.split-text.active span:nth-child(6) { transition-delay: 0.3s; }
.split-text.active span:nth-child(7) { transition-delay: 0.35s; }
.split-text.active span:nth-child(8) { transition-delay: 0.4s; }
.split-text.active span:nth-child(9) { transition-delay: 0.45s; }

.fade-text {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.fade-text.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* インスタ画像 */
.insta-img {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.insta-img.visible {
  opacity: 1;
  transform: translateY(0);
}



/* アニメーションリベンジ */
.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shop-sub-jp,
.shop-sub-en {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.shop-sub-jp,
.shop-sub-en {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.shop-sub-jp.animate,
.shop-sub-en.animate {
  opacity: 1;
  transform: translateY(0);
}

.shop-sub-jp,
.shop-sub-en {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.shop-sub-jp.animate,
.shop-sub-en.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ここまで */

/* ここから試し */




/* ここまで */
/* レスポンシブ */

/* インスタセクション・ジャーナルセクション */

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lunoa-journal-header {
    padding: 0 32px;
    margin-bottom: 50px;
  }

  .journal-title {
    font-size: 2rem;
  }

  .lunoa-news-list {
    padding: 0 32px;
  }

  .hover-image {
    right: -100px;
    width: 240px;
  }

  .lunoa-instagram-section {
    padding: 80px 0;
    /* margin-top: 200px; */
  }

  .insta-flex {
    gap: 40px;
    position: relative;
    justify-content: center;
  }

  .insta-left {
    position: absolute;
    right: calc(50% + 180px);
    text-align: right;
  }

  .insta-grid {
    width: 440px;
    gap: 12px;
    transform: translateX(50%);
  }

  .insta-title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .lunoa-journal-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .lunoa-news-section{
    margin-top: 0;
  }

  .journal-title {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: black;
    opacity: 0.8;
    mix-blend-mode: multiply;
    line-height: 1;
  
  }

.lunoa-news-section{
  padding: 0 20px;
  margin-top: 40px;
}

  .journal-tags {
    gap: 10px;
  }

  .lunoa-news-list {
    padding: 0 16px;
  }

  .news-link {
    padding: 20px;
  }

  .hover-image {
    display: none; /* スマホでは画像ホバーなし */
  }

  .lunoa-news-more-wrap {
    margin-top: 20px;
  }

  .lunoa-instagram-section {
    /* margin-top: 180px; */
    padding: 60px 0;
  }

  .insta-flex {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .insta-left {
    position: static;
    text-align: center;
  }

  .insta-title {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: black;
    opacity: 0.8;
    mix-blend-mode: multiply;
    line-height: 1;
  
  }

  .insta-grid {
    transform: none;
    width: 300px;
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
  }

  .lunoa-news-more-button{
    width: 52px;
    height: 52px;
  }

  .lunoa-instagram-section{
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

/* ここまで */

/* フッターセクション */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer-marquee .marquee-content {
    font-size: 28vw;
  }

  .footer-links {
    gap: 80px;
    padding: 50px 30px;
  }

  .footer-box {
    width: 300px;
  }


  .footer-bottom {
    padding: 40px 30px;
  }

  .follow-left {
    gap: 8px;
  }

  .footer-nav {
    gap: 16px;
    justify-content: center;
  }

  .copyright {
    text-align: right;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  .footer-marquee .marquee-content {
    font-size: 28vw;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
  }

  .footer-box {
    width: 100%;
    max-width: 300px;
    text-align: center;
    align-items: center;
  }

  .footer-heading-wrap {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  .footer-box h3 {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: black;
    opacity: 0.8;
    mix-blend-mode: multiply;
    line-height: 1;
  
  }

  .footer-box p {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding: 30px 20px;
    gap: 20px;
    text-align: center;
  }

  .follow-us {
    flex-direction: column;
    gap: 20px;
  }

  .follow-left {
    align-items: center;
  }

  .footer-nav {
    justify-content: center;
    gap: 14px;
    font-size: 0.8rem;
  }

  .copyright {
    text-align: center;
    font-size: 0.7rem;
  }
.circle-button{
    width: 52px;
  height: 52px;
}

.footer{
  margin-top: 60px;
}

}

/* ここまで */

/* ファーストビュー */

/* ハンバーガー編 */

nav.navMenu {
  display: flex;
}

nav.navMenu ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav.navMenu li a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  transition: opacity 0.3s;
}

nav.navMenu li a:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  background: #000;
  display: block;
  height: 2px;
  width: 100%;
  margin: 4px 0;
  transition: all 0.4s ease;
}

/* モバイル用メニュー */
@media (max-width: 768px)

 {
  .navMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
  }

  .navMenu.active {
    right: 0;
  }

  .navMenu ul {
    flex-direction: column;
    gap: 30px;
  }

  .hamburger {
    display: flex;
  }

  nav.navMenu {
    display: none; 
  }

  nav.navMenu.active {
    display: flex;
  }
}

@media (max-width: 1024px)
{
  .navMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background-color: #C8BBA8;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    justify-content: flex-start;
  padding-top: 80px;
  }

  .navMenu.active {
    right: 0;
  }

  .navMenu ul {
    flex-direction: column;
    gap: 30px;
  }

  .hamburger {
    display: flex;
  }

  nav.navMenu {
    display: none;
  }

  nav.navMenu.active {
    display: flex;
  }
}


/* ハンバーガー開閉アニメーション */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ここまで */


/* ここからメイン画像（スライダー編） */

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

  .main-visual {
    display: block;
    height: auto;
    overflow: visible;
  }

  .slider-wrapper {
    height: 55vh; /* ← 小さめに調整 */
    transform: none;
    opacity: 1;
  }

  .zoom-wrap img {
    width: 100vw;
    height: 55vh;
    object-fit: cover;
  }

  .description {
    position: static; /* ← 上書き解除 */
    max-width: 90vw;
    margin: 24px auto;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 1;
    z-index: auto;


  }

  .description .sub-en {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 8px;
    font-style: italic;
line-height: 2; 
color: #555;
font-family: 'Cormorant Garamond', serif;

  }

  .left-content,
  .vertical-text {
    display: none;
  }
}

/* アバウトセクション競り上がり無効 */
@media (max-width: 1024px) {
  .main-visual.push-up {
    transform: translateY(0) !important;
  }
}

/* スクロールバー無効化 */
@media screen and (max-width: 1024px) {
  .vertical-text {
    display: none;
  }
}

/* メインビジュアルの文字調整 */
@media screen and (max-width: 1024px) {
  .main-visual {
    display: flex;
    flex-direction: column;
  }

  .slider-wrapper {
    order: 1;
  }

  .description {
    order: 2;
    margin-top: 24px;
  }
}
/* ここまで */

/* アバウトセクションレスポンシブ */
@media screen and (max-width: 1024px) {
  .about-section {
    position: relative;
    height: auto;
    /* padding: 60px 16px 100px; */
  }

  .about-text {
    position: static;
    transform: none;
    text-align: center;
    margin-top: 40px;
  }

  .about-heading {
    font-size: 1.5rem;
    margin-bottom: 24px;
    mix-blend-mode: multiply;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: black;
    opacity: 0.8;
    mix-blend-mode: multiply;
    line-height: 1;
  
  
  }

  .jp {
    font-size: 0.8rem;
    line-height: 2;
    padding: 0 8px;
  }

  .en {
    font-size: 0.65rem;
    line-height: 1.9;
    padding: 0 8px;
    margin-top: 16px;
    font-style: italic;
line-height: 2; 
color: #555;
font-family: 'Cormorant Garamond', serif;

  }

  .read-more-wrap {
    margin-top: 32px;
  }


  }


  .read-more-wrap .more-label {
    font-size: 0.7rem;
    margin-top: 6px;
  }



@media screen and (max-width: 1024px) {
  .about-section {
    margin-top: 20px;
    height: auto !important;
    overflow: visible !important;
  }

  .about-text {
    overflow: visible;
  }

  #aboutJP, #aboutEN {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .about-text {
    padding: 32px 16px;
  }

  .jp {
    font-size: 0.95rem; 
    line-height: 2; 
    line-height: 1.7;
    color: #2c1d00;
    font-family: 'Noto Serif JP', serif;
    line-height: 2.2; 
  
  }

  .en {
    font-size: 0.7rem; 
    line-height: 1.8;
    margin-top: 24px;
  }

  .about-readmore-button {
    width: 52px;
    height: 52px;
  }

  .more-label {
    font-size: 0.7rem;
    margin-top: 6px;
  }

}


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



  /* アニメーション無効化 */
.zoom-in,
.delay-1,
.delay-2,
.delay-4,
.yuragi-effect,
.parallax {
  animation: none !important;
  transform: none !important;
  transition: none !important;
}

}

/* レスポンシブ調整（スマホ用） */


@media screen and (max-width: 1024px) {
  .img-left {
    position: relative;
    display: flex; /* ← ここを flex に */
    justify-content: center; /* 中央揃え */
    top: 0;
    left: 0; /* ← left: 50% をリセット */
    transform: none; /* ← translateX もリセット */
    margin: 40px auto 20px;
    width: 100%;
    max-width: none;
  }

  .img-left img {
    width: 80%;
    max-width: 280px;
    height: auto;
    margin: 0 auto; /* 念のため中央寄せ */
  }



  /* 他の画像は非表示 */
  .img-right,
  .about-thumb {
    display: none;
  }

}

@media screen and (max-width: 1024px) {
  .about-section {
    margin-bottom: 400px; /* ← ここで空ける！ */
  }
}


/* ここまで */

/* ここからオールプロダクトレスポンシブ */
@media screen and (max-width: 1024px) {
  .shop-zoom-area {
    padding: 60px 0;
    text-align: center;
    background-color: #C8BBA8;
  }

  .sticky-container {
    position: static !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .shop-image-wrapper {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }

  .shop-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .shop-overlay-wrap {
    position: static !important;
    transform: none !important;
    margin-top: 0px;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    opacity: 1 !important;
  }



  .shop-overlay {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
  }

  


  .scroll_right {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .shop-overlay-wrap {
    position: relative;
    padding: 0 16px;
    display: flex;
    justify-content: center;
    margin-top: -20px; /* 画像と近づける */
  }

  .shop-overlay {
    position: relative;
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .shop-main {
    position: relative;
    top: -230px;
    margin-bottom: -20px;
    font-size: 1.5rem;
    color: #000;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: black;
    opacity: 0.8;
    mix-blend-mode: multiply;
    line-height: 1;
  
  }

  .shop-sub-jp {
    font-size: 0.9rem;
    color: #2c1d00;
    margin-top: 20px;
    margin-bottom: 0px;
    line-height: 1.7;
    color: #2c1d00;
    font-family: 'Noto Serif JP', serif;
    line-height: 2.2; 
  
  }

  .shop-sub-en {
    font-size: 0.75rem;
    font-style: italic;
    color: #2c1d00;
    line-height: 1.6;
    font-style: italic;
line-height: 2; 
color: #555;
font-family: 'Cormorant Garamond', serif;

  }
}


/* 余白 */
@media screen and (max-width: 1024px) {
  .shop-zoom-area {
    height: auto !important;
    min-height: 0 !important;
    padding: 60px 0 !important;
  }

  .shop-image-wrapper {
    transform: none !important;
  }

  .shop-overlay-wrap {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* 余白 */

@media screen and (max-width: 1024px) {
  .shop-zoom-area {
    height: auto !important;
    min-height: 0 !important;
    padding: 60px 0 !important;
  }

  .sticky-container {
    position: relative !important;
    height: auto !important;
  }

  .shop-image-wrapper {
    width: 100% !important;
    transform: none !important;
  }

  .shop-overlay-wrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  .about-section,
  .section__pin {
    position: relative !important;
    height: auto !important;
  }
}

@media (max-width: 1024px) {
  section.about-section.cover-scroll.section {
    margin-bottom: 0 !important;
    padding-bottom: 40px !important;
  }

  .section__pin {
    position: relative !important;
    height: auto !important;
  }
}
