@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html{
  overflow-x: hidden;
}

body {
  font-size: 12px;
  /* 変更 */
  font-family: "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
  /* 変更 */
  line-height: 1.6em;
  /* 変更 */
  -webkit-text-size-adjust: 100%;
  color: #fff;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, strong, th {
  font-weight: normal;
}

ol, ul {
  list-style: none;
  text-align: center;
  margin: auto;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

/*android版クローム　フォントサイズが大きくなる不具合対策*/
p{
  max-height: 99999px;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  /* 変更 */
  color: #000;
  /* 変更 */
  text-decoration: none;
}

mark {
  background-color: #ff9;
  /* 変更 */
  color: #000;
  /* 変更 */
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  height: auto;
}

/* form */
input, select {
  vertical-align: middle;
}

/* float解除 */
header:after, footer:after, section:after, article:after, aside:after, main:after, div:after, dl:after, ul:after, ol:after, ul li:after, ol li:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

/****************************************
 common (共通スタイル)
 ****************************************/
:root {
	--main-color1: #dcae19;
	--main-color2: #e8c554;
	--color-pink: #F88EA6;
	--color-orange: #F8B551;
	--color-blue: #4DC3CD;
	--color-green: #8DDB63;
	--bg-color1: #fff9e9;
	--bg-color1-rgb: 255, 249, 233;
	--txt-color1: #dcae19;
}

body {
	background: #fff;
	background: url(../../images/bg_body.jpg) center top / contain;
	color: #444;
}
a {
	color: #444;
}
a:hover {
	color: var(--txt-color1);
}
/* 文字サイズ */
.fs_10 {
  font-size: 10px;
}

/* 文字色 */
.atten_01, .atten_01 a {
  color: #e90359;
}

.atten_02, .atten_02 a {
  color: #0000ff;
}

.inner {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.wrap {
  padding: 0 5px;
}

/* 画像横幅100% */
.width_100 {
  width: 100%;
  max-width: 768px;
}
.width_320 {
  width: 100%;
  max-width: 320px;
}
/* センタリング */
.center {
  text-align: center;
}

/* マージン */
.mb_5{
  margin-bottom: 5px;
}
.mb_10 {
  margin-bottom: 10px;
}
.mb_20 {
  margin-bottom: 20px;
}
.mb_40 {
  margin-bottom: 40px;
}

/* ボタン 1 */
.btn_one_01 {
  border: solid #fff 2px;
  border-bottom: 2px solid #ddd;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #fff), color-stop(0.53, #d3d3d3), color-stop(0.04, #fff));
  background: -webkit-linear-gradient(top, #fff 4%, #d3d3d3 53%, #fff 100%);
  background: linear-gradient(to bottom, #fff 4%, #d3d3d3 53%, #fff 100%);
  display: block;
  text-align: center;
  color: #555;
  font-weight: bold;
  text-shadow: 1px 1px 1px white;
}

.btn_one_01 img {
  vertical-align: middle;
}

/* ボタン 2 */
.btn_one_02 {
  width: 50%;
  margin: 0 auto 10px auto;
  padding: 6px;
  border: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #fff), color-stop(0.53, #d3d3d3), color-stop(0.04, #fff));
  background: -webkit-linear-gradient(top, #fff 4%, #d3d3d3 53%, #fff 100%);
  background: linear-gradient(to bottom, #fff 4%, #d3d3d3 53%, #fff 100%);
  box-shadow: 0 2px 0 #ddd;
  display: block;
  color: #555;
  text-align: center;
  text-shadow: 1px 1px 1px white;
  font-weight: bold;
  cursor: pointer;
}

/* ボタン2カラム 1 */
.btn_two_01 li {
  width: 49%;
  margin: 0 2% 10px 0;
  border: solid #fff 4px;
  border-bottom: 4px solid #ddd;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #fff), color-stop(0.53, #d3d3d3), color-stop(0.04, #fff));
  background: -webkit-linear-gradient(top, #fff 4%, #d3d3d3 53%, #fff 100%);
  background: linear-gradient(to bottom, #fff 4%, #d3d3d3 53%, #fff 100%);
  box-sizing: border-box;
  display: block;
  text-align: center;
  text-shadow: 1px 1px 1px white;
  font-size: 10px;
  float: left;
  color: #000;
}

.btn_two_01 li:nth-of-type(2n) {
  margin-right: 0;
}

.btn_two_01 a {
  display: block;
}

.page_top{
  padding: 20px;
  margin: 5px;
  border: 1px solid var(--main-color1);
  text-align: center;
  background: #fff;
}

#section_01 {
  background: url(../../images/bg_pickup.jpg) center / cover;
  padding: 40px 0;
}
.event_box {
  padding: 20px 0;
  background: url(../../images/bg_event.png) top center no-repeat;
  background-size: cover;
}

#event {
  padding: 40px 0;
  background: url(../../images/bg_event.jpg) center / cover no-repeat;
}
#event2 {
  width: 100%;
  background: url(../../images/bg_event2.jpg) center / cover no-repeat;
  /* margin: 0px auto 30px; */
  padding: 40px 0px;
}
#event2 a{
	display: block;
	margin: 0 auto;
}
#event2 img{
	width: 100%;
  height: auto;
}

#event3 {
  width: 100%;
  background: #000;
  margin: 0px auto;
  padding: 30px 0px;
}
#event3 img{
	width: 100%;
}

/* セクションボックス */
.section_box {
  /* margin-bottom: 10px; */
}
#contents ul.top_banner li {
  margin-bottom: 20px;
}
.section_box:not(.err_box) h2 {
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  height: 55px;
  text-align: center;
  margin-bottom: 15px;
}

/* リストボックス 1 */
.list_box_01 li {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: block;
  position: relative;
}

.list_box_01 li:last-child {
  border-bottom: none;
}

.list_box_01 li:after {
  margin-top: -0.7em;
  display: inline-block;
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 0;
}

.list_box_01 li a {
  padding: 6px;
  display: block;
}

/* リストボックス 2 */
.list_box_02 dt {
  font-weight: bold;
}

