/*/基本/////////////////////////////////////////////////*/

* {
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
}

a:link {
  color: #1a1a1a;
}

a:visited {
  color: #1a1a1a;
}

a:hover {
  color: #1a1a1a;
}

a:active {
  color: #1a1a1a;
}

article {
  width: 100%;
  clear: both;
}

.clearFix:before,
.clearFix:after {
  content: "";
  display: table;
}

.clearFix:after {
  clear: both;
}

.clearFix {
  /*IE6,7対策*/
  *zoom: 1;
}

#contents {
  background-color: #fff;
  margin: 0 auto;
  width: 1200px;
  border-left: 1px solid #b2b3b8;
  border-right: 1px solid #b2b3b8;
  box-shadow: 1px 2px 10px rgba(100, 100, 100, 0.4);
}

/*/ヘッダー/////////////////////////////////////////////////*/

#header {
  position: relative;
  height: 400px;
  overflow: hidden;
}

#header header {
  width: 100%;
  position: absolute;
  z-index: 1;
}

#header-inner {
  width: 1198px;
  margin: 0 auto;
  z-index: 1;
}

#header-inner h1 {
  font-size: 13px;
  color: #fff;
}

#header-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

#logo {
  align-self: center;
  width: 490px;
}

#logo img {
  width: 100%;
}

#headerinfo {
  align-self: center;
}

#header-tel-button a {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

#header-tel-button a:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

#header-credit-button {
  width: 465px;
  background: #02cafd;
  text-align: center;
  border-radius: 5px;
  margin: 10px 0 0 0;
}

#header-credit-button a {
  display: block;
  width: 100%;
  padding: 10px 5px 5px;
}

#header-credit-button a span {
  display: block;
  color: #fff;
  font-style: italic;
}

#header-movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#header-movie video {
  width: 100%;
}

/*/グローバルナビ/////////////////////////////////////////////////*/

nav {
  position: relative;
  top: 330px;
  height: 72px;
  background: #02cafd;
  margin-bottom: 20px;
  border-top: 1px solid #fff;
}

nav #g-nav {
  clear: both;
  width: 1201px;
  margin: 0 auto;
}

nav #g-nav ul li {
  float: left;
  border-right: 1px solid #fff;
  height: 69px;
}

nav #g-nav ul li:first-child {
  border-left: 1px solid #fff;
  height: 69px;
}

nav #g-nav ul li a {
  display: block;
  text-align: center;
  font-size: 1.1em;
  margin: 0 auto;
  width: 148.8px;
  height: 69px;
  line-height: 1.1;
  color: #fff;
  padding-top: 20px;
}

nav #g-nav ul li a span {
  display: block;
  font-size: 0.5em;
}

nav #g-nav ul li a:hover {
  color: #fff;
  background: #007cd0;
}

.home nav #g-nav ul li.nav-home a,
.schedule nav #g-nav ul li.nav-schedule a,
.cast nav #g-nav ul li.nav-cast a,
.system nav #g-nav ul li.nav-system a,
.event nav #g-nav ul li.nav-event a,
.recruit nav #g-nav ul li.nav-recruit a,
.link nav #g-nav ul li.nav-link a {
  color: #fff;
  background: #007cd0;
}

/*/main/////////////////////////////////////////////////*/

main {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 10px;
}

/*/Topics/////////////////////////////////////////////////////*/

#main-news {
  margin-bottom: 15px;
}

#main-news-inner {
  background: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1172px;
  margin: 0 auto;
}

#main-news-inner h2 {
  background-color: #05cdff;
  font-size: 1.3rem;
  position: relative;
  display: inline-block;
  color: #fff;
  text-indent: 0.5rem;
  padding: 0.5%;
}
#main-news-inner h2:before {
  content: "";
  position: absolute;
  right: -15px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 15px solid #05cdff;
  border-top: 22px solid transparent;
  border-bottom: 21px solid transparent;
}

.news-marquee {
  width: 100%;
  padding: 0.8% 0;
  overflow: hidden;
}

.news-marquee-inner {
  width: 97%;
  overflow: hidden;
  margin: 0 0 0 20px;
}

.news-marquee-text {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-100%);
  }
}

/*/スライドバナー/////////////////////////////////////////////*/

/*/コンテンツ/////////////////////////////////////////////////*/

#main-top {
  clear: both;
  margin: 20px auto;
}

#main-wide {
  clear: both;
  width: 1180px;
}

#main-wrapper {
  width: 780px;
  float: left;
}

/*/見出し/////////////////////////////////////////////////*/

#main-wide-contents h2 {
  height: 82px;
  background: url("../../images/h_bg_w.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  color: #02cafd;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, -2px 2px 0px #fff, 2px -2px 0px #fff, 2px 0px 0px #fff, -2px 0px 0px #fff, 0px 2px 0px #fff, 0px -2px 0px #fff;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.h2_inner {
  font-size: 20px;
  margin: 0 0.5rem;
}

