
/* =========================
   BASE
========================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;
  background: #000 url("../img/bg.png") center center / cover no-repeat fixed;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.top-page {
  overflow: hidden;
}


/* =========================
   TOP GATE PAGE
========================= */

.top-gate-body {
  margin: 0;
  background: #000;
  overflow-x: hidden;
}

.top-gate-body::before {
  display: none;
}

.top-gate-page {
  min-height: 145vh;
  background: url("../img/bg.png") center center / cover no-repeat fixed;
}

.top-gate-hero {
  min-height: 72vh;
  position: relative;
  overflow: hidden;
}

.top-gate-hero::after,
.top-gate-enter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.top-gate-hero::after {
  background: rgba(0,0,0,0.16);
}

.top-gate-enter {
  min-height: 73vh;
  background: url("../img/top.png") center 80px / cover no-repeat;
  padding: 150px 16px 46px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}

.top-gate-enter::before {
  background: rgba(0,0,0,0.18);
}

.top-gate-box,
.top-gate-copy {
  position: relative;
  z-index: 2;
}

.top-gate-box {
  width: min(100%, 760px);
  margin: 0 auto;
}

.top-gate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 760px);
  height: 62px;
  margin: 0 auto 36px;
  background: rgba(0,0,0,0.92);
  border: 1px solid rgba(155,124,82,0.9);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.22em;
  transition: 0.3s;
}

.top-gate-btn:hover {
  background: #9b7c52;
}

.top-gate-text {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px #000;
}

.top-exit-link {
  color: #c8b38a;
  text-decoration: underline;
}

.top-gate-copy {
  margin: 95px 0 0;
  color: #fff;
  font-size: 14px;
  text-shadow: 0 0 10px #000;
}

.sp-only {
  display: inline;
}


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    transparent
  );
}

.header-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
}

.header-logo img {
  width: 38px;
}

.menu-btn {
  width: 48px;
  height: 52px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  z-index: 1200;
}

.menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: 0.3s;
}

.menu-btn em {
  display: block;
  color: #fff;
  font-style: normal;
  font-size: 10px;
  line-height: 1;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 72%;
  max-width: 280px;
  height: 100vh;
  padding: 90px 20px 30px;
  box-sizing: border-box;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: 0.3s;
  z-index: 1100;
}

.header-nav.is-open {
  left: 0;
}

.header-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-shadow: 0 0 6px #000;
}

.header-tel {
  margin-top: 5px;
  color: #fff;
  text-align: right;
  text-shadow: 0 0 6px #000;
}

.tel-number {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.tel-time {
  margin-top: 2px;
  font-size: 10px;
}

.header-buttons {
  display: flex;
  gap: 5px;
}

.header-ribbon {
  display: none;
}

/* =========================
   BREADCRUMB
========================= */

.breadcrumb {
  padding-top: 90px;
}

.breadcrumb-inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumb a,
.breadcrumb span,
.breadcrumb p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: #c8b38a;
  transition: 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb span {
  color: rgba(255,255,255,0.5);
}

.breadcrumb p {
  color: #fff;
}


/* =========================
   PC
========================= */

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

  .top-gate-page {
    min-height: 150vh;
  }

  .top-gate-hero {
    min-height: 78vh;
  }

  .top-gate-enter {
    min-height: 72vh;
    padding-top: 350px;
    background-position: center 200px;
  }

  .top-gate-btn {
    height: 64px;
    font-size: 21px;
  }

  .top-gate-text {
    font-size: 14px;
  }

  .sp-only {
    display: none;
  }

  .site-header {
    height: 150px;
  }

  .header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 24px;
  }

  .header-logo img {
    width: 150px;
    margin-top: 10px;
  }

  .menu-btn {
    display: none;
  }

  .header-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    margin-top: 24px;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    gap: 24px;
    transition: none;
  }

  .header-nav a {
    font-size: 20px;
    white-space: nowrap;
  }

  .header-tel {
    margin-left: auto;
    margin-top: 14px;
  }

  .tel-number {
    font-size: 28px;
  }

  .tel-time {
    font-size: 16px;
  }

  .header-buttons {
    gap: 10px;
    margin-left: 10px;
  }

  .header-ribbon {
    display: block;
    position: relative;
    width: 106px;
    height: 110px;
    padding-top: 10px;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
  }

  .header-ribbon::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    border-left: 53px solid transparent;
    border-right: 53px solid transparent;
  }

  .ribbon-reserve {
    background: #9b7c52;
  }

  .ribbon-reserve::after {
    border-top: 15px solid #9b7c52;
  }

  .ribbon-coupon {
    background: #1c7386;
  }

  .ribbon-coupon::after {
    border-top: 15px solid #1c7386;
  }

  .header-ribbon span {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    font-weight: bold;
  }

  .header-ribbon i {
    display: block;
    font-size: 38px;
    margin-bottom: 6px;
  }

  .breadcrumb {
    padding-top: 100px;
  }

  .breadcrumb a,
  .breadcrumb span,
  .breadcrumb p {
    font-size: 14px;
  }
}

