body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #1a1a1a; /* ベースの色 */
}

/* iOS/iPadOSでも背景画像を鮮明に保つための「固定壁紙」設定 */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/background.png");
  background-size: cover;
  background-position: center;
  z-index: -1; /* コンテンツの背面に配置 */
  pointer-events: none;
}

@media screen and (max-width: 1366px) {
  /* iOSでの拡大バグを完全に防ぐ */
  body::before {
    height: 100vh; /* ビューポートの高さに固定 */
    background-attachment: scroll; /* position: fixedがあるのでscrollでOK */
  }
}

a {
  text-decoration: none; /* 下線を消す */
  color: inherit; /* 親要素の色を継承（または好みの色を指定） */
  outline: none;
}
a:focus {
  outline: none;
}
/* ヘッダー */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
/* ハンバーガーメニューボタン */
.hamburger-menu {
  position: fixed;
  right: 30px;
  top: 30px;
  width: 24px;   /* 30px -> 24px */
  height: 16px;  /* 22px -> 16px */
  z-index: 2000;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 1px;   /* 2px -> 1px (より繊細に) */
  background-color: #C48A00;
  transition: all 0.3s ease-in-out;
}

/* ハンバーガーメニューのアニメーション（バツ印） */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg); /* 位置調整 */
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg); /* 位置調整 */
}

/* ナビゲーションメニュー（全画面） */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu.active {
  opacity: 1;
  pointer-events: auto;
}

.menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-right: 30px;
}

.menu li {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
}

.menu.active li {
  opacity: 1;
  transform: translateY(0);
}

/* メニュー項目の遅延表示 */
.menu.active li:nth-child(1) { transition-delay: 0.1s; }
.menu.active li:nth-child(2) { transition-delay: 0.2s; }
.menu.active li:nth-child(3) { transition-delay: 0.3s; }
.menu.active li:nth-child(4) { transition-delay: 0.4s; }

.menu li a {
  color: #333333;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-decoration: none;
  position: relative;
}

/* ホバー時の下線（シンプルに） */
.menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #333;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.menu li a:hover::after {
  transform: scaleX(1);
}

/* 言語切り替えリンク */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.lang-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
}

.lang-link:hover {
  color: #d9b873;
  opacity: 1;
}

.lang-link.active {
  color: #d9b873;
  font-weight: 600;
  border-bottom: 1px solid #d9b873;
}

.lang-separator {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}

/* Back Button */
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: #2c1810;
  text-decoration: none;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.back-button:hover {
  transform: translateX(-5px);
}

.back-button svg {
  width: 20px;
  height: 20px;
}

/* メイン */
.about-header {
  text-align: center;
  margin-top: 120px; /* ヘッダー分の余白 */
  margin-bottom: 40px;
  padding-left: 100px; /* 左右の余白を追加 */
  padding-right: 100px;
}

.site-subheading {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
  border: none;
  color: #F0E9E2; 
  font-size: 38px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 2px;
}

.site-subheading::after {
  display: none;
}

.site-subheading .letter {
  display: inline-block;
  opacity: 1;
  transform: none;
  filter: none;
}
/* レジュメ */
.resume-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px;
}

/* プロフィールセクション */
.profile-section {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin:50px 0px 150px 0px;
  opacity: 0;
  filter: blur(20px);
  transform: translateY(50px) scale(0.95);
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}

.profile-section.visible {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
}

.profile-image {
  flex-shrink: 0;
  opacity: 0;
  filter: blur(15px);
  transform: translateX(-30px);
  transition: opacity 1s ease 0.2s, filter 1s ease 0.2s, transform 1s ease 0.2s;
}

.profile-section.visible .profile-image {
  opacity: 1;
  filter: none;
  transform: translateX(0);
}

.profile-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
}

.profile-text {
  flex: 1;
  opacity: 0;
  filter: blur(15px);
  transform: translateX(30px);
  transition: opacity 1s ease 0.4s, filter 1s ease 0.4s, transform 1s ease 0.4s;
}

