@charset "utf-8";
/*==================================
SWITCH DOT LINE WCS-CSS 5.2
https://www.switchdotline.net/
Edit:2026 -
LastUpdate:20260326
==================================*/
/* FONTS */
/*
Source Han Sans JP Medium
font-family: "source-han-sans-japanese", sans-serif;
font-weight: 500;
font-style: normal;

Kinuta KinutaMincho StdN B
font-family: "kinuta-mincho-stdn", sans-serif;
font-weight: 700;
font-style: normal;

Miller Banner Regular
font-family: "miller-banner", serif;
font-weight: 400;
font-style: normal;

Miller Banner Semi Bold
font-family: "miller-banner", serif;
font-weight: 600;
font-style: normal;
*/

/*==================================
DEFINITION
==================================*/
:root {
  --color-base_dark: #001706;
  --color-base_light: #1b4526;
  --color-link_bg: #34432a;
  --color-dark: #93936a;
  --color-basic: #d1c894;
  --color-light: #f6ecb3;
  --color-highlight: #ffe865;
  --color-alpha_base_dark-90: rgba(0, 23, 6, 0.9);
  --color-alpha_base_dark-50: rgba(0, 23, 6, 0.5);
  --color-alpha_base_dark-30: rgba(0, 23, 6, 0.3);
  --color-alpha_light-10: rgba(246, 236, 179, 0.1);
  --color-alpha_light-30: rgba(246, 236, 179, 0.3);
  --color-alpha-0: rgba(0, 0, 0, 0);
  --gradient-glas_default: linear-gradient(-45deg, rgba(209, 200, 148, 0.3), rgba(209, 200, 148, 0.45) 5%, rgba(209, 200, 148, 0.25) 20% 75%, rgba(209, 200, 148, 0.45) 85%, rgba(209, 200, 148, 0.25) 100%);
}

:lang(ja-btn) {
  --font-top-offset: 0.1em;
}

/*==================================
CSS ANIMATION
==================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes spotlight {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fixed {
  0%,
  80% {
    opacity: 1;
  }
  90% {
    z-index: 200;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes logo_fade {
  0%,
  100% {
    opacity: 0;
  }
  30%,
  80% {
    opacity: 1;
  }
}

/*==================================
ANCHOR LINK
==================================*/
.anchor {
  display: block !important;
  padding-top: 90px !important;
  margin-top: -90px !important;
  position: absolute;
}

/*==================================
LAYOUT
==================================*/
html {
  font-size: 15px;
  overflow-x: hidden;
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--color-base_dark);
  line-height: 180%;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--color-basic);
  text-shadow: 1px 1px 6px var(--color-alpha_base_dark-50);
  text-align: center;
  letter-spacing: 0.04em;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
  min-height: -webkit-fill-available;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.content-area {
  min-height: 100vh;
  position: relative;
  top: 0;
  clip-path: inset(0);
}

article {
  display: block;
  padding: 192px 0 0 0;
  margin: 0;
}

#page-index_before article,
#page-index_after article {
  padding: 150px 0 0 0;
}

section {
  padding: 0 0 128px 0;
  margin: 0;
  position: relative;
}

.contents_title {
  width: 86vw;
  padding: 0 0 48px 0;
  margin: 0 auto;
  text-align: left;
  color: var(--color-basic);
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3);
}

.device_width {
  width: 86vw;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.device_width + .device_width {
  margin-top: 64px;
}

.inner_block {
  display: block;
  padding: 0;
  margin: 0 0 45px 0;
}

.inner_block:last-of-type {
  margin: 0;
}

/* Content Block */
.content_block {
  display: block;
  padding: 48px 0 0 0;
  margin: 0;
  position: relative;
}

/* Content Border */
.device_width:before,
.btn-prevnext:before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: var(--color-dark);
  position: absolute;
  left: -3vw;
  top: 0;
}

#index_read_area .device_width:before {
  display: none;
}

/*==================================
BTN PAGETOP
==================================*/
a.fixed_pagetop {
  display: block;
  width: 48px;
  height: 32px;
  background-color: var(--color-base_dark);
  background-image: url(../common/icon-arrow_light-top.png);
  background-position: right 12px top 47%;
  background-repeat: no-repeat;
  background-size: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  position: fixed;
  left: 0;
  bottom: 16px;
  transition: 0.4s;
  cursor: pointer;
  z-index: 100;
  transition: 0.4s;
  opacity: 0.9;
}

a:hover.fixed_pagetop {
  background-color: var(--color-light);
  background-image: url(../common/icon-arrow_dark-top.png);
}

/*==================================
BG GRAPHIC
==================================*/
.content-area::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background-image: url(../common/bg-drape.jpg);
  background-position: left 40% top 40%;
  background-repeat: repeat-y;
  background-size: 200vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

.content-area#page-index_before::before {
  background-position: left 10% top 20%;
}

.content-area#page-index_after::before {
  background-position: left 50% top 0%;
}

.content-area#page-login::before {
  background-position: left 90% top 70%;
}

.content-area#page-news_index::before {
  background-position: left 30% top 20%;
}

.content-area#page-news_entry::before {
  background-position: left 60% top 20%;
}

.content-area#page-about::before {
  background-position: left 10% top 50%;
}

.content-area#page-stage_entry::before {
  background-position: left 30% top 10%;
}

.content-area#page-from_staff::before {
  background-position: left 80% top 80%;
}

.content-area#page-from_staff_entry::before {
  background-position: left 20% top 10%;
}

.content-area#page-bbs_index::before {
  background-position: left 0% top 10%;
}

.content-area#page-bbs_detail::before {
  background-position: left 40% top 10%;
}

.content-area#page-bbs_post::before {
  background-position: left 20% top 0%;
}

.content-area#page-bbs_post_check::before {
  background-position: left 70% top 15%;
}

.content-area#page-times::before {
  background-position: left 30% top 20%;
}

.content-area#page-times_entry::before {
  background-position: left 0% top 10%;
}

.content-area#page-movie::before {
  background-position: left 75% top 35%;
}

.content-area#page-movie_entry::before {
  background-position: left 10% top 20%;
}

