/* Theme Colors */
:root {
  --ver-gradient: linear-gradient(to bottom, var(--ver-grad-start), var(--ver-grad-end));
  --ver-main: #A1365B;
  --ver-dark: #BC3664;
  --ver-mid: #C36B86;
  --ver-light: #CF9EA1;
  --ver-grad-start: #E1BDB4;
  --ver-grad-end: #B66E7D;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
.btn-more,
.contact-button,
.tab-buttons button {
  font-family: 'Source Han Serif JP', serif;
}

section {
  width: 100%;
  padding: 40px 0;
}

.inner {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

a {
  text-decoration: none !important;
}

.load-more {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  margin-top: 2em;
  background: #333333;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: 0.5s;
  font-size: 1em;
  font-family: 'Source Han Serif JP', serif;
}

.load-more:active {
  background: var(--ver-main);
}

.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: absolute;
  width: 0.8em;
  height: 1px;
  background: currentColor;
  top: 50%;
  right: 5%;
  transform: translatey(-50%);
}

.dli-arrow-right::before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.1em;
  box-sizing: border-box;
}

/* トップページ用 hタグ*/
.top-page h2 {
  font-family: 'Source Han Serif JP', serif;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.top-page h2 span {
  display: block;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.36em;
  width: 100%;
  opacity: .2;
  white-space: nowrap;
  overflow: hidden;
}

.top-page h3 {
  font-family: 'Source Han Serif JP', serif;
  font-size: 14px;
  font-weight: normal;
  color: var(--color-primary);
  margin-bottom: 6px;
}

/* ヘッダー */
.header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  color: #333;
  height: 60px;
  width: 100%;
  z-index: 100;
  padding-left: 5%;
}

.logo {
  display: grid;
  padding: 1em 0;
  width: auto;

}

.logo a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 200;
}

.logo img {
  /* height: 100%; */
  /* width: auto; */
  width: 100px;
  vertical-align: middle;
}

.nav-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ver-main);
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.nav-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.nav-menu ul {
  list-style: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.nav-menu li {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%;
  border-bottom: 1px solid #ffffff80;
}

.nav-menu.open li {
  opacity: 1;
  transform: scale(1);
}

.nav-menu.open li:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-menu.open li:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-menu.open li:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-menu.open li:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-menu.open li:nth-child(5) {
  transition-delay: 0.5s;
}

.nav-menu.open li:nth-child(6) {
  transition-delay: 0.6s;
}

.nav-menu.open li:nth-child(7) {
  transition-delay: 0.7s;
}

.nav-menu.open li:nth-child(8) {
  transition-delay: 0.8s;
}

.nav-menu li a {
  padding: 1.25em 5%;
  font-family: 'Source Han Serif JP', serif;
  color: #fff;
  display: block;
  text-decoration: none;
}

.hamburger-menu {
  aspect-ratio: 1 / 1;
  height: 100%;
  background: var(--ver-main);
  position: relative;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 20px;
  height: 13px;
  z-index: 10;
}

.hamburger span {
  transition: all .3s;
  position: absolute;
  height: 1px;
  background-color: #fff;
  width: 100%;
  z-index: 10;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 6px;
  width: 80%;
}

.hamburger span:nth-of-type(3) {
  top: 12px;
}

.hamburger.open span:nth-of-type(1) {
  top: 0;
  transform: translateY(6px) rotate(-33deg);
}

.hamburger.open span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
  top: 12px;
  transform: translateY(-6px) rotate(33deg);
}

/* メニュー表示時 */
.nav-menu.open {
  transform: translateX(0);
}

/* リスト */
.nav-menu ul {
  list-style: none;
  margin: 0;
}

/* メインビジュアル */
.main-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.main-visual .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  height: 100%;
  width: 100%;
  overflow: visible !important;
}

.ranking-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.main-visual {
  width: 100%;
  position: relative;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  display: grid;
  gap: 5px;
  grid-template-rows: auto auto auto;
  background: linear-gradient(180deg, #ffffff00, #333333d1);
}

.slide-caption-meta {
  display: flex;
  gap: 0.5em;
  line-height: 1;
}

.slide-caption-meta span:first-of-type {
  border-right: 1px solid #fff;
  padding-right: 0.5em;
}

.swiper-pagination-bullet-active {
  background: var(--ver-main) !important;
}

/* エリア検索 */
.area-search {
  background-color: var(--ver-light);
  text-align: center;
}

.area-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.area-buttons button {
  background-color: #333;
  color: #fff;
  border: none;
  height: 50px;
  line-height: 50px;
  border-radius: 4px;
  transition: 0.5s;
}

.area-buttons button:hover {
  background-color: var(--ver-main);
}

.area-buttons button.click {
  background-color: var(--ver-main);
}

/* 店舗ランキング */
.store-ranking {
  background: var(--ver-gradient);
}

.wrapper {
  padding-left: 5%;
}

::-webkit-scrollbar {
  display: none;
}

.region-tabs {
  display: flex;
  overflow-x: auto;
  gap: 3px;
  margin-bottom: 1.4em;
  height: 46px;
}

.region-tab {
  flex: 0 0 auto;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
  border-bottom: 3px solid #fff;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 1em;
  box-sizing: border-box;
  color: #fff;
}

.region-tab.active {
  color: var(--ver-main);
  border-bottom: 3px solid var(--ver-main);
  position: relative;
}

.region-tab.active::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 4px solid var(--ver-main);
  border-bottom: 0;
  left: 50%;
  bottom: -6px;
  transform: translatex(-50%);
}