.h2_inner_sub {
  font-size: 12px;
}

#main-wrapper h2,
#main-bottom-twitter h2 {
  height: 82px;
  background: url("../../images/h_bg_l.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  color: #02cafd;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, -2px 2px 0px #fff, 2px -2px 0px #fff, 2px 0px 0px #fff, -2px 0px 0px #fff, 0px 2px 0px #fff, 0px -2px 0px #fff;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#main-side h2 {
  height: 82px;
  background: url("../../images/h_bg_s.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  color: #02cafd;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, -2px 2px 0px #fff, 2px -2px 0px #fff, 2px 0px 0px #fff, -2px 0px 0px #fff, 0px 2px 0px #fff, 0px -2px 0px #fff;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

#main-bottom-contents h2 {
  height: 82px;
  background: url("../../images/h_bg_w.png");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  color: #02cafd;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, -2px 2px 0px #fff, 2px -2px 0px #fff, 2px 0px 0px #fff, -2px 0px 0px #fff, 0px 2px 0px #fff, 0px -2px 0px #fff;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/*/もっと見るボタン /////////////////////////////////////////////////*/

.more-button {
  text-align: center;
  margin-top: 10px;
}

.more-button a {
  display: inline-block;
  background: #02cafd url("/public/images/h_icon.png") no-repeat 15px center;
  background-size: 20px;
  border-radius: 25px;
  text-indent: 35px;
  font-size: 14px;
  font-style: italic;
  color: #fff;
  padding: 0.25rem 1rem 0.25rem 0;
  margin: 0 auto;
}

/*/トップ新着情報/////////////////////////////////////////////////*/

.home #newinfo-area {
  display: block;
  /*height: 441px;*/
  background: url("../../images/h_bg_b.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.home .newinfo-box-inner {
  background: url("/public/images/contents_bg.png") no-repeat right bottom;
  background-size: 200px;
  height: auto;
  padding: 10px;
}

.home .newinfo-box-inner h3 {
  clear: both;
  font-size: 16px;
  background: transparent;
}

.home .newinfo-box-inner h3 a {
  color: #02cafd;
}

.home .newinfo-date {
  font-size: 14px;
  text-align: right;
  margin-right: 10px;
}

.home .newinfo-contents {
  margin-top: 5px;
}

.home .newinfo-image {
  float: left;
  width: 210px;
  height: calc(240 / 180 * 191px);
  background: #bf933a;
  margin: 0 10px 10px 0;
  position: relative;
}

.home .newinfo-image::after {
  content: "";
  display: inline-block;
  background: url("../../images/cast_frame.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home .newinfo-image a {
  display: block;
  position: absolute;
  z-index: 1;
  width: 209px;
  height: 224px;
  overflow: hidden;
}

.home .newinfo-image img {
  width: 100%;
  padding: 32px;
}

.home .newinfo-description {
  margin-right: 5px;
  height: auto;
  overflow: hidden;
}

.home .newinfo-more {
  margin-top: 2em;
  text-align: right;
}

.home .newinfo-box-link {
  line-height: 3;
  text-align: right;
}

.home .newinfo-box-bottom {
  padding: 10px;
}

/*/トップ新人情報/////////////////////////////////////////////////*/

.home #main-side {
  width: 380px;
  float: right;
  margin-left: 20px;
}

.home #newface-box {
  margin-bottom: 20px;
}

.home #newface-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  height: 420px;
  overflow: scroll;
  margin-bottom: 20px;
}

.home #newface-list li {
  width: 44%;
  margin: 3%;
}

.home .newface-image {
  width: 160px;
  height: calc(240 / 180 * 145px);
  background: #bf933a;
  margin: 0 10px 10px 0;
  position: relative;
}

.home .newface-image::after {
  content: "";
  display: inline-block;
  background: url("../../images/cast_frame.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home .newface-image a {
  display: block;
  position: absolute;
  z-index: 1;
  width: 160px;
  height: 170px;
  overflow: hidden;
}

.home .newface-image img {
  width: 100%;
  padding: 25px;
}

.home #newface-list li h3 {
  text-align: center;
  font-size: 14px;
}

.home #newface-list li h3 a {
  display: block;
  color: #000;
}

.home .newface-size {
  display: block;
  font-size: 12px;
}

.home .newface-description {
  font-size: 12px;
  width: 100%;
  height: 1rem;
  overflow: hidden;
  position: relative;
}

.home .newface-description-inner:after {
  content: "";
  white-space: nowrap;
  padding-right: 50px;
}