.list_box_02 dd {
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 1px dashed #e8be3d;
}

.list_box_02 dd:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

/* テキストボックス 1 */
.txt_box_01 {
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 2px;
  text-align: left;
}

/* 女の子ボックス 2カラム */
.cast_box_2column ul{
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.cast_box_2column ul a{
  width: calc((100% - 5px) / 2);
}
.cast_box_2column ul li{
/*  width: 49.3%;*/
  /* margin: 0 2px 2px 0; */
  display: inline-block;
/*  float: left;*/
  text-align: center;
  font-size: 11px;
  position: relative;
}
.cast_box_2column ul a:nth-of-type(2n) li{
  margin-right: 0;
}
.cast_box_2column ul li .img_box{
  margin: 0 auto;
  position: relative;
}
.cast_box_2column ul li .img_box .img_cast{
  width: 100%;
  height: auto;
}
.cast_box_2column ul li .img_box .icon_movie {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 10;
	width: min(20%, 40px);
	height: auto;
}
.cast_box_2column ul li .icon_new {
  width: 30px;
  vertical-align: middle;
}
.cast_box_2column ul li .txt_box{
  width: 100%;
  text-align: left;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
}
.cast_box_2column ul li .txt_box .red_bold{
  color: #f00;
  font-weight: bold;
}

/* 女の子の画像装飾 */
.img_cast {
  box-sizing: border-box;
}

/* 電話番号 / 営業時間 */
.info_box li a {
  display: inline-block;
  color: #fff;
}
.info_box li:last-child {
  margin: 8px 0;
}

/* 小見出し */
.subtitle {
  margin-bottom: 10px;
  padding: 8px 0;
  text-align: center;
  background: var(--main-color1);
  color: #fff;
  font-size: 14px;
}

/* テーブル 1 */
.table_01 {
  width: 100%;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  text-align: left;
}

.table_01 th, .table_01 td {
  padding: 4px;
  border-bottom: 1px solid #fff;
  box-sizing: border-box;
}

.table_01 th {
  width: 30%;
  border-right: 1px solid #fff;
  background: #ddd;
  vertical-align: middle;
}

.table_01 td {
  background: #eee;
}

/* テーブル 1 */
.table_02 {
  width: 100%;
  margin-bottom: 10px;
  box-sizing: border-box;
  text-align: left;
}

.table_02 th, .table_02 td {
  padding: 10px 5px;
  box-sizing: border-box;
  width: 100%;
  display: block;
}

.table_02 th {
  vertical-align: middle;
  padding: 5px 5px;
  /* border-bottom: 1px dotted #eee; */
  background: var(--bg-color1);
}

.table_02 td {
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
.table_02 td.red_bold {
  color: #f00;
  font-weight: bold;
}

/* フォーム */
.form_box input[type="text"], .form_box textarea, .form_box input[type="tel"], .form_box input[type="email"] {
  width: 80%;
  padding: 4px;
  border: 1px solid #aaa;
  border-radius: 2px;
  background: #fcfcfc;
  /* -webkit-box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 1px 1px; */
  /* -moz-box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 1px 1px; */
  /* box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0, inset rgba(0, 0, 0, 0.2) 0 1px 1px; */
  box-sizing: border-box;
  color: #666;
  font-size: 16px;
}

.form_box select {
  width: 60%;
  padding: 4px;
  border: 2px solid #eee;
  border-bottom: 2px solid #ccc;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #fff), color-stop(0.53, #d3d3d3), color-stop(0.04, #fff));
  background: -webkit-linear-gradient(top, #fff 4%, #d3d3d3 53%, #fff 100%);
  background: linear-gradient(to bottom, #fff 4%, #d3d3d3 53%, #fff 100%);
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

.form_box select:after {
  margin-top: -0.7em;
  display: inline-block;
  font-family: FontAwesome;
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 0;
}

.form_box textarea {
  height: 100px;
}

/* ラベル */
.form_box label {
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
  text-align: left;
}
.icon img {
  width: 30%;
}

/*

ヘッダー

*/
/*トップページ*/
header #header_top{
  display: grid;
  align-items: center;
  position: relative;
  height: 380px;
  background: url(../../images/bg_header.jpg) 72% center / cover no-repeat;
  /* padding-top: 60px; */
}
header #header_top::after { display: none;}
header #header_top img{
  height: auto;
  filter: drop-shadow(0 0 8px #fff);
}
header #header_top h1 {
  text-align: center;
}
header .info_box{
  padding: 0 10px;
}
/*下層ページ*/
header #header_other{
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  background-size: cover;
  height: 65px;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  z-index: 1000;
}
header #header_other h1 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
header #header_other .info_box{
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.05em;
  text-align:left;
  color: #444;
  margin-left: -10px;
}
header .bg_subvisula {
  /* height: 60px; */
  padding-top: 65px;
  background: url(../../images/bg_header.jpg);
  max-height: 200px;
  overflow: hidden;
}
.headline {
  width: 100%;
  height: 30px;
  padding: 2px 0;
  background: #fff;
	background: linear-gradient(0deg,#eaeaea 0%, #fff 50%, #eaeaea 100%);
	border-style: solid;
  border-image: linear-gradient(90deg, #dcae1f 0%, #fdeb84 25%, #dcae1f 50%, #fdeb84 75%, #dcae1f 100%) 1 / 2px 0 2px 0;
  overflow: hidden;
  position: relative;
  font-size: 11px;
  background-size: cover;
  line-height: 40px;
  padding-bottom: 10px;
}

.headline span {
  margin-right: 20px;
  display: inline-block;
}

/* グローバルメニュー */
#gnav > p {
  margin-bottom: 10px;
  padding: 6px;
  border-bottom: 1px solid #444;
  background: #333;
  display: block;
  text-align: center;
  color: #fff;
}

#gnav ul li {
  width: 32%;
  /*width: 48%;           2カラム*/
  margin: 0 2% 10px 0;
  /*margin: 0 4% 10px 0;           2カラム*/
  border: solid #fff 4px;
  border-bottom: 4px solid #ddd;
  border-radius: 2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #fff), color-stop(0.53, #d3d3d3), color-stop(0.04, #fff));
  background: -webkit-linear-gradient(top, #fff 4%, #d3d3d3 53%, #fff 100%);
  background: linear-gradient(to bottom, #fff 4%, #d3d3d3 53%, #fff 100%);
  box-sizing: border-box;
  display: block;
  text-align: center;
  text-shadow: 1px 1px 1px white;
  font-size: 11.5px;
  font-weight: bold;
  float: left;
}

#gnav ul li:nth-of-type(3n) {
  margin-right: 0;
}

#gnav ul li a {
  display: block;
}

/* 下部バナー */
#bottom ul li img {
  height: auto;
} 

