/* 共通 */
section {
}
.section_img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
}

.section_box {
  width: 60%;
  margin: auto;
  justify-content: space-between;
}

.section_title {
  margin-bottom: 1vw;
}

.section_en_title {
  margin-bottom: 2vw;
}

.section_title h2 {
  font-family: "Shippori Antique B1", sans-serif;
  font-size: 2.5vw;
  letter-spacing: 3px;
  display: inline-block;
  background: linear-gradient(90deg, #a38131 0%, #e7c76d 33%, #ffe6c5 62%, #e3c05d 83%, #9d874e 100%);
  background: -webkit-linear-gradient(0deg, #a38131 0%, #e7c76d 33%, #ffe6c5 62%, #e3c05d 83%, #9d874e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_en_title h3 {
  padding-left: 0.5vw;
  font-size: 1.5vw;
  letter-spacing: 3px;
  display: inline-block;
  background: linear-gradient(90deg, #aca697 0%, #BDC3C9 33%, #ffffff 62%, #b9b4a5 83%, #ddd8cd 100%);
  background: -webkit-linear-gradient(0deg, #aca697 0%, #BDC3C9 33%, #dfd8d8 62%, #b9b4a5 83%, #ddd8cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-shadow: 2px 2px 2px #3b3838; */
}

.section_inner {
  width: 75%;
  margin-left: 5%;
  padding: 5vw 0;
}

.content_title {
  font-size: 1.5vw;
  margin-bottom: 0.5em
}

/* ゴールドボタン */
.gold_btn_area {
  width: 100%;
  text-align: center;
  margin: 3vw 0;
}
a.btn {
  font-size: 1.5vw;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn-border-gradient-wrap {
  display: inline-block;
  padding: 0.2rem;
  border-radius: 0.5rem;
}
.btn-border-gradient-wrap--gold {
  background-image: -webkit-linear-gradient(
    315deg,
    #704308 0%,
    #ffce08 37%,
    #fefeb2 47%,
    #fafad6 50%,
    #fefeb2 53%,
    #e1ce08 63%,
    #704308 100%
  );
  background-image: linear-gradient(
    135deg,
    #704308 0%,
    #ffce08 37%,
    #fefeb2 47%,
    #fafad6 50%,
    #fefeb2 53%,
    #e1ce08 63%,
    #704308 100%
  );
}
.btn-border-gradient-wrap--gold:hover a.btn {
  text-shadow: 0 0 15px rgba(250, 250, 214, 0.5),
    0 0 15px rgba(250, 250, 214, 0.5), 0 0 15px rgba(250, 250, 214, 0.5),
    0 0 15px rgba(250, 250, 214, 0.5);
}
a.btn-border-gradient {
  font-size: 1.5vw;
  background: #000000;
}
.btn-text-gradient--gold {
  background: -webkit-linear-gradient(bottom, #ffffdb, #a16422);
  background: linear-gradient(to top, #ffffdb, #a16422);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
}

/* 18禁モーダル */
.age-banner {
  display: inline-block;
  padding: 1em 2em;
  background: linear-gradient(135deg, #c6a756, #f0d77b);
  color: #111;
  font-weight: bold;
  font-size: 1.5vw;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: 0.3s;
}
.age-banner:hover {
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}
.age-banner p {
  line-height: 1.8;
  text-align: center;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal-content {
  background: #000;
  border: 2px solid #c6a756;
  border-radius: 12px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  max-width: 400px;
  width: 90%;
  animation: fadeIn 0.4s ease;
}
.modal-content h2 {
  color: #f0d77b;
  margin-bottom: 15px;
}
.modal-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* gold_btn */

.gold-btn {
  background: linear-gradient(135deg, #d4b75f, #f7e08a);
  border: none;
  color: #111;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.gold-btn:hover {
  background: linear-gradient(135deg, #f7e08a, #d4b75f);
}

.black-btn {
  background: #222;
  border: 1px solid #555;
  color: #ddd;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.black-btn:hover {
  background: #444;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* メインビジュアル */
.main_visual_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1%;
}
.main_visual_area {
  width: 82%;
}
.main_visual_navi_area {
  width: 17%;
}
.slider-nav .slick-slide {
  margin: 10px;
  cursor: pointer;
}
.slider-nav img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
/* .slider-nav .slick-slide img {
  object-fit: cover;
  height: 100px;
} */

.slider-nav .slick-current img {
  border-top: 3px solid #e405d58c;
  border-bottom:  3px solid #e405d58c;
}
.slider-nav .slick-slide {
  opacity: 0.3;
}
.slider-nav .slick-active {
  opacity: 0.7;
}
.slider-nav .slick-current {
  transform: scale(1.1);
  opacity: 1;
}


/* お知らせ */
#news {
  background-color: rgba(43, 42, 42, 0.5);
}

.news_content_area {
  padding: 2vw 0;
  width: 100%;
  background-color: #2b2a2bb4;
  border-radius: 1vw;
}

.news_content_area > div:last-child {
  padding-bottom: 0;
}

.news_content {
  padding-bottom: 1vw;
}

.news_content a {
  width: 100%;
  height: 3em;
  display: flex;
  align-items: center;
}

.news_date {
  font-size: 1.8vw;
  padding-left: 3vw;
  letter-spacing: 2px;
  width: 5em;
}

.news_category {
  width: 10em;
  font-size: 1.3vw;
  text-align: center;
  /* border-radius: 10px; */
  margin: 0 1em;
  line-height: 2;
}

.general {
  background: linear-gradient(90deg, #b39855 0%, #fff9e6 50%, #b39855 100%);
  background-repeat: no-repeat;
  color: #2b2a2b;
  font-weight: bold;
}

.event {
  background: linear-gradient(90deg, #BDC3C9 0%, #ffffff 50%, #BDC3C9 100%);
  background-repeat: no-repeat;
  color: #2b2a2b;
  font-weight: bold;
}

.new_girl {
  background: linear-gradient(90deg, #ec12c9 0%, #f4a4e2 50%, #ec12c9 100%);
  background-repeat: no-repeat;
  color: #2b2a2b;
  font-weight: bold;
}

.uncategorized {
  background-color: #000000;
}

.news_title {
  font-size: 1.5vw;
  letter-spacing: 1px;
}


/* ご利用方法 */
#howto {
  background-color: rgba(43, 42, 42, 0.8);
}

.howto_tab {
  width: fit-content;
  text-align: center;
  margin-bottom: 1em;
  border-radius: 10px;
}
.howto_tab p {
  font-size: 1.4vw;
  padding: 0.5em 1em;
  font-weight: bold;
}

.howto_content {
  background-color: rgba(230, 230, 230, 0.4);
  margin-bottom: 3vw;
}
.howto_content p {
  font-size: 1.2vw;
  line-height: 2;
  padding: 1em;
}

.caution_comment {

}
.caution_comment p {
  font-size: 1.5vw;
  text-decoration: underline;
  font-weight: bold;
  line-height: 1.8;
  text-shadow: 1px 1px 0 #ffffff;
}

/* 本日出勤 */
#today_girl {
  background-color: rgba(43, 42, 42, 0.5);
}

.today_girl_content_area {
  gap: 2vw;
}
.today_girl_content {
  background-color: rgba(43, 42, 42, 0.9);
  padding: 2%;
  width: 26%;
}

.profile_btn_area {
  text-align: center;
}

.shift_time {
  width: 100%;
  text-align: center;
  margin-bottom: 1em;
}
.shift_time span {
  font-size: 1.2vw;
}

.no-cast-message {
  min-height: 50vh;
}

/* 即ヒメ */
#now_girl {
  background-color: rgba(43, 42, 42, 0.8);
}

@media screen and (max-width: 768px) {

  .age-banner {
    padding: 1em;
    font-size: 3.5vw;
    width: 90%;
  }

  .modal-content h2 {
    font-size: 4vw;
  }
  .modal-content p {
    font-size: 3vw;
  }
  .gold-btn,
  .black-btn {
    font-size: 2.5vw;
  }

  .main_visual_section {
    display: block;
    width: 100%;
  }

  .section_inner {
    width: 95%;
    margin: auto;
    min-height: auto;
  }

  .section_title h2 {
    font-size: 5.5vw;
  }
  .section_en_title {
    margin-bottom: 7vw;
  }
  .section_en_title h3 {
    font-size: 4vw;
  }

  .content_title {
    font-size: 3.5vw;
  }

  .btn-border-gradient-wrap {
    padding: 0.1rem;
  }a.btn-border-gradient {
    font-size: 3vw;
  }

  .news_content a {
    height: 1.5em;
  }
  .news_date {
    font-size: 3vw;
    margin-right: 1em;
  }
  .news_category {
    font-size: 2vw;
    width: 7em;
  }
  .news_title {
    font-size: 2.5vw;
  }

  .howto_tab p,
  .howto_content p,
  .shift_time span {
    font-size: 3.2vw;
  }
  .caution_comment p {
    font-size: 3.5vw;
  }

  .today_girl_content_area {
    gap: 3vw 1vw;
  }
  .today_girl_content {
    padding: 1%;
    width: 47%;
  }

  #today_girl .sales_tag_wrap,
  #now_girl .sales_tag_wrap {
    display: none;
  }

  .no-cast-message {
    min-height: 30vh;
  }

  .profile_btn_area {
    margin-bottom: 5vw;
  }

}
