@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400&display=swap");
@import url("all.css");
/*===============================

共通

================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/*
調整
================================*/
.adjustment {
  margin-top: 50px;
}

.fade_wrap {
  position: relative;
  margin: 0 auto;
}

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

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

.fade_text_02 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
}

.fade_text_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

.fade_click_inner {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 103%;
  height: 103%;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}

.fade_image {
  position: absolute;
  top: 3.5%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 92%;
  height: 92%;
  z-index: 1;
  object-fit: cover;
}

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

.fade_click {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.swiper-slide-active .fade_text_01 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_02 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_image {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_movie {
  animation: slideFromRightMovie 555.5s ease 0s 1 normal;
}

.swiper-slide-active .fade_click {
  animation: slideFromClick 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_click_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes slideFromText {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromClick {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromWhite {
  0%, 25% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}
.main_pc_01 {
  animation-delay: 0.5s;
}

.main_pc_02 {
  animation-delay: 1s;
}

.main_pc_03 {
  animation-delay: 1.5s;
}

.main_pc_04 {
  animation-delay: 2s;
}

.main_pc_05 {
  animation-delay: 2.5s;
}

.main_pc_06 {
  animation-delay: 3s;
}

.main_pc_07 {
  animation-delay: 3.5s;
}

.main_pc_08 {
  animation-delay: 4.5s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeStay {
  animation-name: fadeStayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeStayAnime {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainFrom01 {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes mainFrom02 {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*
オン・オフ
================================*/
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  vertical-align: middle;
  border-radius: 0.5rem;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn,
a.btn,
button.btn {
    padding: 15px 5px;
    font-size: 1.2rem;
  }
}

a.btn_day {
  margin: 0 5px;
  color: #fff;
  background-color: #004628;
  border-bottom: 5px solid #111;
}
a.btn_day:hover {
  margin-top: 3px;
  color: #fff;
  background: #00693c;
  border-bottom: 2px solid #444;
}
@media screen and (max-width: 767px) {
  a.btn_day {
    margin: 2.5px;
  }
}

a.btn_shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}

.link_click {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: -30px;
  background-color: brown;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link_click:hover {
  background-color: burlywood;
}
@media screen and (max-width: 767px) {
  .link_click {
    width: 60px;
    height: 60px;
    left: -8%;
  }
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -webkit-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #110f10;
  color: #d9d9da;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  font-size: 1.6rem;
}

.background {
  background: url("../../img/background_pc.png");
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .background {
    background: none;
  }
}

img {
  max-width: 100%;
}

/*
補足
================================*/
.br_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

.flex {
  display: flex;
}

/*===============================

メイン

================================*/
main {
  position: relative;
  width: 100%;
  margin: auto;
  margin-top: 60px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  main {
    padding: 0 10px;
  }
}
main .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  max-width: 650px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  main .text {
    width: 70%;
  }
}

#container {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 500px 0 1000px;
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #container {
    padding: 100px 0 1000px;
    font-size: 1.5rem;
  }
}

.main_video {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 69vh;
  min-height: 620px;
}
@media screen and (max-width: 1024px) {
  .main_video {
    height: 100vh;
    min-height: 820px;
  }
}
@media screen and (max-width: 1168px) {
  .main_video {
    height: 45vh;
    min-height: 470px;
  }
}
@media screen and (max-width: 767px) {
  .main_video {
    height: 100%;
    min-height: 100%;
  }
}

/*===============================

パンくずリスト

================================*/
.breadcrumb ol {
  display: flex;
  justify-content: center;
  padding: 10px 0 0;
  color: #888;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb ol {
    font-size: 1rem;
  }
}
.breadcrumb li {
  display: inline;
  list-style-type: none;
}
.breadcrumb li::after {
  content: " > ";
}
.breadcrumb li:last-child:after {
  content: "";
}
.breadcrumb a {
  color: #888;
  text-decoration: none;
}

/*===============================

スライドバナー

================================*/
/* 1. slider2 用（動画スライダー） → 先に書くことで優先される */
.slider2 {
  margin: 0;
}
.slider2 .swiper-slide-prev,
.slider2 .swiper-slide-next {
  transform: none;
}

/* 2. 共通のスライダー用設定 */
.swiper-slide {
  transition: transform 0.6s;
}

/* 3. 通常スライダー（.slide）だけに適用 */
.slide:not(.slider2) {
  margin: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .slide:not(.slider2) {
    margin: 30px 0 0;
  }
}
.slide:not(.slider2) .swiper-slide-prev,
.slide:not(.slider2) .swiper-slide-next {
  transform: scale(0.9);
}

/*===============================

ニュース

================================*/
.news,
.news_detail,
.cast,
.recruit,
.coupon,
.system,
.showtime,
.profile {
  padding: 120px 0 0;
}
@media screen and (max-width: 1168px) {
  .news,
.news_detail,
.cast,
.recruit,
.coupon,
.system,
.showtime,
.profile {
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .news,
.news_detail,
.cast,
.recruit,
.coupon,
.system,
.showtime,
.profile {
    padding: 50px 0 0;
  }
}
.news_ttl,
.news_detail_ttl,
.cast_ttl,
.recruit_ttl,
.coupon_ttl,
.system_ttl,
.showtime_ttl,
.profile_ttl {
  font-size: 4.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
}
.news .container,
.news_detail .container,
.cast .container,
.recruit .container,
.coupon .container,
.system .container,
.showtime .container,
.profile .container {
  display: flex;
  width: 100%;
  max-width: 1380px;
  margin: auto;
  padding: 0 100px;
  font-weight: 400;
}
@media screen and (max-width: 1168px) {
  .news .container,
.news_detail .container,
.cast .container,
.recruit .container,
.coupon .container,
.system .container,
.showtime .container,
.profile .container {
    padding: 0 30px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .news .container,
.news_detail .container,
.cast .container,
.recruit .container,
.coupon .container,
.system .container,
.showtime .container,
.profile .container {
    flex-wrap: wrap;
    padding: 0 20px;
    font-size: 1.4rem;
  }
}
.news .container .day,
.news_detail .container .day,
.cast .container .day,
.recruit .container .day,
.coupon .container .day,
.system .container .day,
.showtime .container .day,
.profile .container .day {
  width: 140px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .news .container .day,
.news_detail .container .day,
.cast .container .day,
.recruit .container .day,
.coupon .container .day,
.system .container .day,
.showtime .container .day,
.profile .container .day {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    font-weight: bold;
  }
}

.news ul {
  padding: 70px 0 0;
}
@media screen and (max-width: 1168px) {
  .news ul {
    padding: 50px 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .news ul {
    padding: 30px 0 0;
  }
}
.news li {
  font-size: 2rem;
}
.news li:first-child {
  border-top: 1px solid #444;
}
.news a {
  width: 100%;
  padding: 50px 0;
  color: #d9d9da;
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #444;
}
@media screen and (max-width: 1168px) {
  .news a {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .news a {
    padding: 20px 0;
    line-height: 1.5;
  }
}
.news a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.6s;
}
.news a:hover::after {
  transform: scale(1, 1);
}
.news_detail {
  max-width: 1380px;
  margin: auto;
  padding: 50px 80px 0 80px;
}
@media screen and (max-width: 1168px) {
  .news_detail {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .news_detail {
    padding: 30px 15px;
  }
}
.news_detail h3 {
  display: block;
  padding: 20px 0 50px;
  color: #fff;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news_detail h3 {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.news_detail .day {
  padding: 50px 0 0;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
}
.news_detail .comment {
  line-height: 2;
}
.news .adjustment {
  height: 100px;
}

.news_detail {
  padding: 170px 0 0;
}
@media screen and (max-width: 767px) {
  .news_detail {
    padding: 100px 0 0;
  }
}
.news_detail_inner {
  max-width: 1340px;
  margin: auto;
  padding: 50px 80px 0 80px;
}
@media screen and (max-width: 1168px) {
  .news_detail_inner {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .news_detail_inner {
    padding: 30px 15px;
  }
}
.news_detail_inner h3 {
  display: block;
  padding: 20px 0 50px;
  color: #fff;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .news_detail_inner h3 {
    padding: 20px 0 25px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.news_detail_inner .image {
  margin: 0 0 30px;
}
.news_detail_inner .day {
  padding: 50px 0 0;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .news_detail_inner .day {
    padding: 0;
  }
}
.news_detail_inner .comment {
  line-height: 2;
}

/*===============================

キャスト

================================*/
.cast ul,
.showtime ul,
.showtime_sub ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1380px;
  margin: auto;
  padding: 50px 80px 0 80px;
}
@media screen and (max-width: 1168px) {
  .cast ul,
.showtime ul,
.showtime_sub ul {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .cast ul,
.showtime ul,
.showtime_sub ul {
    padding: 30px 15px;
  }
}
.cast li,
.showtime li,
.showtime_sub li {
  width: 25%;
  padding: 0;
  border: none;
}
@media screen and (max-width: 1168px) {
  .cast li,
.showtime li,
.showtime_sub li {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .cast li,
.showtime li,
.showtime_sub li {
    width: 33.3333333333%;
  }
}
.cast li:last-child,
.showtime li:last-child,
.showtime_sub li:last-child {
  border-bottom: 0px;
}
.cast figure,
.showtime figure,
.showtime_sub figure {
  padding: 20px;
}
@media screen and (max-width: 1168px) {
  .cast figure,
.showtime figure,
.showtime_sub figure {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .cast figure,
.showtime figure,
.showtime_sub figure {
    padding: 5px;
  }
}
.cast .name,
.showtime .name,
.showtime_sub .name {
  padding: 10px 0 20px;
  font-size: 2.2rem;
}
@media screen and (max-width: 1168px) {
  .cast .name,
.showtime .name,
.showtime_sub .name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .cast .name,
.showtime .name,
.showtime_sub .name {
    padding: 5px 0 20px;
    font-size: 1.5rem;
  }
}
.cast .more,
.showtime .more,
.showtime_sub .more {
  width: 250px;
  margin: auto;
  padding: 50px 0 0;
}
@media screen and (max-width: 1168px) {
  .cast .more,
.showtime .more,
.showtime_sub .more {
    width: 200px;
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .cast .more,
.showtime .more,
.showtime_sub .more {
    width: 200px;
    padding: 0 0 40px;
  }
}

/*===============================

料金システム

================================*/
.system {
  padding: 170px 0 0;
}
@media screen and (max-width: 767px) {
  .system {
    padding: 100px 0 100px;
  }
}
.system h3 {
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .system h3 {
    font-size: 1.6rem;
  }
}
.system_price {
  width: 700px;
  margin: auto;
  padding: 100px 0 0;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .system_price {
    width: auto;
    padding: 50px 20px 0 20px;
    font-size: 1.4rem;
  }
}
.system_price ul {
  display: flex;
  border-bottom: 1px solid #444;
}
.system_price li {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .system_price small {
    display: block;
    margin: 5px 0 0;
  }
}
.system_price .price {
  margin: 0 0 0 auto;
}
.system_price .drink {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .system_price .drink {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.system_price .text {
  padding: 50px 0 0;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .system_price .text {
    padding: 25px 0 0;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.googlemap {
  margin-bottom: -100px;
  padding: 200px 0 0;
}
@media screen and (max-width: 1168px) {
  .googlemap {
    margin-bottom: 0;
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .googlemap {
    margin-bottom: 0;
    padding: 100px 0 0;
  }
}
.googlemap iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .googlemap iframe {
    height: 414px;
  }
}
.googlemap address {
  padding: 30px 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.5;
}
.googlemap a {
  display: block;
  padding: 20px 0 0;
  color: #d9d9da;
  font-size: 3rem;
  text-decoration: none;
}
.googlemap .logo {
  width: 161px;
  margin: auto;
  padding: 70px 0 0;
}
@media screen and (max-width: 767px) {
  .googlemap .logo {
    width: 100px;
    padding: 40px 0 0;
  }
}

/*===============================

利用規約

================================*/
.userpolicy {
  width: 900px;
  margin: auto;
  padding: 170px 0 0;
}
@media screen and (max-width: 1168px) {
  .userpolicy {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .userpolicy {
    width: 90%;
    padding: 100px 0 100px;
  }
}
.userpolicy h3 {
  font-weight: 300;
}
.userpolicy ul {
  margin: 60px 0 0;
  padding: 60px 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  font-size: 1.3rem;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .userpolicy ul {
    margin: 40px 0 0;
    padding: 40px 0;
    font-size: 1.2rem;
  }
}

/*===============================

プロフィール

================================*/
@media screen and (max-width: 767px) {
  .profile {
    padding: 100px 0 100px;
  }
}
.profile h3 {
  position: relative;
  width: 100%;
  padding-bottom: 25px;
  border-bottom: 1px solid #444;
  font-size: 3rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .profile h3 {
    padding-bottom: 15px;
    font-size: 2.5rem;
  }
}
.profile h3 .icon {
  position: absolute;
  width: 35px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .profile h3 .icon {
    width: 30px;
  }
}
.profile_inner {
  display: flex;
  width: 900px;
  margin: auto;
  padding: 100px 0 135px;
}
@media screen and (max-width: 1168px) {
  .profile_inner {
    width: auto;
    padding: 50px 15px 65px 15px;
  }
}
@media screen and (max-width: 767px) {
  .profile_inner {
    display: block;
    width: 100%;
    padding: 50px 0 65px;
  }
}
.profile_cast {
  max-width: 1410px;
  margin: auto;
  padding: 0 80px;
}
@media screen and (max-width: 1168px) {
  .profile_cast {
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .profile_cast {
    padding: 30px 5px;
  }
}
.profile_cast dl {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 35px;
}
.profile_cast span {
  display: block;
  padding: 20px 0 0;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .profile_cast span {
    padding: 10px 0 0;
    font-size: 1.8rem;
  }
}
.profile_cast_number {
  position: relative;
  font-size: 2rem;
  font-family: "Inter", sans-serif;
}
.profile_cast_number_inner {
  position: absolute;
  display: flex;
  top: 10px;
  right: 125px;
}
@media screen and (max-width: 767px) {
  .profile_cast_number_inner {
    top: 7px;
    right: 80px;
  }
}
.profile .photo {
  max-width: 375px;
}
@media screen and (max-width: 1168px) {
  .profile .photo {
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .profile .photo {
    display: flex;
    max-width: 100%;
  }
}
.profile .photo p {
  margin: 0 0 35px;
}
@media screen and (max-width: 767px) {
  .profile .photo p {
    width: 50%;
  }
}
.profile .data {
  flex: 1;
  padding: 0 0 0 75px;
}
@media screen and (max-width: 1168px) {
  .profile .data {
    padding: 0 0 0 35px;
  }
}
@media screen and (max-width: 767px) {
  .profile .data {
    width: auto;
    padding: 0 15px;
  }
}
.profile .personal {
  padding: 20px 0 60px;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .profile .personal {
    padding: 20px 0 40px;
    font-size: 1.6rem;
  }
}
.profile .faq p {
  padding: 20px 0;
  border-top: 1px solid #444;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .profile .faq p {
    padding: 15px 0;
    font-size: 1.6rem;
  }
}
.profile .faq p:last-child {
  border-bottom: 1px solid #444;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position: relative;
  padding: 60px 0 0;
}
@media screen and (max-width: 1168px) {
  .slider {
    padding: 50px 0 0;
  }
}
.slider img {
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .slider img {
    width: 95%;
    margin: auto;
  }
}
.slider .prev_arrow,
.slider .next_arrow {
  position: absolute;
  top: 0;
  right: 65px;
}
@media screen and (max-width: 1168px) {
  .slider .prev_arrow,
.slider .next_arrow {
    right: 65px;
  }
}
@media screen and (max-width: 767px) {
  .slider .prev_arrow,
.slider .next_arrow {
    right: 40px;
  }
}
.slider .prev_arrow img,
.slider .next_arrow img {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .slider .prev_arrow img,
.slider .next_arrow img {
    width: 30px;
  }
}
.slider .next_arrow {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .slider .next_arrow {
    right: 5px;
  }
}
.slider .slick-slide {
  margin: 0 17px;
}
@media screen and (max-width: 767px) {
  .slider .slick-slide {
    margin: 0;
  }
}

.slider_photo {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
}
@media screen and (max-width: 767px) {
  .slider_photo {
    height: 100%;
  }
}
.slider_photo .prev_arrow_photo img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 40px;
  margin: auto;
  z-index: 10;
}
.slider_photo .next_arrow_photo img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  width: 40px;
  margin: auto;
  z-index: 10;
}

.mypattern {
  width: 100%;
  margin: auto;
}

.mypattern .slick-slide {
  margin: 0 25px;
}
@media screen and (max-width: 767px) {
  .mypattern .slick-slide {
    margin: 0 0 50px;
  }
}

/*slick setting*/
.mypattern .slick-slide:not(.slick-center) {
  -webkit-filter: opacity(70%);
  -moz-filter: opacity(70%);
  -o-filter: opacity(70%);
  -ms-filter: opacity(70%);
  filter: opacity(70%);
  transition: 0.6s linear;
}
@media screen and (max-width: 1168px) {
  .mypattern .slick-slide:not(.slick-center) {
    -webkit-filter: opacity(100%);
    -moz-filter: opacity(100%);
    -o-filter: opacity(100%);
    -ms-filter: opacity(100%);
    filter: opacity(100%);
  }
}
@media screen and (max-width: 767px) {
  .mypattern .slick-slide:not(.slick-center) {
    -webkit-filter: opacity(100%);
    -moz-filter: opacity(100%);
    -o-filter: opacity(100%);
    -ms-filter: opacity(100%);
    filter: opacity(100%);
  }
}

/*===============================

ショータイム

================================*/
.showtime ul,
.showtime_sub ul {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .showtime ul,
.showtime_sub ul {
    margin-top: -50px;
  }
}
.showtime li,
.showtime_sub li {
  width: 50%;
}
.showtime_ttl,
.showtime_sub_ttl {
  padding: 0 0 50px;
}
@media screen and (max-width: 767px) {
  .showtime_ttl,
.showtime_sub_ttl {
    padding: 0 0 20px;
  }
}
.showtime .name,
.showtime_sub .name {
  font-family: "Montserrat", sans-serif;
}
.showtime .day,
.showtime_sub .day {
  display: block;
  padding: 10px 0 5px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .showtime .day,
.showtime_sub .day {
    padding: 10px 18px 5px 18px;
  }
}
.showtime .title,
.showtime_sub .title {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .showtime .title,
.showtime_sub .title {
    padding: 0 18px;
  }
}

.showtime_sub {
  max-width: 1380px;
  margin: auto;
  padding: 100px 0 0;
}
.showtime_sub .banner {
  max-width: 1380px;
  margin: auto;
  padding: 0 100px;
  margin: auto;
}
@media screen and (max-width: 1168px) {
  .showtime_sub .banner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .showtime_sub .banner {
    padding: 0 0 50px;
  }
}

/*===============================

女性求人

================================*/
.recruit {
  padding: 170px 0 0;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding: 70px 0 100px;
  }
}
.recruit_inner {
  width: 700px;
  margin: auto;
  padding: 75px 0 0;
}
@media screen and (max-width: 1168px) {
  .recruit_inner {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit_inner {
    width: 100%;
    padding: 20px 20px;
  }
}
.recruit_form {
  width: 700px;
  margin: auto;
  padding: 75px 0 0;
}
@media screen and (max-width: 1168px) {
  .recruit_form {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit_form {
    width: 100%;
    padding: 20px 20px;
  }
}
.recruit_form input {
  width: 100%;
  height: 35px;
}
.recruit_form textarea {
  width: 100%;
  height: 150px;
}
.recruit_form dl {
  display: flex;
  flex-wrap: wrap;
}
.recruit_form dl .left {
  width: 30%;
  padding: 7px 0 0;
}
@media screen and (max-width: 767px) {
  .recruit_form dl .left {
    width: 100%;
    margin: 0 0 5px;
    font-size: 1.4rem;
  }
}
.recruit_form dl .left span {
  display: inline-block;
  margin: 0 0 0 5px;
  padding: 5px 5px 7px;
  background-color: white;
  border-radius: 3px;
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
}
.recruit_form dl .right {
  width: 70%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recruit_form dl .right {
    width: 100%;
    margin: 0 0 5px;
  }
}
.recruit_text {
  margin: 0 0 150px;
  padding: 50px 0 50px;
  border-bottom: 1px solid #444;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .recruit_text {
    margin: 0 0 50px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.recruit_thanks {
  padding: 50px 0 0;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .recruit_thanks {
    font-size: 1.4rem;
  }
}

/*===============================

クーポン

================================*/
.coupon {
  padding: 170px 0 0;
}
@media screen and (max-width: 767px) {
  .coupon {
    padding: 70px 0 50px;
  }
}
.coupon_inner {
  width: 700px;
  margin: auto;
  padding: 75px 0 0;
}
@media screen and (max-width: 1168px) {
  .coupon_inner {
    padding: 30px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .coupon_inner {
    width: 100%;
    padding: 20px 20px;
  }
}
.coupon_inner-sub {
  width: 100%;
  margin-top: -140px;
  padding: 0 0 20px;
}
@media screen and (max-width: 1168px) {
  .coupon_inner-sub {
    margin-top: -30px;
  }
}
.coupon_inner-sub img {
  max-width: 800px;
  width: 100%;
  margin: auto;
}
.coupon_text {
  margin: 0 0 50px;
  padding: 50px 0 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .coupon_text {
    margin: 0;
    font-size: 1.5rem;
  }
}
.coupon_kigen {
  display: inline-block;
  padding: 15px 50px;
  border: 1px solid white;
  border-radius: 5px;
}
.coupon_form {
  display: flex;
  flex-wrap: wrap;
  width: 700px;
  margin: auto;
  padding: 50px 0 0;
  border-top: 1px solid #444;
}
@media screen and (max-width: 1168px) {
  .coupon_form {
    display: none;
  }
}
.coupon_form .left,
.coupon_form .right {
  width: 50%;
  font-size: 1.3rem;
  font-weight: 300;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 1168px) {
  .coupon_form .left,
.coupon_form .right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .coupon_form .left,
.coupon_form .right {
    width: 100%;
  }
}
@media screen and (max-width: 1168px) {
  .coupon_form {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .coupon_form {
    width: 100%;
    padding: 20px 20px;
  }
}
.coupon_btn {
  width: 70%;
  margin: auto;
  padding-top: 20px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.modal.is-active {
  display: block;
}

.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal__content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #333;
  padding: 0 50px;
  max-width: 900px;
  width: 100%;
  z-index: 1001; /* 背景より上 */
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1002; /* コンテンツより上 */
  font-size: 24px;
  line-height: 1;
  padding: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  color: white;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  background-color: rgba(17, 15, 16, 0.8);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    display: flex;
    height: 60px;
    padding: 0 10px;
  }
}
.header .container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: auto;
}
.header h1 {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .header h1 {
    font-size: 1.2rem;
  }
}
.header_logo {
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .header_logo {
    display: block;
    top: 7px;
  }
}
.header_logo img {
  height: 38px;
}
@media screen and (max-width: 1168px) {
  .header_logo img {
    height: 28px;
    margin: auto;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 767px) {
  .header_logo img {
    height: 28px;
    margin: auto;
    margin-bottom: 3px;
  }
}

.footer {
  margin: 200px 0 0;
  padding: 65px 0;
  background-color: black;
}
@media screen and (max-width: 1168px) {
  .footer {
    margin: 100px 0 0;
    padding: 100px 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin: 0;
    font-size: 1.2rem;
  }
}
.footer .container {
  width: 100%;
  max-width: 1640px;
  margin: auto;
  padding: 0 30px;
}
@media screen and (max-width: 1168px) {
  .footer .container {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer .container {
    padding: 0;
  }
}
.footer .logo {
  width: 272px;
  padding: 0 0 60px;
}
@media screen and (max-width: 1168px) {
  .footer .logo {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .footer .logo {
    width: 200px;
  }
}
.footer_nav {
  position: relative;
  margin: 140px 0 0;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    margin: 0;
  }
}
.footer_icon {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1168px) {
  .footer_icon {
    left: -20px;
    top: -70px;
  }
}
@media screen and (max-width: 767px) {
  .footer_icon {
    justify-content: center;
    left: 0;
    right: 0;
    top: 5px;
    margin: auto;
  }
}
.footer_icon img {
  height: 24px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .footer_icon img {
    margin: 10px;
  }
}
.footer .copyright {
  padding: 20px 0 0;
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1168px) {
  .footer .copyright {
    padding: 0 0 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    padding: 50px 0 0;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
  }
}
.footer .copyright a {
  color: #c9caca;
  text-decoration: none;
}
.footer_btn {
  max-width: 1220px;
  margin: auto;
}
.footer_btn ul {
  display: flex;
}
@media screen and (max-width: 1168px) {
  .footer_btn ul {
    padding: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .footer_btn ul {
    flex-wrap: wrap;
  }
}
.footer_btn li {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .footer_btn li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer_btn li img {
  padding: 0 20px;
}
@media screen and (max-width: 1168px) {
  .footer_btn li img {
    padding: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .footer_btn li img {
    padding: 0 10px;
  }
}
.footer .nav_list li {
  padding: 0 20px;
  line-height: 20px;
}
.footer .nav_list li + li {
  max-height: 20px;
  border-left: 1px solid #c9caca;
}

.nav {
  display: flex;
  margin: 10px 0 0 auto;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1168px) {
  .nav {
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .nav {
    margin: 0 0 0 auto;
  }
}
.nav_list ul {
  display: flex;
}
.nav_list li {
  padding: 0 15px;
  font-weight: 100;
}
.nav_list a {
  overflow: hidden;
  height: 30px;
  display: block;
  color: #d9d9da;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.nav_list .click:hover {
  border-bottom: 3px solid #fff;
}
@media screen and (max-width: 1168px) {
  .nav_list {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .nav_list {
    display: none;
  }
}
.nav .nav_list li {
  line-height: 20px;
}
.nav .nav_list li + li {
  max-height: 20px;
  border-left: 1px solid #c9caca;
}
.nav_icon {
  display: flex;
}
@media screen and (max-width: 1168px) {
  .nav_icon {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .nav_icon {
    display: none;
  }
}
.nav_icon img {
  width: auto;
  height: 18px;
  margin-left: 30px;
}
.nav_icon_sp {
  margin: 50px 0 0;
  display: flex;
  justify-content: center;
}
.nav_icon_sp img {
  width: auto;
  height: 20px;
  margin: 15px;
}

.nav_list_sp {
  display: none;
}
@media screen and (max-width: 1168px) {
  .nav_list_sp {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .nav_list_sp {
    display: block;
  }
}
.nav_list_sp a {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  line-height: 3;
}

.menu {
  display: none;
}
@media screen and (max-width: 1168px) {
  .menu {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
  }
}
.menu img {
  width: 30px;
}

@media screen and (max-width: 1168px) {
  .menu_area {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .menu_area {
    display: none;
  }
}

/*
プルダウンメニュー
================================*/
#tg, #tg_sub, #tg_sp {
  display: none;
}

.recruit_menu {
  position: relative;
  opacity: 0;
  top: 0;
  right: 0;
  left: -40px;
  width: 140px;
  height: 60px;
  margin: auto;
  margin-top: 5px;
  padding: 8px 0 0;
  list-style: none;
  background: #fff;
  -webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
  z-index: 10;
}
.recruit_menu a {
  display: block;
  margin-bottom: -8px;
  padding: 0;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
}

.recruit_menu_sp {
  position: relative;
  opacity: 0;
  top: 0;
  right: 0;
  left: 0;
  width: 200px;
  margin: auto;
  margin-top: -5px;
  padding: 0;
  list-style: none;
  background: #fff;
  -webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
  z-index: 10;
}
.recruit_menu_sp a {
  display: block;
  margin-bottom: -15px;
  padding: 0;
  color: #000;
  font-size: 1.3rem;
  font-weight: 500;
}

.dropInput:checked ~ .recruit_menu {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.dropInput:checked ~ .recruit_menu_sp {
  visibility: visible;
  opacity: 1;
  top: 0;
}

.animation {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*# sourceMappingURL=style.css.map */