/* スライドの中身 */
.slide-content {
  width: 95%;
}

.swiper-wrapper {
  width: 100%;
}

.slide-content .ranking-box:last-of-type {
  margin-bottom: 0 !important;
}

.ranking-box {
  background: #f0f0f0ea;
  border-radius: 6px;
  margin-bottom: 1.25em;
  height: 100px;
  display: grid;
  grid-template-columns: 100px auto;
  position: relative;
}

.ranking-box::before {
  position: absolute;
  top: -0.8em;
  left: -0.8em;
  width: 40px;
  height: 40px;
  display: block;
  z-index: 1;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  font-family: 'Source Han Serif JP', serif;
}

.ranking-box::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: var(--ver-main);
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.3em 0.3em;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: calc(1em - 0.3em);
  transform: translatey(-50%);
}

.ranking-box h3 {
  margin: 0.5em 0;
}

.swiper {
  width: 100%;
}

.ranking-card__image-wrapper {
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
}

.ranking-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-card__info {
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.ranking-card__title {
  color: var(--ver-main);
  font-size: 1.14em;
  margin: 0 !important;
}

.ranking-card__kana,
.ranking-card__meta {
  font-size: 0.7em;
}

.ranking-card__meta {
  display: flex;
  gap: 10px;
  line-height: 1;
}

.ranking-card__separator {
  height: 80%;
  width: 1px;
  background: #333;
  display: block;
}

.slide-content .ranking-box:nth-of-type(1)::before {
  content: "1";
  background: #D3A371;
}

.slide-content .ranking-box:nth-of-type(2)::before {
  content: "2";
  background: #ABABAB;
}

.slide-content .ranking-box:nth-of-type(3)::before {
  content: "3";
  background: #856825;
}

.ranking-box {
  position: relative;
}

.ranking-box .ranking-link {
  position: absolute;
  inset: 0;
  /* top, right, bottom, leftを全部0に */
  z-index: 10;
}

/* 店舗ランキング */

.cast-ranking {
  background: var(--ver-gradient);
}

/* 人気エリア一覧 */
.area-ranking {
  background: var(--ver-light);
}

.area-list {
  list-style: none;
  display: grid;
  gap: .5em;
}

.area-list li {
  width: 95%;
  height: 50px;
  line-height: 50px;
  background: var(--ver-main);
  border-radius: 3px;
  color: var(--ver-main);
  position: relative;
}

.area-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.area-list li a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0 1em;
  color: #fff;
}

/* ランキング */
.rank-list {
  list-style: none;
  padding: 0 16px;
}

.rank-list li {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

/* ニュース */
.news,
.cast-blog {
  background: #F5F5F5;
}

.news h2,
.cast-blog h2 {
  display: grid;
  grid-template-rows: auto auto;
  font-size: 16px;
  gap: 0.35em;
  margin-bottom: 40px;
}

.news h2 span,
.cast-blog h2 span {
  font-size: 0.6em;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各項目 */
.news-list li {
  border-top: 1px solid #707070;
  padding: 1em 0;
}

.news-list li:first-of-type {
  padding: 0;
}

.news-list li:first-of-type {
  border-top: none;
}

.news-list li:first-of-type .news-img {
  display: grid;
  aspect-ratio: 16 / 9;
  background: #ccc;
  place-items: center;
}

.news-list li:first-of-type .news-info {
  padding: 1em 0;
}

.news-list li a {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 1em;
}

.news-img {
  display: grid;
  aspect-ratio: 1 / 1;
  background: #ccc;
  place-items: center;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list li:first-of-type a {
  display: grid;
  color: inherit;
  text-decoration: none;
  grid-template-columns: auto;
  gap: 0;
}

.news-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.news-info p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
  font-weight: bold;
}

.news-list li:first-of-type time {
  color: #333;
  margin-bottom: 0.5em;
  padding-right: 10px;
  border-right: 1px solid #707070;
}

.news-meta {
  font-size: 0.8em;
  display: flex;
  gap: 10px;
  color: var(--ver-main);
  margin-bottom: 0.5em;
  line-height: 1;
}

.new_news {
  position: relative;
}

.new_news::before {
  content: "New";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--ver-main);
  opacity: 0.9;
  color: #fff;
  border-radius: 50%;
  transform: rotate(-15deg);
  font-family: 'Source Han Serif JP', serif;
  font-size: 0.9em;
}

.news-info time {
  color: var(--ver-main);
}

/* キャストブログ */

.cast-blog {
  padding-top: 0;
}

.cast-voice-list {
  list-style: none;
}

.cast-voice-item {
  padding: 1em 0;
  border-bottom: 1px solid #707070;
}

.cast-voice-item:first-of-type {
  padding-top: 0;
}

.cast-voice-item:last-of-type {
  padding-bottom: 0;
}

.cast-voice-item:last-of-type {
  border-bottom: none;
}

.cast-voice-link {
  display: grid;
  grid-template-columns: 40px auto 90px;
  gap: 1em;
}

.cast-voice-icon {
  border-radius: 50%;
}

.cast-voice-img,
.cast-voice-icon {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  background: #ccc;
  place-items: center;
  overflow: hidden;
}

.cast-voice-img img,
.cast-voice-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cast-voice-info {}

.cast-voice-name {
  margin-bottom: 0.5em;
  color: var(--ver-main);
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1em;
}

.cast-voice-name span {
  color: #333;
  font-weight: normal;
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.9em;
}

.cast-voice-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
}

