@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: 'Noto Serif JP', serif;
}


/* フッター全体 */
footer {
    background-color:#f0f0f0; /* 背景色をダーク系に */
    color:#b3e5f7; /* 文字色 */
    text-align: center;
    padding: 30px 20px;
}

/* SNSアイコンのリンク共通 */
footer a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s, opacity 0.3s;
}

/* アイコン画像 */
footer a img {
    width: 40px; /* アイコンサイズ */
    height: 40px;
    object-fit: contain;
}

/* ホバー時のアニメーション */
footer a:hover img {
    transform: scale(1.2); /* 少し大きく */
    opacity: 0.8;           /* 少し透ける */
}

/* コピーライト */
footer p {
    margin-top: 15px;
    font-size: 14px;
    color: #000 ;
}



.photo-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #f8fcff; /* ほのかに水色背景 */
  overflow: hidden;
}

.logo1 {
  position: absolute;
  top: -35px;
  left: -9px;
  width: 511px;
}

.photo {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.main1 {
  top: 0px;
  left: 502px;
  width: 380px;
  height: auto;
}

.main2 {
  top: 0px;
  right: 120px;
  width: 410px;
  height: auto;
}

.main3 {
  bottom: 0px;
  left: 40px;
  width: 650px;
  height: auto;
}

.main4 {
  bottom: 0px;
  right: 383px;
  width: 350px;
  height: auto;
}

.main5 {
  bottom: 0px;
  right: 40px;
  width: 310px;
  height: auto;
}

#menu-button {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 580px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fddde6;
  color: #b3e5f7;
  font-weight: bold;
  font-size: 72px;
  padding: 20px 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.char {
  letter-spacing: 0.5em;
}

.char.last {
  letter-spacing: 0;
}

#menu-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

#fullscreen-menu {
  position: fixed;
  top: 0;
  left: -100vw; /* 初期状態は画面外にある */
  width: 100vw;
  height: 100vh;
  background-color: rgb(239, 199, 223);
  color: #d8f0fd;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: left 0.5s ease;
}

#fullscreen-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

#fullscreen-menu li {
  margin: 20px 0;
  font-size: 24px;
}

#fullscreen-menu a {
  color: white;
  text-decoration: none;
}

#fullscreen-menu ul li a {
    color: #fff; /* 通常の文字色 */
    text-decoration: none; /* 下線を消す場合 */
    transition: color 0.3s ease; /* 色変化を滑らかにする */
}

#fullscreen-menu ul li a:hover {
    color: #b3e5f7; /* ホバー時の文字色 */
}


#fullscreen-menu.open {
  left: 0; /* メニューを画面内にスライド */
}

#close-button {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}