/*

フッター

*/
footer {
  padding-bottom: 45px;
  background: #fff;
  text-align: center;
}

footer a {
  color: #fff;
}

footer a:hover {
  color: #ddd;
}

/* 店舗名 / エリア */
footer .name {
  padding: 8px 0;
  border-bottom: 1px solid #333;
  background: #e8be3d;
}

/* コピーライト */
footer small {
  padding: 4px;
  border-top: 1px solid var(--main-color1);
  background: #fff;
  display: block;
  font-size: 8px;
  color: #444;
}

/*
電話番号追従 フッター
*/
div.info_nav ul {
  width: 98%;
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #fff), color-stop(0.53, #d3d3d3), color-stop(0.04, #fff));
  background: -webkit-linear-gradient(top, #fff 4%, #d3d3d3 53%, #fff 100%);
  background: linear-gradient(to bottom, #fff 4%, #d3d3d3 53%, #fff 100%);
  border-radius: 3px;
  box-shadow: 0 3px 0 #888;
  color: #ffffff;
  display: block;
  text-shadow: 1px 1px 1px black;
  font-weight: bold;
  text-align: center;
  padding: 2px 0;
  margin: 5px auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

div.info_nav li {
  padding: 3px 0;
}

div.info_nav li p {
  color: #fff;
}

div.info_nav li p img{
  vertical-align: middle;
}

div.info_nav li a {
  color: #fff;
  display: block;
}

div.info_nav li:last-child {
  border: none;
}

div.info_nav {
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}

/*フェードイン*/
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
/****************************************
認証ページ
****************************************/
#entry_body header {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
              url(../../images/bg_header.jpg) 75% center / cover no-repeat;
  position: relative;
  height: 100vh;
  display: grid;
  justify-items: center;
  align-items: center;
}
#entry_body header:after {
  display: none;
}
#entry_body .entry_wrap {
  width: 90%;
}
#entry_body header h1 {
  width: 90%;
  /* padding-top: 50px; */
  margin-inline: auto;
}
#entry_body header h1 img {
  height: auto;
  filter: drop-shadow(0 0 8px #fff);
}
#entry_body .btn_box li:nth-child(1) {
  width:50%;
  float: left;
}
#entry_body .btn_box li:nth-child(2) {
  width:50%;
  float: right;
}
#entry_body .img_box {
	margin-top: 40px;
  text-align: center;
}
#entry_body .img_box img {
	width: 90%;
}
#entry_body h2 {
  /* height: 40px; */
  margin: 0 0 10px;
  padding: 0;
  text-indent: 0;
  white-space: normal;
  font-weight: bold;
  font-size: 1.25em;
  color: var(--txt-color1);
}
#entry_body h2 span {
  font-size: 0.75em;
  font-weight: normal;
}
.entry_concept {
  height: 360px;
  margin-bottom: 40px;
  padding: 40px 0 40px;
  background: url(../../images/bg_entry_concept.jpg) 83% center / cover no-repeat;
  /*box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);*/
}
.entry_concept p:nth-child(1) {
  width: 260px;
  margin: 0 auto 20px;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 0.25em;
  text-align: center;
  border-bottom: 1px solid ;
  color: var(--txt-color1);
}
.entry_concept p:nth-child(2) {
  width: 230px;
  margin: 0 auto 20px;
  line-height: 2;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.25em;
}
.entry_concept p:nth-child(3) {
  width: 260px;
  margin: 0 auto;
  border: 1px solid;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.25em;
  line-height: 2;
}
.txt_box_entry_top {
  margin-bottom: 40px;
  text-align: left;
}
.txt_box_entry {
  width: 84%;
  margin: 0 auto 20px;
  padding: 15px;
  box-sizing: border-box;
  border: 1px solid var(--main-color1);
  border-radius: 4px;
  background: #fff;
  text-align: justify;
  text-justify: inter-ideograph;
}
.txt_box_entry p {
  line-height: 1.8;
}
.txt_box_entry p span {
  margin-bottom: 10px; 
  padding: 2px 0;
  border: 1px solid;
  border-radius: 2px;
  display: block;
  text-align: center;
  color: var(--color-pink);
}

.txt_box_entry p span.expenses{
display: unset;
border:none;
color: #ff5882;
}
.btn_c {
  width: 100px;
  height: 100px;
  border: 1px solid;
  border-radius: 50%;
  display: block;
  position: relative;
	background: rgba(255, 255, 255, 0.4);
	color: var(--txt-color1);
  /*smooth*/
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  text-align: center;
  margin: auto;
}
.btn_c:hover {
	color: var(--color-pink);
	opacity: 0.7;
}
.btn_c p {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
}
#entry_body footer {
  padding-bottom: 0
}
/****************************************
トップページ
****************************************/
.movie_box h2 {
  background: url(../../images/title_movie.png) 40% center no-repeat;
  background-size: contain;
}