/* =========================
   COMMON SECTION
========================= */

.section {
  padding: 80px 16px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0)
  );
  pointer-events: none;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 34px;
  text-align: center;
  letter-spacing: 2px;
}

.section-subtitle {
  margin: 0 0 40px;
  color: #c8b38a;
  font-size: 14px;
  text-align: center;
}

.section-title {
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 60px;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #9b7c52;
}

.section-title::before {
  left: 0;
}

.section-title::after {
  right: 0;
}

.outline-btn {
  width: 100%;
  max-width: 320px;
  min-height: 56px;
  margin: 36px auto 0;
  border: 1px solid #b89b67;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #b89b67;
}


/* =========================
   HERO
========================= */

.hero {
  width: 100%;
  min-height: 92vh;
  background: #000 url("../img/hero_phone.gif") center top / auto 100% no-repeat;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #000;
  z-index: 5;
}

.hero-video {
  display: none;
}

/* =========================
   TOP NEWS
========================= */

.news-top-box {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(155,124,82,0.5);
}

.news-top-item {
  border-bottom: 1px solid rgba(155,124,82,0.5);
}

.news-top-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 18px 10px;

  color: inherit;
  text-decoration: none;

  transition: 0.3s;
}

.news-top-link:hover {
  background: rgba(155,124,82,0.08);
}

.news-top-date {
  display: inline-block;
  margin-bottom: 6px;

  color: #c8b38a;

  font-size: 12px;
  letter-spacing: 0.08em;
}

.news-top-title {
  margin: 0;

  color: #fff;

  font-size: 14px;
  font-weight: normal;
  line-height: 1.7;
}

.news-top-arrow {
  color: #c8b38a;
  font-size: 18px;
  flex-shrink: 0;
}

.news-top-empty {
  margin: 0;
  padding: 24px 10px;
  color: #ddd;
  text-align: center;
}

.news-top-more-wrap {
  margin-top: 34px;
  text-align: center;
}

.news-top-link {
  align-items: center;
}

.news-top-thumb {
  width: 92px;
  height: 92px;

  flex-shrink: 0;

  overflow: hidden;

  background: rgba(255,255,255,0.05);
}

.news-top-thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.news-top-meta {
  flex: 1;
  min-width: 0;
}

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

  .news-top-link {
    padding: 22px 18px;
  }

  .news-top-date {
    font-size: 13px;
  }

  .news-top-title {
    font-size: 16px;
  }

}

/* =========================
   PICKUP / SCHEDULE PLACEHOLDER
========================= */

.pickup-placeholder,
.schedule-placeholder {
  padding: 56px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.03);
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}


/* =========================
   SYSTEM PRICE
========================= */

