@charset "utf-8";

/*
Theme Name: Sydney Child
Theme URI: http://athemes.com/theme/sydney
Author: aThemes
Author URI: http://athemes.com
Template: sydney
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sydney
*/

/*_flexContainer設定_*/
.flex-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-con_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-con_c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*_flexContainer設定_PcRow-SpCol_*/
.flex-con_r-c {
  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-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media only screen and (min-width : 769px) {
  .flex-con_r-c {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;

  }
}

/*_flex設定_PcCol-SpRow_*/
.flex-con_c-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;

  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media only screen and (min-width : 769px) {
  .flex-con_c-r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*_flex設定_wrap nowrap*/
.flex_wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*_flex設定_nowrap*/
/*※デフォルト設定*/
.flex_nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*_flex設定_space-between 最初と最後のアイテムは端に、残りは等間隔*/
.flex_space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/*_flex設定_space-around 全てのアイテムは等間隔*/
.flex_space-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/*_flex設定_center 全てのアイテムは中央*/
.flex_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*_flex設定_left 全てのアイテムは左*/
.flex_left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/*_flex設定_right 全てのアイテムは左*/
.flex_right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

/*_flex設定_stretch アイテムはflexコンテナの高さ（または幅）いっぱいに配置*/
/*※デフォルト設定*/
.flex_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/*_flex設定_alignCenter flexコンテナのクロス軸の中央に配置*/
.flex_alignMiddle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*_flex設定_alignCenter flexコンテナのクロス軸の上部始点に配置*/
.flex_alignTop {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/*_flex設定_alignCenter flexコンテナのクロス軸の下部終点に配置*/
.flex_alignBottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}



/*女の子一覧*/
#castlist-photo-box {
  list-style-type: none;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 1px;
  margin-bottom: 10px;
}

#castlist-photo-box:after {
  content: "";
  clear: both;
  display: block;
}

#castlist-photo-box li {
  width: 32%;
  float: left;
}

#castlist-photo-box li a {
  display: block;
  margin: 22px;
  text-decoration: none;
  color: #fff;
}

#castlist-photo-box img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

#castlist-text-box {
  background-color: rgb(130, 115, 93);
  padding: 3px;
  height: 58px;
}

#castlist-photo-box-inner {
  position: relative;
  height: 255px;
  overflow: hidden;
}

/*女の子一覧新人アイコン表示*/
#castlist-photo-box-inner .cast-newface {
  position: absolute;
  top: 5px;
  left: 5px;
}

#castlist-photo-box-grade {
  position: absolute;
  top: 5px;
  left: 7px;
}

#castlist-photo-box-grade span {
  color: #E91E63;
  font-weight: bold;
}

#cadtlist-cast-name {
  font-size: 16px;
  line-height: 18px;
}

#cadtlist-cast-rookie {
  color: green;
  font-weight: bold;
}

#castlist-text-box p {
  margin: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#castlist-text-box p+p {
  margin-top: 0px;
  font-size: 13px;
  line-height: 17px;
}

/*
**女の子プロフィール
*/
.profile-box:after {
  content: "";
  clear: both;
  display: block;
}

.profile-photo-box {
  float: left;
  padding-right: 15px;
  width: 45%;
  box-sizing: border-box;
}

.profile-photo-box:after {
  content: "";
  clear: both;
  display: block;
}

.profile-photo-box .photo-top>img {
  display: block;
  margin: 0 auto;
}

.profile-text-box {
  float: left;
  box-sizing: border-box;
  width: 55%;
}

#mainvideo {
  position: relative;
  width: 100%;
  text-align: center;
}

/*
**女の子プロフィール 写真一覧表示設定
*/
#photo-boxlist li:nth-child(5) {
  margin-bottom: 10px;
}

/*
**写真並び
*/
#photo-boxlist {
  list-style-type: none;
  padding: 0;
  margin-bottom: 10px;
}

#photo-boxlist:after {
  content: "";
  clear: both;
  display: block;
}

.profile-photo-box ul {
  margin: 0 !important;
}

