@charset "utf-8";
/*
Theme Name: yurumero
Author: erikori
Author URI:
Description:
*/
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(./common.css);

/********************************************************************************
HTMLエレメント
********************************************************************************/
html {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}

body {
  color: #000;
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
  font-size: 100%;
  font-weight: 400;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  margin: 0;
  width: 100%;
}

a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a img:hover {
  opacity: 0.7;
  zoom: 1;
}

/********************************************************************************
色
********************************************************************************/
.yellow {
  color: #ffff00 !important;
}

.green {
  color: #009944 !important;
}

.pink {
  color: #e4007f !important;
}

.softpink {
  color: #f76272 !important;
}

.red {
  color: #FF0000 !important;
}

/********************************************************************************
SPヘッダー
********************************************************************************/
.sp-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 56px;
  padding: 0 25px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.sp-header_logo-img {}

@media screen and (min-width:768px) {
  .sp-header {
    display: none;
  }
}

/********************************************************************************
SPメニュー（オープン後）
********************************************************************************/
.sp-menu {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  left: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: fixed;
  right: 0;
  -webkit-transform: translate(0, -100vh);
  transform: translate(0, -100vh);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100vw;
  max-width: 400px;
  z-index: 9999;
}

.sp-menu.open {
  -webkit-transform: translate(0);
  transform: translate(0);
}

.sp-menu_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 27vw;
  max-height: 108px;
  /* 480px * 27vw */
}

.sp-menu_button-img {
  height: 27vw;
  max-height: 108px;
  /* 480px * 27vw */
  width: 20vw;
  max-width: 80px;
  /* 480px * 20vw */
}

.sp-menu_logo-img {
  height: 27vw;
  max-height: 108px;
  /* 400px * 27vw */
  width: 80vw;
  max-width: 320px;
  /* 400px * 80vw */
}

.sp-menu_navi {
  background: #FFF;
  border-top: 1px solid #CCC;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
}

.sp-menu_navi li {
  display: inline-block;
  vertical-align: middle;
}

.sp-menu_navi a {
  background-size: 8px 7px;
  color: #343434;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  letter-spacing: 0.06em;
  text-align: center;
}

.sp-menu_navi a {
  border-bottom: 1px solid #CCC;
}

.sp-menu_bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #000;
  height: 44vw;
  max-height: 176px;
  /* 400px * 44vw */
  width: 100vw;
  max-width: 400px;
}

.sp-menu_bottom p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.sp-menu_bottom_btn {
  background: #FFF;
  border: 1px solid #000;
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 50px;
  height: 50px;
  margin: 10px auto;
  text-align: center;
  width: 200px;
}

/* スクロール禁止用 */
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

a img.sp-menu_bottom_tel:hover {
  opacity: 1;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
  .sp-menu {
    display: none;
  }
}

/********************************************************************************
PCスティッキー
********************************************************************************/
.sticky-pc {
  background: #FFF;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 9999;
}

.header-pc {
  /*
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  */
  height: 85px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0 auto;
  max-width: 1200px;
  vertical-align: middle;
  width: 100%;
}

.header-pc_logo {
  display: block;
  height: 56px;
  margin: 0 0 0 40px;
  /* margin: 0 auto; */
  padding: 14.5px 0;
  width: 249px;
}

.header-pc_navi {
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  width: 100%;
}

.header-pc_navi li {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 60px;
  margin: 0 28px;
  text-align: center;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  -webkit-transform: scale(1.1, 1);
  transform: scale(1.1, 1);
}

.header-pc_navi li a {
  display: block;
  color: #FFF;
  font-size: 10px;
  position: relative;
  -webkit-transition: all 0.3s;
  -webkit-transform: scale(1.0, 1);
  transform: scale(1.0, 1);
  transition: all 0.3s;
}

.header-pc_navi li:last-child a {
  color: #face09;
}

.header-pc_navi li a:hover {
  color: #face09;
}