.home .newface-description-inner {
  margin: 0;
  padding-left: 100%;
  display: inline-block;
  white-space: nowrap;
  -webkit-animation-name: marquee;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: marquee;
  -moz-animation-timing-function: linear;
  -moz-animation-duration: 10s;
  -moz-animation-iteration-count: infinite;
  -ms-animation-name: marquee;
  -ms-animation-timing-function: linear;
  -ms-animation-duration: 10s;
  -ms-animation-iteration-count: infinite;
  -o-animation-name: marquee;
  -o-animation-timing-function: linear;
  -o-animation-duration: 10s;
  -o-animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translate(0%);
  }
  99%,
  to {
    -webkit-transform: translate(-100%);
  }
}

@-moz-keyframes marquee {
  from {
    -moz-transform: translate(0%);
  }
  99%,
  to {
    -moz-transform: translate(-100%);
  }
}

@-ms-keyframes marquee {
  from {
    -ms-transform: translate(0%);
  }
  99%,
  to {
    -ms-transform: translate(-100%);
  }
}

@-o-keyframes marquee {
  from {
    -o-transform: translate(0%);
  }
  99%,
  to {
    -o-transform: translate(-100%);
  }
}

@keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%,
  to {
    transform: translate(-100%);
  }
}

/*/トップ本日出勤の女の子/////////////////////////////////////////////////*/

#attend-box {
  margin-bottom: 20px;
}

#cast-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  height: 100%;
  margin-bottom: 20px;
}

.cast-box {
  position: relative;
  width: 18%;
  margin: 1%;
}

.cast-list-new {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 72px;
  height: 72px;
  z-index: 2;
}

.cast-list-new img {
  width: 100%;
}

.cast-list-pic {
  width: 210px;
  height: calc(240 / 180 * 191px);
  background: #bf933a;
  margin: 0 10px 10px 0;
  position: relative;
}

.cast-list-pic::after {
  content: "";
  display: inline-block;
  background: url("../../images/cast_frame.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cast-list-pic a {
  display: block;
  position: absolute;
  z-index: 1;
  width: 209px;
  height: 224px;
  overflow: hidden;
}

.cast-list-pic img {
  width: 100%;
  padding: 32px;
}

.cast-list-type {
  height: 2rem;
}

.cast-list-type div {
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

.cast_icon1 {
  background: #002367;
}

.cast_icon2 {
  background: #88775b;
}

#cast-list li h3 {
  text-align: center;
  font-size: 14px;
}

#cast-list li h3 a {
  display: block;
  color: #000;
}

.cast-list-size {
  display: block;
  font-size: 12px;
}

.cast-list-description {
  font-size: 12px;
  width: 100%;
  height: 1rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}

.cast-list-description-inner:after {
  content: "";
  white-space: nowrap;
  padding-right: 50px;
}

.cast-list-description-inner {
  margin: 0;
  padding-left: 100%;
  display: inline-block;
  white-space: nowrap;
  -webkit-animation-name: marquee;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: marquee;
  -moz-animation-timing-function: linear;
  -moz-animation-duration: 10s;
  -moz-animation-iteration-count: infinite;
  -ms-animation-name: marquee;
  -ms-animation-timing-function: linear;
  -ms-animation-duration: 10s;
  -ms-animation-iteration-count: infinite;
  -o-animation-name: marquee;
  -o-animation-timing-function: linear;
  -o-animation-duration: 10s;
  -o-animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translate(0%);
  }
  99%,
  to {
    -webkit-transform: translate(-100%);
  }
}

@-moz-keyframes marquee {
  from {
    -moz-transform: translate(0%);
  }
  99%,
  to {
    -moz-transform: translate(-100%);
  }
}

@-ms-keyframes marquee {
  from {
    -ms-transform: translate(0%);
  }
  99%,
  to {
    -ms-transform: translate(-100%);
  }
}

@-o-keyframes marquee {
  from {
    -o-transform: translate(0%);
  }
  99%,
  to {
    -o-transform: translate(-100%);
  }
}

@keyframes marquee {
  from {
    transform: translate(0%);
  }
  99%,
  to {
    transform: translate(-100%);
  }
}

.cast-list-schedule {
  background: #f4f4f4;
  text-align: center;
}

.cast-list-schedule span {
  color: #05cdff;
  font-size: 14px;
}

.cast-list-schedule span:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 300;
  content: "\f017";
  margin-right: 0.1rem;
}

/*/Twitter//////////////////////////////////////////////////////*/

#main-bottom-twitter {
  clear: both;
  width: 100%;
  margin: 0 auto;
}

.main-x-link {
  width: 640px;
  margin: 0 auto 20px auto;
}

.main-x-link img {
  width: 100%;
}

/*
.main-twitter-box {
  width: 100%;
  min-height: 300px;
  border: 1px solid #02cafd;
  padding: 10px;
}

.main-twitter-box iframe {
  height: 250px;
}
*/