#photo-boxlist li {
  width: 20%;
  float: left;
}


#photo-boxlist a {
  display: block;
  margin: 2px;
  text-decoration: none;
  color: #333;
}

#primary-krc h4,
#primary-krc h3 {
  padding: 0.5em;
  /*文字周りの余白*/
  color: #fff;
  /*文字色*/
  background: #000;
  /*背景色*/
  border-left: solid 5px #c5ab5a;
  /*左線（実線 太さ 色）*/
  font-size: 17px !important;
  margin: 35px 0 10px !important;
}

.krc_calendar {
  position: relative;
  width: 100%
}

.krc_calendar dl {
  float: left;
  width: 16%;
  border: 0px;
  padding: 0em;
  text-align: center;
  border: solid 1px #eee;
  height: 64px;
}

.krc_calendar dl dt {
  font-size: 0.8em;
  text-align: center;
  border-bottom: solid 1px #eee;
  background-color: #eee;
}

.krc_calendar dl dt dd {
  font-size: 0.8em;
}

.krc_calendar dl dt a {
  font-weight: normal;
}

/*ADD 20210721*/
.krc_calendar .mon a,
.krc_calendar .tue a,
.krc_calendar .wed a,
.krc_calendar .thu a,
.krc_calendar .fri a,
.krc_calendar .target a  {
  color: black;
}

.krc_calendar .sat a {
  color: blue;
}

.krc_calendar .sun a {
  color: red;
}

/*スケジュール装飾*/
.krc_calendar ul {
  border: 0px;
  padding: 0em;
  text-align: center;
  height: 64px;
  margin: 0;
}

.krc_calendar ul li {
  list-style: none;
  float: left;
  width: 14%;
  border: solid 1px #eee;
  padding: 15px 0;
}

.krc_calendar ul .target {
  background-color: #94e8ff;
}

.twp-article-wrapper {
  padding: 0 10px;
}

.krc_calendar_li li {
  list-style: none;
}

/*セラピストプロフィール装飾*/
.specialty_tre {
  position: relative;
  padding: 0;
}

.specialty_tre li {
  font-size: 75%;
  list-style: none;
  float: left;
  width: 30%;
  text-align: center;
  background-color: #927268;
  margin: 5px;
  border-radius: 5px;
  color: white;
  overflow: hidden;
}

.twitter-url {
  position: relative;
  margin: 18px 0;
}

.twitter-url .button {
  text-align: center;
  background-color: #03A9F4;
  color: white;
  display: block;
  border-radius: 7px;
}

#primary-krc {
  font-size: 14px !important;
}

/*流れる文字装飾*/
#wrapper-text-box div {
  width: 100%;
  height: 30px;
  padding: 15px 0;
  overflow: hidden;
}

#wrapper-text-box dl {
  display: block;
  margin: 0;
}

#wrapper-text-box dt,
#wrapper-text-box dd {
  display: block;
  float: left;
  margin: 0 10px;
  padding: 5px 10px;
}

#wrapper-text-box dt {
  background-color: #f66;
  color: #fff;
}

#wrapper-text-box dd {
  color: #333;
  margin-right: 50px;
}

.krc_calendar ul .target {
  background-color: #FF9800 !important;
}

/*
*** スライダー画像装飾
*/
#slider-photo-box-inner {
  position: relative;
  height: 304px;
  overflow: hidden;
  display: block;
  width: 100%;
}

#slider-text-box {
  background-color: rgb(130, 115, 93);
  padding: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  color: white;
}

#slider-text-box p {
  margin: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#slider-text-box p+p {
  margin-top: 0px;
  font-size: 13px;
  line-height: 17px;
}

#slider-photo-box {
  padding: 3px;
  width: 44%;
  color: white;
}

#slider-photo-box:after {
  content: "";
  clear: both;
  display: block;
}

#slider-photo-box-inner .cast-newface {
  position: absolute;
  top: 5px;
  left: 5px;
}


/*スケジュール一覧***********************************/
#schedule-photo-box {
  list-style-type: none;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 1px;
  margin-bottom: 10px;
}