.price-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.price-column {
  padding: 24px 16px;
  border: 1px solid #9b7c52;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}

.price-column h3 {
  width: 100%;
  margin: 0 0 22px;
  padding: 10px 14px;
  border: 1px solid #9b7c52;
  box-sizing: border-box;
  background: rgba(155,124,82,0.08);
  color: #c8b38a;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.price-column h3:not(:first-child) {
  margin-top: 34px;
}

.price-column p {
  margin: 0 0 24px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
}

.price-column dl {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

.price-column dt {
  color: #eee;
}

.price-column dd {
  margin: 0;
  color: #c8b38a;
  font-weight: bold;
  white-space: nowrap;
}


/* =========================
   ROOM
========================= */

.room-image {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.4s;
}

.room-image:hover {
  transform: scale(1.03);
}

.room-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.room-image-wrap {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
}

.room-text {
  padding: 24px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.45);
}

.room-text h3 {
  margin: 0 0 14px;
  color: #c8b38a;
  font-size: 20px;
  line-height: 1.6;
}

.room-text p {
  margin: 0;
  color: #ddd;
  font-size: 14px;
  line-height: 2;
}


/* =========================
   OTHER
========================= */

.other-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.other-card {
  padding: 24px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  box-sizing: border-box;
  text-align: center;
}

.other-card img {
  width: 100%;
  margin-bottom: 18px;
  transition: transform 0.4s;
}

.other-card:hover img {
  transform: scale(1.03);
}

.other-card h3 {
  margin: 0 0 16px;
  color: #c8b38a;
  font-size: 22px;
}

.other-card p {
  margin: 0;
  color: #ddd;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}


/* =========================
   CONTACT
========================= */

.contact-inner {
  text-align: center;
}

.contact-tel {
  margin: 0 0 32px;
  font-size: 28px;
  letter-spacing: 1px;
}

.header-nav .bottom-logo {
  width: 40px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.08));
}


/* =========================
   CARD HOVER
========================= */

.cast-card,
.other-card,
.schedule-card,
.schedule-item,
.price-column {
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s;
}

.cast-card:hover,
.other-card:hover,
.schedule-card:hover,
.schedule-item:hover,
.price-column:hover {
  transform: translateY(-4px);
  border-color: #c8b38a;
  background: rgba(255,255,255,0.06);
}


/* =========================
   FADE ANIMATION
========================= */

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s,
    transform 1s;
}

.fade-section.show {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   PC
========================= */

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

  .section {
    padding: 120px 20px;
  }

  .section h2 {
    margin-bottom: 10px;
    font-size: 52px;
    letter-spacing: 3px;
  }

  .section-subtitle {
    margin-bottom: 60px;
    font-size: 18px;
  }

  .section-title {
    padding: 0 90px;
  }

  .section-title::before,
  .section-title::after {
    width: 70px;
  }

  .outline-btn {
    min-height: 65px;
    margin-top: 50px;
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    background-image: none;
    overflow: hidden;
  }

  .hero-video {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }

  .pickup-placeholder,
  .schedule-placeholder {
    padding: 80px 20px;
    font-size: 18px;
  }

  .price-box {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .price-column {
    padding: 40px;
  }

  .price-column h3 {
    font-size: 22px;
  }

  .price-column p {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .price-column dl {
    padding: 14px 0;
    font-size: 16px;
  }

  .room-text {
    margin-top: 18px;
    padding: 40px;
  }

  .room-text h3 {
    font-size: 26px;
  }

  .room-text p {
    font-size: 16px;
  }

  .other-cards {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .other-card {
    padding: 30px;
  }

  .other-card h3 {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .other-card p {
    font-size: 16px;
  }

  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-tel {
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 42px;
    letter-spacing: 2px;
  }

  .header-nav .bottom-logo {
    width: 50px;
    margin-bottom: 10px;
  }
}

/* =========================
   CAST CARD COMMON
========================= */

.cast-card,
.schedule-card {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid #9b7c52;
  box-sizing: border-box;
  text-align: center;
}

.cast-image,
.schedule-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.08);
}

.cast-image.no-image,
.schedule-image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

.cast-time,
.schedule-time {
  color: #c8b38a;
  margin: 0 0 8px;
}

.cast-size,
.schedule-size {
  color: #ccc;
  margin: 0 0 18px;
}

.cast-detail-btn,
.schedule-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9b7c52;
  color: #fff;
}

.cast-detail-btn:hover,
.schedule-btn:hover {
  background: #9b7c52;
}


/* =========================
   CAST CARD
========================= */

.cast-card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.cast-card {
  padding: 18px;
}

.cast-image {
  margin-bottom: 16px;
}

.cast-image.no-image {
  font-size: 14px;
  letter-spacing: 1px;
}

.cast-time {
  font-size: 14px;
}

.cast-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
}