/*/リンクバナー/////////////////////////////////////////////////*/

#main-bottom-link {
  margin: 20px auto;
}

.main-link-list li {
  float: left;
  text-align: center;
  margin: 0 5px;
  font-size: 14px;
}

.main-link-list li + li {
  margin-right: 0;
}

.main-link-list li img {
  display: block;
}

.main-link-listlow {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-link-listlow li {
  margin: 5px auto;
}

/*/新着情報一覧/////////////////////////////////////////////////*/

.newinfolist-box {
  clear: both;
  padding: 0;
  margin: 10px 0 40px 0;
}

.newinfo-list {
  border-top: 1px solid #666;
}

.newinfo-list li a {
  display: block;
  position: relative;
  padding: 0px 35px 0px 10px;
  border-bottom: 1px dotted #666;
  text-decoration: none;
  line-height: 3;
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newinfo-list li a:hover {
  background: #05cdff;
}

.newinfo-list li a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  margin: -4px 0 0 0;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.newinfo-list li a span {
  font-size: 13px;
  margin-right: 10px;
}

/*/新着情報/////////////////////////////////////////////////*/

.newinfo-box {
  width: 96%;
  margin: 0 auto 40px auto;
}

.newinfo-box h3 {
  background: #02cafd;
  color: #fff;
  text-indent: 0.5rem;
  margin-bottom: 0.5rem;
}

.newinfo-image {
  width: 480px;
  margin: 0 auto;
}

.newinfo-image img {
  width: 100%;
}

.newinfo-back {
  text-align: center;
  margin-top: 10px;
}

.newinfo-back a {
  display: inline-block;
  background: #02cafd url("/public/images/h_icon.png") no-repeat 15px center;
  background-size: 20px;
  border-radius: 25px;
  text-indent: 35px;
  font-size: 14px;
  font-style: italic;
  color: #fff;
  padding: 0.25rem 1rem 0.25rem 0;
  margin: 0 auto;
}

/*/システム/////////////////////////////////////////////////*/

.system-box {
  width: 96%;
  margin: 0 auto;
}

.system-box h3 {
  color: #fff;
  margin-bottom: 20px;
  background: #02cafd;
  text-indent: 10px;
}

.system-lead {
  width: 780px;
  margin: 0 auto 20px auto;
}

.system-lead p {
  margin-bottom: 1lh;
}

ol.system-guide {
  width: 780px;
  background: #bce2c9;
  padding: 10px;
  margin: 0 auto 20px auto;
}

ol.system-guide li {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 10px;
}

ol.system-guide li:last-child {
  margin-bottom: 0;
}

.system-price {
  width: 500px;
  background: #e0f9ff;
  margin: 0 auto 20px auto;
  font-size: 20px;
  padding: 10px;
  line-height: 2;
}

.system-price.basic {
  font-size: 36px;
}

.system-price.other {
  background: #ffffff;
}

.system-price.option {
  font-size: 18px;
}

.system-price.transport {
  font-size: 13px;
}

.system-price .system-strike {
  font-size: 15px;
  text-decoration: line-through;
}

.system-price dl {
  display: inline-block;
  width: 100%;
  margin-right: 5%;
}

.system-price dl + dl {
  width: 48%;
  margin-right: 0;
}

.system-price dl dt {
  float: left;
  width: 46%;
}

.system-price dl dt span {
  font-size: 20px;
}

.system-price dl dd {
  text-align: right;
  font-weight: bold;
  color: #02cafd;
}

.system-price .system-credit {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

.system-price .system-credit img {
  display: block;
  margin: 0 auto;
}

.system-price .system-txt-price {
  font-weight: bold;
  font-size: 20px;
  color: #02cafd;
}

.system-price .system-txt-sub {
  font-size: 14px;
}

ul.system-service-list {
  width: 720px;
  padding: 10px;
  margin: 0 auto;
}

ul.system-service-list li {
  margin-bottom: 10px;
}

ul.system-service-list-color {
  width: 720px;
  padding: 10px;
  margin: 0 auto;
  color: #792602;
}

ul.system-service-list-color li {
  margin-bottom: 10px;
}

.system-course {
  width: 780px;
  margin: 0 auto 20px auto;
}

.system-course dl dt {
  text-align: center;
  background: #2e7d31;
  color: #fff;
  font-size: 20px;
  line-height: 2;
}

.system-course dl dd {
  background: #e0f9ff;
  font-size: 16px;
  padding: 10px;
  margin-bottom: 10px;
}

.system-prohibited {
  width: 780px;
  background: #e0f9ff;
  margin: 10px auto 20px auto;
  font-size: 20px;
  padding: 10px;
  line-height: 1.2;
}

.system-prohibited ol.system-prohibited-list {
  font-size: 14px;
  margin: 20px;
}

.system-prohibited ol.system-prohibited-list li {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}

.system-prohibited p {
  font-size: 14px;
  margin: 0 auto 20px auto;
}

.system-link {
  margin-bottom: 40px;
}

.system-link .system-hotel-button {
  text-align: center;
}

.system-link .system-hotel-button a {
  display: block;
  width: 240px;
  background: #02cafd;
  text-align: center;
  color: #fff;
  font-size: 16px;
  border-top: 3px solid #e0f9ff;
  line-height: 3;
  margin: 0 auto;
}

.system-link .system-hotel-button a:hover {
  background: #02cafd;
}

#traffic {
  width: 90%;
  margin: 5px auto 20px;
}

#traffic th,
#traffic td {
  font-weight: bold;
  padding: 10px;
}

#traffic td {
  color: #02cafd;
  text-align: right;
}