#schedule-photo-box:after {
  content: "";
  clear: both;
  display: block;
}

#schedule-photo-box li {
  /* width: 32%; */
  float: left;
}

#schedule-photo-box li a {
  display: block;
  /* margin: 22px; */
  text-decoration: none;
  color: #fff;
}

#schedule-photo-box img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

#schedule-text-box {
  background-color: rgb(130, 115, 93);
  padding: 3px;
  height: 58px;
}

#schedule-photo-box-inner {
  position: relative;
  height: 255px;
  overflow: hidden;
}

/*女の子一覧新人アイコン表示*/
#schedule-photo-box-inner .cast-newface {
  position: absolute;
  top: 5px;
  left: 5px;
}

#schedule-photo-box-grade {
  position: absolute;
  top: 5px;
  left: 7px;
}

#schedule-photo-box-grade span {
  color: #E91E63;
  font-weight: bold;
}

#cadtlist-cast-name {
  font-size: 16px;
  line-height: 18px;
}

#cadtlist-cast-rookie {
  color: green;
  font-weight: bold;
}

#schedule-text-box p {
  margin: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#schedule-text-box p+p {
  margin-top: 0px;
  font-size: 13px;
  line-height: 17px;
}


/*TOP-横幅設定*/
.top-content-box {
  margin: 0 20%;
  padding: 5px;
}

/*TOP装飾*/
.post-new-box ul {
  padding: 0px 8px;
}

.post-new-box ul li {
  list-style: none;
  border-bottom: 1px dotted #333;
  margin-top: 5px;
}

.post-new-box ul li:last-child {
  border-bottom: 0;
}

.post-new-box ul li:first-child {
  margin-top: 0px;
}

.post-new-box ul li a {
  font-size: 22px;
  color: #008bca;
}

.time-box {
  position: relative;
  font-size: 16px;
}

.post-new-box ul.post-categories {
  top: -1px;
  position: absolute;
  margin-left: 94px;
}

.post-new-box ul.post-categories li {
  float: left;
  border-bottom: 0;
  margin-top: 0;
  margin-left: 7px;
  border-radius: 5px;
  padding: 6px;
  line-height: 12px;
  background-color: #6b4112;
}

.post-new-box ul.post-categories li a {
  font-size: 11px;
  color: #ffffff;
}

.post-new-box ul.post-categories:after {
  content: "";
  clear: both;
  display: block;
}

/*TOPメニュー装飾*/
.under-image-box {
  position: relative;
  padding-bottom: 5px;
}