.cast-size {
  font-size: 13px;
}

.cast-detail-btn {
  width: 180px;
  height: 44px;
  font-size: 14px;
}


/* =========================
   PICKUP SWIPER
========================= */

.pickup-slider {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 60px;
}

.pickup-slider .swiper-wrapper {
  align-items: stretch;
}

.pickup-slider .swiper-slide {
  height: auto;
}

.pickup-slider .cast-card {
  height: 100%;
}

.pickup-slider .swiper-button-prev,
.pickup-slider .swiper-button-next {
  color: #9b7c52;
}


/* =========================
   SCHEDULE CARD
========================= */

.schedule-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.schedule-card {
  padding: 12px;
}

.schedule-image.no-image {
  font-size: 12px;
}

.schedule-time {
  font-size: 12px;
  margin-bottom: 6px;
}

.schedule-card h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
}

.schedule-size {
  font-size: 11px;
  margin-bottom: 12px;
}

.schedule-btn {
  width: 100%;
  max-width: 130px;
  height: 36px;
  font-size: 12px;
}

.schedule-empty-top {
  grid-column: 1 / -1;
  padding: 30px 16px;
  border: 1px solid #9b7c52;
  background: rgba(0,0,0,0.58);
  color: #ddd;
  text-align: center;
}


/* =========================
   PC
========================= */

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

  .cast-card-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .pickup-slider .swiper-slide {
    transition: 0.3s;
  }

  .pickup-slider .swiper-slide:not(.swiper-slide-active) .cast-card {
    padding: 0;
    border: none;
    background: transparent;
  }

  .pickup-slider .swiper-slide:not(.swiper-slide-active) .cast-image {
    width: 70px;
    height: 360px;
    margin: 0 auto 24px;
    overflow: hidden;
  }

  .pickup-slider .swiper-slide:not(.swiper-slide-active) .cast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pickup-slider .swiper-slide:not(.swiper-slide-active) .cast-detail-btn {
    display: none;
  }

  .pickup-slider .swiper-slide-active .cast-card {
    transform: none;
    z-index: 10;
  }

  .pickup-slider .swiper-slide-active .cast-image {
    width: 100%;
    height: auto;
  }

  .pickup-slider .swiper-button-prev {
    left: 31%;
  }

  .pickup-slider .swiper-button-next {
    right: 31%;
  }

  .schedule-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .schedule-card {
    padding: 18px;
  }

  .schedule-time {
    font-size: 14px;
  }

  .schedule-card h3 {
    font-size: 24px;
  }

  .schedule-size {
    font-size: 13px;
  }

  .schedule-btn {
    max-width: 180px;
    height: 44px;
    font-size: 14px;
  }
}

/* =========================
   SP FIXED BUTTONS
========================= */

