@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}



header {
  background-color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 a {
  text-decoration: none;
  color: #E8C583;
}

header h1:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}


/* ===== ローディング全体 ===== */
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 1;
  transition: opacity 1.2s ease;
}

#loading.loaded {
  opacity: 0;
  pointer-events: none;
}

.loading-logo-img {
  width: min(70vw, 360px);
  opacity: 0;
  animation: logoFadeIn 1.2s ease forwards;
  z-index: 2;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 粒子用 */
#sparkle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
/* ===== ローディング全体ここまで ===== */

/* ===== てくてくアニメーション ===== */

.walk-area {
  position: relative;
  height: 60px;
  margin: 10px auto 20px;
  width: 200px; /* MELty文字幅に近づけると◎ */
  overflow: hidden;
}

.walk-char {
  position: absolute;
  bottom: 0;
  left: -60px;
  width: 50px;

  animation: walkMelty 6s linear infinite;
  opacity: 0.9;
}

@keyframes walkMelty {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(260px);
    opacity: 0;
  }
}


/* ===== てくてくアニメーションここまで ===== */


/*ヘッダー*/

/* ヘッダー全体を左右に並べる（PC） */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* ロゴ */
.logo {
  width: 80px;
  height: auto;
}

/* ナビ（PC） */
.header-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-nav li {
  padding: 0 12px;
  position: relative;
  white-space: nowrap;
}

/* 区切り線（PC） */
.header-nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: #000;
}

.header-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

@media screen and (max-width: 600px) {

  /* ロゴ上・メニュー下に変更 */
  header {
    flex-direction: column;
    gap: 10px;
  }

  /* ナビを縦並びに */
  .header-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/*ヘッダーここまで*/

/*流れる帯*/

.marquee-wrap {
  overflow: hidden;
  width: 100%;
  background: #fff; /* 必要なら背景色つけてOK */
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 7s linear infinite;
}

.marquee-img {
  height: 20px; /* 好きなサイズに調整 */
  margin-right: 40px; /* 画像の間隔 */
  flex-shrink: 0;
  margin: 10px
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*流れる帯*/





.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  display: block;
}


/*ヘッダーここまで*/

/*追従ボタンここから*/

.follow-btn {
  position: fixed;
  right: 20px;   /* 画面右からの距離 */
  bottom: 20px;  /* 画面下からの距離 */
  z-index: 9999; /* 最前面に表示 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.follow-btn img {
  width: 80px;   /* 好きなサイズに調整 */
  height: auto;
  cursor: pointer;
  transition: 0.3s;
}

.follow-btn img:hover {
  opacity: 0.8;  /* ホバー時の軽い演出 */
}

body.loaded .follow-btn {
  opacity: 1;
  pointer-events: auto;
}

/*追従ボタンここまで*/



body {
  background-color: #862125;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 3px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 12px 12px, 24px 24px;
  background-position: 0 0, 6px 6px;
  pointer-events: none;
  z-index: 999;
}

.kv {
  width: 100%;
  height: auto;
  display: block;
}

.sp-only {
  display: none;
}


/*背景職をうねーんって*/

.block {
  padding: 80px 20px;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Aの背景色 */
.block-a {
  background: #862125;
}

/* Bの背景色（例） */
.block-b {
  background: #BA2626;
}

/* 波の共通設定 */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
  position: relative;
  z-index: 2;
}

.wave-custom {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-custom svg {
  display: block;
  width: 100%;
  height: 80px;
}

.wave-custom path {
  fill: #BA2626; /* ← 好きな色に変えてOK（濃い赤） */
}

/* Aの色と合わせる波 */
.wave-a path {
  fill: #862125; /* ← block-a と同じ色にするだけ */
}
.wave-b path {
  fill: #BA2626 !important;
 /* ← block-b と同じ色にするだけ */
}

/* 薄い赤 → 濃い赤 専用の波（絶対に上書きされない） */
.wave-ba path {
  fill: #862125 !important; /* 濃い赤（block-a） */
}

/*背景職をうねーんってここまで*/

/*youtubeサムネ並べ*/
.responsive-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .responsive-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

.responsive-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}


/*youtubeサムネここまで*/

.container-sns {
  position: relative;
  display: inline-block;
}

.title1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: pre;
  color: #862125; /* メインのエンジ */

  background: linear-gradient(
    135deg,
    rgba(134, 33, 37, 0.18),
    rgba(134, 33, 37, 0.08),
    rgba(255, 255, 255, 0.45)
  );

  padding: 10px 28px;
  border-radius: 30px; /* 雑誌の見出しっぽい */

  border: 1.5px solid rgba(134, 33, 37, 0.35);

  text-shadow:
    1px 1px 0 rgba(255,255,255,0.8),
    3px 3px 0 rgba(0,0,0,0.12);

  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.18),
    inset 0 0 16px rgba(255, 255, 255, 0.7);

  color: #ffffff;

  text-shadow:
    0 1px 0 #f5e6b3,        /* 明るいゴールドの縁 */
    0 3px 6px rgba(134,33,37,0.6), /* エンジ影でなじませ */
    2px 2px 0 #c9a24d;     /* 平成っぽい金影 */

}





