@charset "utf-8";

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    color: #000000;	/*全体の文字色*/
    background-color: #FFDD2C;	/*背景色*/
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;	/*フォント種類*/
    font-size: 1rem;	/*文字サイズ*/
    background-image: url(../../img/dangerBg.jpg);
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 1400px auto;
}
@media screen and (max-width:480px){
body {
    background-color: #000000;	/*背景色*/
    background-image: none;

}
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #000;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;	
}
a:hover {
	color: #FFE900;				/*マウスオン時の文字色*/
}

/*コンテナー（HPを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
    max-width: 1200px;	/*最大幅の指定。「width」でなく「max-width」をう事で画面幅を小さくした際も中身が自動縮小される。（※このテンプレートの場合）*/
    margin: 0 auto;
    display: block;
}
@media screen and (max-width:480px){
#container {
    width: 100%;
}
}
header h1 {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    padding: 0;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: normal;
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
header h1 a {
	color: #FFFFFF;	/*リンクテキストの色*/
}

@media screen and (max-width:480px){
header h1 {
    display: none;
}
}
h2 {
    margin: 0 0 15px;
    padding: 5px 0;	/*上下、左右への余白*/
    background-color: #000000;	/*背景色（古いブラウザ用）*/
    border-radius: 5px;	/*角丸のサイズ*/
    color: #FFFFFF;
    font-weight: normal;
}
/*h2タグの１文字目への設定*/
h2::first-letter {
    padding-left: 35px;
    background-image: url(../../img/title_icon2.png);
    background-repeat: no-repeat;
    background-position: center center;
}
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
header {
    width: 100%;
	height: 627px; 
    margin: 0 auto;
    padding: 0;	/*上下、左右へのボックス内への余白*/
    background-image: url(../../img/danger.jpg);
    background-repeat: no-repeat;
    background-position: center top;
}
@media screen and (max-width:480px){
header {
    height: 320px;
    background-size: contain;
}
}
/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
ul {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    background-image: none;
}
@media screen and (max-width:480px){
ul {
	height: 210px;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}
}
/*メニュー１個あたりの設定*/
li {
	margin: 0 10px 0 0; 	/*メニュー間の余白*/
}
li a {
    text-decoration: none;
    display: flex;
	justify-content: center;
	align-items: center;
    color: #000000;	/*文字色*/
    text-align: center;	/*内容をセンタリング*/
    background: #FFFFFF;	/*背景色（古いブラウザ用）*/
    background-color: #FFFFFF;	/*背景色。padding-boxは、下で設定しているボーダーの半透明が反映される為に指定。*/
    width: 120px;		/*メニューの幅*/
    height: 120px;	/*メニューの高さ*/
    border-radius: 50%;	/*角丸のサイズ*/
    border: 10px solid rgba(255,233,0,0.9);	/*枠線の幅、線種、rgb指定での色。255,255,255は白のことで、0.4が透明度40%の事。*/
}
@media screen and (max-width:480px){
li a {
    width: 100px;		/*メニューの幅*/
    height: 100px;	/*メニューの高さ*/
    font-size: 0.8rem;
}
}
/*マウスオン時*/
li a:hover {
	-webkit-box-shadow: 0px 0px 30px rgba(255,255,255,0.8);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。255,255,255は白のことで、0.8が透明度80%の事。*/
	box-shadow: 0px 0px 30px rgba(255,255,255,0.8);
	color: #333;		/*文字色*/
}
/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: 100%;
	padding: 0 0 40px;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
/*メインコンテンツブロック*/
main {
    width: 1000px; /*ボックス幅*/
	margin: 0 auto;
}
@media screen and (max-width:480px){
main {
    width: 100%; /*ボックス幅*/
}
}
/*メインコンテンツのh3(見出し)タグの設定*/
main h3 {
    margin: 0 0 10px;
    padding: 5px 20px;	/*上下、左右への余白*/
    color: #ffffff;		/*文字色*/
    background: #000000;
    border-radius: 5px;	/*角丸のサイズ*/
    font-weight: normal;
    font-size: 0.8rem;
}
/*メインコンテンツのp(段落)タグ設定*/
main p {
	padding: 0 15px 14px;	/*上、左右、下への余白*/
}
main h2 + p,
main h3 + p {
	margin-top: -5px;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
#top {
	width: 100%; /*ボックス幅*/
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:480px){
#top {
	flex-wrap: wrap;
	justify-content: center;
}
}
#mainBox {
	width: 650px;	
}
@media screen and (max-width:480px){
#mainBox {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
}
/*ブロック全体の設定*/
#news {
	width: 100%;
	display: block;
    padding: 15px;
	margin: 0 0 20px 0;
	background-color: #FFE900;
    border-radius: 5px;
}
/*ブロック全体の設定*/
#news dl {
    height: 320px;	/*高さ*/
    overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
    background-color: #FFFFFF;
	padding: 10px;
}
/*日付設定*/
#news dt {
	color: #887b5a;	/*文字色*/
	margin-left: 10px;
	margin-top: 10px;
	font-size: 200%;
}
/*subコンテンツのh2タグの１文字目への設定*/
#news dt::first-letter {
	border-left: 3px solid #887b5a;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}