.under-image-box ul {
  padding: 0;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.under-image-box li {
  list-style: none;
  float: left;
  width: 100%;
  margin-left: 0px;
  padding-left: 0px;
}

/*TOPメニューバナー装飾*/
.menu-banner-box {
  position: relative;
  padding-bottom: 5px;
}

.menu-banner-box ul {
  padding: 0;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.menu-banner-box li {
  list-style: none;
  float: left;
  width: 24%;
  margin-left: 5px;
}

/*TOP 新人＆ピックアップ装飾*/
.new-pickup-box {
  position: relative;
  display: block;
  width: 95%;
  padding: 0px;
  height: 310px;
  margin: 0 auto;
}

.new-pickup-box .box-left {
  width: 240px;
  height: 290px;
  margin: 0 auto;
}

.new-pickup-box .box-left img {
  overflow: hidden;
  position: relative;
}

.new-pickup-box .box-left .swiper-slide {}

.new-pickup-box .box-right {
  width: 240px;
  height: 290px;
  margin: 0 auto;
}

.box-content-inner {
  bottom: 0;
  display: block;
  position: absolute;
  background-color: #7955488f;
  color: white;
  width: 100%;
  padding: 3px;
  line-height: 19px;
}

.box-content-inner .name-box,
.box-content-inner .age-box {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 13px;
}

.cast-newface {
  z-index: 1;
  position: absolute;
  top: 5px;
  left: 5px;
}

.swiper-container2,
.swiper-container {
  width: 240px;
  float: left;
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.swiper-button-next {
  background-image: url(images/arrow_right.png) !important;
  width: 32px !important;
  background-size: 32px 32px !important;
}

.swiper-button-prev {
  background-image: url(images/arrow_left.png) !important;
  width: 32px !important;
  background-size: 32px 32px !important;
}

.top-content-box .title-box {
  width: 92%;
  margin: 0 auto;
}

.top-content-box .title-box .left {
  width: 235px;
  float: left;
  text-align: center;
  font-weight: bold;
}

.top-content-box .title-box .right {
  width: 235px;
  float: left;
  text-align: center;
  font-weight: bold;
  margin-left: 10px;
}

@media screen and (min-width: 980px) {
  .site-logo {
    display: none;
  }
}

@media screen and (max-width: 780px) {}

@media screen and (max-width: 765px) {
  header .btn-menu {
    position: absolute;
    z-index: 9999;
    right: 17px;
    top: -56px;
    height: 32px;
  }

  .top-content-box .title-box {
    width: 56%;
    margin: 0 auto;
  }

  #castlist-photo-box li {
    width: 50%;
  }

  #castlist-photo-box-inner {
    height: 144px;
  }

  .profile-photo-box {
    width: 100%;
  }

  .profile-text-box {
    width: 100%;
  }

  .post-navigation {
    margin: 21px 0 25px;
    padding: 6px;
  }

  .container.content-wrapper {
    padding: 15px !important;
  }

  .go-top.show {
    bottom: 61px !important;
  }

  .elementor-13 .elementor-element.elementor-element-0232e55 {
    padding: 0px 0px 0px 0px !important;
  }

  .krc_calendar a {
    font-size: 9px;
  }

  #slider-photo-box-inner {
    height: 240px;
  }

  #schedule-photo-box li {
    width: 47%;
  }

  #schedule-photo-box li a {
    margin: 7px;
  }

  #cadtlist-cast-name {
    font-size: 13px;
    line-height: 17px;
  }

  .elementor-13 .elementor-element.elementor-element-72a3969 {
    padding: 0px 17px 0px 20px !important;
  }

  .elementor-13 .elementor-element.elementor-element-72a3969 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .top-content-box {
    margin: 0;
  }

  .new-pickup-box .box-left {
    height: 190px;
  }

  .new-pickup-box .box-right {
    height: 190px;
  }

  /*TOP 新人＆ピックアップ装飾*/
  .new-pickup-box {
    height: 350px;
  }

  /*TOP装飾*/
  .post-new-box ul {
    padding: 0px 8px;
  }

  .post-new-box ul li {
    list-style: none;
    border-bottom: 1px dotted #333;
    margin-top: 5px;
  }

  .post-new-box ul li:last-child {
    border-bottom: 0;
  }

  .post-new-box ul li:first-child {
    margin-top: 0px;
  }

  .post-new-box ul li a {
    font-size: 18px;
    color: #008bca;
  }

  .time-box {
    position: relative;
    font-size: 13px;
  }

  .post-new-box ul.post-categories {
    top: 1px;
    position: absolute;
    margin-left: 76px;
  }

  .post-new-box ul.post-categories li {
    float: left;
    border-bottom: 0;
    margin-top: 0;
    margin-left: 7px;
    border-radius: 3px;
    padding: 3px;
    line-height: 12px;
    background-color: #6b4112;
  }

  .post-new-box ul.post-categories li a {
    font-size: 11px;
    color: #ffffff;
  }

  .post-new-box ul.post-categories:after {
    content: "";
    clear: both;
    display: block;
  }

  .new-pickup-box .box-left {
    height: 260px;

  }

  .new-pickup-box .box-right {
    height: 260px;
  }

  /*TOPメニュー装飾*/
  .menu-banner-box li {
    list-style: none;
    float: left;
    width: 46%;
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .swiper-container2,
  .swiper-container {
    width: 145px;
    float: left;
    margin-left: 3px !important;
    margin-right: 3px !important;
  }

  .new-pickup-box {
    width: 100%;
    height: 260px;
  }

  .top-content-box .title-box {
    width: 100%;
  }

  .top-content-box .title-box .left {
    width: 49%;
  }

  .top-content-box .title-box .right {
    width: 40%;
  }

  select,
  textarea,
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"] {
    padding: 0px 0px;
    width: 100%;
  }
}


