@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Charm|Cormorant+Garamond|Fenix|Volkhov");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP&display=swap");
body {
  width: 100%;
  font-family: "Lato", "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 1.4rem;
  font-weight: 500;
  color: #191919;
  background: #000;
  margin: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h2 {
  margin: 0;
  padding: 0;
}

h1.sub_title {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  background-color: #D4AF37;
  margin: 0px;
  padding: 14px 10px;
}

.btn {
  width: 300px;
  border: 1px solid #fff;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  display: block;
  margin: 30px auto 0;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

section {
  margin: 20px 0 60px;
  display: block;
  padding-top: 110px;
  margin-top: -110px;
}

.area_list {
  display: flex;
  width: 92%;
  justify-content: space-around;
  margin: 0 auto 60px;
}
.area_list li {
  width: 45%;
}
.area_list a {
  border: 1px solid #fff;
  padding: 25px 0;
  color: #fff;
  text-align: center;
  display: block;
  margin: 30px auto 0;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

@media screen and (min-width: 1120px) {
  body {
    max-width: 1200px;
    margin: 0 auto;
  }

  .btn {
    width: 500px;
    padding: 25px 0;
    margin: 50px auto 100px;
    font-size: 1.4rem;
  }

  section {
    display: block;
    padding-top: 250px;
    margin-top: -250px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  color: #222;
  padding: 0;
  background: #000;
}
header h1 {
  width: 100%;
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 20px;
}
header h1 a {
  display: flex;
  align-items: flex-start;
  color: #fff;
  text-decoration: none;
}
header h1 img {
  width: 13%;
  margin: 0 0 0 2%;
}
header h1 span {
  align-self: center;
  padding-left: 5px;
}
header nav {
  display: flex;
  justify-content: flex-end;
}
header li {
  margin: 0 15px;
}

#nav-drawer {
  position: fixed;
  top: 3.6%;
  right: 3%;
}

.nav-unshown {
  display: none;
}

#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  display: block;
  content: '';
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 220px;
  height: 100%;
  background: #222;
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
#nav-content li {
  border-bottom: 1px dotted #ccc;
  padding: 10px 0 10px 10px;
  color: #fff;
  text-align: left;
  font-size: 0.8rem;
}
#nav-content .insta {
  border: 0;
}
#nav-content .insta img {
  width: 20%;
}
#nav-content h2 {
  color: #D4AF37;
  font-size: 1.2rem;
  text-align: center;
  padding: 20px 0 0px;
}

#nav-content a {
  color: #fff;
  text-decoration: none;
}

#nav-input:checked ~ #nav-close {
  display: block;
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 1120px) {
  #nav-open {
    display: none;
  }

  .pc {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: center;
  }

  header h1 {
    padding: 20px 0 20px 20px;
  }
  header h1 br {
    display: none;
  }
  header nav {
    background-color: #000;
    border-bottom: 1px solid #fff;
    font-size: 1.0rem;
  }
  header nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 1120px) {
  .pc {
    display: none;
  }
}
#intro {
  padding-top: 110px;
  background-image: url("../images/s_tower.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 2%;
  background-position: center;
}
#intro p {
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
  color: #fff;
  padding: 4%;
  margin: 8%;
  text-align: center;
}