.covergirl_box h2 {
  background: url(../../images/title_covergirl.png) 40% center no-repeat;
  background-size: contain;
}
.covergirl_box ul {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.covergirl_box ul li {
  margin-bottom: 20px;
  background: #fff;
  text-align: left;
}
.covergirl_box ul li .img_box {
  position: relative;
}
.covergirl_box ul li .img_box img {
  width: 100%;
  height: auto;
}
.covergirl_box ul li .img_box .icon_movie {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 10;
	width: min(20%, 40px);
	height: auto;
}
.covergirl_box ul li .txt_box {
  height: 250px;
  padding: 10px 0;
  width: 90%;
  margin: 0 auto;
}
.covergirl_box ul li .comment_box {
  position: relative;
}
.covergirl_box ul li .name {
  font-size: 1.75em;
  text-align: center;
  margin: 10px 0;
}
.covergirl_box ul li .icon {
  text-align: center;
}
.covergirl_box ul li .name span {
  font-size: 0.75em;
}
.covergirl_box ul li .size_box {
  margin-bottom: 10px;
  color: var(--txt-color1);
}
.covergirl_box ul li .size {
  margin-left: 10px;
  font-size: 1.25em;
  color: #444;
}
.covergirl_box ul li .size span {
  font-weight: bold;
  font-size: 0.75em;
}
.covergirl_box ul li .comment_box {
  color: var(--txt-color1);
}
.covergirl_box ul li .comment {
  max-height: 58px;
  margin: 0 10px;
  color: #444;
  font-size: 1.25em;
  text-align: justify;
  text-justify: inter-ideograph;
  overflow: hidden;
}
.covergirl_box .btn_newface {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9999;
}


.event_box ul li {
  margin: 0 auto;
  text-align: center;
}
#carousel .slides li img{
  width: 100%;
}
.flex-control-thumbs {
  /* margin: 0 !important; */
  margin-top: 10px 0 0 0;
}
/****************************************
新着情報ページ
****************************************/
#section_topics {
  padding: 40px 0;
  background: url(../../images/bg_topics.jpg) center center / cover no-repeat;
}
#section_topics h2 {
  background: url(../../images/title_topics.png) 40% center no-repeat;
  background-size: contain;
}
/* Twitter */
#tweet {
  width: 100%;
}
#tweet h2 {
  background: url(../../images/title_twitter.png) center 0 no-repeat;
  background-size: contain;
}
/*インフォメーション*/
.topics_left {
}
.info_left{
  width: 100%;
  background: rgba(68, 66, 66, 0.9);
  overflow: hidden;
  margin-bottom: 10px;
}
.info_right{
  width: 100%;
}
#info_nav ul li{
  padding:10px 5px;
  cursor: pointer;
  box-sizing: border-box;
  float: left;
  width:25%;
}
#info_nav ul li a{
  color: #fff;
  display: block;
}

/**********
ボタンず
**********/

/* すべて */
#post_all,
article .post_all {
  background: var(--color-blue);
  color: #ffffff;
}
#post_all{
  background: var(--color-blue);
}
/* おしらせ */
#post_news {
  background: var(--color-orange);
  color: #ffffff;
}
.info_list ul li #post_news {
  border: 1px solid;
  background: none;
  color: var(--color-orange);
}
.info_list_title{
  display: block;
  text-align: center;
  margin: 10px auto;
}
/* おすすめ嬢 */
#post_newface {
  background: var(--color-pink);
  color: #ffffff;
}
#info_box h3 .post_newface {
  padding: 6px 4px;
  border: 1px solid;
  background: none;
  color: var(--color-pink);
  font-size: 0.5em;
}
#info_box h3 .post_newface i {
  font-size: 1em;
}
.info_list ul li #post_newface {
  border: 1px solid;
  background: none;
  color: var(--color-pink);
}
/* イベント */
#post_event {
  background: var(--color-green);
  color: #ffffff;
}
#info_box h3 .post_event {
  padding: 6px 4px;
  border: 1px solid;
  background: none;
  color: var(--color-green);
  font-size: 0.5em;
}
#info_box h3 .post_event i {
  font-size: 1em;
}
.info_list ul li #post_event {
  border: 1px solid #8bc34a;
  background: none;
  color: #8bc34a;
}
/* おしらせ */

#info_box h3 .post_news {
  padding: 6px 4px;
  border: 1px solid #ffb74d;
  background: none;
  color: #ffb74d;
  font-size: 0.5em;
}
#info_box h3 .post_news i {
  font-size: 1em;
}
.info_list ul li #post_news {
  border: 1px solid #ffb74d;
  background: none;
  color: #ffb74d;
}
/***** ボタンず終了 *****/