#mobileFootNav {
  display: none;
}

@media only screen and (max-width: 767px) {
  #mobileFootNav {
    display: block;
    z-index: 1030;
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
  }

  #mobileFootNav {
    background: rgba(255, 255, 255, 0.7);
    border-top: 1px solid #e1e1e1;
  }

  #mobileFootNav .ftNavBtn {
    float: left;
    width: 31%;
    height: 46px;
    margin: 7px 1%;
  }

  #wrap_all {
    padding-bottom: 60px;
  }
}

/* ボタンデザイン */
.redButton .webfontIcon {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
}

.redButton {
  box-shadow: inset 0px 1px 0px 0px #ff85ae;
  background: linear-gradient(to bottom, #f50053 5%, #ce0046 100%);
  background-color: #af003b;
  border-radius: 3px;
  border: 1px solid #ca0045;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0px 1px 0px #980034;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.redButton:hover {
  background: linear-gradient(to bottom, #ce0046 5%, #f50053 100%);
  background-color: #ce0046;
  text-decoration: none;
}

.redButton:active {
  position: relative;
  top: 1px;
}

/* ボタンデザイン */
.greenButton .webfontIcon {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
}

.greenButton {
  box-shadow: inset 0px 1px 0px 0px #08d4c0;
  background: linear-gradient(to bottom, #008e80 5%, #00756a 100%);
  background-color: #006f65;
  border-radius: 3px;
  border: 1px solid #00655b;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0px 1px 0px #005049;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.greenButton:hover {
  background: linear-gradient(to bottom, #00756a 5%, #008e80 100%);
  background-color: #008e80;
  text-decoration: none;
}

.greenButton:active {
  position: relative;
  top: 1px;
}

/* ボタンデザイン */
.pinkButton .webfontIcon {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
}

.pinkButton {
  box-shadow: inset 0px 1px 0px 0px #ffdcdc;
  background: linear-gradient(to bottom, #ff8ab2 5%, #ff5d94 100%);
  background-color: #ff8ab2;
  border-radius: 3px;
  border: 1px solid #d4356b;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ad033c;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

.pinkButton:hover {
  background: linear-gradient(to bottom, #ff5d94 5%, #ff8ab2 100%);
  background-color: #ff8ab2;
  text-decoration: none;
}

.pinkButton:active {
  position: relative;
  top: 1px;
}


/*--2021_0323_Update--*/
/*__アンケートページ__*/

.box_form--enquete input[type="text"],
.box_form--enquete input[type="email"],
.box_form--enquete input[type="url"],
.box_form--enquete input[type="date"],
.box_form--enquete textarea {
  background-color: #fff;
  color: #000000;
  width: 95%;
  border: 1px solid #ddd;
  font-size: 1em;
  padding: 0.25em;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .1) inset;
  height: auto;
}

.box_form--enquete input[type="date"] {
  width: 8.5em;
  height: 2em;
}

.box_form--enquete input[type="number"] {
  width: 4em;
  height: 2em;
  padding: 0.25em 0.5em;
}

.box_form--enquete select {
  margin-left: 0.25em;
  background-color: #fff;
  color: #000000;
  width: auto;
  border: 1px solid #ddd;
  font-size: 1em;
  padding: 0.25em;
  border-radius: 4px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .1) inset;
  height: auto;
}

.box_form--enquete .mark_req {
  color: rgb(255, 0, 0)
}

/*2021 0428 ADD*/
/*_____________カテゴリー一覧ページ　/.category.php________________*/
@media screen and (min-width: 1025px) {
  .category #content {
    margin-top: 50px;
  }

  .category .entry-content {
    height: 100%;
    height: calc(100vh - -35px);
  }
}


.category .entry-content h3 {
  padding: 0.5em !important;
  color: #fff;
  background: #000;
  border-left: solid 5px #c5ab5a;
  font-size: 17px !important;
  margin: 15px 0 10px !important;
  text-align: left;
}





/*_____________トップページ　/page_front________________*/
.home .post-new-box .ttl_cat {
  position: relative;
}

.home .post-new-box .ttl_cat .link_cat {
  position: absolute;
  right: 1em;
  top: 50%;
  margin-top: -0.5em;
  color: rgb(255, 255, 255, 1);
}

.home .post-new-box .ttl_cat .link_cat:hover {
  color: rgba(255, 255, 255, 0.8);
  margin-top: -0.2em;
}


.home .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home .photo-box {
  width: 20%;
  max-width: 120px;
  max-width: 120px;
}

.home .data-box {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  padding-left: 0.5em;
}

.home .data-box a {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}


/*_____________新着情報　/category-add________________*/
/* @media (min-width: 766px) {
  .category-add #content {
    margin-top: 130px;
  }
} */


.category-newface .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.category-newface .photo-box {
  width: 20%;
  max-width: 120px;
  max-width: 120px;
}

.category-newface .data-box {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  padding-left: 0.5em;
}

.category-newface .data-box a {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* @media (min-width: 766px) {
  .category-newface #content {
    margin-top: 130px;
  }
} */

/*_____________アクセス　/map________________*/
.gMap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.gMap iframe.gMap--access {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/*ADD トップページ動画サイズ調整*/
/* .post-new-box video {
  height:45vh;
  max-height:250px !important;
  margin:0 auto;
}
@media screen and (max-width: 765px) {
  .post-new-box video {
    max-height:280px !important;
  }
} */

.post-new-box #box_video {
  position: relative;
  width: 100%;
  /* height:45vh; */
  /* max-height:250px !important; */
}

/* @media screen and (max-width: 765px) {
  .post-new-box #box_video {
    max-height:280px !important;
  }
} */

.post-new-box #box_video {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.post-new-box #box_video_in {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-new-box #box_video_in video {
  height: 100%;
}

/*キャスト　動画　サイズ調整*/
/* .single-krc_cast .profile-text-box video {
  height:45vh;
  max-height:250px !important;
  margin:0 auto;
}
@media screen and (max-width: 765px) {
  .single-krc_cast .profile-text-box video {
    max-height:280px !important;
  }
} */

.single-krc_cast .profile-text-box #box_video {
  position: relative;
  width: 100%;
  /* height:45vh; */
  /* max-height:250px !important; */
}

/* @media screen and (max-width: 765px) {
  .single-krc_cast .profile-text-box #box_video {
    max-height:280px !important;
  }
} */

.single-krc_cast .profile-text-box #box_video {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.single-krc_cast .profile-text-box #box_video_in {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.single-krc_cast .profile-text-box #box_video_in video {
  height: 100%;
}


/*キャスト　スライド サイズ調整*/
.single-krc_cast .profile-photo-box .rslides li {
  width: 100%;
  position: relative;
}

.single-krc_cast .profile-photo-box .rslides li a {
  display: flex;
  width: 100%;
  max-height: 350px;
  text-align: center;
  height: 100%;
}

.single-krc_cast .profile-photo-box .rslides li a img {
  display: block;
  height: 100% !important;
  max-height: 350px;
  width: auto !important;
  margin: 0 auto;
}

/*ADD 20210630*/
/*SP header TITLE*/
/*明朝系*/
@import url("//fonts.googleapis.com/css?family=Noto+Serif+JP");

.ttl_header_sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .ttl_header_sp {
    display: inline-block;
  }
}