/*記事設定*/
#news dd {
	padding-left: 15px;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#event {
	width: 100%;
	display: block;
    padding: 15px;
	margin: 0 0 20px 0;
	background-color: #FFE900;
    border-radius: 5px;
}
/*ブロック全体の設定*/
#event dl {
	height: 320px;	/*高さ*/
	overflow: auto;	/*高さの設定を超えるとスクロールが自動で出る設定。全部表示させていたいならこの行と上の行を削除。*/
    background-color: #FFFFFF;
	padding: 10px;
}
/*日付設定*/
#event dt {
	color: #887b5a;	/*文字色*/
	margin-left: 10px;
	margin-top: 10px;
	font-size: 200%;
}
/*subコンテンツのh2タグの１文字目への設定*/
#event dt::first-letter {
	border-left: 3px solid #887b5a;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;
}
/*記事設定*/
#event dd {
	padding-left: 15px;
}

/*写メ日記
---------------------------------------------------------------------------*/
#sub {
    width: 330px;
	height: 720px;	/*ブロック幅*/
    padding: 15px;
    border-radius: 5px;
    background-color: #FFE900;
}
@media screen and (max-width:480px){
#sub {
    width: 100%;
	height: 570px;	/*ブロック幅*/
	margin: 0 0 20px;
}
}
/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
    overflow: hidden;			/*ボックス内の余白*/
    background-color: #FFFFFF;
	padding: 10px;
}

 #sub .box1 iframe {
	 border: none;
	 height: 610px;
}
@media screen and (max-width:480px){
 #sub .box1 iframe {
	 border: none;
	 height: 460px;
}
}
/*料金テーブル
---------------------------------------------------------------------------*/
#system {
	width: 100%;
	background-color: #FFE900;
	border-radius: 5px;
    padding: 15px;
	margin: 0 0 20px 0;
	display: block;
}
#systemBox {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width:480px){
#systemBox {
	width: 100%;
	justify-content: center;
	flex-wrap: wrap;
}
}
.course {
	width: 49.5%;
	display: block;
}
@media screen and (max-width:480px){
.course {
	width: 100%;
}
}
/*ta1設定*/
.ta1 {
    width: 100%;
    margin: 0 0 15px;
    font-size: 0.8rem;
}
.ta1 th {
    border: 1px solid #D1D1D1;	/*テーブルの枠線の幅、線種、色*/
    padding: 15px;	/*ボックス内の余白*/
    word-break: break-all;
    background-color: #fdf9ee;
}
.ta1 td {
    border: 1px solid #D1D1D1;	/*テーブルの枠線の幅、線種、色*/
    padding: 15px;	/*ボックス内の余白*/
    word-break: break-all;
    background-color: #FFFFFF;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 160px;	/*幅*/
	text-align: left;	/*センタリング*/
}
#systemBox p {
    font-size: 0.8rem;
    padding: 15px;	/*ボックス内の余白*/
    background-color: #FFFFFF;
    border: 1px solid #D1D1D1;	/*テーブルの枠線の幅、線種、色*/
	margin: 0 0 10px 0;
}
/*Cast用の各ブロック
---------------------------------------------------------------------------*/
#schedule {
	width: 100%;
	background-color: #FFE900;
	border-radius: 5px;
    padding: 15px;
	margin: 0 0 20px 0;
}
.scheduleBox {
    width: 100%;
	margin: 0 auto 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px);
	grid-template-rows: 200px;
	justify-content: center;
	grid-gap: 10px;
}
#list {
	width: 100%;
	background-color: #FFE900;
	border-radius: 5px;
    padding: 15px;
	margin: 0 0 20px 0;
}
.listBox {
    width: 100%;
	margin: 0 auto 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px);
	grid-template-rows: 200px;
	justify-content: center;
	grid-gap: 10px;
}
/*各キャストボックスの設定*/
.list {
	position: relative;
	font-size: 0.8rem;	/*文字サイズ*/
	width: 150px;		/*ボックスの幅*/
	padding: 5px;	/*ボックス内の余白*/
	margin: 0;
	background-color: #FFFFFF;	/*背景画像の読み込み*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s; /*同上*/
	display: block;
}
.list a {
	text-decoration: none;
	display: block;
	height: 200px;	/*高さ*/
}
/*ボックス内のp(段落)タグ設定*/
.list p {
    padding: 0;
    display: block;
    font-size: 0.8rem;
    text-align: center;	
}
/*ボックス内のh4タグ設定*/
.list h4 {
    padding: 0;
    color: #887b5a;	/*文字色*/
    margin: 5px 0 0 0;
    font-size: 0.8rem;
    display: block;
    text-align: center;	
    font-weight: normal;
    white-space: nowrap; /* 改行を禁止 */
    overflow: hidden; /* はみ出た部分を非表示 */
    text-overflow: ellipsis; /* 末尾を...にする */
}
/*h4タグとpタグのマウスオン時の文字色*/
.list a:hover h4,
.list a:hover p {
	color: #FFE900;
}
/*マウスオン時のボックス*/
.list:hover {
	-webkit-box-shadow: 0px 0px 10px #FFE900;	/*外側に光る影の設定。10pxが広がる距離。*/
	box-shadow: 0px 0px 10px #FFE900;			/*同上*/
}
.list b {
	color: #FFAD00;
	font-weight: normal;
}
.list img {
	width: 140px;
	height: 140px;
	object-fit: cover;
}
/*求人用の各ブロック
---------------------------------------------------------------------------*/
#recruit {
	width: 100%;
	background-color: #FFE900;
	border-radius: 5px;
    padding: 15px;
	margin: 0 0 20px 0;
}
/*女の子詳細ページ　girls.html
---------------------------------------------------------------------------*/
#staff {
	width: 100%;
	background-color: #FFE900;
	border-radius: 5px;
    padding: 15px;
	margin: 0 0 20px 0;
}