.sp-fixed-buttons {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1200;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.sp-fixed-btn {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.sp-fixed-btn i {
  margin-right: 8px;
  font-size: 20px;
}

.reserve-btn {
  background: #9b7c52;
}

.line-btn {
  background: #1c7386;
}


/* =========================
   PAGE TOP
========================= */

.page-top {
  position: fixed;
  right: 14px;
  bottom: 78px;
  z-index: 1100;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.page-top.show {
  opacity: 1;
  visibility: visible;
}

.page-top:hover {
  background: #9b7c52;
}


/* =========================
   BANNERS
========================= */

.banner-section {
  padding-top: 0;
}

.banner-grid {
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner-item {
  display: block;
  border: 1px solid #9b7c52;
  background: rgba(0,0,0,0.65);
  overflow: hidden;
  box-sizing: border-box;
  transition: 0.3s;
}

.banner-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(155,124,82,0.2);
}

.banner-item img {
  width: 100%;
  height: auto;
  display: block;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 18px 10px 72px;
  background: #000;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

/* =========================
   NEWS PAGE
========================= */

.news-page {
  padding-top: 90px;
}

.news-list-box {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid #9b7c52;
  padding: 18px;
  box-sizing: border-box;
}

.news-list-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(155, 124, 82, 0.45);
}

.news-list-item:first-child {
  padding-top: 0;
}

.news-list-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-list-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: calc(100% + 5px);
  border: none;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.news-list-content {
  color: #fff;
}

.news-list-date {
  display: inline-block;
  color: #c8b38a;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.news-list-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.news-list-text {
  margin: 0;
  color: #ddd;
  font-size: 14px;
  line-height: 2;
}

.news-empty {
  margin: 0;
  color: #ddd;
  text-align: center;
  padding: 30px 12px;
}

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

  .news-page {
    padding-top: 150px;
  }

  .news-list-box {
    width: min(1200px, calc(100% - 80px));
    max-width: none;
    padding: 40px 64px;
  }

  .news-list-item {
    display: block;
    padding: 30px 0;
  }

  .news-list-content {
    width: 100%;
    max-width: none;
  }

  .news-list-title {
    font-size: 24px;
  }

  .news-list-text {
    font-size: 17px;
  }

  .news-list-title,
  .news-list-text {
    max-width: none;
  }

}

/* =========================
   CAST LIST PAGE
========================= */

.cast-list-page {
  padding-top: 90px;
}

.cast-list-section {
  min-height: 100vh;
}

.cast-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cast-list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
  border: 1px solid #9b7c52;
  background: rgba(0, 0, 0, 0.58);
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}

.cast-list-card:hover {
  transform: translateY(-4px);
  border-color: #c8b38a;
  background: rgba(255,255,255,0.06);
}

.cast-badge-area {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cast-badge {
  display: inline-block;
  padding: 4px 8px;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
}

.new-badge {
  background: #9b7c52;
}

.today-badge {
  background: #1c7386;
}

.cast-list-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.cast-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast-list-image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  letter-spacing: 1px;
}

.cast-list-time {
  margin: 0 0 6px;
  color: #c8b38a;
  font-size: 12px;
}

.cast-list-name {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
}

.cast-list-size {
  margin: 0 0 10px;
  color: #ccc;
  font-size: 11px;
}

.cast-list-comment {
  margin: 0 0 18px;
  color: #ddd;
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
}

.cast-list-btn {
  width: 100%;
  max-width: 130px;
  height: 36px;
  margin: auto auto 0;
  border: 1px solid #9b7c52;
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cast-list-btn:hover {
  background: #9b7c52;
}


/* =========================
   PC
========================= */

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

  .sp-fixed-buttons {
    display: none;
  }

  .page-top {
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .site-footer {
    padding: 28px 10px;
    font-size: 22px;
  }

  .cast-list-page {
    padding-top: 150px;
  }

  .cast-list-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .cast-list-card {
    padding: 18px;
  }

  .cast-list-time {
    font-size: 14px;
  }

  .cast-list-name {
    font-size: 24px;
  }

  .cast-list-size {
    font-size: 13px;
  }

  .cast-list-comment {
    font-size: 14px;
  }

  .cast-list-btn {
    max-width: 180px;
    height: 44px;
    font-size: 14px;
  }
}

/* =========================
   CAST DETAIL PAGE
========================= */

.cast-detail-page {
  padding-top: 90px;
}

.cast-detail-section {
  min-height: auto;
}

.cast-detail-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}

.cast-detail-main-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid #9b7c52;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  touch-action: pan-y;
}

.cast-detail-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cast-detail-main-photo img.is-changing {
  opacity: 0;
  transform: scale(0.98);
}

.cast-detail-main-photo.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 14px;
  letter-spacing: 1px;
}

.cast-detail-sub-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.cast-detail-sub-photo {
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid rgba(155,124,82,0.8);
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  cursor: pointer;
}