/* ギャラリー */
.gallery {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery img {
  width: 100%;
  border-radius: 6px;
}

/* 詳細情報 */
.detail-info {
  padding: 20px;
}

.detail-info h2 {
  font-size: 16px;
  color: #8e2c4c;
  margin-bottom: 12px;
}

.detail-info table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.detail-info th,
.detail-info td {
  padding: 8px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

/* フッター */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
}

.prefectures {
  background: var(--ver-gradient);
  color: #fff !important;
}

.prefectures h2 {
  font-size: 1.28em;
  margin-bottom: 20px;
}

.prefectures a {
  color: #fff;
}

.prefecture-list div {
  display: flex;
  gap: 1em;
}

.prefecture-list {
  margin-bottom: 20px;
}

.prefecture-list div p a {
  display: inline-block;
}

.prefecture-list .region {
  flex: 0 0 20%;
}

.prefecture-list p:last-child {
  flex: 1;
}

.prefecture-list {
  display: grid;
  grid-row: auto;
  gap: 1em;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ffffff80;
}

.footer-nav a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid #ffffff80;
  margin: 0;
  color: #fff;
}

.footer-nav a:nth-child(odd) {
  border-right: 1px solid #ffffff80;
}

.footer-nav a:nth-last-child(-n+2) {
  border-bottom: none;
}

.site-name {
  width: 200px;
  margin: 0 auto;
  padding: 2em 0;
}

.copyright {
  padding: 0.5em 0;
  background: #fff;
  width: 100%;
  color: var(--ver-main);
  font-size: 0.8em;
}

.prefectures .region-tab {
  color: #fff;
  border-bottom: 3px solid #fff;
  padding: 0 1em 3px;
}