/*/女の子一覧/////////////////////////////////////////////////*/

.castlist-box {
  clear: both;
}

.castlist-box #cast-list .cast-list-twitter {
  position: absolute;
  bottom: 120px;
  right: 2px;
  width: 36px;
  height: 36px;
}

.castlist-box #cast-list .cast-list-twitter img {
  width: 100%;
}

li.cast_icon1 {
  background: #002367;
}

li.cast_icon2 {
  background: #88775b;
}

#schedule-navi {
  width: 98%;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin: 0 auto 20px auto;
}

#schedule-navi li {
  width: 100%;
  text-align: center;
}

#schedule-navi li a {
  display: block;
  height: 100%;
  background: #02cafd;
  color: #fff;
  font-size: 16px;
  line-height: 2.5;
}

#schedule-navi li a:hover,
#schedule-navi li.select {
  background: #007cd0;
  color: #fff;
  line-height: 2.5;
}

/*/プロフィール/////////////////////////////////////////////////*/

.profile-box {
  padding: 20px;
  margin: 0 auto 20px auto;
}

.profile-box-wrapper {
  display: flex;
  margin-bottom: 20px;
}

.profile-box-left {
  width: 365px;
  margin-right: 20px;
}

.profile-header {
  height: 50px;
}

.profile-header h3 {
  line-height: 2.5;
}

.profile-style-box {
  width: 300px;
  margin-bottom: 10px;
}

.profile-style-list {
  display: flex;
  gap: 1%;
}

.profile-style-list li {
  width: 25%;
  background: #02cafd;
  color: #fff;
  text-align: center;
  font-size: 11px;
  padding: 0.2rem 0;
  position: relative;
  overflow: hidden;
}

.profile-style-list li:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.profile-icon-list {
  float: right;
}

.profile-icon-list li {
  float: left;
  width: 32px;
  height: 32px;
  margin-right: 5px;
  background-repeat: no-repeat;
  text-indent: -9999px;
}

.profile-icon-list li:last-child {
  margin-right: 0;
}

.profile-photo-big {
  width: 300px;
  height: 364px;
  background: #bf933a;
  text-align: center;
  margin-bottom: 5px;
  overflow: hidden;
  position: relative;
}

.profile-photo-big::after {
  content: "";
  display: inline-block;
  background: url("../../images/cast_frame.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.profile-photo-big img {
  width: 100%;
  padding: 33px;
}

.profile-photo-thumb {
  width: 300px;
}

.profile-photo-list {
  display: flex;
  justify-content: space-between;
  gap: 2%;
}

.profile-photo-list li {
  text-align: center;
  border: 1px solid #02cafd;
  margin-bottom: 8px;
  overflow: hidden;
}

.profile-photo-list li img {
  width: 100%;
}

.profile-type-list {
  height: 43px;
  margin-top: 5px;
}

.profile-type-list li {
  width: 23%;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  padding: 2px;
}

.profile-prof-list {
  clear: both;
  background: #02cafd;
}

.profile-prof-list > dt {
  border-top: 2px solid #fff;
  clear: left;
  float: left;
  width: 150px;
  color: #fff;
  font-size: 18px;
  padding: 2px 5px;
}

.profile-prof-list > dd {
  background: #fff;
  padding: 5px;
  border-bottom: 2px solid #02cafd;
  margin-left: 150px;
}

.profile-comment {
  min-height: 443px;
}

.profile-score-list dt {
  float: left;
  width: 120px;
}

.profile-score-list dd:before {
  content: "：";
}

.profile-prof-list .cast-comment {
  height: 274px;
  overflow: auto;
}

.profile-blog-button {
  margin: 5px auto;
  text-align: center;
}

.profile-blog a {
  display: block;
  width: 240px;
  background-color: #28dd18;
  color: #fff;
  padding: 5px;
  margin: 0 auto;
}

.profile-box-bottom {
  clear: both;
}

.profile-sche h4 {
  background: #02cafd;
  color: #fff;
  padding: 2px 5px;
  font-size: 14px;
  margin-bottom: 5px;
}

.profile-sche-list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}