#spotlight {
  display: block;
  width: 100%;
  height: 150%;
  background-image: url(../common/spotlight-left.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 140%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  animation: spotlight 1s ease-in-out 2.5s 1 forwards;
}

/* SPOT W */
#page-index_before #spotlight,
#page-index_after #spotlight {
  background-image: url(../common/spotlight-left.png), url(../common/spotlight-right.png);
  background-position:
    left top,
    right top;
}

/* SPOT L */
#page-news_index #spotlight,
#page-stage_entry #spotlight,
#page-from_staff_entry #spotlight,
#page-bbs_detail #spotlight,
#page-bbs_post_check #spotlight,
#page-movie #spotlight,
#page-times #spotlight {
  background-image: url(../common/spotlight-left.png);
  background-position: left top;
}

/* SPOT R */
#page-login #spotlight,
#page-news_entry #spotlight,
#page-about #spotlight,
#page-from_staff #spotlight,
#page-bbs_index #spotlight,
#page-bbs_post #spotlight,
#page-movie_entry #spotlight,
#page-times_entry #spotlight {
  background-image: url(../common/spotlight-right.png);
  background-position: right top;
}

/* SPOT NONE */
#page-error #spotlight {
  background-image: none;
}

/*==================================
FIXED HEADER
==================================*/
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 40px;
  background-color: var(--color-alpha_base_dark-90);
  border-bottom: 1px solid var(--color-alpha_light-10);
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: 0.4s;
}

header a {
  color: var(--color-dark);
}

header a:hover,
header a:active {
  text-decoration: none;
  background-color: var(--color-highlight);
  color: var(--color-base_light);
}

/* NAV */
header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
  background-image: url(../common/bg-alpha_base_dark.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 40px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--color-alpha_light-10);
  position: fixed;
  left: 0;
  top: 0;
}

header nav a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-left: 2px solid var(--color-alpha_light-10);
  text-shadow: none;
  transition: 0.4s;
}

header nav a:first-of-type {
  border-left: none;
}

header nav a#btn-mypage,
header nav a#btn-login {
  padding-left: 48px;
  background-image: url(../common/logo-fc_dark.png);
  background-position: 16px center;
  background-repeat: no-repeat;
  background-size: 20px;
}

header nav a#btn-mypage:hover,
header nav a#btn-login:hover {
  background-image: url(../common/logo-fc_base_light.png);
}

header nav a .membership_id,
header nav a .membership_date {
  letter-spacing: 0;
}

header nav a .membership_date:before {
  content: "/　会員期限：";
  margin-left: 1em;
}

/* MENU ICON */
header #menu_icon {
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--color-light);
  background-image: url(../common/icon-menu.png);
  background-position: left 12px center;
  background-repeat: no-repeat;
  background-size: 18px;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.4s;
  cursor: pointer;
}

header #menu_icon:hover,
header #menu_icon:active {
  background-color: var(--color-highlight);
}

/*==================================
FOOTER
==================================*/
footer {
  display: block;
  padding: 0 0 48px 0;
  margin: 0;
  position: relative;
}

footer a {
  color: var(--color-basic);
}

footer ul#sns_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

footer ul#sns_link li {
  margin: 0 16px;
}

footer ul#sns_link li a {
  display: block;
  width: 32px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.4s;
}

footer ul#sns_link li a:hover {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
  transform: scale(1.1);
}

footer ul#sns_link li a.sns-x {
  background-image: url(../common/snsicon-x_outline-dark.png);
}

footer ul#sns_link li a:hover.sns-x {
  background-image: url(../common/snsicon-x_outline-highlight.png);
}

footer ul#sns_link li a.sns-facebook {
  background-image: url(../common/snsicon-fb-dark.png);
}

footer ul#sns_link li a:hover.sns-facebook {
  background-image: url(../common/snsicon-fb-highlight.png);
}

footer ul#sns_link li a.sns-youtube {
  background-image: url(../common/snsicon-yt-dark.png);
}

footer ul#sns_link li a:hover.sns-youtube {
  background-image: url(../common/snsicon-yt-highlight.png);
}

footer .credit {
  display: block;
  padding: 120px 0 0 0;
  margin: 64px 0 0 0;
  text-align: center;
  color: var(--color-dark);
  font-size: 0.8rem;
  font-family: "miller-banner", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  position: relative;
}

footer .credit:before {
  content: "";
  display: block;
  width: 140px;
  height: 100px;
  background-image: url(../common/logo-cg_dark.png);
  background-position: right 32px center;
  background-repeat: no-repeat;
  background-size: 50%;
  position: absolute;
  left: calc(50% - 140px);
  top: 0;
}

footer .credit:after {
  content: "";
  display: block;
  width: 140px;
  height: 100px;
  border-left: 1px solid var(--color-alpha_light-30);
  background-image: url(../common/logo-fc_dark.png);
  background-position: left 32px center;
  background-repeat: no-repeat;
  background-size: 40%;
  position: absolute;
  left: 50%;
  top: 0;
}

footer .credit .copyright {
  padding: 0;
  margin: 0;
}

/*==================================
MAIN VISUAL
==================================*/
#mainvisual_area {
  width: 100vw;
  margin: 16px 0 64px 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
}

#mainvisual_area:after {
  content: "";
  width: 100%;
  height: 50px;
  background-image: url(../common/slide_reflect.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 140%;
  position: absolute;
  left: 0;
  bottom: -50px;
}

/* SLIDE */
#mainvisual_area .splide {
  margin: 0;
  max-width: 1280px;
  background-color: #000;
}

#mainvisual_area li span {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  aspect-ratio: 1 / 1.618;
  object-fit: cover;
}

#mainvisual_area.login_before li span#mainvisual-01 {
  background-image: url(../upload/mainvisual_before01sp.jpg);
}

#mainvisual_area.login_before li span#mainvisual-02 {
  background-image: url(../upload/mainvisual_before02sp.jpg);
}

#mainvisual_area.login_before li span#mainvisual-03 {
  background-image: url(../upload/mainvisual_before03sp.jpg);
}

#mainvisual_area.login_before li span#mainvisual-04 {
  background-image: url(../upload/mainvisual_before04sp.jpg);
}

#mainvisual_area.login_before li span#mainvisual-05 {
  background-image: url(../upload/mainvisual_before05sp.jpg);
}