.carousel-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel__container {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__container img {
  position: absolute;
  width: 300px;
  height: 400px;
  object-fit: contain;
  transform-origin: center center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.carousel-wrapper.disable-interaction {
  pointer-events: none;
}



@keyframes spin {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}






#concept {
  text-align: center;
  margin-top: 100px;
  padding: 80px 20px 40px;
}

.concept-text h1 {
  font-family: 'Georgia', serif;
  font-size: 2.2em;
  font-weight: normal;
  color: #555;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  position: relative;
}
.concept-title {
  font-size: 1.8em;
  color: #444;
  text-align: center;
  position: relative;
  display: inline-block;
}

.long-line {
  display: inline-block;
  width: 100px;
  height: 1.2px;
  background-color: #aaa;
  margin-left: 12px;
  vertical-align: middle;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s ease
}

.concept-title.in-view .long-line {
  transform: scaleX(1);
  transition-delay: 0.6s; /* 最後の文字のあとに表示 */
}

.concept-text p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

.concept-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.concept-title.in-view span {
  opacity: 1;
  transform: translateY(0);
}

.concept-title.in-view span:nth-child(1) { transition-delay: 0s; }
.concept-title.in-view span:nth-child(2) { transition-delay: 0.1s; }
.concept-title.in-view span:nth-child(3) { transition-delay: 0.2s; }
.concept-title.in-view span:nth-child(4) { transition-delay: 0.3s; }
.concept-title.in-view span:nth-child(5) { transition-delay: 0.4s; }
.concept-title.in-view span:nth-child(6) { transition-delay: 0.5s; }


.plofile-title {
  margin-top: 100px;
  font-size: 50px;
  text-align: center;
  background-color: #fddde6;
  color: #b3e5f7;
}


.plofile {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.plofile-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  width: 550px;
}

.plofile-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.plofile-box img {
  width: 200px;
  height: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.profile-container {
  flex: 1;
}

.profile-name-en {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #222;
}

.profile-name-ja {
  font-size: 20px;
  margin-bottom: 16px;
  color: #555;
}

.profile-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
}

.profile-info dt {
  font-weight: bold;
}

.profile-quote {
  font-style: italic;
  font-size: 14px;
  color: #666;
  padding-left: 12px;
}

@media (max-width: 768px) {
  .plofile {
    flex-direction: column;
    align-items: center;
  }

  .plofile-box {
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .profile-info {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .profile-quote {
    text-align: center;
    border-left: none;
    border-top: 1px solid #ccc;
    padding-left: 0;
    padding-top: 10px;
  }
}









/* レイアウト */
.layout {
  display: flex;
  min-height: 100vh;
}


/* サイドバー */
.sidebar {
  width: 220px;
  background-color: #f0f0f0; /* 左側のグレー */
  padding: 20px;
  box-sizing: border-box;
}

.sidebar .sns-links {
  display: flex;
  justify-content: space-between; /* アイコンの間隔を均等に */
  margin-top: 50px; /* サイドメニューとの間隔 */
}

.sidebar .sns-links a img {
  width: 30px; /* アイコンのサイズ */
  height: 30px;
  transition: transform 0.3s; /* ホバーで少し動かす */
}

.sidebar .sns-links a img:hover {
  transform: scale(1.2); /* ホバー時に少し大きく */
}


.logo {
  width: 120px;
  margin-bottom: 40px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin: 15px 0;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 1rem;
}

.menu a:hover {
  color: #b3e5f7;
}

/* コンテンツ部分 */
.content {
  flex: 1;
  padding: 40px;
}

.bio-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.bio-image {
  position: relative;
}

.bio-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.bio-title {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #fddde6;
  color: #b3e5f7;
  font-size: 2.5rem;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;

}

/* タイムライン全体 */
.timeline_wrap {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 0;
}

/* 真ん中の縦ライン */
.timeline_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #ccc;
  transform: translateX(-50%);
  z-index: 1;
}

/* 年ごとのセクション */
.timeline_section {
  position: relative;
  margin-bottom: 80px;
}

/* コンテンツの共通スタイル */
.timeline_content {
  position: relative;
  width: 45%;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
  animation: fadeUp 1s ease both;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}



/* 表示状態 */
.timeline_content.show {
  opacity: 1;
  transform: translateY(0);
}



/* 左右交互配置 */
.timeline_section:nth-child(odd) .timeline_content {
  left: 0;
  margin-right: auto;
}
.timeline_section:nth-child(even) .timeline_content {
  left: 0;
  margin-left: auto;
}

/* 縦ラインとの接点に丸いポイントを付ける */
.timeline_section::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fddde6;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 0 5px #fff;
}

/* 年号 */
.card_year span {
  font-size: 1.2em;
  font-weight: bold;
  color: #64b1cd;
  display: block;
  margin-bottom: 10px;
  margin-top: 40px;
}

/* タイトル */
.card_title {
  margin-top: 12px;
}
.card_title span {
  font-size: 1.1em;
  font-weight: bold;
  color: #333;
}

/* 本文 */
.card_body p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

/* 画像 */
.card_image img {
  width: 100%;
  border-radius: 8px;
}







.disco-image {
  position: relative;
}
.disco-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.disco-title {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #fddde6;
  color: #b3e5f7;
  font-size: 2.5rem;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}

/* ディスコグラフィー説明文 */
.disco-description {
  max-width: 800px;      /* 横幅を少し狭めて読みやすく */
  margin: 40px auto;     /* 上下に余白＋中央寄せ */
  padding: 0 20px;       /* スマホで端にくっつかないように */
  line-height: 1.8;      /* 読みやすい行間 */
  font-size: 16px;
  color: #333;           /* 読みやすい落ち着いた色 */
}

/* タイトル */
.disco-description h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  font-family: 'Playfair Display', serif; /* おしゃれ感 */
}