.ttl_header_sp h1 {
  position: relative;
  font-family: "Noto Serif JP";
  color: rgb(255, 255, 255, 1);
  margin: 0;
  font-size: 20px;
}

.ttl_header_sp:focus h1,
.ttl_header_sp:hover h1 {
  color: rgb(255, 255, 255, 0.8);
  top: 2px;
}

@media screen and (max-width: 765px) {
  header .btn-menu {
    top: -47px;
  }
}

/*TOP LINK バナー*/
/* .home .freeSpace-03 p a {
  display: block;
  width: 90%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.home .freeSpace-03 p a img {
  width: 100%;
} */

/*CAST LIST*/
/* .post-type-archive-krc_cast .link_castList {
  position: relative;
  width: 100%;
}

.post-type-archive-krc_cast .link_castList:before {
  content: "";
  display: block;
  padding-top: 178%;
}

.post-type-archive-krc_cast .castlist-photoBoxInner-textBox {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.post-type-archive-krc_cast #castlist-photo-box li {
  width: 30%;
  margin-right: 2%;
  margin-bottom: 2%;
  float: left;
}

@media screen and (max-width: 765px) {
  .post-type-archive-krc_cast #castlist-photo-box li {
    width: 49%;
    margin-right: 2%;
  }
  .post-type-archive-krc_cast #castlist-photo-box li:nth-child(2n) {
    margin-right: 0%;
  }
} */