#mainvisual_area.login_after li span#mainvisual-01 {
  background-image: url(../upload/mainvisual_after01sp.jpg);
}

#mainvisual_area.login_after li span#mainvisual-02 {
  background-image: url(../upload/mainvisual_after02sp.jpg);
}

#mainvisual_area.login_after li span#mainvisual-03 {
  background-image: url(../upload/mainvisual_after03sp.jpg);
}

#mainvisual_area.login_after li span#mainvisual-04 {
  background-image: url(../upload/mainvisual_after04sp.jpg);
}

#mainvisual_area.login_after li span#mainvisual-05 {
  background-image: url(../upload/mainvisual_after05sp.jpg);
}

/* SINGLE */
#mainvisual_area .single_img-mainvisual {
  margin: 0;
  max-width: 1280px;
  background-color: #000;
}

#mainvisual_area .single_img-mainvisual span {
  display: block;
  width: 100%;
  background-image: url(../upload/mainvisual-single_sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  aspect-ratio: 1 / 1.618;
  object-fit: cover;
}

/* MAINVISUAL ANIMATION */
#mainvisual_area li:first-of-type span,
#mainvisual_area .single_img-mainvisual span {
  opacity: 0;
  animation: fadeIn 2.2s ease-in-out 1.6s 1 forwards;
}

/*==================================
EMBED MOV RATIO
==================================*/
/* EMBED VIDEO */
.embed_video {
  margin: 15px auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.entry_body p + .embed_video {
  margin: 16px auto;
}

/*==================================
SPLIDE COMMON
==================================*/
/* NAVIGATION */
.splide__pagination {
  /* justify-content: flex-start !important; */
  justify-content: flex-end !important;
  padding: 0 !important;
  margin: 0 auto !important;
  bottom: -30px !important;
  width: 86vw !important;
}

.slide-media_auto_inner .splide__pagination {
  width: calc(86vw - 40px) !important;
}

.splide__pagination__page {
  width: 10px !important;
  height: 10px !important;
  margin: 0 10px 0 0 !important;
  border-radius: 5px !important;
  background: #edece6 !important;
  opacity: 0.3 !important;
  transition: 0.4s !important;
}

.splide__pagination__page:hover {
  background: #fbe374 !important;
  opacity: 1 !important;
}

.splide__pagination__page.is-active {
  background: #fbe374 !important;
  width: 60px !important;
  transform: scale(1) !important;
  opacity: 1 !important;
}

/* ARROWS */
.splide__arrow {
  width: 2rem !important;
  height: 2rem !important;
  background: var(--color-link_bg) !important;
  border-radius: 6px !important;
  top: calc(100% + 32px) !important;
  opacity: 1 !important;
  transition: 0.4s;
}

.splide__arrow:hover:not(:disabled) {
  background: var(--color-light) !important;
}

.splide__arrow:disabled {
  opacity: 0 !important;
}

.splide__arrow--prev {
  background-image: url(../common/icon-arrow_light-left.png) !important;
  background-position: left 46% center !important;
  background-repeat: no-repeat !important;
  background-size: 8px !important;
  left: calc(50% - 2.4em) !important;
}

.splide__arrow--prev:hover:not(:disabled) {
  background-image: url(../common/icon-arrow_dark-left.png) !important;
  background-position: left 46% center !important;
  background-repeat: no-repeat !important;
  background-size: 8px !important;
}

.splide__arrow--next {
  background-image: url(../common/icon-arrow_light-right.png) !important;
  background-position: right 46% center !important;
  background-repeat: no-repeat !important;
  background-size: 8px !important;
  right: calc(50% - 2.4em) !important;
}

.splide__arrow--next:hover:not(:disabled) {
  background-image: url(../common/icon-arrow_dark-right.png) !important;
  background-position: right 46% center !important;
  background-repeat: no-repeat !important;
  background-size: 8px !important;
}

.splide__arrow svg {
  display: none;
}

/* SLIDE FC CONTENT */
.slide-media_auto_inner_sp {
  width: 100%;
  padding: 0;
  margin: 0;
}

.slide-media_auto_inner_sp .splide__slide {
  width: 100%;
  height: auto;
}

.slide-media_auto_inner_sp .splide__slide img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* SLIDE MEDIA */
.slide-media_video_auto {
  margin: 0;
}

.slide-media_video_auto .splide__track {
  margin-left: -16px;
}

.slide-media_video_auto .splide__slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 86vw;
  height: auto;
  margin: 8px;
  background-color: var(--color-base_dark);
  box-shadow: 2px 2px 8px var(--color-alpha_base_dark-50);
}

.slide-media_video_auto .splide__slide img {
  max-width: 100%;
  max-height: 100%;
}

/* SLIDE VIDEO */
.splide__slide--has-video {
  cursor: pointer;
}

.splide__slide--has-video:hover .splide__video__play {
  opacity: 1;
}

.splide__slide__container--has-video {
  cursor: pointer;
  position: relative;
}

.splide__slide__container--has-video:hover .splide__video__play {
  opacity: 1;
}

.splide__video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.splide__video__wrapper {
  background: #000;
  height: inherit;
  width: inherit;
}

.splide__video__wrapper div,
.splide__video__wrapper iframe,
.splide__video__wrapper video {
  height: 100%;
  width: 100%;
}

.splide__video__play {
  align-items: center;
  background: var(--color-base_dark);
  border: 4px solid var(--color-basic);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  width: 80px;
  height: 80px;
  box-shadow: 2px 2px 16px var(--color-alpha_base_dark-30);
  justify-content: center;
  left: 50%;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s linear;
}

.splide__video__play:after {
  border-color: transparent transparent transparent var(--color-basic);
  border-style: solid;
  border-width: 18px 0 18px 28px;
  content: "";
  display: inline-block;
  margin-left: 7px;
}

/* SLIDE MULTI */
.slide-multi_loop {
  margin: 96px 0 32px 0;
}

.slide-multi_loop .splide__track {
  margin-left: -16px;
}

.slide-multi_loop .splide__slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 80vw;
  margin: 0 8px;
}