.info_list{
  max-height: 250px;
  padding: 0 0 20px 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.info_list ul {
  height: 340px;
  margin-right: 20px;
}
.info_list ul li article{
  -webkit-transition:0.2s linear;
  -moz-transition:0.2s linear;
  -o-transition:0.2s linear;
  transition:0.2s linear;
  border-bottom: 1px dotted #000;
  padding:10px;
  text-align:left;
  box-sizing:border-box;
}
.info_list a{
  color: #000;
}
.info_list ul li article:hover{
  margin-left: 15px;
}
.info_list ul li article:hover > p:last-child{
  text-decoration: underline;
}
.info_list ul li p{
  padding: 3px;
  display: inline-block;
  font-size: 0.75em;
}
.info_list ul li p:first-child{
  padding: 6px 2px 2px;
  color: #fff;
  width: 20%;
  text-align: center;
}
.info_list ul li p:last-child{
  width: 60%;
  text-align: left;
  /*height: 13px;*/
  /*overflow: hidden;*/
}
.info_list ul li p:last-child span {
  height: 16px;
  margin-bottom: 4px;
  overflow: hidden;
  display: block;
}
.info_list ul li i {
  margin: 0 auto 4px;
  display: block;
}
#section_topics #info_box {
  position: relative;
}
#section_topics .info_box {
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  overflow-y: auto;
  float: none;
  box-sizing: border-box;
  margin: auto;
  width: 100%;
  overflow-x: hidden;
}
#section_topics .info_top_box {
  height: 400px;
}
#section_topics .info_box article {
  text-align: left;
  margin-bottom: 30px;
  padding-bottom: 30px;
  color: #000;
  border-bottom: solid 1px #ddd;
}
#section_topics .info_box article h3 {
	display: flex;
	align-items: center;
	gap: 10px;
  padding: 10px;
  font-size: 1.5em;
}
#section_topics .info_box article h3 [class^="post"] {
	height: fit-content;
	padding: 4px;
  line-height: 1.2;
  white-space: nowrap;
}
.info_list ul li article .topics_link {
  color: #ffffff;
}
.info_list ul li article .topics_link span {
  font-weight: bold;
  font-size: 1.25em;
}
#section_topics .info_box article p img {
  max-width: 100%;
}
.info_box article div.topics_txt {
  word-wrap: break-word;
  width: 100%;
}
.info_box article div.topics_txt time {
  display: inline-block;
  margin-bottom: 10px;
}
.info_box article div.topics_txt img{
  max-width: 100%!important;
  height: auto!important;
}
#section_topics .info_box
#section_topics .info_box a article div.topics_txt {
  color: #000;
}
a article div.topics_txt{
  color: #000;
}
.info_box .btn a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #d31563;
  display: block;
  font-size: 20px;
  -webkit-box-shadow: 1px 2px 3px 1px rgba(0,0,0,.2);
  -moz-box-shadow: 1px 2px 3px 1px rgba(0,0,0,.2);
  box-shadow: 1px 2px 3px 1px rgba(0,0,0,.2);
}
.info_box .btn a i{
  color: #fff;
}
.info_bottom{
  padding: 10px;
  font-size: 14px;
  background: #fcfcfc
}
#section_topics .info_bottom p{
  display: inline-block;
  width: 49%;
}
#section_topics .info_bottom p,
#section_topics .info_bottom a{
  color: #ABABAB;
}
#section_topics .info_bottom time{
  text-align: left;
}
#section_topics .info_bottom .info_back{
  text-align: right;
}
#section_topics .info_bottom .info_back:hover{
  text-decoration: underline;
}
#section_topics .info_box .next {
  float: left;
}
#section_topics .info_box .back {
  float: right;
}
#section_topics .info_back_02 a{
  width: 300px;
  line-height: 50px;
  margin: auto;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #888;
  display: block;
  background: url(../../images/bg_backno.png);
}
#section_topics .info_back_02 i{
  color: #888;
}
/*貫通防止*/
.topics_box article p { word-wrap: break-word }
.topics_box article p img { max-width: 100% }

/****************************************
女の子一覧
****************************************/
.section_staff h2{
  background: url(../../images/title_cast.png) 0 0 no-repeat;
  background-size: contain;
}

.section_staff .cast_box_outer {
	position: relative;
}
.section_staff .short_comment {
	padding: 4px 0;
}
.section_staff .short_comment p {
	padding: 6px;
	background: #fff;
	border: 1px solid var(--color-pink);
	text-align: center;
}

/****************************************
スケジュール
****************************************/
#section_schedule_today {
  padding: 40px 0;
}
.schedule_box h2{
  background: url(../../images/title_schedule.png) 40% center no-repeat;
  background-size: contain;
}
.schedule_box .img_box img{
  width: 100%;
}
.schedule_box .cast_box_outer {
  position: relative;
}
.schedule_box .sch_box {
  margin: 5px 0;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--color-pink);
  text-align: center;
}
.cast_box_2column ul li .frame{
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
}

.schedule_box .f_girlsdiary_sp, 
#schedule_bnr .f_schedule_sp {
	margin-bottom: 5px;
}

#schedule_bnr {
  margin: 20px 0;
}



/****************************************
新人
****************************************/
#section_newface {
  padding: 40px 0;
}
#section_newface h2 {
  background: url(../../images/title_newface.png) 40% center no-repeat;
  background-size: contain;
  margin-bottom: 8px;
}
#section_newface ul {
  margin: 0 auto;
  overflow-y: auto;
}
#section_newface ul li {
  width: 100%;
  margin: 0 auto 10px auto;
  background: #fff;
  position: relative;
}
#section_newface ul li .img_box {
  width: 40%;
  float: left;
  position: relative;
}
#section_newface ul li .img_box img {
  width: 100%;
  height: auto;
}
#section_newface ul li .img_box .icon_movie {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 10;
	width: min(20%, 40px);
	height: auto;
}
#section_newface .bar_newface {
  width: 100%;
  background: url(../../images/bar_newface.png) left top no-repeat;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  height: 30px;
}
#section_newface .txt_box {
  float: right;
  width: 59%;
  padding-top: 10px;
}
#section_newface .name {
  font-size: 1.4em;
}
#section_newface .cast_box li .comment_box {
  text-align: left;
}
#section_newface .cast_box li .comment_inner {
  padding: 0 10px;
  font-size: 12px;
  overflow: hidden;
  line-height: 1.6;
  max-height: 41px;
}
#section_newface .cast_box li .btn_newface {
  position: absolute;
  right: 0;
  bottom: 0;
}
#section_covergirl .cast_box li .box_title, #section_newface .cast_box li .box_title {
  text-align: left;
  color: var(--txt-color1);
}
#section_covergirl .cast_box li .age, #section_newface .cast_box li .age {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
/****************************************
プロフィールページ
****************************************/
.section_profile h2{
  background: url(../../images/title_profile.png) 0 0 no-repeat;
  background-size: contain;
}

.profile_box .name,
.profile_box .size,
.profile_box .short_comment,
.profile_box .icon {
  text-align: center;
  font-size: 14px;
}
.section_profile .short_comment {
	padding: 10px 6px;
	background-color: rgba(0, 0, 0, 0.6);
	border: 1px solid #e90359;
	margin-bottom: 10px;
	color: #fff;
	text-align: left;
}
.section_profile .short_comment .title {
	padding: 8px;
	background-color: #e90359;
	color: #fff;
	margin-right: 8px;
	text-align: left;
}