/*SNSアイコン並べ*/

.sns-ellipse {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;

  background: #ffffff;
  border: 3px solid #862125;

  border-radius: 40px;

  box-shadow:
    0 10px 22px rgba(0,0,0,0.25);

  display: flex;
  justify-content: center;
  gap: 20px;
}

/* 初期状態（バラバラ） */
.sns-ellipse img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.sns-ellipse img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* 初期位置 */
.sns-ellipse a {
  display: inline-block;
  opacity: 0;
  transition: 0.9s ease;
}

/* 四方八方 */
.sns-ellipse a:nth-child(1) {
  transform: translate(-150px, -100px);
}

.sns-ellipse a:nth-child(2) {
  transform: translate(150px, -100px);
}

.sns-ellipse a:nth-child(3) {
  transform: translate(0, 150px);
}

/* 集合 */
.sns-ellipse.active a {
  opacity: 1;
  transform: translate(0, 0);
}

/*SNSアイコン並べここまで*/

.viewmore {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  transition: 0.3s;
}

/*フォント系*/




.text {
  font-size: 16px;
  letter-spacing: 4px;
  text-align:center;

}

.text-contact {
  font-size: 16px;
  letter-spacing: 4px;
  margin: 0 20px;
  text-align: center;
}

.title1 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-color:#E8C583;
  animation: fadeInUp 1s ease-out forwards;
  text-align:center;
}

.title-contact {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px
}


/*フォント系ここまで*/

/*ニュースここから*/


.news-section {
  padding: 40px 20px;
}

.news-inner {
  display: flex;
  flex-direction: column; /* SPは縦並び */
  gap: 20px;
}

/* PCレイアウト */
@media screen and (min-width: 769px) {
  .news-inner {
    flex-direction: row; /* PCは横並び */
    align-items: flex-start;
  }

  .news-image {
    width: 40%;
  }

  .news-list {
    width: 60%;
  }
}

/* 画像 */
.news-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* NEWS一覧 */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 日付 */
.news-list .date {
  font-size: 12px;
  color: #999;
}

/* 見出し */
.news-list .title {
  font-size: 16px;
  font-weight: bold;
}

/* VIEW MORE */
.news-list .more {
  font-size: 12px;
  color: #ddd;
  margin-top: 4px;
  text-decoration: underline;
}

/*ニュースここまで*/

.content-section-white {
  padding: 60px 20px;
  background-color: #f0f8ff;
  box-shadow: 0 5px rgba(0, 0, 0, 0.05);
}

.content-section {
  padding: 30px 20px;
}

.content-section-white-2 {
  padding: 60px 20px;
  background-color: #f0f8ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.container {
  display: flex;
  align-items: center;
  margin: 40px 0;
  gap: 20px; /* ← 間隔をあけたいときに！ */
  box-sizing: border-box;
}

.container img {
  height: auto;
  width: auto;
  max-height: 300px; /* ← 必要なら制限をかける！ */
  object-fit: contain;
}


.container1 {
  display: flex;
  flex-direction: column;
}

.container-melty {
  display: flex;
  flex-direction: column;
  margin: 30px;
  text-align: center;
}

/* メインロゴ */

.container-melty .title-aboutme {
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 800;
  letter-spacing: 0.35em;
  color: #fff;
  margin-bottom: 24px;
  position: relative;

  line-height: 1.2;

  opacity: 0;
  transform: none; /* ←これ重要（動き消す） */
  transition: opacity 2.3s ease; /* ←ゆっくりめが“じわっ”感 */
}