.profile-sche-list dl {
  width: 100%;
  text-align: center;
}

.profile-sche-list dl dt {
  font-size: 16px;
}

.profile-sche-list dl dt.weekd {
  color: #000000;
}

.profile-sche-list dl dt.satd {
  color: #519bdf;
}

.profile-sche-list dl dt.sund {
  color: #e06161;
}

.profile-sche-list dl dt span {
  font-size: 16px;
}

.profile-sche-list dl dd {
  background: #fff;
  height: 30px;
  line-height: 2;
  border-top: 1px solid #999;
}

.profile-diary h4 {
  background: #02cafd;
  color: #fff;
  padding: 2px 5px;
  font-size: 14px;
  margin-bottom: 5px;
}

.profile-diary #diary-list li {
  height: 295px;
}

.profile-back {
  clear: both;
  text-align: center;
  margin-top: 10px;
}

.profile-back a {
  display: inline-block;
  background: #02cafd url("/public/images/h_icon.png") no-repeat 15px center;
  background-size: 20px;
  border-radius: 25px;
  text-indent: 35px;
  font-size: 14px;
  font-style: italic;
  color: #fff;
  padding: 0.25rem 1rem 0.25rem 0;
  margin: 0 auto;
}

/*/ご利用方法///////////////////////////////////////////////////////////*/

.howto-box h3 {
  color: #fff;
  margin-bottom: 20px;
  background: #02cafd;
  text-indent: 10px;
}

.howto-flow {
  margin-bottom: 40px;
}

.howto-flow-list {
  width: 640px;
  margin: 0 auto auto;
}

.howto-flow-list dl {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.howto-flow-list dl dt {
  font-size: 24px;
  color: #02cafd;
}

.howto-flow-list dl dt span {
  font-size: 48px;
}

.howto-link ul {
  width: 640px;
  display: flex;
  justify-content: space-between;
  gap: 5px;
  margin: 0 auto 20px auto;
}

.howto-link ul li {
  width: 100%;
  text-align: center;
}

.howto-link ul li a {
  display: block;
  height: 100%;
  background: #02cafd;
  color: #fff;
  font-size: 16px;
  line-height: 2.5;
}

.howto-link ul li a:hover {
  background: #007cd0;
  color: #fff;
  line-height: 2.5;
}

/*/アクセス///////////////////////////////////////////////////////////*/

.access-box h3 {
  color: #fff;
  margin-bottom: 20px;
  background: #02cafd;
  text-indent: 10px;
}

.access-lead {
  margin: 0 auto 20px auto;
}

.access-lead p {
  margin-bottom: 10px;
}

.access-contents {
  margin-bottom: 40px;
}

.access-contents h4 {
  clear: both;
  font-size: 16px;
  color: #02cafd;
  border-top: 3px double #02cafd;
  border-bottom: 3px double #02cafd;
  padding: 1px 0;
  margin: 10px auto;
  text-indent: 10px;
}

.access-map {
  margin-bottom: 40px;
}

.access-address {
  width: 1100px;
  margin: 0 auto 20px auto;
}

.access-address span {
  font-weight: 800;
  margin-right: 20px;
}

.access-address-list li {
  margin-top: 10px;
}

.access-tel {
  width: 500px;
  background: #577c0b;
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  margin: 0 auto 20px auto;
}

.access-tel span {
  font-size: 24px;
}

.access-spot {
  width: 500px;
  margin: 0 auto 20px auto;
}

.access-spot-list li {
  list-style-type: disc;
  list-style-position: inside;
}

/*/求人/////////////////////////////////////////////////*/

#recruit-wrapper h3 {
  color: #fff;
  margin-bottom: 20px;
  background: #02cafd;
  text-indent: 10px;
}

.recruit-campaign h4 {
  color: #02cafd;
  text-align: center;
  font-size: 26px;
}

.recruit-campaign p {
  text-align: center;
  font-size: 21px;
  margin: 1rem auto;
}

.recruit-campaign p.textstrong {
  margin: 5px;
  font-size: 27px;
}

.recruit-navi {
  margin: 40px auto;
}

.recruit-navi h4 {
  color: #02cafd;
  text-align: center;
  font-size: 26px;
}