/*写真とテーブルを囲むボックス*/
main .staff {
	margin: 0px 10px;
}
/*左側ボックス*/
main .staff .left {
    float: left;	/*左に回り込み*/
    width: 45%;		/*幅*/
    padding-bottom: 15px;
}
/*左側ボックス内のp(段落)タグ*/
main .staff .left p {
	padding: 0px;
}
/*右側ボックス*/
main .staff .right {
	width: 55%;		/*幅*/
	float: right;	/*右に回り込み*/
	padding-bottom: 15px;
}
/*テーブルタグの左側の見出し（※幅以外は下の方にある「テーブル１」のスタイルで設定しています）*/
main .staff .right .ta1 th {
	width: 100px;	/*幅*/
	vertical-align: top;
}
/*BACK*/
.back {
	width: 100px;	/*幅*/
	vertical-align: top;
}
/*スライダー設定*/
    .slider {
	width: 100%;
	margin: 0px auto;
	position: relative;
    }
    .slick-slide {
	margin: 0px 20px;
    }
    .slick-slide img {
	width: 100%;
	height: 600px;
	object-fit: cover;
    }
    .prev,.next {
    position: absolute;
    display: inline-block;
    width: 40px;
    height: 40px;
    z-index: 2;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 10px;
    background-color: rgba(255,229,0,0.59);
    text-align: center;
    line-height: 40px;
    top: 48%;
    left: 20px;
}
    .next {
	left: 86.5%;
  }
   .back {
	height: 30px;
	margin: 25px 0 0 25px;
	display: flex;
	align-items: center;
	justify-content: center;
    border-radius: 5px;
    background-color: #000000;
    color: #FFFFFF;
  }
   .back a {
    color: #FFFFFF;
  }