/* サムネイル */
.profile_thumb {
  min-height: 560px;
  margin: 0 auto;
  position: relative;
}
.profile_thumb .txt_box_01{
  position: absolute;
  bottom: 0;
  z-index: 999;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.profile_thumb .frame {
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  z-index: 1;
}
/* 項目 */
.param_box {
  display: flex;
  flex-wrap: wrap;
}
.param_box dt,
.param_box dd {
  width: 50%;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  box-sizing: border-box;
  font-size: 12px;
  font-weight: bold;
  float: left;
}
/* 動画 */
#movie_wrapper { 
  margin: 0 auto 10px auto
}
.prof_movie video {
  width: 100%;
  max-width: 100%;
}
/* オプション */
.profile_option_box p {
  width: 33.33%;
  padding: 5px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  float: left;
  text-align: center;
  font-size: 10px;
}
.profile_option_box .can { background: #ff007e }
.profile_option_box .normal { background: #fca3cf }
.profile_option_box .cant {
  background: #333333;
  color: #ffffff;
}
.mov_up #movie,
.mov_up #movie_jwplayer_display,
.mov_up #movie_displayarea,
.mov_up #movie_wrapper {
  width: 290px !important;
  height: 166px !important;
  margin: 0 auto;
}
/****************************************
料金ページ
****************************************/
.section_system{
  padding: 5px 0;
}

.section_system h2 {
  background: url(../../images/sub_system.png) center 0 no-repeat;
  background-size: contain;
  height: 40px;
  margin: 10px 0;
}
.section_system img {
  height: auto; 
}
.system_box_01 dt,
.system_box_01 dd,
.system_box_02 dt,
.system_box_02 dd {
  padding: 8px 0;
  font-size: 14px;
  font-weight: bold;
}
.system_box_01 dt { border-bottom: 1px dashed #e8be3d }
.system_box_01 dd {
  width: 50%;
  box-sizing: border-box;
  float: left;
  text-align: right;
}
.system_box_01 dd span,
.system_box_02 dd span {
  font-size: 10px;
  font-weight: normal;
}
.system_box_02 { border-bottom: 1px dashed #e8be3d }
.system_box_02 dt,
.system_box_02 dd {
  width: 50%;
  box-sizing: border-box;
  float: left;
}
.system_box_02 dd { text-align: right }

/****************************************
ホテルページ
****************************************/
.hotel_box {
  padding: 5px 0;
}
.hotel_box h2{
  background: url(../../images/title_hotel.png) 0 0 no-repeat;
  background-size: contain;
}

.hotel_box #list_tab_01,
.hotel_box #list_tab_02 { text-align: center }
.hotel_box #list_tab_01 li,
.hotel_box #list_tab_02 li {
  width: 49%;
  margin-bottom: 1%;
  padding: 6px 0;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid var(--color-pink);
  display: inline-block;
}
.hotel_box #list_tab_01 li:last-child,
.hotel_box #list_tab_02 li:last-child { margin-right: 0 }
.hotel_box #list_tab_01 .select,
.hotel_box #list_tab_02 .select {
  background: var(--color-pink);
  color: #fff;
}
.hotel_box .switch_area_01,
.hotel_box .switch_area_02 { font-size: 10px }
/* テーブル */
.hotel_box .switch_area_01 table,
.hotel_box .switch_area_02 table {
  width: 100%;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.hotel_box .switch_area_01 table caption,
.hotel_box .switch_area_02 table caption{
  background: var(--main-color1);
  color: #fff;
  font-size: 12px;
  padding: 5px;
}
.hotel_box .switch_area_01 table tr:nth-of-type(2n),
.hotel_box .switch_area_02 table tr:nth-of-type(2n) { background: #f0f0f0;
}
.hotel_box .switch_area_01 table th,
.hotel_box .switch_area_01 table td,
.hotel_box .switch_area_02 table th,
.hotel_box .switch_area_02 table td {
  padding: 4px;
  box-sizing: border-box;
  vertical-align: middle;
}
.hotel_box .switch_area_01 table th:nth-of-type(1n),
.hotel_box .switch_area_02 table th:nth-of-type(1n) {
  background: #fff;
  color: var(--txt-color1);
  width: 40px;
  font-weight: bold;
}
.hotel_box .switch_area_01 table td:nth-of-type(1n),
.hotel_box .switch_area_02 table td:nth-of-type(1n) {
  text-align: center;
}
.hotel_box .switch_area_01 table th:nth-of-type(2n),
.hotel_box .switch_area_02 table th:nth-of-type(2n) { width: 25% }
.hotel_box .switch_area_01 table th:nth-of-type(3n),
.hotel_box .switch_area_02 table th:nth-of-type(3n) { width: 35% }
.hotel_box .title_room {
  font-weight: bold;
  font-size: 1.25em;
}
.hotel_box .title_room span {
  font-weight: normal;
  font-size: 0.75em;
}
.disnon, .disnon2 {
  visibility:hidden;
  height:0;
  margin:0;
  padding:0;
  overflow:hidden;
}

.hotel_box table tr td:first-child{
  width: 50%;
  text-align: left;
}


/****************************************
アンケート
****************************************/
.section_enquete {
  padding-bottom: 20px;
}
.section_enquete h2{
  background: url(../../images/title_enquete.png) 0 0 no-repeat;
  background-size: contain;
}
.section_enquete .table_form {
  width: 100%;
  /* margin-bottom: 20px; */
  border-spacing: 0;
  text-align: left;
}
.section_enquete .table_form tr{
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--txt-color1);
}

.section_enquete .table_form th, .section_enquete .table_form td {
  width: 100%;
  display: block;
  text-align: center
}
.section_enquete .table_form th {
  width: 60%;
  padding: 10px 20px;
  margin: 0 auto 10px;
  vertical-align: middle;
  background: var(--txt-color1);
  color: #fff;
}
.section_enquete .table_form th.long {
  width: 70%;
}
.section_enquete .table_form td {
  padding: 10px 0;
  margin: 0 auto 10px;
  text-align: center;
}
.section_enquete .table_form .width_100{
  width: 100%;
}
.btn_form {
  width: 80%;
  padding: 11px 10px 8px;
  display: block;
  margin: auto;
  background: var(--color-pink);
  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s, transform 0.3s;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  border: none;
}
.btn_form.gray {
  background: #999;
}
/* .btn_form:hover {
  box-shadow: 0 2px 0 #c20049,0 4px 0px rgba(0,0,0,0.2);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  background: #ec0058;
} */
.width_boost{
  padding: 10px 100px;
}
/****************************************
プレイ
****************************************/
.section_play h2{
  background: url(../../images/title_play.png) 0 0 no-repeat;
  background-size: contain;
}
.section_play .list_box li {
  width: 100%;
  margin: 0 auto;
  padding: 20px 10px;
  /*background: #ec407a;*/
  text-align: left;
  box-sizing:border-box;
}
.section_play .list_box li h3{
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--txt-color1);
  font-size: 1.5em;
}
.section_play .list_box li h3 span{
  font-size: 1.5em;
  line-height: 35px;
  color: var(--txt-color1);
}
.section_play .list_box li p {
  text-align: justify;
  text-justify: inter-ideograph;
}