.prefectures .region-tab.active {
  color: #fff;
  border-bottom: 3px solid #fff !important;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}

.prefectures .region-tab.active::before {
  border-top: 4px solid #fff !important;
}

.prefectures .area-list li {
  background: none;
  border: 1px solid #fff;
  box-sizing: border-box;
}

.prefectures .area-list li a {
  color: #fff;
}

/* ------------------ 店舗ページ ------------------ */

.shop-page h2 {
  border-left: 3px solid var(--ver-main);
  line-height: 1.2;
  padding: 0 10px;
  color: var(--ver-main);
  font-size: 1.14em;
  margin: 0 0 2em;
}

body.has-follow-button {
  margin-bottom: 60px;
}

.shop-page section {
  border-bottom: 10px solid #eee;
}

.shop-page section:last-child {
  border-bottom: none;
}

.shop-page p {
  margin: 0 0 1em;
}

.shop-info__sns {
  display: flex;
  gap: 0.5em;
  font-size: 2em;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 1em 0 0;
}

.shop-info__sns a {
  color: initial;
}

.shop-info__h2 {
  font-size: 1.14em;
  color: var(--ver-main);
  margin: 0 0 1em !important;
  padding: 0 0 1em !important;
  border-bottom: 1px solid #707070;
  border-left: none !important;
  line-height: 1.5 !important;
}

.follow_button {
  height: 60px;
  display: grid;
  grid-template-columns: auto 120px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 60px;
  text-align: center;
  opacity: 0.95;
  z-index: 99;
}

.follow_button_01,
.follow_button_02 {
  padding: 0 1em;
  display: block;
  color: #fff;
  font-weight: bold;
}

.follow_button_01 {
  background: var(--ver-main);
}

.follow_button.fa-solid,
.follow_button .fa-phone {
  margin-right: 10px;
}

.follow_button_02 {
  background: #D3A371;
}

/* 店舗画像スライダー */
.shop-gallery-slider {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.gallery-caption {}

.gallery-attendance-badge,
.shop-gallery-slide-caption-meta {
  z-index: 2;
}

.gallery-attendance-badge {
  position: absolute;
  top: 20px;
  left: 20px;
}

.shop-gallery-slide-caption-meta {
  position: absolute;
  padding: 20px;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  display: grid;
  gap: 5px;
  grid-template-rows: auto auto auto;
  background: linear-gradient(180deg, #ffffff00, #333333d1);
}

.shop-gallery-slide-caption-meta p {
  display: flex;
  gap: 0.5em;
  line-height: 1;
}

.shop-gallery-slide-caption-meta p span:first-of-type {
  border-right: 1px solid #fff;
  padding-right: 0.5em;
}

.gallery-swiper img {
  height: 100%;
  object-fit: cover;
}

.gallery-attendance-badge {
  display: flex;
  gap: 10px;
  font-size: 1em;
  align-items: center;
  padding: 6px 10px;
  background: var(--ver-main);
  opacity: 0.8;
  color: #fff;
  border-radius: 3px;
  line-height: 1;
  font-family: 'Source Han Serif JP', serif;
}

.gallery-attendance-badge strong {
  font-size: 1.2em;
  font-weight: normal;
}

.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  transform: translate(-25%, -50%) rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: 2;
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.2em;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.2em;
}

/* タブスライダー */
.shop-tab-swiper {
  margin: 0;
}

.shop-tab-swiper .swiper-slide {
  flex-shrink: 0;
  width: auto;
}

.shop-tab-swiper .swiper-wrapper {
  display: flex;
}

.shop-tab {
  display: inline-block;
  text-align: center;
  height: 53px;
  line-height: 53px;
  padding: 0 1em;
  background: #fff;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  border-right: 1px solid #eee;
  border-bottom: 3px solid #eee;
}

.shop-tab-swiper .swiper-slide:last-of-type .shop-tab {
  border-right: none;
}

.shop-tab.active {
  color: var(--ver-main);
  border-bottom: 3px solid var(--ver-main);
}

/* 最新情報 */
.shop-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各項目 */
.shop-news-list li {
  border-top: 1px solid #707070;
  padding: 1em 0;
}

.shop-news-list li:first-of-type {
  border-top: none;
}

.shop-news-list li a {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 1em;
}

.news-img {
  display: grid;
  aspect-ratio: 1 / 1;
  background: #ccc;
  place-items: center;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list li:first-of-type a {
  display: grid;
  color: inherit;
  text-decoration: none;
  grid-template-columns: auto;
  gap: 0;
}

.news-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.news-info p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
  font-weight: bold;
}

.news-list li:first-of-type time {
  color: #333;
  margin-bottom: 0.5em;
  padding-right: 10px;
  border-right: 1px solid #707070;
}

.news-meta {
  font-size: 0.8em;
  display: flex;
  gap: 10px;
  color: var(--ver-main);
  margin-bottom: 0.5em;
  line-height: 1;
}

.new_news {
  position: relative;
}

.new_news::before {
  content: "New";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--ver-main);
  opacity: 0.9;
  color: #fff;
  border-radius: 50%;
  transform: rotate(-15deg);
  font-family: 'Source Han Serif JP', serif;
  font-size: 0.9em;
  z-index: 2;
}

.news-info time {
  color: var(--ver-main);
}

/* 料金表 */
.price-table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  font-family: sans-serif;
  margin-bottom: 1em;
}

.price-table:last-of-type {
  margin-bottom: 0;
}

.price-table td {
  border: 1px solid var(--ver-light);
  padding: 0.8em;
  box-sizing: border-box;
}

.price-table td:nth-child(2) {
  text-align: left;
}

.price-table .table-header {
  background-color: var(--ver-light);
  font-weight: bold;
  color: #fff;
}

/* イベント情報 */

.event-list {
  list-style: none;
  display: grid;
}

.event-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 20% auto;
  gap: 1em;
  padding: 1em 0;
  border-bottom: 1px solid #707070;
}

.event-list li:last-of-type {
  border-bottom: none;
}

.event-date {
  text-align: center;
  font-weight: bold;
}

.event-day.blue {
  color: #2A9CFF;
}

.event-day.red,
.event-status.red {
  color: var(--ver-dark);
}

/* 口コミ */

.review-item {
  padding: 1em 0;
  border-bottom: 1px solid #707070;
}

.review-item:last-of-type {
  border-bottom: none;
}

.review-text {
  margin: 0 !important;
}

.review-header {
  display: flex;
  align-items: center;
  font-size: 0.8em;
  line-height: 1;
  gap: 10px;
  margin: 0 0 0.8em;
}

.review-item .badge {
  padding: 5px 10px;
  border-radius: 3px;
  color: #fff;
}

.review-item .guest {
  background-color: #D3A371;
}

.review-item .cast {
  background-color: var(--ver-mid);
}

/* 店舗情報 */

.shop-information {
  border-top: 10px solid #eee;
  margin: 0;
  width: 100%;
}

.shop-table {
  width: 100%;
  border-collapse: collapse;
}

.shop-table p {
  margin: 0 !important;
}

.shop-table .sns-icons a {
  font-size: 2em;
}

.shop-table .sns-icons {
  display: flex;
  gap: 10px;
}