/* .post-type-archive-krc_cast #castlist-photo-box li a {
  margin: 0;
} */

/* .post-type-archive-krc_cast #castlist-photo-box-inner {
  height: calc(100% - 85px);
} */

/* .post-type-archive-krc_cast #castlist-text-box {
  height: 85px;
} */

/* .post-type-archive-krc_cast #castlist-photo-box-inner img.photo_girl {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
/* .post-type-archive-krc_cast .box_room-icon {
  font-size:13px;
  background: rgb(253, 253, 239);
  margin-bottom: 4px;
} */
/* .post-type-archive-krc_cast .roomType .type_room {
  color:rgb(255, 255, 255);
  line-height: 1.2em;
  padding-left: 0.55em;
  padding-right: 0.5em;
  border-radius: 1.2em;
} */
/* .post-type-archive-krc_cast .roomType .anjyo_room {
  background:rgb(255, 152, 152);
}
.post-type-archive-krc_cast .roomType .mikawa_room {
  background:rgb(121, 112, 255);
} */
/* .post-type-archive-krc_cast .box_room-icon .fa-twitter {
  color:rgb(29, 161, 242)
} */

/* .post-type-archive-krc_cast .box_room-icon .fa-video {
  color:rgba(0, 0, 0, 1)
} */

/*20210702 ADD*/
/*トップページ修正*/
#castlist-text-box {
  height: 80px;
}

#castlist-text-box p {
  line-height: 1.2em;
}

/*アクセスマップ*/
.ttl_map {
  margin-bottom: 0.25em;
  text-align: center;
}

.box_map_okazaki {
  border-bottom: solid 3px rgb(129, 129, 129, 0.5);
  margin-bottom: 1em;
}


/*CAST LIST*/
/*schedule LIST*/
#schedule-photo-box>ul {
  width: 100%;
  height: 100%;
  padding: 0;
}

.post-type-archive-krc_cast .link_castList,
#schedule-photo-box .link_castList {
  position: relative;
  width: 100%;
}

.post-type-archive-krc_cast .link_castList:before,
#schedule-photo-box .link_castList:before {
  content: "";
  display: block;
  padding-top: 178%;
}


.post-type-archive-krc_cast .castlist-photoBoxInner-textBox,
#schedule-photo-box .castlist-photoBoxInner-textBox {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.post-type-archive-krc_cast #castlist-photo-box li,
#schedule-photo-box li {
  width: 30%;
  margin-right: 2%;
  margin-bottom: 2%;
  float: left;
}

@media screen and (max-width: 765px) {

  .post-type-archive-krc_cast #castlist-photo-box li,
  #schedule-photo-box li {
    width: 49%;
    margin-right: 2%;
  }

  .post-type-archive-krc_cast #castlist-photo-box li:nth-child(2n),
  #schedule-photo-box li:nth-child(2n) {
    margin-right: 0%;
  }
}