.slide-multi_loop .splide__slide .pickup_slide_thm {
  padding: 8px;
  background-image: linear-gradient(-45deg, #d1c8944d, #d1c89440 20% 75%, #d1c89473 85%, #d1c89480 100%, #d1c89440);
  box-shadow:
    1px 1px 1px rgba(255, 255, 255, 0.15) inset,
    3px 3px 15px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  position: relative;
}

.slide-multi_loop .splide__slide .pickup_slide_thm.members_only:before {
  content: "";
  display: block;
  width: 45%;
  height: 0;
  padding-top: 9%;
  background-image: url(../common/label-members_only.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 1px 0 0 1px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: -3px;
  bottom: 5%;
  z-index: 1;
}

.slide-multi_loop .splide__slide .pickup_slide_caption {
  padding: 8px 10px 0 10px;
  text-align: left;
  color: var(--color-basic);
}

.slide-multi_loop .splide__slide img {
  width: 100%;
  aspect-ratio: 1 / 1.414;
  object-fit: cover;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.slide-multi_loop .splide__slide .slide {
  opacity: 0.25;
  transition: 1s;
}

.slide-multi_loop .splide__slide.is-active .slide {
  opacity: 1;
}

.slide-multi_loop a:hover.splide__slide {
  text-decoration: none;
  filter: brightness(110%);
}

/*==================================
INTRO ANIMATION
==================================*/
#intro_ani {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background-color: var(--color-base_dark);
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
  animation: fixed 2s ease-in-out 0s 1 forwards;
}

#intro_ani .logo_fade {
  width: 100vw;
  height: 40px;
  margin-bottom: 60px;
  background-image: url(../common/logo-fc_wide.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation: logo_fade 1.6s ease-in-out 0s 1 forwards;
}

/*==================================
HEAD LOGO
==================================*/
#head_logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  padding: 0;
  background-image: url(../common/logo-cg_dark.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: calc(50vw - 40px);
  top: 64px;
  transition: 0.4s;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

#head_logo:hover,
#head_logo:active {
  background-image: url(../common/logo-cg_light.png);
  text-decoration: none;
  transform: scale(1.02);
}

/* #page-index_before #head_logo,
#page-index_after #head_logo {
  top: 55px;
} */

/*==================================
INDEX READ
==================================*/
.read_area {
  padding: 0;
  text-align: center;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.read_area h1 {
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 100%;
}

.read_area p {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.read_area .btn_area {
  padding-top: 170px;
  margin-top: 16px;
  background-image: url(../common/logo-cg_basic.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 120px;
}

.read_area .btn_area a.btn_ja {
  letter-spacing: 0;
}

/*==================================
ENTRY
==================================*/
.entry_list .entry_item,
.entry_page .entry_item {
  display: block;
  padding: 0;
}

.entry_list .entry_item.new_entry {
  background-image: url(../common/label-entry_new.png);
  background-position: right 2px;
  background-repeat: no-repeat;
  background-size: 48px;
}

.entry_list .entry_item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  margin: 0 0 48px 0;
  color: var(--color-basic);
  transition: 0.4s;
}

.entry_list .entry_item:last-of-type a {
  margin: 0;
}

.entry_list .entry_item a:hover,
.entry_list .entry_item a:active {
  text-decoration: none;
  transform: scale(1.01);
}

.entry_list .entry_head {
  width: 100%;
}

.entry_list .entry_head dl.date_category,
.entry_page .entry_head dl.date_category {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 0;
  line-height: 150%;
}

.entry_list .entry_head dl.date_category dt,
.entry_page .entry_head dl.date_category dt {
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.entry_list .entry_head dl.date_category dd,
.entry_page .entry_head dl.date_category dd {
  color: var(--color-dark);
  font-size: 0.9rem;
  font-style: italic;
}

.entry_list .entry_head dl.date_category.important dd,
.entry_page .entry_head dl.date_category.important dd {
  color: var(--color-highlight);
}

.entry_list .entry_head dl.date_category dd:before,
.entry_list .entry_head dl.date_category.important dd:before,
.entry_page .entry_head dl.date_category dd:before,
.entry_page .entry_head dl.date_category.important dd:before {
  content: ",";
  padding: 0 8px 0 2px;
  color: var(--color-dark);
}

.entry_list .entry_head dl.date_category dd:first-of-type:before,
.entry_list .entry_head dl.date_category.important dd:first-of-type:before,
.entry_page .entry_head dl.date_category dd:first-of-type:before,
.entry_page .entry_head dl.date_category.important dd:first-of-type:before {
  content: "_ ";
  padding: 0;
  color: var(--color-dark);
}

.entry_list .entry_head h3 {
  padding: 0;
  margin: 1rem 0 0 0;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.4s;
}

.entry_list .entry_item a:hover h3 {
  color: var(--color-light);
}

.entry_page .entry_head h3 {
  padding: 0;
  margin: 1.4rem 0 24px 0;
  font-size: 1.8rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: 0.4s;
}

.entry_page .entry_body {
  padding-bottom: 24px;
  min-height: 40vw;
}

.entry_page .entry_body a {
  color: var(--color-highlight);
  text-decoration: none;
}

.entry_page .entry_body a:hover {
  text-decoration: underline;
}

.entry_page .entry_body .inner_block {
  display: block;
  padding: 16px 24px;
  margin: 24px 0;
  background-color: var(--color-alpha_base_dark-30);
  border: 1px solid var(--color-alpha_light-30);
  border-radius: 6px;
}

.entry_page .entry_body .hide_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: calc(100% - 12px);
  padding: 48px 0 16px 0;
  margin: 16px 0 16px 6px;
  background-image: url(../common/entry_body-members_only.png), url(../common/bg-dot_pattern.png);
  background-position:
    center top 30%,
    center;
  background-repeat: no-repeat, repeat;
  background-size: 136px, 8px;
  color: var(--color-basic);
  font-size: 0.84rem;
  position: relative;
  transition: 0.4s;
}

.entry_page .entry_body a:hover.hide_area {
  color: var(--color-highlight);
  text-decoration: none;
}

.entry_page .entry_body .hide_area:before {
  content: "";
  display: block;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  background-image: var(--gradient-glas_default);
  box-shadow:
    1px 1px 1px rgba(255, 255, 255, 0.15) inset,
    3px 3px 15px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  position: absolute;
  left: -6px;
  top: -6px;
  z-index: -1;
}

.entry_page .entry_body p + img,
.entry_page .entry_body img + p {
  margin-top: 16px;
}

/*==================================
ENTRY PAGER
==================================*/
.pager {
  display: block;
  padding: 0;
  margin: 64px auto 0 auto;
}

.pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pager ul li {
  padding: 0;
  margin: 0 16px 0 0;
  font-size: 1.1rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pager ul li:last-of-type {
  margin: 0;
}

.pager ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  color: var(--color-light);
  background-color: var(--color-link_bg);
  border-radius: 6px;
  text-shadow: none;
  transition: 0.4s;
}

.pager ul li a.selected,
.pager ul li a:hover {
  color: var(--color-base_dark);
  background-color: var(--color-light);
  text-decoration: none;
}

.pager ul li a.selected {
  cursor: default;
}

.pager ul li a.pager-left {
  background-image: url(../common/icon-arrow_light-left.png);
  background-position: left 46% center;
  background-repeat: no-repeat;
  background-size: 8px;
  background-color: var(--color-alpha_light-10);
}

.pager ul li a.pager-right {
  background-image: url(../common/icon-arrow_light-right.png);
  background-position: right 46% center;
  background-repeat: no-repeat;
  background-size: 8px;
  background-color: var(--color-alpha_light-10);
}

.pager ul li a:hover.pager-left {
  background-image: url(../common/icon-arrow_dark-left.png);
  background-color: var(--color-light);
}

.pager ul li a:hover.pager-right {
  background-image: url(../common/icon-arrow_dark-right.png);
  background-color: var(--color-light);
}

/*==================================
BTN PREV_NEXT
==================================*/
.btn-prevnext {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 48px 0 0 0;
  margin: 48px auto 0 auto;
  font-size: 0.86rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.04em;
  position: relative;
}

.btn-prevnext_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 0 8px 0;
  margin: 0 auto;
  font-size: 0.86rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
}

.btn-prevnext a,
.btn-prevnext button,
.btn-prevnext_inner a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 0 8px 0;
  color: var(--color-dark);
  border: none;
  background-repeat: no-repeat;
  background-size: 20px;
  transition: 0.4s;
}

.btn-prevnext a:hover,
.btn-prevnext button:hover,
.btn-prevnext_inner a:hover {
  color: var(--color-light);
  text-decoration: none;
}

.btn-prevnext a.prev,
.btn-prevnext button.prev,
.btn-prevnext_inner a.prev {
  background-image: url(../common/icon-link_dot.png);
  background-position: left 2px bottom;
  position: absolute;
  left: 0;
}

.btn-prevnext a:hover.prev,
.btn-prevnext button:hover.prev,
.btn-prevnext_inner a:hover.prev {
  background-image: url(../common/icon-link_dot_hover.png);
  margin-left: -4px;
  margin-right: 4px;
}

.btn-prevnext a.next,
.btn-prevnext button.next,
.btn-prevnext_inner a.next {
  background-image: url(../common/icon-link_dot.png);
  background-position: right 2px bottom;
  position: absolute;
  right: 0;
}

.btn-prevnext a:hover.next,
.btn-prevnext button:hover.next,
.btn-prevnext_inner a:hover.next {
  background-image: url(../common/icon-link_dot_hover.png);
  margin-left: 4px;
  margin-right: -4px;
}

.btn-prevnext a.center,
.btn-prevnext button.center,
.btn-prevnext_inner a.center {
  background-image: url(../common/icon-link_dot.png);
  background-position: center bottom;
  margin: 0 auto;
}

.btn-prevnext a:hover.center,
.btn-prevnext button:hover.center,
.btn-prevnext_inner a:hover.center {
  background-image: url(../common/icon-link_dot_hover.png);
  margin-top: 4px;
  margin-bottom: -4px;
}

/*==================================
BTN WIDE TEXT
==================================*/
a.btn-wide_text {
  display: block;
  padding: 16px 24px;
  margin: 32px 0 0 0;
  color: var(--color-light) !important;
  background-color: var(--color-link_bg);
  border-radius: 6px;
  text-shadow: none;
  text-align: center;
  transition: 0.4s;
}

a:hover.btn-wide_text {
  color: var(--color-base_dark) !important;
  background-color: var(--color-light);
  text-decoration: none !important;
}

a.btn-wide_text + a {
  margin-top: 16px;
}

a.btn-wide_text + p {
  margin-top: 32px;
}

/*==================================
BBS
==================================*/
.bbs_content {
  display: block;
  padding: 32px 0 0 0;
  margin: 0;
}

.bbs_content h3 {
  padding: 8px 0 8px 40px;
  margin: 0 0 16px 0;
  background-image: url(../common/logo-fc_basic.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 26px;
  font-size: 1.4rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* BBS THREADS */
.bbs_threads_entry a {
  display: block;
  padding: 24px 40px 24px 24px;
  margin: 0 0 24px 0;
  background-color: var(--color-base_light);
  background-image: url(../common/bg-dot_pattern.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  border-radius: 12px;
  border: 1px solid var(--color-base_dark);
  box-shadow: -1px 1px 1px var(--color-alpha_light-10);
  color: var(--color-basic);
  position: relative;
}

.bbs_threads_entry:last-of-type a {
  margin: 0;
}

.bbs_threads_entry a:hover {
  color: var(--color-light);
  text-decoration: none;
}

.bbs_threads_entry a:after {
  content: "";
  display: block;
  width: 24px;
  height: 100%;
  background-color: var(--color-link_bg);
  background-image: url(../common/icon-arrow_light-right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px;
  border-radius: 0 12px 12px 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

.bbs_threads_entry a:hover:after {
  background-color: var(--color-light);
  background-image: url(../common/icon-arrow_dark-right.png);
}

/* BBS THREADS DETAIL */
.bbs_threads_detail {
  display: block;
  padding: 24px;
  margin: 0;
  background-color: var(--color-base_light);
  background-image: url(../common/bg-dot_pattern.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  border-radius: 12px;
  border: 1px solid var(--color-base_dark);
  box-shadow: -1px 1px 1px var(--color-alpha_light-10);
  color: var(--color-basic);
  position: relative;
}

.bbs_threads_entry h4,
.bbs_threads_detail h4 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
}

/* BBS COMMENT */
.bbs_comment {
  display: block;
  padding: 0;
  margin: 0 0 48px 0;
}

.bbs_comment:last-of-type {
  margin: 0;
}

.bbs_comment .bbs_comment-date {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 0.94rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.bbs_comment .bbs_comment-member_id {
  display: block;
  padding: 0;
  margin: 8px 0 2px 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 140%;
}

.bbs_comment .bbs_comment-member_id .number {
  display: block;
  color: var(--color-dark);
  font-size: 0.74rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.04em;
}

.bbs_comment .bbs_comment-member_id .number:before {
  content: "_";
  margin: 0 2px 0 0;
}

.bbs_comment .bbs_comment-body p {
  padding: 0 0 5px 0;
}

/* BBS Notice */
.bbs_notice h4 {
  display: block;
  padding: 0;
  margin: 32px 0 8px 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.bbs_notice ul {
  padding: 0 0 0 1.2rem;
  margin: 0;
  list-style-type: disc;
}

.bbs_notice ul li {
  padding: 0;
  margin: 4px 0;
}

/* BBS Form Input */
.bbs_form-input .form_block {
  display: block;
  margin: 24px 0 0 0;
}

.bbs_form-input .form_block:first-of-type {
  margin: 0;
}

.bbs_form-input .form_block p {
  padding: 0;
}

.bbs_form-input .form_block .label-member_id,
.bbs_form-input .form_block label {
  display: block;
  font-size: 0.94rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: 3px;
}

.bbs_form-input .form_block .number {
  margin-left: 3px;
  font-size: 1.2rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
}

.bbs_form-input .form_block input,
.bbs_form-input .form_block textarea {
  width: 100%;
  padding: 8px 16px;
  margin: 4px 0 0 0;
  background-color: var(--color-base_light);
  background-image: url(../common/bg-dot_pattern.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  border: 2px solid var(--color-base_light);
  border-radius: 6px;
  letter-spacing: 0.04em;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif !important;
  font-size: 1rem;
  font-weight: 550 !important;
}

.bbs_form-input .form_block textarea {
  min-height: 15rem;
}

.bbs_form-input .form_block input:focus,
.bbs_form-input .form_block textarea:focus {
  background-image: none;
  background-color: var(--color-highlight);
  border: 2px solid var(--color-highlight);
  outline: none;
  color: var(--color-base_dark);
}

.bbs_form-input .form_block input::placeholder,
.bbs_form-input .form_block textarea::placeholder {
  color: var(--color-alpha_light-30);
}

.bbs_form-input .form_block input:focus::placeholder,
.bbs_form-input .form_block textarea:focus::placeholder {
  color: var(--color-alpha_base_dark-50);
}

.bbs_form-input .form_block .input_field_check {
  width: 100%;
  padding: 8px 16px;
  margin: 4px 0 0 0;
  background-color: var(--color-alpha_base_dark-50);
  border: 1px solid var(--color-alpha_light-30);
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/*==================================
ITEM LIST (STAGE / BOOK)
==================================*/
.item_list {
  display: block;
  padding: 32px 0 0 0;
  margin: 0;
}

.item_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  margin: 0 0 128px 0;
}

.item_detail:last-of-type {
  margin: 0;
}

.item_detail .item-image {
  display: block;
  width: 100%;
  margin: 0 0 24px 0;
}

.item_detail .item-image img {
  width: 70vw;
  max-width: 300px;
  margin: 0 auto;
  padding: 5px;
  background-image: var(--gradient-glas_default);
  box-shadow:
    1px 1px 1px rgba(255, 255, 255, 0.15) inset,
    3px 3px 15px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.item_detail .item-spec {
  width: 100%;
}

.item_detail .item-spec a {
  color: var(--color-highlight);
  text-decoration: none;
}

.item_detail .item-spec a:hover {
  text-decoration: underline;
}

.item_detail .item-spec_title {
  margin: 0 0 16px 0;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  text-align: center;
}

.item_detail .item-spec_title h4 {
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
}

#page_times .item_detail .item-spec_title h4 {
  letter-spacing: -0.02em;
}

.item_detail .item-spec_title h4 span {
  display: block;
  font-size: 1rem;
}

.item_detail .item-spec_title h5 {
  padding: 0;
  margin: 4px 0 0 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.item_detail .item-spec_description {
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 1rem;
}

.item_detail .item-spec_caption {
  padding: 0;
  margin: 0;
  font-size: 0.94rem;
}

.item_detail .item-spec_caption p {
  padding: 0;
  margin: 16px 0 0 0;
}

/* THE GORGEOUS TIMES ENTRY */
#page_times_entry .item-spec {
  margin-bottom: 64px;
}

/* STAGE ENTRY */
#page_stage_entry .content_block {
  padding-bottom: 32px;
}

/*==================================
ABOUT
==================================*/
.about_read {
  display: block;
  padding: 32px 0 0 0;
  margin: 0;
  background-image: url(../common/about_read.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 90vw;
  position: relative;
}

.about_profile {
  display: block;
  padding: 32px 0 0 0;
  margin: 0;
  position: relative;
}

.about_profile_detail {
  display: block;
  padding: 20px 24px;
  margin: 0;
  background-color: var(--color-base_light);
  background-image: url(../common/bg-dot_pattern.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  border-radius: 12px;
  border: 1px solid var(--color-base_dark);
  box-shadow: -1px 1px 1px var(--color-alpha_light-10);
  color: var(--color-basic);
  position: relative;
}

.about_profile_detail h4 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

/*==================================
MOVIE
==================================*/
/* INDEX */
.movielist_item {
  padding: 0;
  margin: 0 0 64px 0;
}

.movielist_item:last-of-type {
  margin: 0;
}

.movielist_item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-basic);
  transition: 0.4s;
}

.movielist_item a:hover {
  text-decoration: none;
  color: var(--color-light);
  transform: scale(1.01);
}

.movielist_item .movielist_item_thm {
  display: block;
  padding: 0;
  margin: 0 0 16px 0;
  position: relative;
}

.movielist_item .movielist_item_thm img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.movielist_item.new_entry .movielist_item_thm:after {
  content: "";
  width: 70px;
  height: 70px;
  background-image: url(../common/label-entry_thm_new.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: -1px;
  bottom: -1px;
}

.movielist_item .movielist_item_entry {
  display: block;
}

.movielist_item .movielist_item_entry .movielist_item_entry-date {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.movielist_item .movielist_item_entry p {
  padding: 0;
}

/* ENTRY */
.mov_item {
  display: block;
  padding: 0;
  margin: 0 0 128px 0;
}

.mov_item_thm {
  padding: 0;
  margin: 0 0 16px 0;
  box-shadow: 2px 2px 16px var(--color-alpha_base_dark-50);
}

.mov_item_entry {
  padding: 0 8px;
  margin: 32px 0 0 0;
  font-size: 1rem;
}

.mov_item_entry-date {
  display: block;
  padding: 0;
  margin: 4px 0 0 0;
  font-size: 0.94rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.mov_item_entry h4 {
  padding: 0;
  margin: 0 0 4px 0;
  font-size: 1.4rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*==================================
FANCLUB
==================================*/
.fc_contents_list h3 {
  padding: 8px 0 8px 46px;
  margin: -8px 0 16px 0;
  background-image: url(../common/logo-fc_basic.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 30px;
  font-size: 1.7rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
}

ul.fc_content_list_before {
  padding: 0 0 0 1.2rem;
  margin: 24px 0 0 0;
  list-style-type: disc;
  font-size: 1.2rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
}

ul.fc_content_list_before li {
  padding: 8px 0;
  margin: 0;
}

ul.fc_content_list_before li span {
  display: block;
  font-size: 0.9rem;
}

.fc_content_item {
  padding: 0;
  margin: 0 0 64px 0;
}

.fc_content_item:last-of-type {
  margin: 0;
}

.fc_content_item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  color: var(--color-basic);
  transition: 0.4s;
}

.fc_content_item a:hover {
  text-decoration: none;
  color: var(--color-light);
  transform: scale(1.01);
}

.fc_content_item .fc_content_thm {
  display: block;
  width: 100%;
  margin: 0 0 24px 0;
  padding: 5px;
  background-image: var(--gradient-glas_default);
  box-shadow:
    1px 1px 1px rgba(255, 255, 255, 0.15) inset,
    3px 3px 15px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  aspect-ratio: 1.618 / 1;
  position: relative;
}

.fc_content_item .fc_content_thm img {
  width: 100%;
  aspect-ratio: 1.618 / 1;
  object-fit: cover;
}

.fc_content_item.new_entry .fc_content_thm:after {
  content: "";
  width: 70px;
  height: 70px;
  background-image: url(../common/label-entry_thm_new.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: 4px;
  bottom: 4px;
}

.fc_content_item .fc_content_entry {
  display: block;
}

.fc_content_item .fc_content_entry h4 {
  display: inline-block;
  padding: 0 32px 0 0;
  margin: -4px 0 0 0;
  background-image: url(../common/icon-arrow_light-right.png);
  background-position: right 55%;
  background-repeat: no-repeat;
  background-size: 8px;
  font-size: 1.4rem;
  font-family: "miller-banner", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
}

.fc_content_item .fc_content_entry .fc_content_entry-date {
  display: block;
  padding: 0;
  margin: 8px 0 0 0;
  font-size: 1rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.fc_content_item .fc_content_entry p {
  padding: 0;
}

/*==================================
LOGIN
==================================*/
/* Login Form Input */
.login_form-input {
  display: block;
  padding: 32px 0 0 0;
  margin: 0;
  color: var(--color-basic);
  position: relative;
}

.login_form-input .form_block {
  display: block;
  margin: 16px 0 4px 0;
}

.login_form-input .form_block:first-of-type {
  margin: 0;
}

.login_form-input .form_block label {
  display: block;
  font-size: 0.87rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-left: 3px;
}

.login_form-input .form_block input {
  width: 100%;
  padding: 8px 16px;
  margin: 4px 0 0 0;
  background-color: var(--color-alpha_base_dark-50);
  border: 2px solid var(--color-base_light);
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.login_form-input .form_block input:focus {
  background-image: none;
  background-color: var(--color-highlight);
  border: 2px solid var(--color-highlight);
  outline: none;
  color: var(--color-base_dark);
}

.login_form-input .form_block input::placeholder {
  color: var(--color-alpha_light-30);
}

.login_form-input .form_block input:focus::placeholder {
  color: var(--color-alpha_base_dark-50);
}

/* Login Form Caption */
.login_form-caption {
  display: block;
  padding: 0;
  margin: 48px 0 0 0;
  text-align: left;
  color: var(--color-dark);
}

.login_form-caption p {
  padding: 2px 0;
  font-size: 0.9rem;
}

.login_form-caption ul {
  padding: 0 0 0 1.2rem;
  margin: 16px 0 0 0;
  font-size: 0.9rem;
  list-style-type: disc;
}

.login_form-caption ul li {
  font-style: italic;
}

.login_form-caption ul li a {
  color: var(--color-basic);
}

.login_form-caption ul li a:hover {
  color: var(--color-highlight);
}

/*==================================
ERROR MSG
==================================*/
.error_msg {
  display: block;
  width: 100%;
  padding: 2px 0 2px 30px;
  margin: 0 0 16px 0;
  background-image: url(../common/icon-warning.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px;
  color: var(--color-highlight);
  text-shadow: none;
  font-size: 0.9rem;
}

/*==================================
ERROR PAGE
==================================*/
.error_msg_block {
  display: block;
  margin: 16px 0 32px 0;
}

.error_msg_block h4 {
  margin: 0 0 8px 0;
  font-size: 1.4rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/*==================================
MEMBER MESSAGE
==================================*/
#member_message {
  display: block;
  width: 100vw;
  padding: 32px 0;
  margin: -68px 0 64px 0;
  background-color: var(--color-alpha_base_dark-50);
  box-shadow:
    0 1px 1px var(--color-alpha_light-10),
    0 1px 1px var(--color-alpha_light-10) inset;
  text-align: left;
}

#member_message .member_message-inner {
  width: 86vw;
  margin: 0 auto;
}

#member_message .member_message-inner h2 {
  padding: 0;
  margin: 0 0 16px 0;
  font-size: 2rem;
  font-family: "miller-banner", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
}

/*==================================
BTN FORMAT
==================================*/
.btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 32px 0 0 0;
  margin: 0;
}

.btn_area a.btn-block,
.btn_area button.btn-block {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin: 12px 0;
  background-color: var(--color-basic);
  border-radius: 6px;
  border: none;
  outline: none;
  text-align: center;
  color: var(--color-base_dark);
  font-size: 1.1rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-shadow: none;
  transition: 0.4s;
}

.btn_area a.btn-block.negative,
.btn_area button.btn-block.negative {
  background-color: var(--color-link_bg);
  color: var(--color-basic);
}

.btn_area a:hover.btn-block,
.btn_area button:hover.btn-block {
  background-color: var(--color-highlight);
  color: var(--color-base_dark);
  text-decoration: none;
  transform: scale(1.01);
}

.btn_area a.btn-block:first-of-type,
.btn_area button.btn-block:first-of-type {
  margin-top: 0;
}

.btn_area a.btn-block:last-of-type,
.btn_area button.btn-block:last-of-type {
  margin-bottom: 0;
}

/*==================================
COMMON MENU
==================================*/
#menu {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

#menu .menu_modal {
  width: 100vw;
  height: 100svh;
  position: absolute;
  left: 0;
  top: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

#menu .menu_window {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 0 32px 64px 32px;
  text-align: center;
  background-color: var(--color-base_dark);
  background-image: url(../common/bg-drape.jpg);
  background-position: right bottom 30%;
  background-repeat: repeat-y;
  background-size: 1280px;
  font-size: 1.4rem;
  font-family: "miller-banner", serif;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  right: -100vw;
  top: 0;
  transition: 0.4s;
}

#menu .menu_window a {
  display: inline-block;
  padding: 0;
  color: var(--color-basic);
  letter-spacing: 0.06em;
  line-height: 100%;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: 0.2s;
}

#menu .menu_window a:hover {
  text-decoration: none;
  color: var(--color-highlight);
}

#menu .menu_window ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#menu .menu_window ul li {
  padding: 0;
  margin: 24px 0 0 0;
}

#menu .menu_window ul li:first-of-type {
  margin: 0;
}

#menu .menu_window ul li a span {
  display: block;
  padding: 0;
  margin: 2px 0 0 0;
  font-size: 0.92rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  transition: 0.2s;
}

#menu .menu_window ul li span:before,
#menu .menu_window ul li span:after {
  content: "-";
  padding: 0 4px;
}

/* #menu .menu_window ul li a:hover span {
  color: var(--color-highlight);
} */

/* LOGIN MYPAGE */
#menu .menu_window ul li.login a,
#menu .menu_window ul li.mypage a {
  color: var(--color-highlight);
}

#menu .menu_window ul li.login a:hover,
#menu .menu_window ul li.mypage a:hover {
  color: var(--color-light);
}

/* LOGOUT */
#menu .menu_window ul li.logout a {
  color: var(--color-dark);
  font-size: 1.3rem;
  text-shadow: none;
}

#menu .menu_window ul li.logout a:hover {
  color: var(--color-highlight);
}

/* HIGHLIGHT */
#page-index_before + #menu .menu_window li:nth-of-type(1) a,
#page-index_after + #menu .menu_window li:nth-of-type(1) a,
#page-news_index + #menu .menu_window li:nth-of-type(2) a,
#page-news_entry + #menu .menu_window li:nth-of-type(2) a,
#page-about + #menu .menu_window li:nth-of-type(3) a,
#page-movie + #menu .menu_window li:nth-of-type(4) a,
#page-movie_entry + #menu .menu_window li:nth-of-type(4) a,
#page-from_staff + #menu .menu_window li:nth-of-type(5) a,
#page-from_staff_entry + #menu .menu_window li:nth-of-type(5) a,
#page-times + #menu .menu_window li:nth-of-type(6) a,
#page-times_entry + #menu .menu_window li:nth-of-type(6) a,
#page-bbs_index + #menu .menu_window li:nth-of-type(7) a,
#page-bbs_detail + #menu .menu_window li:nth-of-type(7) a,
#page-bbs_post + #menu .menu_window li:nth-of-type(7) a,
#page-bbs_post_check + #menu .menu_window li:nth-of-type(7) a {
  color: var(--color-dark);
}

/* Click After */
#menu.open {
  z-index: 100;
  opacity: 1;
}

#menu.open .menu_window {
  right: 0;
}