.shop-table th,
.shop-table td {
  padding: 1em;
  vertical-align: middle;
}

.shop-table tr {
  border-bottom: 1px solid #ddd;
}

.shop-table th {
  text-align: center;
  color: var(--ver-main);
  font-weight: bold;
  width: 30%;
}

.shop-table td a {
  color: inherit;
  text-decoration: underline !important;
}

.map-img {
  width: 100%;
  margin: 8px 0;
}

.shop-table a {
  color: #0073e6;
  text-decoration: none;
}

.shop-table img {
  height: 24px;
  margin-right: 4px;
  vertical-align: middle;
}

.note {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}

.sns-icons img {
  width: 28px;
  margin-right: 6px;
  vertical-align: middle;
}

.cashless-icon {
  display: flex;
  gap: 5px;
  margin: 0 0 1em;
}

.event-arrow {
  display: flex;
  justify-content: space-between;
  margin: 0 0 1em;
}

.event-arrow a {
  display: flex;
  gap: 10px;
  align-items: center;
  color: inherit;
}

.event-arrow p {
  line-height: 1;
  margin: 0 !important;
}

.event-arrow span {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
}

.page {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page.active {
  display: block;
  opacity: 1;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  justify-content: space-between;
}

.pager .next,
.pager .prev {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #333;
  border: none;
  cursor: pointer;
  border: 1px solid #333;
  border-radius: 50%;
  background: #fff;
}

.page-num button {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #333;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: #fff;
}

.page-num button.active {
  color: #fff;
  background: #333;
}

.pager button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* キャスト一覧 */

.castlist-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cast-count {
  padding: 4px 0.5em;
  border-radius: 3px;
  background: var(--ver-dark);
  opacity: 0.9;
  color: #fff;
}

.castlist-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.castlist-title {
  font-size: 16px;
  color: #b85e7b;
}

.castlist-count {
  margin-left: 10px;
  background: #b85e7b;
  color: #fff;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 6px;
}

/* 横スクロールラッパー（画面幅に合わせる） */
.castlist-outer-wrapper {
  overflow-x: auto;
  padding: 0.5em 5% 1em;
  margin: 0 -5%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.castlist-outer-wrapper::-webkit-scrollbar {
  display: none;
}

/* リスト */
.castlist {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.castlist-item {
  flex: 0 0 auto;
  width: 140px !important;
  scroll-snap-align: start;
}

.castlist-link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.castlist-link:hover {
  transform: translateY(-4px);
}

.castlist-link img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
}

.castlist-name {
  text-align: center;
  color: var(--ver-main);
  padding: 0.5em 0;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.castlist-badge-new {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #b85e7b;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 12px;
  z-index: 1;
}

.castlist-grid-wrapper {
  width: 100%;
}

.castlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 150px);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.castlist-grid li {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: transform 0.2s ease;
  position: relative;
}

.castlist-grid li.new_news::before {
  content: "New";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: var(--ver-main);
  opacity: 0.9;
  color: #fff;
  border-radius: 50%;
  transform: rotate(-15deg);
  font-family: 'Source Han Serif JP', serif;
  font-size: 0.9em;
  z-index: 2;
}

.castlist-grid li:hover {
  transform: translateY(-4px);
}

.castlist-link {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

.castlist-item,
.castlist-grid li {
  width: 100%;
  max-width: 100%;
}

.castlist-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.castlist-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.castlist-name {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: var(--ver-main);
  padding: 8px 6px;
  overflow: hidden;
  box-sizing: border-box;
}

.castlist-name p {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  margin: 0;
}

/* 求人 */
.recruit-tabs {
  width: 100%;
}

.recruit-tabs input[type="radio"] {
  display: none;
}

.tab-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 1.5em auto 1px;
  font-family: 'Source Han Serif JP', serif;
}

.tab-label {
  width: 50%;
  padding: 0.75em 0;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--ver-main);
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 3px;
  color: var(--ver-main);
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1;
}

.tab-label::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 4px solid var(--ver-main);
  border-bottom: 0;
  left: 50%;
  bottom: -4px;
  transform: translatex(-50%);
}

#tab-cast:checked~.tab-labels label[for="tab-cast"]::after,
#tab-staff:checked~.tab-labels label[for="tab-staff"]::after {
  opacity: 1;
}

#tab-cast:checked~.tab-labels label[for="tab-cast"],
#tab-staff:checked~.tab-labels label[for="tab-staff"] {
  background-color: var(--ver-main);
  color: #fff;
  position: relative;
  z-index: 2;
}

.recruit-content {
  display: none;
  border-radius: 0 0 6px 6px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

#tab-cast:checked~#content-cast,
#tab-staff:checked~#content-staff {
  display: block;
}

.recruit-content h3 {
  margin-bottom: 1em;
}

.apply-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 400px;
  margin: 1em auto;
  font-family: sans-serif;
}

.btn {
  display: grid;
  align-items: center;
  border-radius: 3px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  width: 100%;
  background: var(--ver-mid);
  text-align: center;
  position: relative;
}

