
@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;

  
}

/* フッター */
/* フッター全体 */
.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);
}





/* ジャーナルここから */



.journal-list {
  max-width: 800px;
  margin: 0 auto 60px;
}

.journal-entry {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.journal-entry h3 {
  margin: 10px 0 5px;
  font-size: 1.1rem;
}

.journal-entry p {
  margin: 6px 0;
  font-size: 0.9rem;
}

.pagination {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
}

.pagination button, .pagination span {
  background: none;
  border: none;
  font-size: 1rem;
  margin: 0 6px;
  cursor: pointer;
  color: #5c4b68;
}

.pagination button:disabled {
  opacity: 0.3;
  cursor: default;
}

.pagination .current {
  border: 1px solid #b29cc5;
  border-radius: 50%;
  padding: 6px 12px;
  color: #2c1d00;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    font-family: 'Cormorant Garamond', serif;
  }
  
  .pagination button {
    border: none;
    background: transparent;
    color: #2c1d00;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .pagination button.active {
    border: 1px solid #2c1d00;
    color: #2c1d00;
  }
  
  .pagination button:disabled {
    opacity: 0.3;
    cursor: default;
  }
  
  .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);
  }
  
/* ここまで */