.container-melty .title-aboutme.show {
  opacity: 1;
}

/* デフォルト（PC表示） */
.pc-only {
  display: inline;
}

/* SP表示 */
@media screen and (max-width: 600px) {
  .pc-only {
    display: none;
  }
}

/* 平成感：うっすら影 */
.title-aboutme::after {
  content: "MELTY";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0,0,0,0.25);
  z-index: -1;
  filter: blur(2px);
}

.container-melty .text {
  font-size: 14px;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.85);
}

.container-melty .readtext {
  font-size: 16px;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.85);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}

.container-melty .readtext-2 {
  font-size: clamp(12px, 2vw, 16px);
  color: rgba(255,255,255,0.85);
  padding: 30px 0;
  line-height: 2.0;
}


.container-news {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 20px; 
  box-sizing: border-box;
}

.container-member {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 20px; 
  box-sizing: border-box;
}

.container-sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  gap: 20px; 
  box-sizing: border-box;
}

.container-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 30px;
  box-sizing: border-box;
}


.left-column {
  width: 50%;
  padding: 10px;
}

.right-column {
  width: 50%;
  padding: 10px;
}

.center-text {
  text-align: center;
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.number-image {
  animation: fadeInUp 1s ease-out forwards;
}

.image-box .more {
  font-size: 12px;
  color: #ddd;
  margin-top: 4px;
}


/*横並び画像*/

.image-row { 
  display: flex;
  justify-content: center; 
  gap: 10px; 
  margin-top: 30px;
  padding-top: 30px;
  flex-direction: row;
}

.image-box {
  width: 300px;
  text-align: center; 
  padding-bottom: 30px;
  position: relative;
}

.main-img {
  width: 100%;
  display: block;
  opacity: 0;
}

/* 発火用 */
.main-img.active {
  animation: slideFromTopLeft 0.9s ease forwards;
}

/* 左上から */
@keyframes slideFromTopLeft {
  0% {
    transform: translate(-80px, -80px) scale(0.9);
    opacity: 0;
  }
  60% {
    transform: translate(10px, 10px) scale(1.02);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}


.member-fv {
  position: relative;
  width: 100%;
  overflow: hidden;

  background-color: #7a1f24; /* ベースのエンジ */

  background-image:
    radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);

  background-size: 20px 20px, 40px 40px;
  background-position: 0 0, 10px 10px;
}



/* メイン画像 */

.fv-main {
  display: flex;
  justify-content: center;
  padding: 10px;
}

/* 紙っぽい枠 */
.main-inner {
  background: #fff;
  padding: 12px;
  border-radius: 6px;

  box-shadow:
    0 25px 50px rgba(0,0,0,0.35),
    0 10px 20px rgba(0,0,0,0.2);

  transform: rotate(-2deg) scale(0.85) translate(-70px, -30px);

  z-index: 2;
}

/* 画像 */
.main-inner img {
  width: 100%;
  max-width: 380px; /* ← サイズ調整ここ */
  display: block;

  border: 6px solid #fff;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}
.fv-main img {
  width: 100%;
  height: auto;
  display: block;
}

/* カード */
.fv-card {
  position: absolute;
  bottom: 8%;
  right: 6%;
  width: 65%;
  max-width: clamp(180px, 30vw, 320px);

  transform: rotate(6deg);
  z-index: 3;
}

.fv-card img {
  width: 100%;
  display: block;

  box-shadow:
    0 25px 50px rgba(0,0,0,0.35),
    0 10px 20px rgba(0,0,0,0.2);
}

.member-fv::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 120px;
  height: 120px;

  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  filter: blur(20px);
}

.member-fv::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 150px;
  height: 150px;

  background: radial-gradient(circle, rgba(255,200,200,0.3), transparent 70%);
  filter: blur(25px);
}



/* スマホ微調整 */
@media (max-width: 768px) {
  .fv-card {
    bottom: 3%;
    right: 3%;
    width: 70%;
  }

}
/* 日本語（左寄せ） */
.kv-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 8vw, 48px);
  letter-spacing: 0.1em;
  color: #862125;
  text-align: left;
}