.profile-section.visible .profile-text {
  opacity: 1;
  filter: none;
  transform: translateX(0);
}

.profile-name {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  color: #F0E9E2;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.profile-bio {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 2;
  color: #F0E9E2;
  letter-spacing: 1px;
}

/* タイムラインセクション */
.timeline-section {
  width: 100%;
}

.timeline {
  position: relative;
  padding: 20px 0;
  margin: 50px 0px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #F0E9E2;
  transform: translateX(-50%);
}

.event {
  position: relative;
  margin-bottom: 30px; /* デフォルトの間隔を狭く */
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 30px);
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.event.visible {
  opacity: 1;
  transform: translateX(0);
}

.content p a.timeline-link,
a.timeline-link {
  color: #d9b873 !important;
  text-decoration: none !important;
  margin-left: 5px;
  font-weight: 500;
  transition: opacity 0.3s ease, text-decoration 0.3s ease;
}

.content p a.timeline-link:hover,
a.timeline-link:hover {
  opacity: 0.8 !important;
  text-decoration: underline !important;
}

.event:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 30px);
  transform: translateX(30px);
}

.event:nth-child(even).visible {
  transform: translateX(0);
}

/* 年が近いイベントの間隔を調整 */
.event:nth-child(3), /* 2024.09 */
.event:nth-child(4), /* 2024.12 */
.event:nth-child(5) { /* 2025.02 */
  margin-bottom: 20px; /* より狭く */
}

.dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 8px; /* 12px -> 8px に縮小 */
  height: 8px;
  background-color: #F0E9E2;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: transform 0.3s ease;
}

.event.visible .dot {
  transform: translateX(-50%) scale(1.2);
}

.dot.college {
  background-color: #C48A00;
  width: 12px; /* 16px -> 12px に縮小 */
  height: 12px;
}

.content {
  max-width: 400px;
}

.content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  color: #F0E9E2;
  margin-bottom: 8px;
  font-weight: 500;
}

.content p {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  line-height: 1.8;
  color: #F0E9E2;
}

.content.college p {
  color: #C48A00;
}


/* Hobbyセクション */
.hobby-section {
  margin-top: 150px;
  margin-bottom: 80px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #F0E9E2;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 3px;
  font-weight: 500;
}

.hobby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.hobby-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 0.8s ease-out;
}

.hobby-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 順番にアニメーション */
.hobby-item:nth-child(1).visible { transition-delay: 0.1s; }
.hobby-item:nth-child(2).visible { transition-delay: 0.2s; }
.hobby-item:nth-child(3).visible { transition-delay: 0.3s; }
.hobby-item:nth-child(4).visible { transition-delay: 0.1s; }
.hobby-item:nth-child(5).visible { transition-delay: 0.2s; }
.hobby-item:nth-child(6).visible { transition-delay: 0.3s; }
.hobby-item:nth-child(7).visible { transition-delay: 0.1s; }
.hobby-item:nth-child(8).visible { transition-delay: 0.2s; }
.hobby-item:nth-child(9).visible { transition-delay: 0.3s; }

.hobby-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hobby-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box; /* paddingを含めた幅計算 */
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* モバイル用：最初の1枚に「ここが押せる」ことを伝えるヒントアニメーション */
.hobby-item.hint-animation .hobby-overlay {
  animation: hintFade 2.2s ease-in-out forwards;
}

@keyframes hintFade {
  0% { opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; }
}

.hobby-item:hover .hobby-overlay,
.hobby-item.active .hobby-overlay {
  opacity: 1;
  animation: none; /* ホバー時はアニメーションを上書き */
}

.hobby-item:hover img,
.hobby-item.active img {
  transform: scale(1.1);
}