.header-pc_tel {
  display: inline-block;
  float: right;
  height: 42px;
  padding: 21.5px 0;
  margin-right: 40px;
  width: 272px;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
  .sticky-pc {
    display: block;
  }
}

@media screen and (min-width:1224px) {
  .header-pc_logo {
    margin: 0 auto
  }

  .header-pc_tel {
    margin-right: 0;
  }

  .header-pc_navi li {
    margin: 0 28px;
  }
}

/********************************************************************************
スライドショー
********************************************************************************/
.slide_wrap {
  margin-top: 56px;
  position: relative;
}

.slide_wrap img {
  height: 66vw;
  width: 100vw;
}

.slide_shadow_left, .slide_shadow_right {
  background: #000;
  display: none;
  opacity: 0.8;
}

.login {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.login:hover {
  cursor: pointer;
}

li.login:hover {
  opacity: 0.7;
}

@media screen and (min-width:768px) {
  .slide_wrap {
    height: 400px;
    margin-left: calc((100% - 2400px) * 0.5);
    margin-top: 145px;
    width: 2400px;
  }

  .slide_wrap img {
    height: 400px;
    width: 600px;
  }

  .slide_shadow_left, .slide_shadow_right {
    display: block;
    height: 400px;
    position: absolute;
    top: 0;
    width: 600px;
    z-index: 1;
  }

  .slide_shadow_left {
    left: 300px;
  }

  .slide_shadow_right {
    right: 300px;
  }
}

@media screen and (min-width:1224px) {
  .slide_shadow_left {
    left: 0;
  }

  .slide_shadow_right {
    right: 0;
  }
}

/********************************************************************************
info-group
********************************************************************************/
.info-group_pc {
  display: none;
}

.info-group_line {
  background: #d7d7d7;
  display: none;
  width: 1px;
}

.bnr01 {
  text-align: center;
}

.bnr01_sp {
  width: 100%;
}

.bnr01_pc {
  max-width: 100%;
  width: 874px;
}

.infomation {
  padding: 30px 25px;
}

.info_title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  -webkit-transform: scale(1.1, 1);
  transform: scale(1.1, 1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.info_title span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  margin-top: 6px;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.info_line {
  background: #d7d7d7;
  display: none;
}

.info_txt {
  font-size: 10px;
  line-height: 23px;
  height: 200px;
  margin-top: 30px;
  overflow-y: auto;
  word-wrap: break-word;
  -ms-overflow-style: none;
  scrollbar-width: none;
  text-align: justify;
  text-justify: inter-ideograph;
}

.info_txt::-webkit-scrollbar {
  overflow: hidden;
  width: 0px;
  background: #fafafa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.info_txt::-webkit-scrollbar:horizontal {
  height: 1px;
}

.info_txt::-webkit-scrollbar-button {
  display: none;
}

.info_txt::-webkit-scrollbar-piece {
  background: #eee;
}

.info_txt::-webkit-scrollbar-piece:start {
  background: #eee;
}

.info_txt::-webkit-scrollbar-thumb {
  background: #d7d7d7;
}

.info_txt::-webkit-scrollbar-corner {
  background: #d7d7d7;
}

.info_txt:hover {
  -ms-overflow-style: auto;
  scrollbar-width: auto;
}

.info_txt:hover::-webkit-scrollbar {
  width: 4px;
}

@media screen and (min-width:768px) {
  .info-group {
    margin: 40px auto 0;
  }
}

@media screen and (min-width:1224px) {
  .info-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1200px;
  }

  .info-group_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .info-group_line {
    display: block;
  }

  .infomation {
    border: 1px solid #d7d7d7;
    padding: 30px;
    width: 186px;
  }

  .info_line {
    background: #d7d7d7;
    display: block;
    height: 1px;
    margin: 20px 0;
    width: 186px;
  }

  .info_txt {
    font-size: 11px;
    line-height: 22px;
    height: 124px;
    margin-top: 0;
    width: 186px;
  }

  .bnr01 {
    width: 874px;
  }
}

/********************************************************************************
contents-title、contents-subtitle
********************************************************************************/
.contents-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  -webkit-transform: scale(1.1, 1);
  transform: scale(1.1, 1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.contents-subtitle {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 15px;
  margin-top: 6px;
  margin-bottom: 16px;
}

@media screen and (min-width:768px) {
  .contents-title {
    font-size: 20px;
    margin-left: 15px;
  }

  .contents-subtitle {
    font-size: 12px;
    margin-top: 8px;
    margin-left: 15px;
  }
}

/********************************************************************************
トップページ　New girls
********************************************************************************/
.new-girls {
  padding: 30px 25px 10px;
  position: relative;
}

@media screen and (min-width:1224px) {
  .new-girls {
    margin: 40px auto;
    padding: 0;
    width: 1230px;
  }

  .new-girls_btn_group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0px;
    position: absolute;
    top: 20px;
    width: 100%;
  }

  .new-girls_btn01, .new-girls_btn02, .new-girls_btn03 {
    background: #cfcfcf;
    border-radius: 18px;
    height: 18px;
    margin: 0 12px;
    width: 18px;
  }

  .new-girls_btn01:hover, .new-girls_btn02:hover, .new-girls_btn03:hover {
    cursor: pointer;
  }

  .new-girls .active {
    background: #000;
  }
}

/********************************************************************************
トップページ　NEW FACE
********************************************************************************/
.new-face {
  margin-top: 0px;
  text-align: center;
}

.new-face .contents-title::before {
  margin-top: 20px;
}

.new-face_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.new-face_group_next,
.new-face_group_prev {
  display: none;
}

.new-face_content {
  margin-bottom: 10px;
  width: calc((100vw - 70px) * 0.5);
}

.new-face_content_img_wrap {
  font-size: 0;
  overflow: hidden;
  position: relative;
}

.new-face_content_img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition-duration: 0.75s;
  transition-duration: 0.75s;
  height: calc((100vw - 70px) * 0.67);
  width: calc((100vw - 70px)*0.5);
}