/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 77%;
	z-index: 2;
}
#pagetop a {
	background-color: rgba(102,102,102,0.70);
	text-decoration: none;
	color: #fff;
	width: 100px;
	padding: 30px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
}
#pagetop a:hover {
	text-decoration: none;
	background-color: rgba(153,153,153,0.70);
}
/*フッター設定
---------------------------------------------------------------------------*/
footer#pc {
	clear: both;
	background: #000000;	/*背景色*/
	text-align: center;
	padding: 10px;
}
footer#pc,#sp a {
	text-decoration: none;
}
footer#pc,#sp .pr {
	display: block;
	font-size: 80%;
}
footer#sp {
    position: fixed;
    background: #000000;	/*背景色*/
    display: flex;
    align-content: center;
	flex-wrap: wrap;
    height: 70px;
    bottom: 0;
    width: 100%;
    padding: 10px;
}
footer#sp h5 {
    width: 100%;
    height: auto;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: normal;
}
footer#sp p {
    font-size: 1rem;
    color: rgba(255,255,255,1.00);
}
@media screen and (min-width:480px){
	footer#sp {
	display: none;
}
}
@media screen and (max-width:480px){
	footer#pc {
	display: none;
}
}
/*footerリンク（全般）設定
---------------------------------------------------------------------------*/
footer a {
	color: #FFFFFF;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;	
}
footer a:hover {
	color: #FFE900;				/*マウスオン時の文字色*/
}

/*「出勤時間」「NEW」マーク
---------------------------------------------------------------------------*/
/*共通設定*/
.mark1 {
	display: inline-block;
	position: absolute;
	left: 15px;	/*ボックス内の左から15pxの場所に配置*/
	top: 15px;	/*ボックス内の上から15pxの場所に配置*/
	width: 40px;		/*幅*/
	line-height: 40px;	/*高さ*/
	font-size: 10px;		/*文字サイズ*/
	text-align: center;
	color: #fff;	/*文字色*/
	border-radius: 50%;	/*角丸のサイズ*/
	transform: rotate(-30deg);	/*左回転で30度傾ける設定*/
	-webkit-box-shadow: 1px 2px 4px rgba(0,0,0,0.6);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。0,0,0は黒のことで、0.6が透明度60%の事。*/
	box-shadow: 1px 2px 4px rgba(0,0,0,0.6);
	background: #df246f;	/*mark1の背景色*/
}
.mark2 {
	display: inline-block;
	position: absolute;
	left: 25px;	/*ボックス内の左から15pxの場所に配置*/
	top: 110px;	/*ボックス内の上から15pxの場所に配置*/
	width: 100px;		/*幅*/
	line-height: 20px;	/*高さ*/
	font-size: 12px;	/*文字サイズ*/
	text-align: center;
	color: #fff;	/*文字色*/
	-webkit-box-shadow: 1px 2px 4px rgba(0,0,0,0.6);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。0,0,0は黒のことで、0.6が透明度60%の事。*/
	box-shadow: 1px 2px 4px rgba(0,0,0,0.6);
	background: #249fdf;
}
/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both; border: 0;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #887b5a !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
img.fr {float: right;margin-left: 10px;margin-bottom: 10px;}
img.fl {float: left;margin-right: 10px;margin-bottom: 10px;}
.big1 {font-size: 30px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.sh{display:none;}
.dn{display:none;}
.ch {
	text-align: center;
	line-height: 100%;
}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){
/*スタッフ詳細ページ　girls.html
---------------------------------------------------------------------------*/
/*左側ボックス、右側ボックス*/
main .staff .left,
main .staff .right {
	float: none;
	width: auto;
}
main .left {
	text-align: center;
}
main .left figure img {
	width: 100%;	/*写真を少しだけ小さくする。この行を削除すると幅一杯になる。*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
img.fr,img.fl {float: none;margin: 0;width: 100%;}
.sh{display:block;}
.pc{display:none;}
.fl-half{float:none;width:100%;margin-left:0;}
}
}