.section_play .list_box li:last-child p:last-child {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ffffff;
}
.section_play img.bnr_concept{
	width: 100%;
  /* padding: 20px 30px 0; */
	margin: 0 auto 20px;
  box-sizing: border-box;
  padding-top: 80px;
  margin-top: -60px;
}
/****************************************
QA
****************************************/
.section_qa h2{
  background: url(../../images/title_qa.png) 0 0 no-repeat;
  background-size: contain;
}
.section_qa{
}
/* リストボックス 2 */
.list_box_qa{
  padding: 20px 10px 10px 15px;
}
.list_box_qa dt {
  font-weight: bold;
  padding-left: 2em;
  padding-bottom: 5px;
  margin-bottom: 20px;
  text-indent: -2.9em;
  border-left: 1px solid var(--txt-color1);
  border-bottom: 1px solid var(--txt-color1);
}
.list_box_qa dd {
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 4px;
  padding-left: 2em;
  text-indent: -2.9em;
}
.list_box_qa dt span.atten_q{
  padding: 10px;
  background: var(--txt-color1);
  color: #fff;
}
.list_box_qa dd span.atten_a{
  color: var(--color-pink);
  padding: 10px;
}
.list_box_qa dd span.atten_qa{
  color: var(--color-pink);
}

/****************************************
ランキング
****************************************/
.section_ranking h2{
  background: url(../../images/title_ranking.png) 0 0 no-repeat;
  background-size: contain;
}
.section_ranking .cast_box li{
  position: relative;
}
.section_ranking .cast_box li .txt_box_01{
  position: absolute;
  bottom: 0;
  z-index: 999;
  font-size: 16px;
  line-height: 20px;
}
#list_tab_03 li{
  width: 100%;
  font-size: 1.5em;
  line-height: 1;
  display: inline-block;
  color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0 0 10px 0;
  background: var(--color-pink);
  padding: 10px 0 10px;
}
/* #list_tab_03 li:hover {
  box-shadow: 0 0 20px 4px rgba(233, 3, 89, 0.8);
} */
.section_ranking .disnon {
  display: none;
  /* background: #ffffff;
  visibility:hidden;
  height:0;
  margin:0;
  padding:0;
  overflow:hidden; */
}
.section_ranking .cast_box li {
  background: var(--bg-color1);
  background-size: cover;
  padding: 10px 0;
  box-sizing: border-box;
  display:table;
  width: 100%;
  table-layout: fixed;
}
.section_ranking .cast_box li .img_box {
  width: 50%;
  position: relative;
  display:table-cell;
  vertical-align: top;
/*  max-width: 160px;*/
}
.section_ranking .cast_box li .img_box img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.section_ranking .cast_box li .img_box .icon_new {
  width: 80px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.section_ranking .cast_box li .img_box .icon_movie {
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 10;
	width: min(20%, 40px);
	height: auto;
}
.section_ranking .cast_box li .txt_box {
  padding: 5px;
  background: #fff;
  box-sizing: border-box;
  display:table-cell;
  vertical-align: top;
  height: 240px;
  width: 46%;
}
.section_ranking .cast_box li .icon_ranking {
  display: block;
  text-align: center;
  margin: auto;
}
.section_ranking .cast_box li .rank_name {
  color: #000000;
}
.section_ranking .cast_box li .rank_num {
  margin: 10px 0;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  background: var(--txt-color1);
  font-size: 1.5em;
  font-weight: bold;
}
.section_ranking .cast_box li .name {
  margin-bottom: 5px;
  font-size: 16px;
}
.section_ranking .cast_box li .size span {
  font-weight: bold;
  color: var(--txt-color1);
  font-size: 0.75em;
}
.section_ranking .cast_box li .comment {
  text-align: left;
  line-height: 1.6;
  /* color: #e90359; */
  font-size: 14px;
  background: #fff;
  padding: 10px;
  height: auto;
}
/* テキスト省略 */
#rank_comment_omit{
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
  max-height: 6.5rem;
  width: 100%;
  white-space: normal;
}