/* 英語（中央に見せる） */
.kv-sub-en {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(12px, 3vw, 16px);
  letter-spacing: 0.4em;
  color: #862125;

  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

.name-ja {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.name-line {
  width: 60px;
  height: 2px;
  background: #222;
}

.name-en {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #777;
}

/* サブ画像 */
.sub-img {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 60px;

  opacity: 0;
}

/* 右から登場（1回） */
.sub-img.active {
  animation: slideIn 0.8s ease forwards;
}

/* ふわふわ追加（重ねる） */
.sub-img.active.float {
  animation:
    slideIn 0.8s ease forwards,
    floatMove 3s ease-in-out 0.8s infinite;
}

@keyframes slideIn {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes floatMove {
  0%   { transform: translateX(0) translateY(0); }
  50%  { transform: translateX(0) translateY(-10px); }
  100% { transform: translateX(0) translateY(0); }
}

.caption-title {
  font-size: 24px;
  margin: 5px 0 ;
  color: #E8C583;
}

.caption-title a {
  color: #333;
  text-decoration: none;
}


.caption-title span {
  display: inline-block;
  opacity: 0;
}

.caption-title.active span {
  animation: bounceUp 0.6s ease forwards;
}

@keyframes bounceUp {
  0% { transform: translateY(30px); opacity: 0; }
  60% { transform: translateY(-12px); opacity: 1; }
  80% { transform: translateY(4px); }
  100% { transform: translateY(0); opacity: 1; }
}
.caption-text {
  font-size: 13px;
  color: #666;
  text-align: left;
  letter-spacing: 3px;
}


.arrow-2 {
  margin-left: 8px;
  color: #000; /* ピンクでかわいく！ */
  font-weight: bold;
  font-size: 1em;
}

.arrow-2-heading a:hover {
  color: #555; /* ホバー時の色もおしゃれに！ */
}



/*横並び画像ここまで*/

/*ボタンここから*/


.button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.cute-button {
  display: inline-block;
}

.button-image {
  width: 100%;
  max-width: 250px; /* ← PCでは大きく、SPでは縮む */
  height: auto;
  display: block;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.cute-button:hover .button-image {
  opacity: 0.7;
}

/*ボタンここまで*/

/* CTAここから */
.cta-box {
  display: inline-block;
  padding: 14px 36px;

  background: #E8C583;
  color: #862125;

  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;

  border-radius: 8px;   /* ← 楕円じゃない控えめ丸 */
  box-shadow: 6px 6px 0 #862125;

  transition: 0.2s ease;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.contact-button {
  display: inline-block;
  padding: 22px 35px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;

  color: #ffffff;

  border-radius: 50px;

  background: rgba(134, 33, 37, 0.65); /* エンジ透け感 */
  backdrop-filter: blur(6px);

  border: 1.5px solid rgba(255,255,255,0.6);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 0 12px rgba(255,255,255,0.35);

  transition: all 0.35s ease;
}

.contact-button:hover {
  transform: translateY(-4px) scale(1.04);

  background: rgba(134, 33, 37, 0.85);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    inset 0 0 16px rgba(255,255,255,0.5);
}s

/* ホバーで押した感じ */
.cta-box:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #862125;
}

/* CTAここまで */

.pc-only-text {
  display: inline;
}

@media (max-width: 768px) {
  .pc-only-text {
    display: none;
    font-size: 0; /* ←余白対策 */
  }
}


/*動画サムネここから*/

.video-grid {
  display: grid;
  grid-template-columns: 1fr; /* SP: 1カラム */
  margin: 20px auto;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.video-item {
  position: relative;
  overflow: hidden;
}

.thumb {
  width: 100%;
  display: block;
  border-radius: 8px;
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 10px;
  border-radius: 8px;
}

/* 再生ボタン（丸） */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-icon::before {
  content: "";
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  position: absolute;
}

/* 三角の再生マーク */
.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 22px solid white;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  position: absolute;
  margin-left: 6px;
}

/* キランの光 */
.sparkle {
  position: absolute;
  width: 130%;
  height: 45%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.9) 50%,
    transparent 100%
  );
  top: -60%;
  left: -70%;
  transform: rotate(25deg);
  opacity: 0;
}

/* キランのアニメーション */
@keyframes sparkle-move {
  0% {
    transform: translateX(0) rotate(25deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateX(220%) rotate(25deg);
    opacity: 0;
  }
}

.video-item.sparkle-active .sparkle {
  animation: sparkle-move 0.9s ease-out;
}

/*動画サムネここまで*/


/*SNSのプロフィールカード*/
.sns-card {
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin: 20px auto;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sns-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

.tiktok-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px #000; /* snsっぽい縁取り */
}

.insta-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px #F58529; /* snsっぽい縁取り */
}

.youtube-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 4px #FF0000; /* snsっぽい縁取り */
}


.sns-username {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #333;
}

.sns-followers {
  font-size: 14px;
  color: #777;
  margin-bottom: 16px;
}

.tiktok-link {
  display: inline-block;
  padding: 10px 20px;
  background: #000;
  color: #00F2EA;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.tiktok-link:hover {
  background: #00C9C3;
}

.insta-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #F58529, #DD2A7B);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.insta-link:hover {
  background: #C2185B;
}
	