.btn::after {
  width: 12px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.btn.keep::after {
  display: none;
}

.btn::before {
  content: "";
  height: auto;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  line-height: 1;
}

.btn.web::before {
  content: url(/static/nightcollection/images/icons/web-site-icon.svg);
  width: 30px;
}

.btn.line::before {
  content: url(/static/nightcollection/images/icons/icon-line.svg);
  width: 30px;
}

.btn.phone::before {
  content: url(/static/nightcollection/images/icons/phone-icon.svg);
  width: 20px;
}

.btn.mail::before {
  content: url(/static/nightcollection/images/icons/mail-icon.svg);
  width: 20px;
}

.btn.web {
  background: var(--ver-main);
}

.btn.web,
.btn.line {
  height: 80px;
}

.btn.web small,
.btn.line small {
  display: block;
  font-weight: normal;
}

.btn.line {
  background: #36C567;
}

.btn.keep {
  background-color: #fff;
  color: #333;
  border: 1px solid #ccc;
  box-sizing: border-box;
  height: 50px;
}

.btn.keep.saved {
  background: #F5F5F5;
}

.btn.keep.saved::before {
  color: #D5A778;
}

.btn.keep::before {
  content: "\f005";
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #D5A778;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #fff;
}

.btn-group {
  display: grid;
  
  gap: 10px;
  height: 60px;
}

.note {
  font-size: 0.9em;
  color: var(--ver-main);
}

.notecenter{
  font-size: 0.9em;
  color: var(--ver-main);
  text-align: center;
}

.expire-label {
  margin: 1.5em 0 0;
  text-align: center;
}

.expire-label p:first-of-type {
  color: var(--ver-main);
  font-weight: bold;
  line-height: 1;
}

.expire-label p .days {
  font-size: 1.5em;
  margin-left: 5px;
}

.shop-message h3 {
  color: var(--ver-main);
}

.job-features-2 {
  background: #F5F5F5;
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  height: 30px;
  line-height: 30px;
  display: flex;
  gap: 10px;
  border-left: 4px solid var(--ver-main);
  padding: 0 0.5em;
}

.job-features {
  background: #F5F5F5;
  font-family: 'Source Han Sans JP', 'Noto Sans JP', sans-serif;
  height: 30px;
  line-height: 30px;
  display: flex;
  gap: 10px;
}

.job-features span {
  height: 100%;
  display: grid;
  aspect-ratio: 1 / 1;
  text-align: center;
  color: #fff;
  background: var(--ver-main);
}

.job-features-tag {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  grid-row: 50px;
  align-items: center;
  place-items: center;
  gap: 4px;
  color: var(--ver-mid);
  font-size: 0.8em;
  font-weight: bold;
  padding-bottom: 15px ;
}

.job-features-tag li {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 0 1em;
  background: #f5f5f5;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.job-features-tag .active {
  background: var(--ver-mid);
  color: #fff;
  border: none;
}

.shop-size-meter {
  margin: 1em 0;
  list-style: none;
}

.label-left {
  text-align: right;
}

.label-right {
  text-align: left;
}

.label-left,
.label-right {
  color: var(--ver-main);
  font-weight: bold;
}

.meter-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2em;
  align-items: center;
  margin: 5px 0;
}

.meter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meter-segment {
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
}

.meter-bar .active {
  position: relative;
}

.meter-bar .active::before {
  content: "";
  position: absolute;
  background: var(--ver-main);
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.occupation {
  margin-bottom: 10px;
  padding: 1em;
  border: 1px solid #ccc;
  border-top: 4px solid #D3A371;
  border-radius: 3px;
  box-sizing: border-box;
}

.occupation:last-of-type {
  margin-bottom: 0;
}

.occupation .title {
  font-weight: bold;
  padding: 0.5em 0 1.5em;
  border-bottom: 1px dotted #ccc;
}

.occupation .salary {
  padding: 1em 0;
  font-size: 1.2em;
  color: var(--ver-main);
  font-weight: bold;
}

.margin-bottom {
  margin-bottom: 1em;
}

.cast-gallery-attendance-badge {
  top: -1em !important;
  left: 20px !important;
}

.shop-top-link {
  display: grid;
  padding: 1em 5%;
  grid-template-columns: 40px auto auto;
  gap: 1em;
  align-items: center;
  border-bottom: 3px solid #f5f5f5;
}

.icon {
  display: block;
  aspect-ratio: 1 / 1;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 100%;
  overflow: hidden;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-top-link .shop-link {
  text-align: right;
  padding-right: 1em;
  color: var(--ver-main);
  position: relative;
}

.shop-top-link .shop-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--ver-main);
    border-right: 1px solid var(--ver-main);
    transform: translateY(-50%) rotate(45deg);
}

.cast-gallery {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
}