.section_ranking .cast_box li .img_box .icon_new img{
  width: 80px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.rank_txt{
  font-weight: bold;
  color: var(--color-pink);
  /* background: #000; */
  padding:4px 6px;
  font-size: 1.25em;
  width: 94%;
  margin: 0 auto 6px;
  max-width: 386px;
}
.comment p{
  text-align: left;
}
/****************************************
求人
****************************************/
.section_recruit h2{
  background: url(../../images/caption_recruit.png) 0 0 no-repeat;
  background-size: contain;
}
.section_recruit table {
  width: 100%;
  margin: 0 auto;
}
.section_recruit table tr {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-top: 1px solid var(--color-pink);
}
.section_recruit table tr:last-child {
  border-bottom: 1px solid var(--color-pink);
}
.section_recruit table th {
  margin: 0 0 20px;
  padding: 10px 20px;
  background: var(--color-pink);
  color: #ffffff;
  display: inline-block;
}
.section_recruit table td p {
  line-height: 1.6;
}
.section_recruit table td p:after {
  margin: 20px 0;
  content: "…";
  display: block;
}
.section_recruit table td span {
  margin-bottom: 10px;
  font-size: 1.25em;
  letter-spacing: 2px;
  color: var(--txt-color1);
  display: inline-block;
}
/* 縦組みテーブル */
table.vertical,
table.vertical tbody,
table.vertical thead,
table.vertical tfoot,
table.vertical tr,
table.vertical th,
table.vertical td {
  display: block;
}
/* IE9用 */
table.vertical th {
  width: 150px;
  margin:0 auto 10px;
}
table.vertical td {
  text-align: center;
}
/****************************************
リンク
****************************************/
.section_link h2{
  background: url(../../images/title_link.png) 0 0 no-repeat;
  background-size: contain;
}
.link_box{
	text-align: center;
}
/****************************************
メルマガ
****************************************/
.section_magazine .page_top {
  margin-bottom: 20px;
}
.section_magazine h2{
  background: url(../../images/title_magazine.png) 0 0 no-repeat;
  background-size: contain;
}
.section_magazine input[type="text"] {
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  padding: 4px;
}
.section_magazine .label_btn_wrap {
	display: flex;
  align-items: center;
	gap: 10px;
  margin-top: 10px;
}
.section_magazine label {
	display: flex;
  align-items: center;
  gap: 5px;
}
.section_magazine label input[type="radio" i] {
  margin: 0;
  margin-left: 5px;
}
.btn_submit {
  width: fit-content;
  padding: 8px 20px;
  margin-left: 20px;
  display: block;
  background: var(--color-pink);
  border-radius: 4px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border: none;
}
.btn_submit:hover {
  box-shadow: 0 2px 0 #c20049,0 4px 0px rgba(0,0,0,0.2);
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  background: #ec0058;
}
/****************************************
エラー
****************************************/
.err_box{
  /* padding-top: 40px; */
}
.err_box h2{
  text-align: center;
  margin: 20px auto;
  font-size: 1.25em;
  font-weight: bold;
}
/****************************************
ドロワーメニュー
****************************************/
/*

上部メニューバー
（ドロワーが閉じている状態）

*/
#footer_menu {
  width: 100%;
  height: 45px;
  position: fixed;
  left:0;
  z-index: 9999;
  background: #fff;
  bottom: 0;
  border-top: 1px solid var(--main-color1);
}
#footer_menu button {
  margin: 0;
  background: var(--main-color1);
}
#footer_menu nav ul {
  width: 260px;
  margin: 0 auto;
}
#footer_menu .footer_right {
  margin-left: 52px;
  padding: 5px 0 0 0;
  text-align: center;
}
#footer_menu .footer_right a {
  width: 33%;
  border-right: 1px solid var(--main-color1);
  float: left;
  color: #444;
  display: block;
}
#footer_menu .footer_right a:last-of-type {
  border-right: none;
}
#footer_menu .footer_right a p {
  font-size: 0.75em;
}
/*

以下ドロワーが開いたときの設定

*/
/* 文字メニュー */
#drawer-nav > div{
  overflow: scroll;
}
#footer_menu nav ul {
  margin: 0 auto 20px;
  padding: 20px 0 40px;
}
#footer_menu nav ul .menu_t {
  width: 49%;
  border-bottom: 1px solid #444;
  text-align: center;
  float: left;
}
#footer_menu nav ul .menu_t:nth-of-type(odd) {
  border-right: 1px solid #444;
}
#footer_menu nav ul .menu_t:nth-of-type(1) {
  width: 98%;
  margin-bottom: 20px;
  border: none;
  color: var(--txt-color1);
  font-weight: bold;
  letter-spacing: 4px;
}
#footer_menu nav ul .menu_t:nth-of-type(2) {
  border-top: 1px solid #444;
  width: 98%;
}
#footer_menu nav ul .menu_t a {
  padding: 13px 10px;
  font-size: 14px;
}
#footer_menu span{
  font-size: 12px;
  text-transform: capitalize;
}

/* アイコンメニュー */
#footer_menu nav ul .menu_i {
  margin-bottom: 20px;
  float: left;
}
#footer_menu nav ul .menu_i a {
  width: 50px;
  height: 35px;
  margin-right: 20px;
  padding-top: 15px;
  border-radius: 4px;
  background: #ffffff;
  color: #000000;
  text-align: center;
  display: block;
}
.mr_0 {
  margin-right: 0!important;
}
#footer_menu nav ul .menu_i p {
  width: 50px;
  color: #ffffff;
  font-size: 0.75em;
  text-align: center;
}
/* 店舗情報 */
#footer_menu nav ul {
  width: 260px;
  margin: 0 auto;
  text-align: center;
  display: block;
}
#footer_menu nav ul .menu_d {
  margin-bottom: 8px;
  color: #444;
}
#footer_menu nav ul .menu_s {
  padding-bottom: 8px;
  border-bottom: 1px solid #444;
  font-size: 1.25em;
  clear: both;
}
.btn_sq {
  width: 160px;
  margin: 0 auto;
  padding: 10px 0;
  border: 1px solid;
  border-radius: 4px;
  color: var(--txt-color1);
  text-align: center;
  display: block;
}

/****************************************
ドロワーメニュー 上書き設定
****************************************/
/* バーガーボタンの色 */
.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  background-color: #ffffff;
}
.drawer-hamburger {
  padding: 5px 10px 28px;
}
/* ドロワー */
.drawer--left .drawer-nav {
  width: 100%;
  /*padding-top: 60px;*/
  background-color: rgba(255, 255, 255, 0.9);
  left: -100%;
}
.drawer--left.drawer-open .drawer-hamburger {
  left: 0;
}
/* 項目 */
.drawer-menu-item {
  padding: 0;
  color: #444;
}
/*メニュー*/
button .drawer-toggle{
  position: relative;
}

.drawer_txt{
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 2px;
  color: #fff;
  font-size: 9px;
}
/* ↓flexslider.cssを上書き */
.flexslider {
  background: none !important;
  border: none !important;
}
/* ↑flexslider.cssを上書き */
.slider_outer {
  background: url(../images/bg_mesh_w.png) 0 0 repeat;
}
.flex-control-nav {
  margin-top: 10px;
}