/* 小見出し（発売日や受注開始日） */
.disco-description h3 {
  font-size: 18px;
  margin: 30px 0 10px;
  font-weight: bold;
  border-left: 3px solid #000; /* シンプルなアクセント */
  padding-left: 10px;
}

/* 段落 */
.disco-description p {
  margin-bottom: 20px;
}

.album-container {
  display: flex;
  justify-content: flex-end;  /* ← 右端を揃える */
  align-items: flex-start;    /* 上端で揃える（必要ならcenter/endに変更） */
}
/* 左側（ジャケット＋縦書きタイトル） */
.album-image {
flex: 1 1 350px;   /* 最小幅350px、残りは伸縮 */
max-width: 600px;  /* 必要なら制御 */
margin-top: 70px;
position: relative;
overflow: hidden;
z-index: 2;
}
.album-image img {
  width: 100%;
  height: auto;
  display: block;
}
.vertical-title {
  position: absolute;
  right: 10px;
  top: 20px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 2.2em;
  font-weight: bold;
  color: #f5f5f5;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  letter-spacing: 0.1em;
}
/* 右側（アルバム情報） */
.album-info {
  background: #f0f0f0;
  color: #000;
  padding: 40px 200px; /* ← 左右の余白を広げる（数値を増やす） */
  max-width: 600px;   /* ← 必要なら枠そのものの幅を広げる */
  margin: 0 auto;     /* 中央寄せ */
  margin-top: 180px;
  margin-left: -90px; /* ← ここで画像に食い込ませる！ */
  z-index: 1; /* 背景は後ろ */
}
.album-info h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
  
}
.price {
  font-size: 1.1em;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 25px;
}
.section h3 {
  font-size: 1.3em;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.tracklist {
  list-style: none;
  padding-left: 0;
  line-height: 1.8em;
}
.tracklist li {
  border-bottom: 1px dotted rgba(255,255,255,0.4);
  padding: 5px 0;
}
.bonus-list {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.8em;
}
.bonus-image {
flex: 1 1 350px;   /* album-image と同じ条件にする */
max-width: 600px;  /* 同じ幅を指定すると右端が揃う */
margin-top: -270px;
position: relative;
overflow: hidden;
z-index: 2;
}
.bonus-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 反転用コンテナ */
.album-container.reverse {
  flex-direction: row-reverse;  /* ← 並び順を逆にする */
  justify-content: flex-start;  /* ← 右に寄せすぎないように調整 */
}

/* 反転版の album-info（画像にかぶせる方向も逆にする） */
.album-container.reverse .album-info {
  margin-left: 0;
  margin-right: -90px;  /* ← 左側に食い込ませるのを右側に変更 */
}


.album-container.reverse + .bonus-image {
  margin-left: auto;   /* ← 右寄せ */
  margin-right: 0px; /* ← 情報枠に食い込ませる */
}



.news-title {
  margin-top: 100px;
  font-size: 50px;
  text-align: center;
  background-color: #fddde6;
  color: #b3e5f7;
}





.content {
  flex: 1;
  padding: 60px;
  display: block; /* ← 縦並びに戻す */
}

.news-section {
  display: flex;
  flex-direction: column;
  gap: 30px; /* NEWSとカレンダーの余白 */
}





.news-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  gap: 30px;
}


