@charset "utf-8";
/* CSS Document */

/* ----------------------------------------------
   グローバルスタイル (ベースリセット)
---------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Nunito:wght@400;700&display=swap');

/* グローバル変数 color: var(--primary-color); */
:root {
    --primary-color: #BCBB83;
	--secondary-color: #000000;
	
	--primary-font-color: #000000;
	--secondary-font-color: #ffffff;
	
	
    --background-color: #ffffff;
	--background-grad-color: linear-gradient(to bottom, #d8f1fc, #0077be);
	
	--footer-font-color: #000000;
	--footer-bgcolor: #eeeeee;
	--footer-grd-bgcolor: linear-gradient(to bottom, #d8f1fc, #0077be);
	
	--base-color-insta: #f8e9ee;
	--base-color-line: #eefaf2;
	--base-color-reserve: #f8f4e9;
	--base-color-tel: #f3e9f8;
	--base-color-x: #ededed;
	
	--font-color-insta: #e197b0;
	--font-color-line: #3ac53a;
	--font-color-reserve: #ccc5b2;
	--font-color-tel: #cbaeda;
	--font-color-x: #989898;

	--f-color: #FF66B2; /* ナビグラデーション カラー1 */
	--s-color: #FF3399; /* ナビグラデーション カラー2 */
}

ul{list-style: none;}

/*===============================

   認証ページ

================================*/

.index {
  background-image: url("../x_imgs/common/back-header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

img.index-logo{
	width:80%;
	max-width: 600px;
	display: block;
	margin: 20px auto;
	}

img.con-image{
	display: block; width:100%; max-width:1000px; margin: 0px auto;
	}

img.bar-image{
	display: block; width:450px; max-width:95%; margin: 20px auto 10px auto;
	}

img.recruit-image{
	display: block; width:100%; max-width:700px; margin: 0px auto;
	}

h2.index-page {
    margin: 0px auto;
    width: 98%;
    padding-top: 10px;
    font-size: 1rem;
    text-align: center;
	font-weight: bold;
    line-height: 2;
    color: black; /* 文字色 */
    text-shadow: 
        -1px -1px 0 white, /* 左上 */
         1px -1px 0 white, /* 右上 */
        -1px  1px 0 white, /* 左下 */
         1px  1px 0 white; /* 右下 */
}

.image-container {
      display: inline-block;
      position: relative;
    }

.image-container img {
      display: block;
      transition: opacity 0.3s ease; /* 切り替え時のアニメーション */
    }

.image-container img.hover-image {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
    }

.image-container:hover img.default-image {
      opacity: 0;
    }

.image-container:hover img.hover-image {
      opacity: 1;
    }

.index_banner{
	width:98%;
	max-width: 600px;
	display: block;
	margin: 5px auto;
	text-align: center;
}

.index_banner img{
	width: auto;
	max-width: 100%;
	}

.enter-leave {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin: 30px auto 0px auto;
}

.enter_leave__left,
.enter_leave__right {
  box-sizing: border-box;
  width: 50%;
  margin: 0;
  padding: 0;
  vertical-align: top; /* 上詰め */
}

.enter_leave__left img,
.enter_leave__right img{
	width: 100%;
	}

a.leave{
	width: 80%;
	max-width: 300px;
	font-size: 1.4rem;
	display: block;
	margin: 35px auto;
	text-decoration: none;
	background: linear-gradient(to bottom, white, gray);
	color:#fff;
	padding: 8px;
	text-align: center;
	border-radius: 30px;
	border: 3px #eee solid;
	transition: background 2s ease; /* 背景の変更をゆっくり */
}

a.leave:hover{
	color:#000;
}

.concept{
	width:95%;
	max-width: 600px;
	margin: 20px auto 0px auto;
	font-size:0.6rem;
	text-align: center;
	}

.concept h3{
	color: var(--primary-color);
	}

/* スマホ向けレイアウト */
@media screen and (max-width: 768px) {

  .index {
    background-image: url(../x_imgs/index/background-sp.jpg);
    background-position: center center;
	background-size: cover; /* 背景画像を要素全体にフィットさせる */
    background-repeat: no-repeat; /* 背景画像の繰り返しを防ぐ */
  	}
	
	h2.index-page {
	font-size:0.8rem;
	}
	
	.enter_leave__left,
	.enter_leave__right {
	width: 80%;
	margin: 0 auto;
	padding: 0;
	}

}

/*===============================

パーツ

================================*/

a.btn_new {
	display: block;
	width:95%;
	max-width: 600px;
	
	background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);

	color:#000;
	text-decoration: none;
	font-size:1.4rem;
	font-weight: bold;
	text-align: center;
    border: 2px #eee solid;
    margin: 30px auto 10px auto;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 25px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

a.btn_ranking {
	display: block;
	width:95%;
	max-width: 600px;
	
	background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);

	color:#000;
	text-decoration: none;
	font-size:1.4rem;
	font-weight: bold;
	text-align: center;
    border: 2px #eee solid;
    margin: 30px auto 10px auto;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 25px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

/*===============================

見出し

================================*/

.tits {
	margin: 20px auto;
	width:98%;
	max-width: 500px;
	padding: 15px;
	text-align: center;
	border: 3px #BCBB83 solid;
	box-sizing: border-box;
}

.tits h2{
	display: inline-block;
	font-size: 1rem;
	font-weight: bold;
	color:#BCBB83;
}


* ----------------------------------------------
   女性一覧 パターンA
---------------------------------------------- */

.staff-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px; /* 左右に均等な余白 */
    box-sizing: border-box;
}

.staff-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px; /* 子要素間のスペースを均等に */
    justify-content: flex-start;
    width: 100%;
	max-width: 1180px;
    box-sizing: border-box;
	font-size: 0.9rem;
}

.staff-list li {
    flex: 1 0 calc(20% - 6px); /* スペースを調整 */
    max-width: calc(20% - 6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #fff6c5;
	color: #000;
    overflow: hidden;
    padding: 0px;

	/*background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);*/
	background-image: url('../x_imgs/common/photo-back.jpg');
	background-size: 100% 100%; /* 横幅・高さともに100%にフィット */

    transition: transform 0.3s ease;
    box-sizing: border-box;
	border-radius: 6px;
	box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
	position: relative;
}

.staff-list li.new{

}

.staff-list li a{
	text-decoration: none;
	}

.staff-list li .images {
    position: relative;
    width: 95%;
    height: auto;
    margin: 0 auto;
}

.staff-list li .images img {
    width: 90%;
	height:auto;
	border-radius: 8px;
	border:3px #6d1e00 solid;
	margin-top: 5px;
}

/* 小さな画像の共通スタイル（imgタグ用に変更） */
.staff-list li .images img.staff-badge {
    position: absolute;
    width: 30px; /* 小さな画像のサイズ */
    height: auto;
	border-radius: none;
	border:none;
}

/* 左上に配置 */
.staff-list li .images img.staff-badge.top-left {
    top: -6px;
    left: -4px;
	width:40px;
	height:auto;
	transform: rotate(-10deg);
}

/* 右上に配置 */
.staff-list li .images img.staff-badge.top-right {
    top: -8px;
    right: -4px;
	width:70px;
	height: auto;
	transform: rotate(10deg);
}

/* 右下エリアをアイコン用のコンテナにする */
.staff-list li .images .staff-badge-container {
    position: absolute;
    bottom: 3px;
    right: 3px;
    display: flex; /* 横並びにする */
    gap: 3px; /* アイコン間の隙間 */
}

/* 右下に配置される小さなアイコン */
.staff-list li .images .staff-badge-container img.staff-badge {
    position: static; /* 親の.flexの影響を受けるため static にする */
}



.staff-list li .top {
	color: #ff0;
	font-weight: bold;
	padding: 6px 0;
	}

.staff-list li .bottom {
	width: 100%;
	font-size: 0.8rem;
	}
	
.staff-list li .centers {
	width: 100%;
	font-size: 0.8rem;
	text-align: center;
	}

.staff-list li .centers p{
	width:46%;
	margin: 0.5%;
	border: 1px #fff solid;
	display: inline-block;
	padding: 3px;
	}

p.t1{	background: #E83DB0;display: inline-block;	}
p.t2{	background: #1CCCDF;display: inline-block;	}
p.t3{	background: #FBBE3E;display: inline-block;	}
p.t4{	background: #9DD310;display: inline-block;	}
p.t5{	background: #9D56A4;display: inline-block;	}
p.t6{	background: #FE9CB0;display: inline-block;	}
p.t7{	background: #BEA57C;display: inline-block;	}
p.t8{	background: #9000D4;display: inline-block;	}
p.t9{	background: #27DC9D;display: inline-block;	}
p.t10{	background: #0F0F0F;display: inline-block;	}
p.t11{	background: #DCDFDE;color:#000;display: inline-block;	}

.prof_top p{
	width:46%;
	margin: 0.5%;
	border: 1px #fff solid;
	display: inline-block;
	padding: 3px;
}

.prof_img{
	width:100%;
	margin: -25px auto -5px auto;
	}

.prof_img img{
	width:100px;
	display: block;
	margin: 0px auto;
	}

.staff-list li .bottom p.catch {
	width: 100%;
	display: block;
	margin: 5px 0;
	padding: 5px 0 0 0;
	background: #fff;
	color:#000;
	font-weight: bold;
	}

.staff-list li .bottom p.name {
	width: 100%;
	margin: 0;
	padding: 2px 0 1px 0;
	}

.staff-list li .bottom p.size {
	width: 100%;
	margin: 0;
	padding: 2px 0 3px 0;
	font-weight: bold;
	}

.staff-list li .bottom p.time {
	width: 100%;
	margin: -5px 0 0 0;
	padding: 6px 0 8px 0;
	color: #000;
	font-weight: bold;
	background: #E4C23C;
	font-size: 1rem;
	}

.staff-list li.new .bottom p.catch {
	color: #000;
	}

.staff-list li.new .bottom p.time {
	color: #000;
	}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .staff-list li {
        flex: 1 0 calc(50% - 6px); /* スペースを調整 */
        max-width: calc(50% - 6px);
        box-sizing: border-box;
    }
}

/*===============================

プロフィール

================================*/

.prof-name {
  margin: 0px auto 0px auto;
  color: #BCBB83;
}

.prof-name p{
	color:#BCBB83;
	}

.prof-container.photos {
/*
background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);
*/

	background-image: url('../x_imgs/common/prof-back.jpg');
    background-size: cover; /* 要素全体にフィット */
    background-position: center; /* 画像の中央を表示 */
    background-repeat: no-repeat; /* 繰り返しなし */

  border: 2px #BCBB83 solid;
  margin: 20px auto 20px auto;
  padding: 10px 20px 20px 0px;
  box-sizing: border-box;
  border-radius: 6px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.prof__right-block {
  background: #F8F8F8 url("../x_imgs/frame/back.jpg") no-repeat top center;
  background-size: 100% auto;
  margin-top: 20px;
  border-radius: 6px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.prof__one-block {
  border-radius: 6px;
  background: #ffffff;
  background-size: 100% auto;
  border: 1px #eee solid;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
	.prof-container.photos {
		width:97%;
		padding: 0px 0px 15px 0px;
		}
		
	.prof__right-block {
		display: block;
		width:95%;
		margin: 0px auto;
		}
	.prof__one-block {
		margin-bottom: 14px;
		}
	}








table {
    width: 100%;
    max-width: 1200px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
	background-repeat: no-repeat;
    background-position: top right; /* 右上に配置 */
}

table span{
	font-size:0.8rem;
	}

th, td {
    border: none;
    padding: 10px;
    text-align: left;
}

td.c1{	color: #F100EE !important; }
td.c2{	color: #3BE3E6 !important; }
td.c3{	color: #BFBE00 !important; }
td.c4{	color: #3AD400 !important; }
td.c5{	color: #B97F40 !important; }
td.c6{	color: #333333 !important; }

td:first-child {
    width: 35%;
    font-weight: bold;
    color: black;
    padding-left: 10px;
    border-bottom: 1px dotted;
}
td:last-child {
    width: 65%;
    background-color: none;
	font-size:1.6rem;
    font-weight: bold;
    padding-right: 10px;
    border-bottom: 1px dotted;
}

td.mini{
	font-size:1rem;
	}

tr:last-child td {
    border-bottom: none;
    }

div.c-wrapper{
	margin: 5px auto;
	width:100%;
	max-width: 1200px;
	border: 3px solid;
	padding: 10px;
	box-sizing: border-box;
}

div.c-wrapper p{
	margin: 10px auto 0px auto;
	color: #ff0000;
	font-weight: bold;
	font-size: 0.8rem;
	}

div.c-wrapper h2{
	margin: 0px auto 10px auto;
	padding: 8px 0px;
	width:100%;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
}

/* GOLDヴァージョン */
div.c-wrapper.gold{
	border-color: #D0A900;;
}
div.c-wrapper.gold h2{
	background: #D0A900;
}
table.gold{
	border-color: #D0A900;
	}
table.gold td:first-child {
    background-color: #FFF9E6;
    border-color: #D0A900;
}
table.gold td:last-child {
    color: #D0A900;
    border-color: #D0A900;
}

/*===============================

システム

================================*/

    .sys-container {
	  width:98%;
      max-width: 1000px;
      margin: auto;
      background: #fff;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .sys-title {
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 1rem;
      border-bottom: 2px solid #bfa75b;
      padding-bottom: 0.5rem;
      color: #bfa75b;
    }

    .sys-note, .sys-text {
      text-align: center;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      color: #777;
    }

    .sys-section-title {
      font-size: 1.4rem;
      color: #b33;
      margin-top: 2.5rem;
      border-left: 5px solid #bfa75b;
      padding-left: 0.6rem;
    }

    .sys-course, .sys-option {
      margin: 1.2rem 0;
      padding: 1rem;
      border: 1px solid #eee;
      border-radius: 8px;
      background: #faf9f5;
    }

    .sys-course-title, .sys-option-title {
      font-size: 1.1rem;
      font-weight: bold;
    }

    .sys-recommend {
      background: #ffeaea;
      border-color: #f5a1a1;
    }

    .sys-description {
      font-size: 0.95rem;
      color: #555;
      margin-top: 0.5rem;
    }

    .sys-warning {
      background: #fff6f6;
      border: 1px solid #f2caca;
      border-radius: 8px;
      padding: 1.2rem;
      margin-top: 2rem;
    }

    .sys-warning h2 {
      color: #c00;
      font-size: 1.3rem;
      margin-bottom: 1rem;
      border-left: 5px solid #e99;
      padding-left: 0.5rem;
    }

    .sys-warning ul {
      padding-left: 1.2rem;
      margin: 0;
    }

    .sys-warning li {
      margin-bottom: 0.5rem;
    }