@media screen and (min-width: 1120px) {
  #intro {
    margin-top: 250px;
  }
  #intro p {
    background: rgba(0, 0, 0, 0.2);
    padding: 2%;
    margin: 5%;
    font-size: 1.0rem;
  }
}
.main_list h2 {
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  padding: 30px 0 20px;
  margin: 0 auto;
}
.main_list h2 span {
  font-size: 0.9rem;
  display: block;
}
.main_list h2 span::before {
  content: "―";
  padding-right: 4px;
}
.main_list h2 span::after {
  content: "―";
  padding-left: 4px;
}
.main_list h3 {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 4%;
}
.main_list h4 {
  color: #fff;
  padding-left: 4%;
  margin: 5% 0 0;
}
.main_list h4 span {
  display: inline-block;
  padding-left: 10px;
  font-size: 0.8rem;
}
.main_list h4 span::before {
  content: "―";
  padding-right: 4px;
}
.main_list p {
  background: #222;
  font-size: 0.9rem;
  color: #fff;
  padding: 4%;
  margin: 2%;
}
.main_list table {
  margin: 1% 4%;
}
.main_list table, .main_list th, .main_list td {
  border-collapse: collapse;
  border: 1px solid #ccc;
  line-height: 1.5;
  font-size: 0.9rem;
  color: #fff;
}
.main_list table th {
  width: 150px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
}
.main_list table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
}
.main_list iframe {
  padding: 0 4%;
  width: 92%;
  height: 300px;
}
.main_list .cast_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.main_list .cast_list li {
  width: 45%;
}
.main_list .cast_list img {
  width: 100%;
  margin: 0 0 10px;
}

@media screen and (min-width: 1120px) {
  .main_list table {
    width: 92%;
  }
  .main_list table, .main_list th, .main_list td {
    font-size: 1.2rem;
  }
  .main_list h2 {
    font-size: 3.0rem;
  }
  .main_list h3 {
    font-size: 1.6rem;
  }
  .main_list p {
    font-size: 1.0rem;
  }
  .main_list .cast_list {
    flex-wrap: nowrap;
    width: 92%;
    margin: 0 auto;
    justify-content: space-between;
  }
  .main_list .cast_list li {
    width: 22%;
  }
}
.link_list {
  display: flex;
  width: 100%;
  list-style: none;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 5% 0 10%;
  padding: 0;
}
.link_list li {
  width: 31%;
  position: relative;
  margin: 0 0 3%;
}
.link_list li a {
  color: #fff;
  font-size: 0.6em;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.link_list li span {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 13% 0 2%;
  display: block;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0));
}
.link_list .last_li {
  width: 49%;
}

.sub_list h2 {
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  padding: 50px 0 20px;
  margin: 0 auto;
}
.sub_list h2 span {
  font-size: 0.9rem;
  display: block;
}
.sub_list h2 span::before {
  content: "―";
  padding-right: 4px;
}
.sub_list h2 span::after {
  content: "―";
  padding-left: 4px;
}
.sub_list h3 {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 0 4%;
}
.sub_list h4 {
  color: #fff;
  padding-left: 4%;
  margin: 5% 0 0;
}
.sub_list h4 span {
  display: inline-block;
  padding-left: 10px;
  font-size: 0.8rem;
}
.sub_list h4 span::before {
  content: "―";
  padding-right: 4px;
}
.sub_list p {
  background: #222;
  font-size: 0.9rem;
  color: #fff;
  padding: 4%;
  margin: 2%;
}
.sub_list table {
  margin: 1% 4%;
}
.sub_list table, .sub_list th, .sub_list td {
  border-collapse: collapse;
  border: 1px solid #ccc;
  line-height: 1.5;
  font-size: 0.9rem;
  color: #fff;
}
.sub_list table th {
  width: 150px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
}
.sub_list table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
}
.sub_list iframe {
  padding: 0 4%;
  width: 92%;
  height: 300px;
}
.sub_list .cast_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.sub_list .cast_list li {
  width: 45%;
}
.sub_list .cast_list img {
  width: 100%;
  margin: 0 0 10px;
}

@media screen and (min-width: 1120px) {
  .sub_list table {
    width: 92%;
  }
  .sub_list table, .sub_list th, .sub_list td {
    font-size: 1.2rem;
  }
  .sub_list h2 {
    font-size: 3.0rem;
  }
  .sub_list h3 {
    font-size: 1.6rem;
  }
  .sub_list p {
    font-size: 1.0rem;
  }
}
footer {
  border-top: 1px solid #fff;
  padding: 50px 0;
  margin: 50px 0 0;
  text-align: center;
  color: #fff;
  font-size: 0.7rem;
}