.post-type-archive-krc_cast #castlist-photo-box li a,
#schedule-photo-box li a {
  margin: 0;
}

.post-type-archive-krc_cast #castlist-photo-box-inner,
#schedule-photo-box #castlist-photo-box-inner {
  /* height: calc(100% - 85px); */
  height: 100%;
}

.post-type-archive-krc_cast #castlist-text-box,
#schedule-photo-box #castlist-text-box {
  /* height: 85px; */
  height: auto;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.post-type-archive-krc_cast #castlist-photo-box-inner img.photo_girl,
#schedule-photo-box #castlist-photo-box-inner img.photo_girl {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-type-archive-krc_cast .box_room-icon,
#schedule-photo-box .box_room-icon {
  font-size: 13px;
  background: rgb(253, 253, 239);
  margin-bottom: 4px;
  padding: 0.25em;
  flex-wrap: wrap;
}

.post-type-archive-krc_cast .roomType,
#schedule-photo-box .roomType {
  flex-wrap: wrap;
}

.post-type-archive-krc_cast .roomType .type_room,
#schedule-photo-box .roomType .type_room {
  color: rgb(255, 255, 255);
  line-height: 1.6em;
  padding-left: 0.55em;
  padding-right: 0.5em;
  border-radius: 1.2em;
  display: inline-block;
  margin-bottom: 0.25em;
  font-size: 0.9em;
}

.post-type-archive-krc_cast .roomType .okazaki_room_a,
#schedule-photo-box .roomType .okazaki_room_a {
  background: rgb(134, 126, 255);
}

.post-type-archive-krc_cast .roomType .okazaki_room_b,
#schedule-photo-box .roomType .okazaki_room_b {
  background: rgb(255, 209, 81);
}

.post-type-archive-krc_cast .roomType .okazaki_room_c,
#schedule-photo-box .roomType .okazaki_room_c {
  background: rgb(100, 187, 30);
}

.post-type-archive-krc_cast .roomType .anjyo_room_a,
#schedule-photo-box .roomType .anjyo_room_a {
  background: rgb(255, 152, 152);
}

.post-type-archive-krc_cast .roomType .anjyo_room_b,
#schedule-photo-box .roomType .anjyo_room_b {
  background: rgb(255, 125, 49);
}

.post-type-archive-krc_cast .roomType .anjyo_room_c,
#schedule-photo-box .roomType .anjyo_room_c {
  background: rgb(41, 213, 184);
}

.post-type-archive-krc_cast .roomType .room_none,
#schedule-photo-box .roomType .room_none {
  background: rgb(115, 115, 115);
}

.post-type-archive-krc_cast .box_room-icon .fa-twitter,
#schedule-photo-box .box_room-icon .fa-twitter {
  color: rgb(29, 161, 242)
}

.post-type-archive-krc_cast .box_room-icon .fa-video,
#schedule-photo-box .box_room-icon .fa-video {
  color: rgba(0, 0, 0, 1)
}

/*ADD 20210712 トップページレイアウト調整*/
.top-new_pickup-box .box_ttl {
  width: 100%;
}

.top-new_pickup-box .box_ttl .title-box .txt_left,
.top-new_pickup-box .box_ttl .title-box .txt_right {
  width: 50%;
  text-align: center;
  float: left;
}

.top-new_pickup-box .new-pickup-box {
  height: auto;
}

.top-new_pickup-box .new-pickup-box .swiper-container {
  width: 50%;
  float: left;
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.top-new_pickup-box .new-pickup-box .swiper-container a {
  position: relative;
  display: block;
  height: 100%;
  width: 98%;
  max-width: 240px;
}

.top-new_pickup-box .new-pickup-box .swiper-container a .img_photo {
  object-fit: cover;
  height: auto;
  width: 100%;
  object-position: top center;
}

.top-schedule-box .sc_top_css {
  max-width: 800px;
  width: 100%;
}

/*ヘッダースライダー高さ修正*/
@media screen and (max-width: 1024px) {
  .home .sydney-hero-area,
  .home #slideshow {
    max-height: 75vw;
  }
}