.news-date {
  font-size: 0.9rem;
  font-weight: bold;
  color: #666;
  padding: 15px 20px 0;
}

.news-sub-title {
  font-size: 1.3rem;
  margin: 10px 20px;
  font-weight: 600;
  line-height: 1.4;
}

/* リンクの下線アニメーション */
.news-sub-title a {
  position: relative;
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-sub-title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;  /* 文字の下に配置 */
  width: 0;
  height: 2px;
  background: #b3e5f7;
  transition: width 0.3s ease;
}
.news-sub-title a:hover {
  color: #b3e5f7;
}
.news-sub-title a:hover::after {
  width: 100%;
}

.news-content {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
  flex-grow: 1;
}

.live-title {
  margin-top: 100px;
  font-size: 50px;
  text-align: center;
  background-color: #fddde6;
  color: #b3e5f7;
}

#calendar {
  position: relative; /* 擬似要素を使うため必須 */
  background-image: url('../images/calender.jpeg'); /* 画像パスを指定 */
  background-size: cover;        /* 画像をカレンダー全体にフィットさせる */
  background-position: center;   /* 画像の中心を表示 */
  background-repeat: no-repeat;  /* 繰り返さない */
  border-radius: 10px;           /* 角丸にする場合 */
  padding: 10px;   
}

#calendar::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(215, 194, 207, 0.453); /* 白の半透明 */
  border-radius: 10px;
  z-index: 0; /* 背景として配置 */
}

/* カレンダー本体をオーバーレイの上に表示 */
#calendar .fc {
  position: relative;
  z-index: 1;
}


/* ヘッダー部分（タイトルやボタンの行） */
.fc .fc-toolbar.fc-header-toolbar {
  background: #ccc;   /* ヘッダー背景色 */
  color: #000;        /* 文字色 */
  border-radius: 8px;
  padding: 5px 10px;
}

/* ボタン（今日・月/週/日 切り替えなど） */
.fc .fc-button {
  background: #ccc;
  color: #b3e5f7;
  border: none;
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 14px;
  transition: background 0.3s ease;
}

/* ボタン hover 時 */
.fc .fc-button:hover {
  background: #fddde6;  /* ホバー色 */
}

/* ボタン active（選択中） */
.fc .fc-button.fc-button-active {
  background: #fddde6;
}

/* FullCalendar 内の文字微調整 */
.fc .fc-toolbar-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.fc-daygrid-event {
  border-radius: 6px;
  font-size: 0.85rem;
  padding: 2px 4px;
  color: #000;
}