.cast-detail-sub-photo.active {
  border-color: #fff;
  box-shadow: 0 0 10px rgba(200,179,138,0.7);
}

.cast-detail-sub-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast-detail-sub-photo.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 10px;
  text-align: center;
}

.cast-detail-info,
.cast-text-box,
.cast-schedule-box {
  border: 1px solid #9b7c52;
  background: rgba(0,0,0,0.58);
  box-sizing: border-box;
}

.cast-detail-info {
  width: 100%;
  padding: 24px 18px;
}

.cast-detail-name {
  margin: 0 0 18px;
  color: #fff;
  font-size: 28px;
  text-align: center;
}

.cast-detail-info > .cast-detail-time,
.cast-detail-info > .cast-detail-size {
  display: none;
}

.cast-comment-block {
  margin-bottom: 28px;
}

.cast-comment-block h3,
.cast-text-box h3 {
  margin: 0 0 14px;
  color: #c8b38a;
  font-size: 20px;
}

.cast-comment-block p,
.cast-message-block p,
.cast-text-box p {
  margin: 0;
  color: #ddd;
  font-size: 14px;
  line-height: 2;
}

.cast-message-block {
  padding-top: 0;
  border-top: none;
}

.cast-text-box {
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 24px 18px;
}

.cast-schedule-title {
  margin-top: 70px;
}

.cast-schedule-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
}

.cast-schedule-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.cast-schedule-row:last-child {
  border-bottom: none;
}

.cast-schedule-row span {
  color: #c8b38a;
  font-size: 13px;
}

.cast-schedule-row p {
  margin: 0;
  color: #eee;
  font-size: 13px;
}

.no-schedule {
  margin: 0;
  color: #ddd;
  font-size: 14px;
  text-align: center;
}

/* =========================
   CAST DETAIL PROFILE EXTRA
========================= */

.cast-detail-page .content-section {
  margin-top: 54px;
}

.cast-detail-page .section-box.profile-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: rgba(0,0,0,0.58);
  border: 1px solid #9b7c52;
  overflow: hidden;
}

.cast-detail-page .profile-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(155,124,82,0.45);
}

.cast-detail-page .profile-item:last-child {
  border-bottom: none;
}

.cast-detail-page .profile-label {
  padding: 14px 16px;
  color: #c8b38a;
  font-weight: bold;
  background: rgba(155,124,82,0.12);
  border-right: 1px solid rgba(155,124,82,0.45);
  display: flex;
  align-items: center;
}

.cast-detail-page .profile-value {
  padding: 14px 16px;
  color: #eee;
  line-height: 1.8;
  word-break: break-word;
}

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

  .cast-detail-page .section-box.profile-list {
    max-width: 100%;
  }

  .cast-detail-page .profile-item {
    grid-template-columns: 120px 1fr;
  }

  .cast-detail-page .profile-label,
  .cast-detail-page .profile-value {
    padding: 10px 12px;
    font-size: 13px;
  }

}


/* =========================
   CAST DETAIL PROFILE ROW
========================= */

.cast-detail-profile-list {
  display: block;
}

.cast-detail-profile-list .profile-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(155,124,82,0.45);
  box-sizing: border-box;
}

.cast-detail-profile-list .profile-row:last-child {
  border-bottom: none;
}

.cast-detail-profile-list .profile-row span {
  color: #c8b38a;
  font-size: 17px;
  font-weight: bold;
  white-space: nowrap;
}

.cast-detail-profile-list .profile-row p {
  margin: 0 24px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.8;
  white-space: nowrap;
}