.youtube-link {
  display: inline-block;
  padding: 10px 20px;
  background: #FF0000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.youtube-link:hover {
  background: #C2185B;
}


/*SNSのプロフィールカードここまで*/



/*スライダー*/
.gallery-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 30px auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.thumb {
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.6);
  border: none;
  padding: 10px;
  font-size: 12px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.dot-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dot {
  width: 5px;
  height: 5px;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #000;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

@media screen and (max-width: 600px) {
  .gallery-wrapper {
    padding: 0 10px;
  }

  .gallery-track img {
    width: 100%;
    max-width: 300px; 
  }
}



/*スライダー２個目ここまで*/

/*ギャラリーここから*/
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 30px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/*ギャラリーここまで*/




/*モーションここから*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.footer {
  background-color: #862125;
  color: #333;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  background: linear-gradient(to right, #f0f0f0, #e0dede);
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);

}

.footer-links {
  margin: 8px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 0.6;
}

.divider {
  margin: 0 8px;
  color: #aaa;
}



/*SP盤ここから*/
@media (max-width: 768px) {

  .text {
    font-size: 14px;
    line-height: 1.8 ;
    letter-spacing: 3px;
    padding: 0 10px;
  }

  .text-contact {
  font-size: 14px;
  letter-spacing: 3px;
  line-height: 2.0;
  margin: 0 20px;
  text-align: left;
}

  .image-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 30px;
    right: 20px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  nav.active {
    display: block;
  }

}

@media (max-width: 768px) {
  header {
    padding: 10px 20px;
    height: auto ;
  }

  .hamburger {
    display: flex;
    height: 30px;
    align-items: center;
  }

  header h1 {
    font-size: 10px;
    margin: 0;
  }
}




@media (max-width: 768px) {
  .container {
    padding: 0 3% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }


.kv {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    font-size: 12px;
    padding: 15px;
  }
}

@media screen and (max-width: 575px) {
  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ccc;
  }

  nav ul li a {
    display: block;
    padding: 15px 0;
  }
}

@media screen and (max-width: 768px) {
  li {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 3px;
  }
}


/*メンバー紹介ページV2*/

.member-spread {
  max-width: 1000px;
  margin: 100px auto;
  padding: 60px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  background: #ffffff;
  border: 2px solid #862125;
  border-radius: 20px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.15);
}