/*
.new-face_content_img_wrap:hover .new-face_content_img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
*/
/*

a img.new-face_content_img:hover {
  filter: alpha(opacity=100);
  opacity: 1;
  zoom: 1;
}
*/
.new-face_content_img_wrap:hover img {
  opacity: 0.85;
}

.new-face_content_img_wrap {
  position: relative;
}

.new-face_content_img_wrap::before {
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.new-face_content_img_wrap:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.new-face_profile {
  background: rgb(255, 255, 255, 0.7);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  position: absolute;
  width: calc((100vw - 70px) * 0.5);
}

.new-face_content_name {
  font-size: 10px;
  line-height: 18px;
  text-align: center;
}

.new-face_content_size {
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 18px;
  text-align: center;
  white-space: nowrap;
  -webkit-transform-origin: center;
  transform-origin: center;
  bottom: 0;
}

.new-face_bottom_btn {
  margin: 20px 0 0;
}

.new-face_content_sp-none {
  display: none;
}

@media screen and (min-width:940px) {
  .new-face {
    margin-top: 70px;
  }

  .new-face_group {
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    overflow: hidden;
    margin: 25px 0 0;
    position: relative;
    width: 1230px;
  }

  .new-face_content_img_wrap {}

  .new-face_group_button {
    position: relative;
  }

  .new-face_group_next {
    left: calc(50% - 710px);
    position: absolute;
    top: -180px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .new-face_group_prev {
    right: calc(50% - 710px);
    position: absolute;
    top: -180px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .new-face_group_next:hover,
  .new-face_group_prev:hover {
    cursor: pointer;
    opacity: 0.7;
  }

  .new-face_content {
    margin: 15px;
    width: 216px;
  }

  .new-face_content_pc-none {
    display: none;
  }

  .new-face_content_img_wrap {
    width: 216px;
  }

  .new-face_content_img {
    height: 287px;
    width: 216px;
  }

  .new-face_profile {
    height: 80px;
    width: 216px;
  }

  .new-face_content_name {
    font-size: 11px;
    line-height: 18px;
  }

  .new-face_content_size {
    font-size: 11px;
    line-height: 18px;
    margin-top: 4px;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .new-face_bottom_btn {
    margin: 24px 0 20px;
  }
}

@media screen and (min-width:1224px) {
  .new-face_content_sp-none {
    display: block;
  }

  .new-face_content_pc-none {
    display: none;
  }
}

/********************************************************************************
button
********************************************************************************/
.btn,
button.btn {
  display: block;
  font-size: 13px;
  /*  font-weight: 600; */
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 60px;
  position: relative;
  text-align: center;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  z-index: 2;
  overflow: hidden;
}

a.btn_black-white {
  color: #000;
  border: 1px solid #000;
}

a.btn_white-black {
  color: #FFF;
  background: #000;
  border: 1px solid #000;
}

a.btn_black-white:hover {
  background: #000;
  color: #FFF;
}

a.btn_white-black:hover {
  background: #FFF;
  color: #000;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: .4s ease-in-out;
  /*  -webkit-transform: scale(0);*/
  /*          transform: scale(0);*/
  transition: .4s ease-in-out;
}

.btn:hover::after {
  -webkit-transform: scale(2) rotate(180deg);
  transform: scale(2) rotate(180deg);
  opacity: 0;
}

.btn_black-white:hover::after {
  background-color: #000;
}

.btn_white-black:hover::after {
  background-color: #FFF;
}

.btn.btn_round::before,
button.btn.btn_round::before {
  border-radius: 30px 0 0 30px;
}

.btn-group .btn {
  margin-bottom: 20px;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {

  .btn,
  button.btn {
    font-size: 13px;
    line-height: 80px;
    width: 300px;
  }

  .btn-group {
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 40px auto;
    width: 640px;
  }

  .btn-group .btn {
    margin-bottom: 0;
  }
}

/********************************************************************************
bnr02
********************************************************************************/
.bnr02 img {
  width: 100%;
}

@media screen and (min-width:768px) {
  .bnr02 {
    text-align: center;
  }

  .bnr02 img {
    width: 800px;
  }
}

/********************************************************************************
schedule
********************************************************************************/
.schedule {
  padding: 30px 25px 10px;
}

.schedule_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack:
    -ms-flex-wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1230px;
  width: 100%;
}

.schedule .new-face_content_size {
  line-height: 14px;
}

@media screen and (min-width:940px) {
  .schedule_group {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (min-width:1224px) {
  .schedule {
    margin: 40px auto;
    padding: 0;
    width: 1230px;
  }

  .schedule .new-face_content_img_wrap {
    margin: 15px;
  }

  .new-face_content_size {
    line-height: 20px;
  }

  .schedule .btn-group {
    margin-top: 25px;
  }
}

/********************************************************************************
footer
********************************************************************************/
footer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 230px;
}

footer img {
  max-width: calc(100% - 50px);
}

@media screen and (min-width:768px) {
  footer {
    background: #000;
    height: 280px;
  }
}

/********************************************************************************
固定ページ共通
********************************************************************************/
.single_page {
  margin: 30px 25px;
}

@media screen and (min-width:1030px) {
  .single_page {
    margin: 58px auto;
    padding: 0;
    width: 1030px;
  }

  .single_page p {
    margin: 0 15px;
  }
}

/********************************************************************************
blue-table
********************************************************************************/
.blue-table {
  letter-spacing: 0.14em;
  margin: 25px 0 0;
  width: 100%;
}

.blue-table tr {
  border-bottom: 1px solid #00b7ee;
}

.blue-table th {
  color: #00b7ee;
  font-size: 13px;
  font-weight: 400;
  line-height: 13px;
  padding: 14px 20px 0 0;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
  min-width: 90px;
}

.blue-table td {
  font-size: 10px;
  display: block;
  line-height: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
  padding: 10px 0;
  width: 100%;
}

.blue-table td.left {
  padding: 10px 0 4px;
}

.blue-table td.right {
  padding: 0 0 10px;
  text-align: right;
  white-space: nowrap;
}

.blue-table td.big {
  font-size: 12px;
  letter-spacing: 0em;
}

.hotel_txt {
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 20px;
  margin-top: 26px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.blue-table span {
  color: #FF0000;
  margin-left: 20px;
}

@media screen and (min-width:768px) {
  .blue-table {
    margin: 30px 15px 0;
    max-width: 1200px;
    width: calc(100% - 30px);
  }

  .blue-table th {
    border-bottom: 1px solid #00b7ee;
    font-size: 26px;
    line-height: 26px;
    padding: 40px 0 0;
    width: 250px;
  }

  .blue-table-system th {
    padding: 54px 0 0;
  }

  .blue-table td {
    display: table-cell;
    font-size: 13px;
    line-height: 27px;
    min-height: 100px;
    padding: 36px 0;
    vertical-align: middle;
    width: auto;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .blue-table-system td {
    padding: 50px 0;
  }

  .blue-table td.left {
    padding: 36px 0;
  }

  .blue-table td.right {
    padding: 36px 0;
  }

  .blue-table td.price {
    min-height: 75px;
    padding: 24px 0;
  }

  .blue-table td.comment {
    min-height: 75px;
    padding: 24px 0 50px;
  }

  .blue-table td.big {
    font-size: 20px;
  }

  p.hotel_txt {
    font-size: 13px;
    line-height: 27px;
    margin-top: 52px;
  }
}

/********************************************************************************
girlsアーカイブ
********************************************************************************/
.archive_page {
  margin: 30px 25px;
}

footer {
  margin-top: 50px;
}

@media screen and (min-width:1030px) {
  .archive_page {
    margin: 58px auto;
    padding: 0;
    width: 1230px;
  }

  footer {
    margin-top: 75px;
  }
}

/********************************************************************************
投稿ページ（GIRLS）
********************************************************************************/
.single_right {
  margin: 30px auto 0;
  text-align: left;
  width: 100%;
}

.single_img-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto 0;
  /* width: 86vw; */
}

.single_img-group_01-wrap {
  width: 100%;
}

.single_img-group_01 {
  width: 100%;
}

.single_img-group_thumbnail-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single_img-group_thumbnail-wrap img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 22%;
}

.single_img-group_thumbnail-wrap img:not(:last-child) {
  margin: 0 4% 0 0;
}

.single_img-group_thumbnail-wrap img:hover {
  cursor: pointer;
  opacity: 0.7;
}

.single_right_table {
  font-size: 10px;
  letter-spacing: 0.1em;
  margin: 30px 0 0;
}

.single_right_table th {
  color: #6c6c6c;
  font-weight: 500;
  padding: 10px 0;
  width: 100px;
}

hr {
  border-top: 1px solid #000;
  margin: 20px 0;
}

.single_comment {
  color: #6c6c6c;
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
}

.single_shedule {
  border-left: 1px solid #6c6c6c;
  table-layout: fixed;
  margin: 20px auto;
  width: 100%;
}

.single_shedule th {
  border-right: 1px solid #6c6c6c;
  color: #6c6c6c;
  font-size: 10px;
    padding-top: 15px;
}

.single_shedule td {
  border-right: 1px solid #6c6c6c;
  font-size: 14px;
    line-height: 14px;
  padding: 10px 0 15px;
  text-align: center;
}

.pc-table-cell {
  display: none;
}

.single_shedule_pc {
  display: none;
}

@media screen and (min-width:768px) {
  .single_left-right-wrap {
    margin: 20px 15px;
  }

  .single_right_table {
    font-size: 14px;
    margin: 30px 35px 0;
  }

  .single_right_table th {
    padding: 15px 0;
    width: 150px;
  }

  .single_right_table td {
    padding: 15px 0;
  }

  hr {
    margin: 20px auto 30px;
  }

  p.single_comment {
    font-size: 12px;
    line-height: 26px;
    margin: 0 30px;
  }

  .single_shedule {
    margin: 30px auto;
    width: calc(100% - 30px);
  }

  .single_shedule th {
    padding-top: 20px;
  }

  .single_shedule td {
    padding: 10px 0 20px;
  }
}

@media screen and (min-width:1030px) {
  .single_left-right-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px 15px;
  }

  .single_right {
    margin: 0;
    width: 563px;
  }

  .single_img-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    width: 380px;
  }

  .single_img-group_01-wrap {
    margin-right: 40px;
    height: 500px;
    width: 417px;
  }

  .single_img-group_01 {
    height: auto;
    width: 417px;
  }

  .single_img-group_thumbnail-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .single_img-group_thumbnail-wrap img {
    height: 166px;
    width: 125px;
  }

  .single_img-group_thumbnail-wrap img:not(:last-child) {
    margin: 0 20px 0 0;
  }

  .single_right_table {
    font-size: 14px;
    margin: 45px 35px 0;
  }

  .single_shedule {
    margin: 55px auto;
  }

  .pc-table-cell {
    display: table-cell;
  }
}

/********************************************************************************
アーカイブページ（GIRLS）
********************************************************************************/
.contents-title::before {
  margin-top: 20px;
}

.girls_group {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow: hidden;
  margin: 20px auto 0;
  width: 348px;
}

.girls_group .new-face_content {
  margin-bottom: 20px;
}

@media screen and (min-width:768px) {
  .contents-title::before {
    margin-top: 40px;
  }

  .girls_group {
    margin: 40px auto 0;
    width: 816px;
  }

  .girls_group .new-face_content {
    margin-bottom: 40px;
  }
}

@media screen and (min-width:1020px) {
  .girls_group {
    width: 1020px;
  }
}

/********************************************************************************
固定ページ　SCHEDULE
********************************************************************************/
.tabbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tab {
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 40px;
  margin: 0 0 20px 0;
  text-align: center;
  width: calc((100% - 4px) / 3);
}

.tab00 {
  border: 1px solid #000;
}

.tab01 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.tab02 {
  border: 1px solid #000;
}

.tabbox .dummy {
  width: calc(100%);
}

.tab:hover {
  cursor: pointer;
}

input:checked+.tab {
  color: #FFF;
  background-color: #000;
}

.tabbox input {
  display: none;
}

.tabcontent {
  display: none;
}

#tabcheck00:checked~#tabcontent00 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: show 0.5s linear 0s;
  animation: show 0.5s linear 0s;
}

#tabcheck01:checked~#tabcontent01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: show 0.5s linear 0s;
  animation: show 0.5s linear 0s;
}

#tabcheck02:checked~#tabcontent02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: show 0.5s linear 0s;
  animation: show 0.5s linear 0s;
}

#tabcheck03:checked~#tabcontent03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: show 0.5s linear 0s;
  animation: show 0.5s linear 0s;
}

#tabcheck04:checked~#tabcontent04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: show 0.5s linear 0s;
  animation: show 0.5s linear 0s;
}

#tabcheck05:checked~#tabcontent05 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: show 0.5s linear 0s;
  animation: show 0.5s linear 0s;
}

#tabcheck06:checked~#tabcontent06 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: show 0.5s linear 0s;
  animation: show 0.5s linear 0s;
}

@-webkit-keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (min-width:768px) {
  .tabbox {
    margin: 35px 0 0;
  }

  .tab {
    margin: 0 0 0 -1px;
    width: 105px;
  }

  .tab00 {
    margin: 0 0 15px 15px;
  }

  .tab01 {
    margin: 0 0 15px 0;
  }

  .tab02 {
    margin: 0 0 15px 0;
  }
}