.hobby-title {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #F0E9E2;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

.hobby-description {
  font-family: "Noto Serif JP", serif;
  font-size: 11px;
  color: #F0E9E2;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.5px;
  width: 100%;
  word-wrap: break-word; /* 長い単語を折り返す */
  overflow-wrap: break-word; /* 単語の途中でも折り返す */
}

/* Skillsセクション */
.skills-section {
  margin-top: 150px;
  margin-bottom: 100px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.skill-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 233, 226, 0.2);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.skill-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 順番にアニメーション */
.skill-item:nth-child(1).visible { transition-delay: 0.1s; }
.skill-item:nth-child(2).visible { transition-delay: 0.2s; }
.skill-item:nth-child(3).visible { transition-delay: 0.3s; }
.skill-item:nth-child(4).visible { transition-delay: 0.4s; }
.skill-item:nth-child(5).visible { transition-delay: 0.5s; }
.skill-item:nth-child(6).visible { transition-delay: 0.6s; }

.skill-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #C48A00;
  transform: translateY(-5px);
}

.skill-item h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: #F0E9E2;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}

.skill-level {
  width: 100%;
  height: 6px;
  background-color: rgba(128, 128, 128, 0.3); /* 灰色に変更 */
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar {
  height: 100%;
  background: #DABD8F;
  border-radius: 3px;
  transition: width 0.8s ease;
}
/* タブレット大 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .resume-container {
    padding: 35px 40px;
  }
.site-subheading{
    font-size: 32px;
  }
  .profile-section {
    gap: 50px;
  }

  .profile-image img {
    width: 220px;
    height: 220px;
  }
  .profile-bio{
    font-size: 13px;
  }
  .hobby-grid {
  max-width: 800px;
  gap: 40px;
}

  .hobby-grid,
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .section-title{
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hobby-grid,
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section-title {
    font-size: 28px;
  }

  .skill-item {
    padding: 20px 15px;
  }
}
/* タブレット用 (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .resume-container {
    padding: 30px 25px;
  }

  .profile-section {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .profile-image img {
    width: 180px;
    height: 180px;
  }

  .profile-name {
    font-size: 22px;
  }

  .profile-bio {
    font-size: 12px;
  }

  .timeline::before {
    left: 20px;
  }

  .event,
  .event:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50px;
    padding-right: 0;
  }

  .dot {
    left: 20px;
  }

  .content {
    max-width: 100%;
  }
.hobby-grid{
  max-width: 600px;
  gap: 35px;
}
  .hobby-grid,
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .section-title {
    font-size: 28px;
  }


  .lang-link, .lang-separator {
    font-size: 14px;
    font-weight: 600;
  }

  .site-subheading {
    padding: 20px 40px;
    font-size: 30px;
  }
}


/* スマホ用 (480px以下) */
@media (max-width: 480px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    display: block;
  }

  .resume-container {
    padding: 20px 15px;
  }

  .profile-section {
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
  }

  .profile-image img {
    width: 120px;
    height: 120px;
  }

  .profile-name {
    font-size: 18px;
  }

  .profile-bio {
    font-size: 12px;
    line-height: 1.8;
  }

  .timeline-section {
    margin-top: 40px;
  }

  .timeline::before {
    left: 15px;
  }

  .event,
  .event:nth-child(even) {
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .dot {
    left: 15px;
    width: 6px;
    height: 6px;
  }

  .dot.college {
    width: 10px;
    height: 10px;
  }

  .content {
    max-width: 100%;
  }

  .content h2 {
    font-size: 11px;
  }

  .content p {
    font-size: 11px;
    line-height: 1.6;
  }

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

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
.hobby-grid{
  max-width: 200px;

}
  .hobby-grid,
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .hobby-title {
    font-size: 16px;
  }

  .hobby-description {
    font-size: 10px;
  }

  .skills-section {
    margin-top: 60px;
    margin-bottom: 80px;
  }

  .skill-item {
    padding: 20px 15px;
  }
.skills-grid{
  max-width: 350px;
}
  .skill-item h3 {
    font-size: 16px;
  }


  .lang-link, .lang-separator {
    font-size: 14px;
    font-weight: 600;
  }

  .site-subheading {
    padding: 15px 20px;
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .profile-section {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .profile-image img {
    width: 150px;
    height: 150px;
  }

  .profile-name {
    font-size: 20px;
  }

  .profile-bio {
    font-size: 13px;
  }

  .timeline::before {
    left: 20px;
  }

  .event,
  .event:nth-child(even) {
    justify-content: flex-start;
    padding-left: 50px;
    padding-right: 0;
  }

  .dot {
    left: 20px;
  }

  .content {
    max-width: 100%;
  }
}

@media (max-width: 670px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    display: block;
  }
}

/* SNSリンク */
.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.sns-link-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background-color: transparent;
  border: 1px solid #d9b873;
  color: #d9b873 !important;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.sns-link-item i {
  font-size: 15px;
}

.sns-link-item:hover {
  background-color: #d9b873;
  color: #1c1c1c !important;
  opacity: 1 !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sns-links {
    gap: 10px;
    margin-top: 25px;
  }
  
  .sns-link-item {
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Music Video Placeholder Section
   ========================================================================== */
.mv-placeholder-section {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.mv-placeholder-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  letter-spacing: 4px;
  color: #C48A00;
  margin-bottom: 25px;
  font-weight: 400;
}

.mv-aspect-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(196, 138, 0, 0.15);
}

.mv-placeholder-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(40, 40, 40, 0.95));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.mv-play-svg {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  animation: mvPulse 2s infinite ease-in-out;
  border-radius: 50%;
}

.mv-play-circle {
  fill: rgba(196, 138, 0, 0.05);
  stroke: rgba(196, 138, 0, 0.4);
  stroke-width: 1.5px;
}

.mv-play-triangle {
  fill: #C48A00;
}

.mv-status {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  letter-spacing: 6px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 300;
  text-transform: uppercase;
}

.mv-description {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #888888;
  font-weight: 300;
  line-height: 1.6;
}

@keyframes mvPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 138, 0, 0.4);
    background: rgba(196, 138, 0, 0.05);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(196, 138, 0, 0);
    background: rgba(196, 138, 0, 0.15);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(196, 138, 0, 0);
    background: rgba(196, 138, 0, 0.05);
  }
}

