@charset "utf-8";

body {
  height: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #000;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background-color: #000;
}

/* ランクカラー */
.rank_col1 {background-color: #6338B5 !important;} /* CLUB */
.rank_col2 {background-color: #B5B538 !important;} /* VIP */
.rank_col3 {background-color: #707070 !important;} /* CLAUDE */
.rank_col4 {background: #646464 !important;} /* Machere */
.rank_col5 {background: #A28840 !important;} /* Plaisir */
.rank_col6 {background: #414141 !important;} /* Gran */
.rank_col7 {background: #867013 !important;} /* La Reine */


.content {
  position: relative;
}

.content .btnn {
  position: absolute;
  width: auto;
  height: fit-content;
  bottom: 1vw;
  left: 63.5vw;
  transform: translate(-50%, -50%);
  /* padding: 0 20px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  /* 半透明の黒 */
  /* border-radius: 28px; */
}

.content .btnn.prf {
  top: 23%;
  left: 15%;
  transform: none;
  text-align: center;
}

.content .btnn.prf h2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 21px;
}

.content .btnn.prf h2 span {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}


.content .btnn p {
  width: 350px;
  padding: 5px 5px;
  background-color: #644E30;
  text-align: center;
}

.content .btnn .flex p {
  width: fit-content;
  /* max-width: 210px; */
}

.content .btnn .flex {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.content .btnn p a.set01 {
  width: fit-content;
  display: block;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 16px);
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  line-height: 1;
  text-decoration: none;
}


@media (max-width: 860px) {}


/* ==============================
   可変スケール対応セクション
   ============================== */
.content .btnn.prf {
  top: 40%;
  left: 10%;
  transform-origin: top left;
  --scale: 1;
  /* ← ここを変えれば全体の倍率が変わる */
  transform: scale(var(--scale));
  text-align: center;
  transition: transform 0.3s ease;
  /* スムーズな拡大縮小 */
}

.content .btnn.prf h2 {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.4;
}

.content .btnn.prf .flex {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.content .btnn.prf .flex p {
  width: 100%;
  max-width: 195px;
  background-color: #644E30;
  padding: 5px;
  transition: background-color 0.3s ease;
}

.content .btnn.prf .flex p:hover {
  background-color: #8b6a43;
}

.content .btnn.prf .flex a.set01 {
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(14px, 1.2vw, 18px);
  text-decoration: none;
}

footer {
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}


footer small {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
}

.btnn2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.btnn2 button {
  width: 320px;
  background-color: #644E30;
  padding: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: clamp(14px, 1.2vw, 16px);
  text-decoration: none;
}

@media (min-width: 1600px) {
  .content .btnn {
    bottom: 2vw;
  }

  .content .btnn p {
    width: 100%;
    min-width: 450px;
    padding: 10px 5px;
    background-color: #644E30;
    text-align: center;
  }

  .content .btnn p a.set01 {
    font-size: 20px;
  }
}

/* --- スマホで自動的に小さく --- */
@media (max-width: 860px) {
  .content .btnn.prf {
    --scale: 0.8;
    left: 50%;
    bottom: 10%;
    top: unset;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  .content .btnn.prf h2 {
    font-size: clamp(17px, 2.5vw, 30px);
  }

  .btnn2 {
    width: 100%;
    flex-direction: column;
  }

  .btnn2 p {
    width: 90%;
  }
}

@media (max-width: 430px) {
  .content .btnn.prf {
    bottom: 7%;
  }
}

.area-cast-list {
  width: 100%;
  max-width: 1320px;
  margin: 120px auto;
}

ul.cast-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(635px, 1fr));
  gap: 70px 45px;
  justify-content: center;
  /* max-width: calc(400px * 3 + 24px * 2);  */
  margin: 0 auto;
}

ul.cast-list li {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.cast-main-image {
  width: 40%;
}

.cast-profile {
  /* card */
  width: 60%;
  background: #000;
  color: #fff;
  /* padding: 0px 32px 28px; */
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* 1行目：店名 + 英字 */
.cast-profile>p:first-child {
  margin: 0 0 18px;
  text-align: center;
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 1.2;
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP",
    "Times New Roman", serif;
  position: relative;
  padding-bottom: 10px;
  font-weight: bold;
}

/* 下の細いライン */
.cast-profile>p:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}

.cast-profile>p:first-child span {
  /* display: inline-block; */
  margin-left: 10px;
  font-size: 14px;
  letter-spacing: 0;
  opacity: .9;
  font-family:
    "Cinzel", "Times New Roman", serif;
}

/* 2ブロック目：左ラベル + 右名前 */
.cast-profile>div {
  display: flex;
  /* grid-template-columns: 110px 1fr; */
  /* column-gap: 18px; */
  align-items: center;
  margin: 18px 0 14px;
}

/* 紫ラベル */
.cast-profile>div>p:first-child {
  width: 140px;
  padding: 5px 20px;
  margin: 0 auto;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4b3bb6;
  /* 紫 */
  border: 1px solid rgba(255, 255, 255, .22);
  letter-spacing: .18em;
  font-size: 17px;
  font-family: "Cinzel", "Times New Roman", serif;
}

/* 名前ブロック */
.cast-profile>div>p:last-child {
  margin: 0;
  line-height: 1.1;
}

/* 日本語名 */
.cast-profile>div>p:last-child span:first-child {
  display: block;
  font-size: 22px;
  letter-spacing: .06em;
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP",
    "Times New Roman", serif;
}

/* ローマ字 */
.cast-profile>div>p:last-child span:last-child {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  letter-spacing: .12em;
  opacity: .9;
  font-family: "Cinzel", "Times New Roman", serif;
}

/* 本文（明朝寄り、行間ゆったり） */
.cast-profile>p:nth-of-type(2) {
  margin: 10px 0 18px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .06em;
  opacity: .95;
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP",
    "Times New Roman", serif;

  /* 画像のように段落が詰まり過ぎないように */
  max-width: 100%;
  /* word-break: keep-all; */
  /* overflow-wrap: break-word; */
}

/* 下部ボタン風 */
.cast-profile>p:last-child {
  margin: 0 auto;
  width: 230px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6b5433;
  /* ブラウン */
  border: 1px solid rgba(255, 255, 255, .18);
  letter-spacing: .10em;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP",
    serif;
  transition: transform .12s ease, filter .12s ease;
}

.cast-profile>p:last-child a {
  color: #fff;
}

.cast-profile>p:last-child:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cast-profile>p:last-child:active {
  transform: translateY(0);
  filter: brightness(.98);
}

/* SP微調整
@media (max-width: 480px){
  .cast-profile{
    padding: 20px 18px 22px;
  }
  .cast-profile > div{
    grid-template-columns: 120px 1fr;
    column-gap: 12px;
  }
  .cast-profile > div > p:last-child span:first-child{
    font-size: 20px;
  }
} */


/* デフォルト：彩度を下げる */
/* .cast-list li .cast-main-image {
  filter: saturate(0.5);
  transition: filter .4s ease;
} */

@media (max-width: 1315px) {


  ul.cast-list {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
    margin: 0 auto;
  }

  ul.cast-list li {
    flex-direction: column;
    max-width: 350px;
  }

  .cast-main-image {
    width: 100%;
  }

  .cast-profile {
    width: 100%;
  }

  .area-cast-list {
    margin: 0 auto;
  }
}
.set02 {
  padding-top: 200px;
  padding-bottom: 380px;
}

.set03 {
  padding-bottom: 380px;
}

.coms {
  width: 80%;
  max-width: 1000px;
  margin: 100px auto 350px;
}

@media (max-width: 870px) {
  .content .btnn {
    left: 50%;
    bottom: 0;
  }

  .content.set01 {
    padding-bottom: 100px;
  }

  .set02 {
    padding-top: 100px;
    padding-bottom: 150px;
  }
  
  .set03 {
    padding-bottom: 150px;
  }

  .coms {
    width: 90%;
    margin: 0px auto 150px;
  }


  .content .btnn p {
      padding-top: 200px;
    padding: 10px 5px;
  }


}

/* hover が使えるデバイス（＝PCなど）のみ hover を有効にする */
@media (hover: hover) and (pointer: fine) {

  /* hover時：元の色に戻す */
  /* .cast-list li:hover .cast-main-image {
    filter: saturate(1);
  } */
}

a {
  text-decoration: none !important;
}