.photo-frame {
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.photo-frame img {
  width: 100%;
  display: block;
}

.spread-profile {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spread-profile li {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 0;
  border-bottom: 1px solid #f2c7cb;
}

.spread-profile span {
  background: #862125;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.spread-profile strong {
  font-size: 16px;
  color: #333;
}

.member-spread::after {
  content: "✦";
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 22px;
  color: #d4af37;
}

@media (max-width: 768px) {
  .member-spread {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .photo-frame {
    transform: rotate(0);
  }
}

.member-sns {
  margin-top: 40px;
  text-align: right;
}

.member-sns img {
  width: 40px;
  height: auto;
  transition: 0.3s ease;
  cursor: pointer;
}



/*メンバー紹介ページV2ここまで*/

/*メンバー紹介ページのKV①ここから*/

.member-kv-v3 {
  padding: 120px 8%;
  background: #f4f4f4;
}

.kv-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 600px;
}

.kv-image {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.kv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-left {
  width: 320px;
  top: 80px;
  left: 0;
  z-index: 1;
}

.image-right {
  width: 520px;
  right: 0;
  top: 0;
  z-index: 2;
}

.kv-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-size: clamp(60px, 8vw, 120px);
  letter-spacing: 0.2em;
  font-weight: 300;

  color: #2b2b2b;
  font-family: 'Poppins', sans-serif;

  z-index: 3;
}

.kv-title {
  opacity: 0.9;
}

@media (max-width: 768px) {

  .kv-wrapper {
    min-height: auto;
  }

  .kv-image {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }

  .kv-title {
    position: static;
    transform: none;
    text-align: center;
    margin-top: 20px;
  }
}

/*メンバー紹介ページのKV②ここから*/

.member-kv-clean {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 90vh;
  background: #e9e5df;
}


.kv-left {
  overflow: hidden;
}

.kv-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kv-right {
  background: #f6f4f1;
  display: flex;
  align-items: center;
  padding: 60px;
}

.kv-info {
  width: 100%;
}

.kv-sub {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #777;
  margin-bottom: 40px;
}

.kv-meta p {
  font-size: 13px;
  color: #555;
  margin-bottom: 30px;
}

.kv-sns {
  margin-top: 40px;
}

.kv-sns a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #222;
  transition: 0.3s ease;
}

.kv-sns img {
  width: 40px;
}

.kv-sns a:hover {
  opacity: 0.6;
}


@media (max-width: 768px) {
  .member-kv-clean {
    grid-template-columns: 1fr;
  }

  .kv-right {
    padding: 40px 25px;
  }
}









/*メンバー紹介ページのKVここから*/

.member-kv {
  position: relative;
  padding: 120px 8%;
  background: #f9f7f6;
  overflow: hidden;
}

.kv-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 300px 220px;
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.kv-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.kv-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.kv-photo:hover img {
  transform: scale(1.05);
}

.photo-main {
  grid-row: 1 / 3;
}

.photo-sub1 {
  grid-column: 2 / 3;
}

.photo-sub2 {
  grid-column: 1 / 2;
  height: 200px;
}

.photo-sub3 {
  grid-column: 2 / 3;
  height: 200px;
}

.kv-text {
  position: absolute;
  bottom: 80px;
  left: 10%;
}

.kv-name {
  font-size: clamp(12px, 6vw, 40px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #862125;
  margin: 0;
}

.kv-tagline {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: #444;
}

.member-kv::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: radial-gradient(rgba(134,33,37,0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 768px) {

  .kv-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-main {
    grid-row: auto;
  }

  .kv-text {
    position: static;
    margin-top: 40px;
    text-align: center;
  }
}


/*お問い合わせページここから*/

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
}

.contact-box {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  padding: 60px 50px;
  border-radius: 12px;
}

.contact-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #b3002d;
}

.contact-btn {
  margin-top: 20px;
  padding: 14px;
  border: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  background: #111;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contact-box {
    padding: 40px 25px;
  }
}

/*ニュースページここから*/

.news-detail {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.news-container {
  max-width: 700px;
  width: 100%;
}

.news-date {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 20px;
}

.news-content p {
  font-size: 15px;
  line-height: 2;
  margin: 10px;
  color: #fff;
}

.news-back {
  display: inline-block;
  margin-top: 50px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
  transition: 0.3s;
}

.news-back:hover {
  opacity: 0.5;
}

.member-back {
  display: inline-block;
  margin: 40px 0;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-bottom: 1px solid #000;
  color: #000;
  padding-bottom: 4px;
  transition: 0.3s;
}

.member-back:hover {
  opacity: 0.5;
}

.news-date {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #999;
  margin-bottom: 20px;
  position: relative;
  padding-left: 80px;
}

.news-date::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #ccc;
  transform: translateY(-50%);
}

.news-detail .newssite-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 30px;
  padding-bottom: 25px;
  position: relative;
  color: #fff;
}

/*policyページここから*/
.policy-text {
  margin-top: 30px;
  line-height: 1.9;
  text-align: left;
}

.policy-text h3 {
  margin-top: 35px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.policy-text p {
  margin-top: 10px;
  font-size: 14px;
}

/* タイトルアニメーション */
.animate-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.animate-title.active span {
  animation: floatUp 0.6s ease forwards;
}

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