.recruit-navi-inner {
  width: 960px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

.recruit-navi-box {
  width: 310px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border-width: 1px;
  border-color: #777;
  border-style: solid;
  margin: 5px;
  padding: 15px;
}

.recruit-navi h5 {
  clear: both;
  width: 95%;
  font-size: 16px;
  color: #02cafd;
  border-top: 3px double #02cafd;
  border-bottom: 3px double #02cafd;
  padding: 1px 0;
  margin: 10px auto;
  text-align: center;
}

.recruit-text {
  height: 160px;
  align-self: flex-start;
  text-align: left;
  line-height: 1.2;
  padding: 5px;
}

.recruit-navi-box img {
  width: 160px;
  align-self: center;
  margin: 0 auto;
}

.recruit-contents table {
  width: 960px;
  margin: 0 auto 80px auto;
}

.recruit-contents th,
.recruit-contents td {
  border: 1px #ffffff solid;
}

.recruit-contents th {
  background: #02cafd;
  font-size: 16px;
  color: #fff;
  border: 1px #ffffff solid;
  padding: 10px;
  width: 150px;
}

.recruit-contents td {
  background: #e0f9ff;
  font-size: 16px;
  padding: 10px;
}

.recruit-contents td p {
  margin-bottom: 0.5rem;
}

.recruit-contents td ul {
  margin-bottom: 1rem;
}

.recruit-contents td li {
  margin-bottom: 0.5rem;
}

.recruit-contents td li:last-child {
  margin-bottom: 0;
}

.recruit-contents td br {
  margin-bottom: 0.5rem;
}

.recruit-contents td .recruit-box {
  width: 60%;
  border: 1px dotted #666;
  font-size: 1.2rem;
  padding: 1rem;
}

/*/お問い合わせ/////////////////////////////////////////////////*/

.ecquiry_form ul.form {
  width: 640px;
  text-align: left;
  font-size: 14px;
  margin: 40px auto;
}

.ecquiry_form ul.form li {
  display: block;
  width: 100%;
  vertical-align: middle;
}

.ecquiry_form ul.form li:first-child {
  width: 100%;
}

.ecquiry_form ul.form li input[type="text"],
.ecquiry_form ul.form li input[type="email"],
.ecquiry_form ul.form li input[type="tel"] {
  width: 100%;
  height: 40px;
  border-radius: 2px;
  border: solid 1px #dcdcdc;
  padding-left: 10px;
  font-size: 14px;
  background: #fff;
}

.ecquiry_form ul.form li a.form {
  width: 200px;
  height: 40px;
  display: inline-block;
  border-radius: 2px;
  border: none;
  font-size: 15px;
  margin-bottom: 20px;
  color: #000;
  background: #dcdcdc;
  line-height: 40px;
}

.ecquiry_form ul.form li input[type="submit"],
.ecquiry_form ul.form li input[type="button"] {
  width: 200px;
  height: 40px;
  border-radius: 2px;
  border: none;
  font-size: 14px;
  margin-bottom: 20px;
}

.ecquiry_form ul.form li select {
  -moz-appearance: normal;
  -webkit-appearance: normal;
  width: 100%;
  height: 40px;
  border-radius: 2px;
  color: #666;
  font-size: 14px;
  background: #fff;
  border: solid 1px #dcdcdc;
  padding-left: 10px;
}

.ecquiry_form ul.form li option {
  width: 100%;
  padding: 20px 0px 20px 20px;
}

.ecquiry_form ul.form li textarea {
  width: 100%;
  height: 150px;
  border-radius: 2px;
  border: none;
  font-size: 14px;
  background: #fff;
  border: solid 1px #dcdcdc;
  padding: 10px;
}

.ecquiry_form ul.form li select.w25 {
  width: 25%;
  margin: 0px auto;
}

.ecquiry_form ul.form li span.required {
  color: #ff0000;
}

.ecquiry_form ul.form li input[type="text"],
.ecquiry_form ul.form li input[type="email"],
.ecquiry_form ul.form li input[type="tel"] {
  width: 100%;
  height: 40px;
  border-radius: 2px;
  border: solid 1px #dcdcdc;
  font-size: 14px;
  background: #fff;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto auto;
  padding-left: 10px;
}

.ecquiry_form ul.form_result {
  border-bottom: solid 1px #dcdcdc;
  text-align: left;
  font-size: 14px;
  color: #666;
}

.ecquiry_form ul.form_result li {
  padding: 15px 0px 15px 0px;
}

.ecquiry_form ul.form_result li:first-child {
  width: 30%;
  text-align: center;
  border-right: solid 1px #dcdcdc;
}

.ecquiry_form ul.form_result li:nth-of-type(2) {
  padding-left: 20px;
}

.ecquiry_form .ecquiry_button input[type="button"],
.ecquiry_form .ecquiry_button input[type="submit"] {
  display: block;
  width: 120px;
  height: 45px;
  line-height: 1.8;
  text-align: center;
  background: #02cafd;
  text-align: center;
  color: #fff;
  border-bottom: 2px solid #2f2765;
  border-radius: 4px;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  margin: 20px auto;
}

/*/リンク///////////////////////////////////////////////////////////*/

.link-lead {
  width: 780px;
  margin: 0 auto 40px auto;
}

.link-info-box {
  width: 780px;
  margin: 0 auto;
}

.link-info-list dd + dt {
  font-size: 16px;
}

.link-info-list dd {
  margin: 0 0 5px 0;
}

.link-info-list dd textarea {
  width: 100%;
  border: solid 1px #aaa;
  padding: 10px;
  margin-bottom: 40px;
}

.link-list-box {
  margin-bottom: 40px;
}

.link-list-list {
  width: 780px;
  margin: 0 auto;
}

.link-list-list li {
  margin: 10px 14px;
  display: inline-block;
}

/*/トップへ戻るボタン/////////////////////////////////////////////////*/

#pageTop {
  display: block;
  position: fixed;
  bottom: 40px;
  right: 20px;
  padding: 5px 15px;
  background: #02cafd;
  text-align: center;
  color: #fff;
  font-size: 16px;
  z-index: 2;
}