@media (max-width: 768px) {
  .mv-placeholder-section {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .mv-placeholder-section .section-title {
    font-size: 20px;
  }
  .mv-play-svg {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }
  .mv-status {
    font-size: 18px;
    letter-spacing: 4px;
  }
  .mv-description {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-section {
  width: 100%;
  max-width: 800px;
  margin: 100px auto 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.news-section .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  letter-spacing: 4px;
  color: #C48A00;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
}

.news-card {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 138, 0, 0.3);
}

.news-image {
  flex: 0 0 240px;
  max-width: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  flex: 1;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.news-badge {
  align-self: flex-start;
  font-family: "Cormorant Garamond", serif;
  font-size: 10px;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: #999;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 15px;
  font-weight: 400;
  text-transform: uppercase;
}

.news-date {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #F0E9E2;
  margin-bottom: 8px;
  font-weight: 500;
}

.news-card-title {
  font-family: "Noto Serif JP", "Shippori Mincho", serif;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 500;
}

.news-text {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  color: #aaaaaa;
  line-height: 1.7;
  font-weight: 300;
}

.news-toggle-btn {
  display: none;
}

@media (max-width: 768px) {
  .news-section {
    margin: 60px auto 40px auto;
  }
  .news-section .section-title {
    font-size: 20px;
  }
  .news-card {
    flex-direction: column;
  }
  .news-image {
    flex: none;
    max-width: 100%;
    width: 100%;
    height: auto !important;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.4s ease-out;
  }
  .news-image.open {
    max-height: 600px;
    opacity: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .news-content {
    padding: 25px;
  }
  .news-card-title {
    font-size: 15px;
  }
  .news-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(196, 138, 0, 0.08);
    border: 1px solid rgba(196, 138, 0, 0.3);
    color: #C48A00;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .news-toggle-btn:hover, .news-toggle-btn:active {
    background: rgba(196, 138, 0, 0.15);
  }
  .news-toggle-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
  }
  .news-toggle-btn.active i {
    transform: rotate(180deg);
  }
}