.cast-gallery li {
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.cast-gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.load-more-2 {
  display: block;
  text-align: center;
  max-width: 200px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #707070;
  box-sizing: border-box;
  border-radius: 20px;
  color: inherit;
  margin: 1em auto 0;
}

.cast-diary {
  display: grid;
  grid-template-columns: 40px auto;
  gap: 10px;
}

.cast-diary .name {
  font-size: 0.9em;
  display: flex;
  gap: 1em;
  color: var(--ver-main);
  margin: 0 0 1em;
}

.cast-diary .name span {
  color: #707070;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.cast-recruitment-image {
  text-align: center;
}

.cast-video-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .cast-video-list {
    grid-template-columns: 1fr 1fr;
  }
}
.cast-video-list > div {
  width: 100%;
  text-align: center;
}

.castVideoSwiper .swiper-slide:not(.swiper-slide-active),
.castListSwiper .swiper-slide:not(.swiper-slide-active),
.eventSwiper .swiper-slide:not(.swiper-slide-active),
.newsListSwiper .swiper-slide:not(.swiper-slide-active),
.castBlogSwiper .swiper-slide:not(.swiper-slide-active),
.reviewSwiper .swiper-slide:not(.swiper-slide-active) {
  visibility: hidden;
}

.cast-video-swiper-pagination,
.castlist-swiper-pagination,
.newslist-swiper-pagination,
.cast-blog-swiper-pagination,
.review-swiper-pagination {
  text-align: center;
  margin-top: 10px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

/* 応募フォーム */
.contact-form,
.recruit-form {
  max-width: 600px;
  margin: 2em auto;
  padding: 2em 1.5em;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px #0001;
  font-size: 1em;
}
.contact-form .form-group,
.recruit-form .form-group {
  margin-bottom: 1.5em;
}
.contact-form label,
.recruit-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--ver-main);
}
.contact-form .required,
.recruit-form .required {
  color: #e33;
  margin-left: 0.3em;
  font-size: 0.9em;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.recruit-form input,
.recruit-form select,
.recruit-form textarea {
  width: 100%;
  padding: 0.7em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  background: #fafafa;
  margin-bottom: 0.2em;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.recruit-form input:focus,
.recruit-form select:focus,
.recruit-form textarea:focus {
  border-color: var(--ver-main);
  outline: none;
}
.contact-form .help-text,
.recruit-form .help-text {
  display: block;
  font-size: 0.9em;
  color: #888;
  margin-top: 0.2em;
}
.contact-form .error,
.recruit-form .error {
  color: #e33;
  font-size: 0.95em;
  margin-top: 0.2em;
}
.contact-form .submit-btn,
.recruit-form .submit-btn {
  width: 100%;
  padding: 1em;
  background: var(--ver-main);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  font-family: 'Source Han Serif JP', serif;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form .submit-btn:hover,
.recruit-form .submit-btn:hover {
  background: var(--ver-dark);
}
@media (max-width: 600px) {
  .contact-form,
  .recruit-form {
    padding: 1em 0.5em;
  }
}

/* 応募フォーム上部 店舗情報 */
.shop-info-form {
  max-width: 480px;
  margin: 2em auto 1em auto;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 1px 8px #0001;
  padding: 1.5em 1em;
}
.shop-form-title {
  font-size: 1.2em;
  color: var(--ver-main);
  margin-bottom: 1em;
  text-align: center;
}
.shop-form-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
}
.shop-form-table th {
  text-align: left;
  color: var(--ver-main);
  font-weight: bold;
  padding: 0.5em 0.5em 0.5em 0;
  width: 5em;
}
.shop-form-table td {
  padding: 0.5em 0;
  color: #333;
}
.shop-form-table a {
  color: var(--ver-main);
  text-decoration: underline;
}

/* 応募サンクスページ */
.recruit-thanks {
  max-width: 480px;
  margin: 3em auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px #0001;
  padding: 2.5em 1.5em;
  text-align: center;
}
.recruit-thanks h1 {
  color: var(--ver-main);
  font-size: 2em;
  margin-bottom: 1em;
  font-family: 'Source Han Serif JP', serif;
}
.recruit-thanks p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 2em;
}
.recruit-thanks .btn {
  display: inline-block;
  padding: 0.8em 2em;
  background: var(--ver-main);
  color: #fff;
  border-radius: 4px;
  font-size: 1em;
  text-decoration: none;
  margin-top: 1em;
  transition: background 0.2s;
}
.recruit-thanks .btn:hover {
  background: var(--ver-dark);
}

/* スタッフ応募フォーム（青系） */
.staff-recruit-form {
  border: 2px solid #2a5ca4;
  box-shadow: 0 2px 16px #2a5ca430;
}
.staff-recruit-form label {
  color: #2a5ca4;
}
.staff-recruit-form .required {
  color: #1565c0;
}
.staff-recruit-form input:focus,
.staff-recruit-form select:focus,
.staff-recruit-form textarea:focus {
  border-color: #2a5ca4;
}
.staff-recruit-form .submit-btn {
  background: #2a5ca4;
}
.staff-recruit-form .submit-btn:hover {
  background: #1565c0;
}

/* ----------------------------------

追記CSS 10/13

----------------------------------*/

.load-more-pink {
  background-color: #A1365B !important;
}

.erealist-grid-wrapper {}

.area-list-01 {
  list-style: none;
  display: grid;
  gap: .5em;
}

.area-list-01 li {
  width: 100%;
  border: 1px solid var(--ver-main);
  box-sizing: border-box;
  height: 50px;
  line-height: 50px;
  border-radius: 3px;
  position: relative;
}

.area-list-01 a {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 2.5em 0 1em;
  color: var(--ver-main);
  justify-content: space-between;
}

.area-list-01 li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--ver-main);
  border-right: 1px solid var(--ver-main);
  transform: translateY(-50%) rotate(45deg);
}

