
@charset "utf-8";

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

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


/* ヘッダー */
header {
display: flex;
justify-content: flex-end;
padding: 24px 40px;
position: relative;
z-index: 10;
}



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;


}

nav a:hover {
  opacity: 0.5;
}


.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #000;
  margin-right: auto;
  text-decoration: none;
  line-height: 1;
  mix-blend-mode: multiply;
  letter-spacing: 0.02em;
  font-weight: 500;
  opacity: 0.8;

  
}

  /* ここまで */

  /* ここからショップセクション */

  
  .shop-section {
    display: flex;
    max-width: 1800px;
    margin: 80px auto;
    padding: 0 20px;
    align-items: flex-end; 
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  
  
  .shop-image {
    flex: 1;
    min-width: 300px;
  }
  
  .shop-image img {
    width: 100%;
    height: auto;
    display: block;
    /* border-radius: 4px; */
  }
  
  .shop-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    height: 100%;
  }
  
  .shop-name {
    font-size: 4vw;
    font-family: 'Cormorant Garamond', serif;
    mix-blend-mode: multiply;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: black;
    opacity: 0.8;
    white-space: nowrap;

    margin-bottom: 16px;
  }
  
  .shop-address,
  .shop-contact,
  .shop-hours {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #2c1d00;
    font-family: 'Noto Serif JP', serif;

  }
  
  .shop-links {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .btn {
    border: 1px solid #000;
    padding: 6px 16px;
    font-size: 0.8rem;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
    font-family: 'Cormorant Garamond', serif;

  }
  
  .btn:hover {
    background: #000;
    color: #fff;
  }
  
  .btn.dark {
    /* background-color: #000; */
    color: #000;
  }

  .btn.dark:hover {
    background: #000;
    color: #fff;
  }
  
  .icon {
    font-size: 1.2rem;
    color: #000;
    transition: 0.3s;
  }
  
  .icon:hover {
    color: #888;
  }

  .shop-image,
.shop-info {
  flex: none;
  width: 50%; 
}

.shop-section {
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    gap: 60px;
    margin: 80px auto;
    padding: 0 20px;
    margin-top: 150px;
    margin-bottom: 150px;
    max-width: 1800px;
  }
  
  .shop-image {
    flex: none;
    width: 800px; 
  }
  
  .shop-info {
    flex: none;
    width: 360px;
    align-self: flex-end; 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
   
  .insta-icon {
    width: 20px;
    height: 20px;
    display: block;
    transition: 0.3s;
  }
  
  .icon:hover .insta-icon {
    opacity: 0.6;
  }
  
/* アニメーション */
/* 一文字ずつ出すやつ */
.animated-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }
  
  .animated-text span.appear {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* 日本語情報ふわっと */
  .shop-address,
  .shop-contact,
  .shop-hours {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
  }
  
  .shop-address.fade-up,
  .shop-contact.fade-up,
  .shop-hours.fade-up {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* 画像ふわっと */
  .fade-img img {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
  }
  
  .fade-img.fade-in img {
    opacity: 1;
    transform: translateY(0);
  }

  .shop-image {
    overflow: hidden; 
    position: relative;
  }
  
  .shop-image img {
    transition: transform 0.6s ease;
    will-change: transform;
  }
  
  .shop-image:hover img {
    transform: scale(1.05);
  }
  
  

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

  
  
  /* ここまで */
/* フッター */

.footer {
position: relative;
padding: 0;
overflow: hidden;
background-color: #C8BBA8;
}

/*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;
}

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

/* フッター見出しアニメーション用 */
.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-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 7rem;
color: black;
font-family: 'Cormorant Garamond', serif;
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;
}

.shop-overlay {
font-size: 7.5rem;
color: black;
font-family: 'Cormorant Garamond', serif;
white-space: nowrap;
mix-blend-mode: multiply;

}




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

.shop-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 7.5rem;
color: black;
font-family: 'Cormorant Garamond', serif;
white-space: nowrap;
pointer-events: none;
display: flex;
gap: 0.05em;
}

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

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

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