/* =========================
   CAST DETAIL SP FIX
========================= */

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

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .cast-detail-page {
    overflow-x: hidden;
  }

  .cast-detail-box,
  .cast-detail-photo-area,
  .cast-detail-info {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cast-detail-main-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    box-sizing: border-box;
  }

  .cast-detail-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center;
    background: #000;
  }

  .cast-detail-sub-photos {
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .cast-detail-sub-photo {
    min-width: 0;
    box-sizing: border-box;
  }

  .cast-detail-sub-photo img {
    object-fit: cover;
  }

  .cast-detail-profile-list .profile-row {
    display: grid;
    grid-template-columns: auto 1fr;
    justify-content: start;
    gap: 8px 12px;
  }

  .cast-detail-profile-list .profile-row span,
  .cast-detail-profile-list .profile-row p {
    white-space: normal;
  }

  .cast-detail-profile-list .profile-row p {
    margin: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .sp-fixed-buttons {
    width: 100vw;
    max-width: 100vw;
    left: 0;
    right: 0;
  }

}

/* =========================
   CAST SCHEDULE PAGE
========================= */

.cast-schedule-page {
  padding-top: 90px;
}

.schedule-date-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 30px;
  border: 1px solid #9b7c52;
}

.schedule-date-tab {
  min-height: 54px;
  padding: 6px 0;
  border-right: 1px solid #9b7c52;
  background: rgba(0,0,0,0.45);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.schedule-date-tab:last-child {
  border-right: none;
}

.schedule-date-tab span {
  color: #fff;
  font-size: 12px;
}

.schedule-date-tab small {
  color: #c8b38a;
  font-size: 10px;
}

.schedule-date-tab.active {
  background: #9b7c52;
}

.schedule-date-tab.active small {
  color: #fff;
}

.schedule-selected-date {
  margin-bottom: 30px;
  padding: 14px;
  background: rgba(155,124,82,0.85);
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  text-align: center;
}

.schedule-cast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.schedule-cast-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #9b7c52;
  background: rgba(0,0,0,0.58);
  color: #fff;
  overflow: hidden;
  transition: 0.3s;
}

.schedule-cast-card:hover {
  transform: translateY(-4px);
  border-color: #c8b38a;
  background: rgba(255,255,255,0.06);
}

.schedule-new-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  padding: 4px 8px;
  background: #9b7c52;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
}

.schedule-cast-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: rgba(255,255,255,0.08);
}

.schedule-cast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-cast-image.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

.schedule-cast-body {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.schedule-cast-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.schedule-cast-size {
  margin: 0 0 10px;
  color: #ccc;
  font-size: 11px;
  line-height: 1.6;
}

.schedule-cast-comment {
  margin: 0 0 14px;
  color: #ddd;
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
}

.schedule-cast-time {
  margin: auto -12px -12px;
  padding: 9px;
  background: #9b7c52;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.schedule-empty {
  grid-column: 1 / -1;
  padding: 30px 16px;
  border: 1px solid #9b7c52;
  background: rgba(0,0,0,0.58);
  color: #ddd;
  text-align: center;
}

/* =========================
   CAST DETAIL SCHEDULE TABLE
========================= */

.cast-detail-schedule-table {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid #9b7c52;
  border-left: 1px solid #9b7c52;
  background: rgba(0,0,0,0.58);
}

.cast-detail-schedule-cell {
  border-right: 1px solid #9b7c52;
  border-bottom: 1px solid #9b7c52;
  min-height: 110px;
  display: flex;
  flex-direction: column;
}

.cast-detail-schedule-cell .schedule-date {
  min-height: 48px;
  padding: 10px 4px;
  color: #c8b38a;
  font-size: 12px;
  text-align: center;
  border-bottom: 1px solid rgba(155,124,82,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cast-detail-schedule-cell .schedule-time {
  flex: 1;
  padding: 12px 4px;
  color: #fff;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

  .cast-detail-schedule-table {
    grid-template-columns: 1fr;
    border-top: 1px solid #9b7c52;
    border-left: 1px solid #9b7c52;
    gap: 0;
    background: rgba(0,0,0,0.58);
  }

  .cast-detail-schedule-cell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    border-right: 1px solid #9b7c52;
    border-bottom: 1px solid #9b7c52;
  }

  .cast-detail-schedule-cell .schedule-date,
  .cast-detail-schedule-cell .schedule-time {
    min-height: auto;
    padding: 8px 6px;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .cast-detail-schedule-cell .schedule-date {
    border-bottom: none;
    border-right: 1px solid rgba(155,124,82,0.7);
    background: transparent;
    color: #c8b38a;
  }

  .cast-detail-schedule-cell .schedule-time {
    color: #fff;
  }

}


/* =========================
   SYSTEM PAGE
========================= */

.system-page {
  padding-top: 90px;
}

.system-note-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 18px;
  border: 1px solid #9b7c52;
  background: rgba(0,0,0,0.58);
  box-sizing: border-box;
}

.system-note-box h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 18px;
}

.system-note-box h3:not(:first-child) {
  margin-top: 44px;
}

.system-note-box p,
.system-note-box li {
  color: #fff;
  font-size: 14px;
  line-height: 2;
}

.system-note-box ol {
  margin: 20px 0 0;
  padding-left: 22px;
}


/* =========================
   MAP PAGE
========================= */

.map-page {
  padding-top: 90px;
}

.map-room-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 18px;
  border: 1px solid #9b7c52;
  background: rgba(0,0,0,0.58);
  box-sizing: border-box;
}