.search-form-2 {
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: 3px;
  grid-template-columns: auto 50px;
  grid-template-rows: 50px;
  gap: 0.5em;
}

.search-form-2 input {
  width: 100%;
  height: 50px;
  padding: 5px 15px;
  border: none;
  border-radius: 3px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  font-size: 1em;
  outline: none;
}

.search-form-2 input::placeholder {
  color: #777777;
}

.search-form-2 button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 3px;
  background-color: var(--ver-main);
  cursor: pointer;
}

.search-form-2 button::after {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
}

.text-right {
  display: flex;
  justify-content: space-between;
}

.genre-tags {
  display: flex;
  overflow-x: auto;
  gap: 0.5em;
  margin-top: 1em;
  margin-bottom: 1.4em;
  height: 40px;
  width: 200%;
}

.genre-tag {
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--ver-main);
  box-sizing: border-box;
  border-radius: 20px;
  padding: 0 1em;
  color: var(--ver-main);
}

.region-tabs-02 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3px;
  text-align: center;
  margin-bottom: 1.4em;
  height: 46px;
}

.region-tab-02.active {
  color: var(--ver-main);
  border-bottom: 3px solid var(--ver-main);
  position: relative;
}

.region-tab-02.active::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 4px solid var(--ver-main);
  border-bottom: 0;
  left: 50%;
  bottom: -6px;
  transform: translatex(-50%);
}

.region-tab-02 {
  flex: 0 0 auto;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
  border-bottom: 3px solid #CCCCCC;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0 1em;
  box-sizing: border-box;
  color: #333;
}

.slide-content-02 {
  width: 95%;
}

.slide-content-02 .ranking-box {
  background-color: #fff !important;
}

.original-box-shadow {
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
}

.slide-content-02 .ranking-box-active:nth-of-type(1)::before {
  content: "1";
  background: #D3A371;
}

.slide-content-02 .ranking-box-active:nth-of-type(2)::before {
  content: "2";
  background: #ABABAB;
}

.slide-content-02 .ranking-box-active:nth-of-type(3)::before {
  content: "3";
  background: #856825;
}

/* ----------------------------------

スタッフログインページ

----------------------------------*/

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  padding: 40px 20px;
  background: var(--ver-gradient);
}

.login-title {
  font-family: 'Source Han Serif JP', serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
  font-weight: normal;
}

.login-button {
  width: 100%;
  max-width: 300px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.login-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------

スタッフダッシュボード

----------------------------------*/

.dashboard-container {
  min-height: calc(100vh - 60px);
  padding: 40px 20px;
  background: #f5f5f5;
}

.dashboard-title {
  font-family: 'Source Han Serif JP', serif;
  font-size: 24px;
  color: var(--ver-main);
  margin-bottom: 30px;
  text-align: center;
}

.dashboard-content {
  max-width: 800px;
  margin: 0 auto;
}

.welcome-message {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.welcome-message p {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.dashboard-menu {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-menu h2 {
  font-size: 20px;
  color: var(--ver-main);
  margin-bottom: 20px;
  font-family: 'Source Han Serif JP', serif;
}

.dashboard-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dashboard-menu li {
  border-bottom: 1px solid #eee;
}

.dashboard-menu li:last-child {
  border-bottom: none;
}

.dashboard-menu a {
  display: block;
  padding: 15px 20px;
  color: #333;
  transition: background-color 0.3s;
  position: relative;
}

.dashboard-menu a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--ver-main);
  border-right: 2px solid var(--ver-main);
  transform: translateY(-50%) rotate(45deg);
}

.dashboard-menu a:hover {
  background-color: #f8f8f8;
}

.logout-section {
  text-align: center;
}

.btn-logout {
  display: inline-block;
  padding: 12px 40px;
  background: #666;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
  font-family: 'Source Han Serif JP', serif;
}

.btn-logout:hover {
  background: #444;
}

/* ----------------------------------

キャスト用ログイン・ダッシュボード

----------------------------------*/

.cast-login .login-container {
  background: linear-gradient(to bottom, #E1BDB4, #B66E7D);
}

.cast-dashboard .dashboard-title {
  color: #BC3664;
}

.cast-dashboard .dashboard-menu h2 {
  color: #BC3664;
}

.cast-dashboard .dashboard-menu a::after {
  border-top-color: #BC3664;
  border-right-color: #BC3664;
}