#pageTop:hover {
  background: #007cd0;
}

/*/フッター/////////////////////////////////////////////////*/

footer {
  background-color: #93e9ff;
}

#footer-wrapper {
  width: 1198px;
  background-image: url("../../images/logo.png");
  background-position: left 65px;
  background-repeat: no-repeat;
  background-size: 160px;
  margin: 0 auto;
}

#footer-navi {
  margin: 20px auto;
  text-align: center;
}

#footer-navi li {
  display: inline;
  padding: 0 5px 0 10px;
  border-left: 1px solid #1a1a1a;
  font-size: 14px;
}

#footer-navi li:first-child {
  border-left: none;
}

#footer-navi li a {
  color: #1a1a1a;
}

#footer-shopinfo {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

#footer-shopinfo .shopinfo-sub {
  font-size: 12px;
  margin-bottom: 10px;
}

#footer-copyright {
  text-align: center;
  color: #1a1a1a;
  line-height: 2;
}

/*/コロナ対策/////////////////////////////////////////////////*/

.covid19-contents {
  width: 960px;
  font-size: 24px;
  margin: 0 auto 1rem auto;
}

.covid19-list li {
  list-style-type: decimal;
  margin: 0 auto 2rem auto;
}

/*/イベント/////////////////////////////////////////////////*/

#newinfo-wrapper h4 {
  border-bottom: 1px solid #02cafd;
  margin-bottom: 20px;
}

/*/アプリ割/////////////////////////////////////////////////*/

.appli_list {
  width: 640px;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

.appli_list dl {
  align-self: center;
  text-align: center;
  width: 240px;
}

.appli_list dt img {
  height: 60px;
  width: auto;
}

.appli_list dd img {
  width: 100%;
}

/*/写メ日記/////////////////////////////////////////////////*/

#diary-list {
  overflow: hidden;
  margin: 10px auto 20px;
}

#diary-list li {
  width: 19%;
  height: 315px;
  margin: 0.5% 0.5%;
  overflow: hidden;
  float: left;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  background-size: auto;
  background-size: auto;
}

#diary-list li .ph {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

#diary-list li article {
  padding: 5px;
  text-align: center;
  color: #222222;
}

#diary-list li article h3 {
  font-size: 1rem;
  line-height: 1.2;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#diary-list li article .diary-name {
  font-size: 0.8rem;
}

#diary-list li article .diary-post {
  font-size: 0.8rem;
}

#diary-list li article .diary-description {
  font-size: 1rem;
  width: 100%;
  height: 1.5rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
}

#diary-list li article .diary-description-inner:after {
  content: "";
  white-space: nowrap;
  padding-right: 50px;
}

#diary-list li article .diary-description-inner {
  margin: 0;
  padding-left: 100%;
  display: inline-block;
  white-space: nowrap;
  -webkit-animation-name: marquee;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-name: marquee;
  -moz-animation-timing-function: linear;
  -moz-animation-duration: 10s;
  -moz-animation-iteration-count: infinite;
  -ms-animation-name: marquee;
  -ms-animation-timing-function: linear;
  -ms-animation-duration: 10s;
  -ms-animation-iteration-count: infinite;
  -o-animation-name: marquee;
  -o-animation-timing-function: linear;
  -o-animation-duration: 10s;
  -o-animation-iteration-count: infinite;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

/*#diarydetail*/
#diary-detail-data {
  display: flex;
}

#diary-detail-data .ph {
  margin-right: 20px;
}

#diary-detail-data h3 {
  background: #02cafd;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 5px;
  margin-bottom: 5px;
}

#diary-detail-data .diary-detail-name {
  text-align: right;
}

#diary-detail-data .diary-detail-post {
  text-align: right;
}

#diary-detail-data .diary-detail-description {
  text-align: left;
}