.fc-modal {
  display: none; /* 非表示 */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.fc-modal-content {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  position: relative;
}

.fc-modal-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.fc-modal h2 {
  margin: 0 0 20px;
  font-size: 18px;
  color: #333;
}

.fc-modal-btn {
  display: inline-block;
  padding: 10px 15px;
  background: #f0f0f0;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.fc-modal-btn:hover {
  background: #8b8b8b;
}

/* イベントの基本スタイル */
.fc-event {
  transition: background-color 0.2s ease, transform 0.2s ease;
  cursor: pointer; /* クリックできるとわかるように */
}

/* ホバー時に少し暗くする */
.fc-event:hover {
  background-color: #e0e0e0 !important; /* 背景を暗めに */
  transform: scale(1.02); /* 少し拡大して目立たせる */
}


/* 曜日ヘッダーの背景色 */
.fc .fc-col-header-cell {
  background-color: #b6b3b3; /* 好きな色に変更 */
  color: #252728;            /* 文字色 */
  font-weight: bold;
}

/* 日付セルの背景色 */
.fc .fc-daygrid-day {
  background-color: #f7f7f70b; /* 日付セルの背景色 */
  border-radius: 6px;        /* 角を少し丸く */
  transition: background 0.3s ease;
}

/* 日付セルのホバー時 */
.fc .fc-daygrid-day:hover {
  background-color: #e0e0e064;
}

/* 今日の日付セルだけ色を強調 */
.fc .fc-daygrid-day.fc-day-today {
  background-color: #f0f0f0a2;
  color: #181818;
  font-weight: bold;
}




.special-title span.cross {
  font-family: 'Noto Sans JP', sans-serif; /* 細めのフォント */
  font-weight: 400; /* 太さを普通に */
}


.special-title {
  margin-top: 100px;
  font-size: 50px;
  text-align: center;
}

/* スライダー全体 */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* 各スライド */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* キャッチコピー部分 */
.text-box-special {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 70px;
}

.text-box-special p {
  font-size: 1.2em;
  opacity: 0;
  margin: 20px 0;
  line-height: 1.8;
}

/* 表示されたとき */
.text-box-special p.show {
  opacity: 1;
  transform: translateY(0);
}


/* ---------- Higashi Profile (横並び layout) ---------- */
.image-profile-special {
  max-width: 900px;
  margin: 40px auto;
  padding: 28px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,250,250,0.85));
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20,20,20,0.06);
  border: 1px solid rgba(18,18,18,0.05);
  font-family: "Playfair Display", "Noto Serif JP", Georgia, serif;
  color: #222;
}

/* 左側：画像 */
.higasi-img {
  width: 180px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform .28s ease, box-shadow .28s ease;
}
.higasi-img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* 右側：テキスト */
.profile-box-special {
  flex: 1 1 auto;
}

/* タイトル */
.profile-title-higashi {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9b7d9b;
  margin-bottom: 6px;
  font-weight: 600;
}
.plofile-title-higashi {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f1b24;
}

/* 紹介文 */
.profile-box-special p {
  margin: 6px 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
}

/* SNSリンク */
.sns-links-higashi {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}
.sns-links-higashi a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 6px;
  background: rgba(0,0,0,0.04);
  transition: transform .18s ease, background .18s ease;
}
.sns-links-higashi img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sns-links-higashi a:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg,#fff,#f7f7ff);
}

/* ---------- レスポンシブ：画面が狭いと縦並びに ---------- */
@media (max-width: 720px) {
  .image-profile-special {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .higasi-img {
    width: 160px;
    margin-bottom: 16px;
  }
  .profile-box-special {
    width: 100%;
  }
  .sns-links-higashi {
    justify-content: center;
  }
}






/* ---------- rurumu profile (stacked layout) ---------- */
.rurumu-profile {
  max-width: 640px;
  margin: 40px auto;
  padding: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(250,250,250,0.85));
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(20,20,20,0.06);
  border: 1px solid rgba(18,18,18,0.05);
  font-family: "Playfair Display", "Noto Serif JP", Georgia, serif;
  color: #222;
}

/* ロゴを中央に配置 */
.rurumu-logo {
  width: 160px;
  height: auto;
  margin: 0 auto 18px auto;
  display: block;
  object-fit: contain;
  transition: transform .28s ease, box-shadow .28s ease;
}
.rurumu-logo:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* タイトル */
.profile-title-rurumu {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9b7d9b;
  margin-bottom: 6px;
  font-weight: 600;
}
.plofile-title-rurumu {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f1b24;
}

/* 紹介文 */
.rurumu-profile p {
  margin: 8px 0;
  color: #444;
  font-size: 0.98rem;
  line-height: 1.7;
}
.rurumu-profile p:first-of-type {
  font-weight: 600;
  color: #2b2230;
}

/* SNSリンク */
.sns-links-rurumu {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.sns-links-rurumu a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 6px;
  background: rgba(0,0,0,0.04);
  transition: transform .18s ease, background .18s ease;
}
.sns-links-rurumu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sns-links-rurumu a:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg,#fff,#f7f7ff);
}