.map-room-box h3 {
  margin: 0 0 22px;
  color: #c8b38a;
  font-size: 24px;
  text-align: center;
}

.map-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid #9b7c52;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-text {
  margin: 28px 0 0;
  color: #ddd;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}


/* =========================
   PC
========================= */

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

  .cast-detail-page,
  .cast-schedule-page,
  .system-page,
  .map-page {
    padding-top: 150px;
  }

  .cast-detail-box {
    max-width: 760px;
  }

  .cast-detail-info {
    padding: 40px;
  }

  .cast-detail-name {
    font-size: 38px;
  }

  .cast-comment-block h3,
  .cast-comment-block p,
  .cast-message-block p {
    font-size: 16px;
  }

  .cast-text-box {
    padding: 40px;
  }

  .cast-text-box h3 {
    font-size: 24px;
  }

  .cast-text-box p {
    font-size: 16px;
  }

  .cast-schedule-box {
    padding: 28px 40px;
  }

  .cast-schedule-row {
    grid-template-columns: 180px 1fr;
    padding: 18px 0;
  }

  .cast-schedule-row span,
  .cast-schedule-row p {
    font-size: 15px;
  }

  .schedule-date-tab {
    min-height: 72px;
    padding: 0;
    transition:
      background 0.3s ease,
      color 0.3s ease;
  }

  .schedule-date-tab:hover {
    background: #9b7c52;
  }

  .schedule-date-tab:hover span,
  .schedule-date-tab:hover small {
    color: #fff;
  }

  .schedule-date-tab span {
    font-size: 18px;
  }

  .schedule-date-tab small {
    font-size: 15px;
  }

  .schedule-selected-date {
    padding: 16px;
    font-size: 26px;
  }

  .schedule-cast-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .schedule-cast-body {
    padding: 14px;
  }

  .schedule-cast-body h3 {
    font-size: 22px;
  }

  .schedule-cast-size,
  .schedule-cast-comment {
    font-size: 13px;
  }

  .schedule-cast-time {
    margin-left: -14px;
    margin-right: -14px;
    margin-bottom: -14px;
    font-size: 16px;
  }

  .system-note-box {
    padding: 40px;
  }

  .system-note-box h3 {
    font-size: 22px;
  }

  .system-note-box p,
  .system-note-box li {
    font-size: 15px;
  }

  .map-room-box {
    padding: 40px;
  }

  .map-room-box h3 {
    font-size: 30px;
  }

  .map-text {
    font-size: 16px;
  }
}

/* =========================
   PHOTO DIARY BANNER
========================= */

.cast-diary-banner {
  max-width: 760px;
  margin: 40px auto 0;
}

.cast-diary-banner a {
  display: block;
}

.cast-diary-banner img {
  width: 100%;
  height: auto;
  display: block;

  border: 1px solid #9b7c52;

  transition: 0.3s;
}

.cast-diary-banner img:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/*新しく追加*/

.schedule-card {
  position: relative;
}

.schedule-card .schedule-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.cast-card {
  position: relative;
}

.cast-card .schedule-new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}