/* Close */
#menu_close {
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  background-image: url(../common/icon-close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 35px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transition: 0.4s;
}

#menu_close:hover {
  background-image: url(../common/icon-close_hover.png);
}

/*==================================
TEXT
==================================*/
h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  line-height: 160%;
}

p {
  line-height: 180%;
  padding: 5px 0;
  margin: 0;
}

a {
  color: var(--color-basic);
  text-decoration: none;
  transition: 0.4s;
}

a:visited {
  color: var(--color-basic);
  text-decoration: none;
}

a:hover,
a:active {
  color: var(--color-highlight);
  text-decoration: underline;
}

.caption {
  display: block;
  font-size: 0.8rem !important;
}

.inline_caption {
  display: inline;
  font-size: 0.8rem !important;
}

.contents_title h2 {
  display: block;
  font-size: 4rem;
  font-family: "miller-banner", serif;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0;
  line-height: 100%;
  letter-spacing: 0.04em;
}

#page_times .contents_title h2 {
  font-size: 3.4rem;
  letter-spacing: 0;
}

.contents_title span {
  display: block;
  font-size: 0.9rem;
  font-family: "kinuta-mincho-stdn", sans-serif;
  font-weight: 700;
  font-style: normal;
  padding: 0;
  margin: 16px 0 0 0;
  line-height: 100%;
  letter-spacing: 0.04em;
}

/*==========================================*/
.fix {
  overflow: hidden;
  zoom: 1;
}

.none {
  display: none;
}

.display_sp {
  display: block !important;
}

.display_pc {
  display: none !important;
}
