@charset "utf-8";
/* breakpoint---------------------- */
.pc {display: none!important;}

/* flex---------------------- */
.spflex {display: flex;}
.spcolumn {
  display: flex;
  flex-direction: column;
}
.spblock {display: block;}

.spcenter {text-align: center;}


h3.flex {gap:0.5rem;justify-content: flex-start;}

/* window---------------------- */
.wd100 {width:100%;}
.wd_90 {
  width:90%;
  margin-right:auto;
  margin-left:auto;
}

.wd_96 {
  width:96%;
  margin-right:auto;
  margin-left:auto;
}


/* 角丸---------------------- */
.rd5 {border-radius: 5px;}
.rd10 {border-radius: 10px;}
.rd20 {border-radius: 20px;}


/* padding---------------------- */
.sp_pd_top_1 {padding-top:1rem;}
.sp_pd_top_2 {padding-top:2rem;}
.sp_pd_top_3 {padding-top:3rem;}
.sp_pd_top_4 {padding-top:4rem;}
.sp_pd_top_5 {padding-top:5rem;}
.sp_pd_top_6 {padding-top:6rem;}

.sp_pd_bottom_1 {padding-bottom:1rem;}
.sp_pd_top_05 {padding-top:0.5rem;}
.pd_top_half {padding-top:0.5rem;}
.pd_top_1 {padding-top:1rem;}

.pd_bottom_half {padding-bottom:0.5rem;}
.pd_bottom_1 {padding-bottom:1rem;}

/* margin---------------------- */

.sp_mg_bottom_05 {margin-bottom:0.5rem;}
.sp_mg_bottom_1 {margin-bottom:1rem;}
.sp_mg_bottom_2 {margin-bottom:2rem;}
.sp_mg_bottom_3 {margin-bottom:3rem;}
.sp_mg_bottom_4 {margin-bottom:4rem;}
.sp_mg_bottom_5 {margin-bottom:5rem;}
.sp_mg_bottom_6 {margin-bottom:6rem;}
.sp_mg_bottom_7 {margin-bottom:7rem;}

.mg_bottom_1 {margin-bottom:1rem;}
.mg_bottom_2 {margin-bottom:2rem;}



/* font---------------------- */
.b {font-weight: bold;}
.sp5 {font-size:0.42rem;}

.sp8 { font-size: 0.5rem; } /* 8px */
.sp9 { font-size: 0.5625rem; } /* 9px */
.sp10 { font-size: 0.625rem; } /* 10px */
.sp11 { font-size: 0.6875rem; } /* 11px */
.sp12 { font-size: 0.75rem; } /* 12px */
.sp13 { font-size: 0.8125rem; } /* 13px */
.sp14 { font-size: 0.875rem; } /* 14px */
.sp15 { font-size: 0.9375rem; } /* 15px */
.sp16 { font-size: 1rem; } /* 16px */
.sp17 { font-size: 1.0625rem; } /* 17px */
.sp18 { font-size: 1.125rem; } /* 18px */
.sp20 { font-size: 1.25rem; } /* 20px */
.sp21 { font-size: 1.3125rem; } /* 21px */
.sp22 { font-size: 1.375rem; } /* 22px */
.sp24 { font-size: 1.5rem; } /* 24px */
.sp26 { font-size: 1.625rem; } /* 26px */
.sp28 { font-size: 1.75rem; } /* 28px */
.sp30 { font-size: 1.875rem; } /* 30px */
.sp34 { font-size: 2.125rem; } /* 34px */


.sp40 { font-size: 2.5rem; } /* 40px */

.spdin {
  font-family: "din-2014", sans-serif;
font-weight: 700;
font-style: normal;
}


/* ヘッダー */
header {
  background-image: url(../img/head_bg_sp.webp);
  background-repeat: repeat-x;
  background-position: 0 0;
  background-size: contain;
  position: fixed;
  width: 100%;
  height: 5.3125rem;
  z-index: 3;
}

h1 {
  margin-top:0.3rem;
  margin-left: 0.3rem;
  width: 12.125rem;
  height: 5.75rem;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
z-index: -1;
pointer-events: none;
opacity: 0;/*はじめは透過0*/
  /*ナビの位置と形状*/
top:0;
width:85%;
left: 15%;
  height: 85vh;/*ナビの高さ*/
  border-bottom-left-radius :3.75rem;
  background: linear-gradient(180deg, #de367c 0%, #8a2b53 100%);
  /*動き*/
transition: all 0.3s;

}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
opacity: 1;
z-index:999;
pointer-events: visible;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 85%;
  height: 85vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
  overflow: scroll;
}

/*ナビゲーション*/
/* #g-nav ul {
  display: none;
}

#g-nav.panelactive ul {
  display: block;
} */

/*========= ボタンのためのCSS ===============*/
.openbtn{
position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
top:10px;
right: 0;
cursor: pointer;
width: 5.5rem;
height: 5rem;
  background-image: url(../img/openbtn_bg.webp);
  background-repeat: no-repeat;
  background-position: right;
}

/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  top: 2rem;
  right: 1rem;
  height: 4px;
  border-radius: 2px;
background-color: #ffffff;
  width: 2.5rem;
}

.openbtn span:nth-of-type(1) {
top:1.3rem;	
}

.openbtn span:nth-of-type(2) {
top:2.05rem;
}

.openbtn span:nth-of-type(3) {
top:2.85rem;
}

.openbtn.active span:nth-of-type(1) {
  top: 1.75rem;
  right: 1rem;
  transform: translateY(6px) rotate(-45deg);
  width: 2.5rem;
}

.openbtn.active span:nth-of-type(2) {
opacity: 0;
}

.openbtn.active span:nth-of-type(3){
  top: 2.5rem;
  right: 1rem;
  transform: translateY(-6px) rotate(45deg);
  width: 2.5rem;
}

.openbtn.active {
  background: none;
}



nav ul.main_menu {
  margin-top: 2.7rem;
  padding-left:7rem;
  gap: 0.7rem;
  align-items: flex-start;
}

nav ul.main_menu li {
  height:2.8125rem;
}
nav ul.main_menu li a {
  position: relative;
  align-items: flex-start;
  gap: 0rem;
  line-height: 1.1;
}
nav ul.main_menu li a small {
  font-weight: normal;
  letter-spacing: normal;
}

nav ul.main_menu li a:before {
  content:"";
  position: absolute;
  background-image: url(../img/menu_bunny.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.70756rem;
  height: 2.8125rem;
  bottom: -2px;
  left: -2rem;
}

nav img.menu_line {
  width: 80%;
  display: block;
}

nav ul.sns {
  width: 45%;

}

nav ul.sns li {
  width: 22%;
flex-shrink: 0;
}

nav .invoice {
  width: 70%;
}


.menu_contact {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 5rem;
  gap: 0;
}

.menu_contact .tel {
  width: calc(100% - 5.625rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  justify-content: center;
  gap: 0;
}
.menu_contact .tel a {
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1.1;
}
.menu_contact .tel span {
  padding:5px;
  border-radius: 3px;
  gap: 0;
  align-items: center;
}
.menu_contact .tel span img {
  width: 1rem;
}


.menu_contact .tel small {
  width: 100%;
  text-align: center;
  display: block;
}


.menu_contact .mail {
  width: 5.625rem;
  text-align: center;
  justify-content: center;
  gap: 4px;
  line-height: 1.1;
}

.menu_contact .mail img {
  width: 40%;
}




/* フッター */
footer {
  background: linear-gradient(0deg, #FF9BCB 13.02%, #E8358B 95.83%);
  position: relative;
  padding-top: 10px;
  padding-bottom: 5rem;
  width: 100%;
}

footer:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  left: 0;
  top: 0;
  background-image: url(../img/mainimage_line.webp);
  background-size: auto;
  background-repeat: repeat;
  display: block;
}
footer a {
  color: #ffffff;
}

footer .ft_top {
  padding: 1rem;
  margin-bottom: 1rem;
}

footer .ft_bottom {
  border-top: solid 1px #ffffff;
  flex-wrap: wrap;
}
footer .ft_bottom li {
  width: 50%;
  border-bottom: solid 1px #ffffff;
  position: relative;
}

footer .ft_bottom li:nth-child(odd) {
  border-right: solid 1px #ffffff;
}

footer .ft_bottom li:last-child {
  width: 100%;
}


footer .ft_bottom li a {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
}
footer .ft_bottom li:last-child a {
  justify-content: center;
}

footer .ft_bottom li a:after {
  content:"";
  background-image: url(../img/menu_arrow.webp);
  background-repeat: no-repeat;
  width: 0.5rem;
  height: 1rem;
  background-size: contain;
  display: block;
}

footer .ft_bottom li:last-child a:after {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}


footer .ft_top h2 {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1rem;
}
footer .ft_top .column {
  flex-direction:column-reverse ;
}
footer .ft_top p {
  text-align: center;
  white-space: nowrap;
}

footer .ft_top .sns {
  align-items: flex-end;
  gap: 1rem;
}
footer .ft_top .sns li {
  height: 2.55rem;
}
footer .ft_top .sns li a {
  display: flex;
  align-items: center;
  height: 2.55rem;
}
footer .ft_top .sns li.twi img {
  width: 1.75rem;
  height: 1.75rem;
}
footer .ft_top .sns li.ins img {
  width: 2.025rem;
  height: 2.025rem;
}
footer .ft_top .sns li.tik img {
  width: 1.65rem;
  height: 1.8rem;
}
footer .ft_top .sns li.you img {
  width: 2.4rem;
  height: 1.725rem;
}
footer .ft_top .sns li.lin img {
  width: 2.175rem;
  height: 2.1rem;
}
footer .ft_top .sns li.bny img {
  width: 1.575rem;
  height: 2.55rem;
}



footer .copyright {
  padding: 0.8rem ;
}

.mainimage {
  padding-top: 5.3125rem;
}


.mainimage .mainimage_area .slide .slick-dots {
  bottom: 15px;
}
.mainimage .mainimage_area .slide .slick-dots li {
  margin: 0 3px;
}
.mainimage .mainimage_area .slide .slick-dots li button:before {
  color: #ffffff;
  opacity: 1;
  font-size: 1rem;
}
.mainimage .mainimage_area .slide .slick-dots li.slick-active button:before {
  color: #E8358B;
}





main section {
  width: 94%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 3rem;
}

main section h3 {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 0.9;
  letter-spacing: 0.02em;
  width: 100%;
  font-size: 2.75rem;
  color: #000; /* テキストの色を設定 */
  display: table; /* インライン要素に設定 */
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  box-decoration-break: clone; /* 複数行にまたがる場合に役立つ */
  margin-bottom: 0.5rem;
}

a.more_btn {
  color:#ffffff;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  
  width: 70%;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.625rem;
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
  margin: 1rem auto 1.5rem;
}


a.more_btn_line {
  color:#ffffff;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  
  width: 70%;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.625rem;
  background:  #E8358B;
  margin: 1rem auto 1.5rem;
}

ul.top_events {
  gap: 1rem 0.5rem;
  flex-wrap: wrap;
}
ul.top_events li {
  width: calc(50% - 0.25rem);
}
ul.top_events li a {
  align-items: flex-start;
  gap:0.5rem;
}

ul.top_events li a > span {
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
}
ul.top_events li a span span {
  border-radius: 1rem;
  padding: 0px 1rem;
  height: 1.3em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.top_events li a p {
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

ul.top_girls {
  flex-wrap: wrap;
  gap: 0.8rem 0.625rem;
  justify-content: flex-start;
}
ul.top_girls li {
  width: calc(50% - 0.32rem);
  gap: 0.2rem;
  position: relative;
  overflow: hidden;
}

ul.top_girls li a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

ul.top_girls li img {
  border-radius: 1.25rem;
  margin-bottom: 0.3rem;
}

ul.top_girls li span {
  line-height: 1;
  display: block;
    text-align: center;
}
ul.top_girls li small {
  line-height: 1;
  display: block;
    text-align: center;
}

ul.top_girls li div.rbn {
  position: absolute;
  color: #ffffff;
  top: 0;
  left: 0;
  transform: rotateZ(-42deg);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 9.375rem;
  height: 9.375rem;
  white-space: nowrap;
  z-index: 2;

}

ul.top_girls li div.rbn p {
  text-align: center;
  display: block;
  width: 100%;
  padding: 0.25rem;
  color: #ffffff;
  font-size:0.86988rem;
  letter-spacing: 0.06em;
}
ul.top_girls li div.rbn p.trial {
  background: linear-gradient(90deg, #31D7EE 13.02%, #54FF65 81.77%);
}

ul.top_girls li p.newface {
  background: linear-gradient(90deg, #64D261 13.02%, #DFE255 81.77%);

}

ul.top_girls.ranking {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin:0 auto;
}
ul.top_girls.ranking .slick-next,
ul.top_girls.ranking .slick-prev {
  top: 40%;
  z-index: 2;
}
ul.top_girls.ranking .slick-next {
  right: -0.5rem;
}
ul.top_girls.ranking .slick-prev {
left: -2.5rem;
}

ul.top_girls.ranking .slick-next:before {
  border-top: solid 2px #E8358B;
  border-right: solid 2px #E8358B;
width: 2rem;
height: 2rem;
transform: rotate(45deg);
}

ul.top_girls.ranking .slick-prev:before {
  border-top: solid 2px #E8358B;
  border-right: solid 2px #E8358B;
width: 2rem;
height: 2rem;
transform: rotate(225deg);
}


ul.top_girls.ranking li {
  width: 16.5625rem;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
}
ul.top_girls.ranking li div.rank_img {
  position: relative;
  width: calc(100% - 10px);
}

ul.top_girls.ranking li div.rank_img:after {
  content:'';
  position: absolute;
  display: block;
  top: 6px;
  left: 10px;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  z-index: -1;
  background: linear-gradient(180deg, #E9B125 13.02%, #FFDF6C 81.77%) ;
}

ul.top_girls.ranking li.no2 div.rank_img:after {
  background: linear-gradient(180deg, #888 13.02%, #dcdcdc 81.77%) ;
}
ul.top_girls.ranking li.no3 div.rank_img:after {
  background: linear-gradient(180deg, #A65941 13.02%, #F4D4C6 81.77%) ;
}

ul.top_girls.ranking li div.ranknum {
  font-size: 44px;
  background: linear-gradient(180deg, #E9B125 13.02%, #FFDF6C 81.77%) ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  justify-content: center;
  line-height: 1;
  width: 100%;
  padding-top: 1rem;
  margin-bottom:0.5rem;
}

ul.top_girls.ranking li.no2  div.ranknum {
  background: linear-gradient(180deg, #888 13.02%, #DCDCDC 81.77%) ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
ul.top_girls.ranking li.no3  div.ranknum {
  background: linear-gradient(180deg, #A65941 13.02%, #F4D4C6 81.77%) ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

ul.top_girls.ranking li div.ranknum img {
  border-radius: 0;
  width: 3.125rem;
  height: 2.5rem;
  margin-top: 2px;
}

ul.top_girls.ranking li span {
  width: 100%;
  justify-content: center;
}

div.top_info {
  gap: 1rem;
}
div.top_info div.column {
  align-items: flex-start;
  gap: 0.5rem;
}

div.top_info div.column iframe {
  order: 1;
  width: 100%;
  height: 15.625rem;
  border-radius: 1.8rem;
}

div.top_info div.column h4 {
  order: 2;
  font-size:2rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

div.top_info div.column p {
  order: 3;
}

div.top_info div.shopimg {
  width: 100%;
  height: 15.625rem;
  border-radius: 1.8rem;
  overflow: hidden;
}
section.top_shopinfo .mb_position {
  padding-top: 1rem;
} 




/* MENU */
section.top_pink_area.menu {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #FFE3EF 0%, rgba(255, 227, 239, 0.50) 100%);
  padding-top: 2rem;
  padding-bottom: 0;
  margin-bottom: 4rem;

}
section.top_pink_area.menu {}
section.top_pink_area .pink_area_main {}

.menu_price {
  border-collapse: collapse;
  width: 94%;
  margin: 0 auto 2rem;
  position: relative;
  line-height: 1;
}

.menu_price th, .menu_price td {
  border: 1px solid #E8358B;
  text-align: center;
  padding: 8px;
  vertical-align: middle;
}

.menu_price .header {
  background-color: #E8358B;
  color: white;
  font-size: 1.65769rem;/* ①の文字サイズ */
  height: 3.24419rem;
}

.menu_price .item, .menu_price .seat {
  background-color: #FFD9EB;
  color: black;
  font-size: 0.88956rem; /* ②の文字サイズ */
  height: 1.83138rem;
  font-weight: bold;
}

.menu_price .price {
  background-color: #ffffff;
  color: black;
  font-size: 1.56975rem; /* ③の文字サイズ */
  height: 3.24419rem;
  font-weight: bold;
  font-family: "Kozuka Gothic Pro", Arial, sans-serif;
}

.menu_price th.header:first-child {
  position: relative;
}

.menu_price th.header:first-child div.heart {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/menu_heart_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.17444rem;
  height: 5.65119rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu_price th.header:first-child div.heart span {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  font-size: 2.407rem;
  color: #E8358B;  line-height: 1;
  font-family: "Kozuka Gothic Pro", Arial, sans-serif;
  margin-left: -10px;
  margin-bottom: 0.2em;
}
.menu_price th.header:first-child div.heart span small {
  font-size: 1.56975rem;
  color: #E8358B;
  margin-left: -8px;
    margin-bottom: 5px;
}

.menu_price.profit {
}

.menu_price.profit th.header:first-child div.heart span {
  font-size: 1.67444rem;
  margin-left: 0;
} 

.menu_price.floor {
  margin-bottom: 1rem;

}
.menu_price.floor th.header:first-child div.heart {
  width: 7.375rem;
height: 6.75rem;
left: 75%;
}
.menu_price.floor th.header:first-child div.heart span {
  font-size: 1.0625rem;
  margin-left: 0;
}

.menu_price.floor .header {
  height: 5rem;
}
.menu_price.floor .header small {
  display: block;
  font-size: 1rem;
}
.menu_price.floor .seat {
  height: 5rem;
  font-size: 1.375rem;
}
.menu_price.floor .price {
  height: 5.8125rem;
}

.menu_price.floor .price small {
  display: block;
  font-size: 1.0625rem;
  margin-bottom: 0.5em;
}

.pink_area_main div.yell {
width: 100%;
height: 17.875rem;
  background-image: url(../img/menu_bunny_sp.webp);
  background-repeat: no-repeat;
  background-position: right bottom -7px;
}

.pink_area_main div.yell a img {
  width: 14.45763rem;
  height: 8.5rem;
  padding-left: 1rem;
}

section.top_pink_area.menu a.more_btn {
  position: absolute;
  margin: 0;
  bottom: -1.5rem;
  right: 50%;
  /* left: 50%; */
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}


/* SNS */
.top_pink_area.sns {
  position: relative;

}

.top_pink_area.sns .bunny {
  position: absolute;
  width: 20.625rem;
  height: 41.8125rem;
  top: -9rem;
  left: 698px;
  z-index: -1;
}

.top_pink_area.sns h4 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  line-height: 1;
  text-align: center;
}


/*--------------------- サブページ ---------------------*/
main.subpage {
  padding-top: 6.5rem;
  padding-bottom: 2rem;
}
.breadcrumbs {
  margin-bottom: 1rem;
}
.breadcrumbs ul {
  justify-content: flex-start;
}
.breadcrumbs ul li:after {
  content: ">";
}
.breadcrumbs ul li a.nolink {
  color:#434343;
  pointer-events: none;
}
.breadcrumbs ul li:last-child::after {
  content: none;
}
/* メニュー */

.subpage.menu {

}

section.menu h4 {
  background:#FFD9EB;
  border-left: solid 0.6rem #E8358B;
  color: #434343;
  font-size: 1.25rem;
  height: 2.5rem;
  border-radius: 0rem 1.875rem 0rem 0rem;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
  gap: 0;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.subpage section.menu {
  position: relative;
}

.subpage section.menu p.disc {
  line-height: 1.7;
  margin-bottom: 3rem;
}
.subpage section.menu div.pcflex {
  gap: 40px;
}

.subpage section.menu div.yell {
  margin-bottom: 3rem;
  position: relative;
  width: 100%;
}

.subpage section.menu div.yell:after {
  content: "";
  background: url(../img/menu_bunny_main.webp);
  position: absolute;
  display: block;
  width: 7.31875rem;
  height: 23.32863rem;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0.7rem;
  top: 0;
  z-index: 1;
}

.subpage section.menu div.yell a img {
  width: 14.625rem;
  height: 9.25rem;
}

.subpage section.menu div.plan_menu {
  border:solid 2px #E8358B;
  border-radius: 1.73438rem;
  padding: 2rem ;
  padding-top: 2.5rem;
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}

.subpage section.menu div.plan_menu h5 {
  font-size: 1.375rem;
  color: #de367c;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: -1.375rem;
  width: max-content;
  line-height: 1;
  background: #ffffff;
  padding: 0 1rem;
}

.subpage section.menu div.plan_menu ul {
  flex-wrap: wrap; /* アイテムがコンテナを超えると折り返す */
  align-items: flex-start; /* アイテムを上端に揃える */
  justify-content: center; /* アイテムを左端に揃える */
}


.subpage section.menu div.plan_menu ul li {
  width:48%;

}


.subpage section.drinkmenu {}


section.menu.drinkmenu h5 {
  font-size: 1.375rem;
  padding-bottom: 0.3rem;
  color:#E8358B;
  border-bottom: solid 2px #E8358B;
  margin-bottom: 1rem;
}

.subpage section.drinkmenu ul.champagne {
  flex-wrap: wrap;
  gap: 0;
  row-gap: 1rem;
  margin-bottom: 2rem;
}
.subpage section.drinkmenu ul.champagne li {
  width: 48%;
  align-items: center;
}

.subpage section.drinkmenu ul.champagne li img {
  width: 50%;

}
.subpage section.drinkmenu ul.champagne li div span {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.subpage section.drinkmenu ul.champagne li div span:nth-child(2) {
  padding-left: 2.3rem;
}




.subpage section.drinkmenu div.txtmenu {

  margin-bottom: 2rem;
}
.subpage section.drinkmenu div.txtmenu div.left {}
.subpage section.drinkmenu div.txtmenu div.right {}


.subpage section.drinkmenu div.txtmenu dl {
  display: flex;
  justify-content: space-between;
  gap: 0;
  height: 2rem;
  width: 100%;
}
.subpage section.drinkmenu div.txtmenu dl dt {
  font-size: 1rem;
  /* flex: 4; */
  text-align: left;
  white-space: nowrap;
}
.subpage section.drinkmenu div.txtmenu dl dd {
  font-size: 1rem;
  font-weight: bold;
  font-family: "Kozuka Gothic Pro", Arial, sans-serif;
  /* flex: 1.5; */
  width: 5.5em;
  text-align: left;
}

.subpage section.other ul.payment {
  flex-wrap: wrap;
  gap: 0;
  justify-content: flex-start;
  width: 100%;
}
.subpage section.other ul.payment li {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* コンセプト */
.concept_main {
  text-align: center;
}
.concept_main strong {
  display: inline;
  font-size: 4.375rem;
  color: #FF9BCB;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.concept_main h4 {
  display: inline;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    box-decoration-break: clone;
}

.concept_main p {
  text-align: justify;
}


/* お問い合わせ */
main.contact {}
main.contact div.order {
  align-items: center;
  justify-content: center;
}

main.contact div.order div {
  gap: 0.3rem;
}

main.contact div.order .order_num {
  position: relative;
  color: #ffffff;
  width: 3.5625rem;
  height: 3.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.875rem;
  letter-spacing: -0.05em;
}

main.contact div.order .order_num:after {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  display: block;
  background: url(../img/order_num_heart.webp) no-repeat;
  width: 3.5625rem;
  height: 3.25rem;
  z-index: -1;
}

main.contact div.order .now .order_num:after {
  background: url(../img/order_num_heart_now.webp) no-repeat;
}

main.contact div.order .order_txt {
  font-size: 1.125rem;
  color: #FF9BCB;
}

main.contact div.order .now .order_txt {
  color: #E8358B;
}

main.contact div.order .order_border {
  width: 2.5rem;
  height: 0.125rem;
  background: #FF9BCB;
}
main.contact div.order .order_border.now {
  background: #E8358B;
}

main.contact div.form_main {
  width: 100%;
  border: solid 1px #E7E7E7;
  padding:2rem;
  align-items: flex-start;
}

main.contact form label {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0.5rem;
}
main.contact form label span {
  margin-bottom: 0.5rem;
}
main.contact form label span small {
  font-size:14px;
  color: #434343;
}

main.contact form label input {
  border: 0;
  background: #FFE3EF;
  border-radius: 10px;
  width: 100%;
  height: 2.5rem;
  padding: 0 0.5rem;
}

main.contact form label .dates {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 0;

}
main.contact form label .dates span {
  margin-right: 1rem;
}
main.contact form label input[type="date"] {
  width: 15rem;
  padding: 0 0.5rem;
  margin-right: 20%;
}
main.contact form label select {
  width: 30%;
  height: 2.5rem;
background: #FFE3EF;
border-radius: 10px;
border: 0;
padding: 0 2em 0 0.5rem;
margin-right: 0.5rem;
}


main.contact div.select,
main.recruit div.select {
  position: relative;
  width: fit-content;
}

main.contact select,
main.recruit select {
  -webkit-appearance: none; /* Chrome, Safari, Opera用 */
  -moz-appearance: none; /* Firefox用 */
  appearance: none; /* 標準の矢印を非表示にする */
  /* その他のスタイリング（フォント、パディング、ボーダーなど） */
  padding-right: 2em;
}

main.contact .select::after,
main.recruit .select::after {
  content: ''; /* カスタム矢印アイコン */
  width: 0.6rem;
  height: 0.6rem;
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  position: absolute;
  top: 43%;
  right:13px;
  transform: translate(-50%, -50%) rotate(135deg);
  pointer-events: none; /* クリックイベントを無効にする */
}





main.contact form label textarea {
  border: 0;
  background: #FFE3EF;
  border-radius: 10px;
  width: 100%;
  height: 17.1875rem;
  padding:0.5rem;
}

main.contact form button {
  color:#ffffff;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  
  width: 70%;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.625rem;
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
  margin: 1rem auto 1.5rem;
  border: 0;
}


main.contact .form_main.confirm label {
  border-bottom:solid 1px #E7E7E7;
}


main.contact .form_main.confirm label p {
  padding: 0.5rem 0;
}


main.contact .form_main.complete strong,
main.contact .form_main.complete p {
  width: 100%;
}


/* 採用情報 */
main.recruit {
  background-color: #FF9BCB;
  padding-left: 0;
  position: relative;
  padding-bottom: 0;
}
main.recruit:before {
  content: "";
  display: block;
  top: 0;
  width: 100%;
  height: 10rem;
  background: #FFD9EB;
  position: absolute;
  z-index: 0;
}

main.recruit .breadcrumbs {
  z-index: 1;
  position: relative;
}
main.recruit .top_center
{

}

main.recruit .recruit_title {
  width: 100%;
  background-image: url(../img/circle_bg_sp.webp);
  background-repeat: no-repeat;
  background-position:bottom 3.5rem center;
  margin-bottom: 1rem;


}
main.recruit .recruit_title h3 {
  position: relative;
  height: 8rem;
}

main.recruit .recruit_title h3 img {
  position: absolute;
  top: -2.6rem;
  left: 0;
}

main.recruit .recruit_title p {
  color: white;
  font-weight: bold;
}


main.recruit section.points {
  background :#FFEDF5;
  box-shadow: 4px 4px 60px 0px rgba(232, 53, 139, 0.60);
  border-radius: 1.25rem;
  position: relative;
  padding-top: 3rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

main.recruit section.points h4 {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/points_h4.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14.4375rem;
height: 3.39281rem;
  padding-bottom: 0.5rem;
}

section.points .points_detail {
  position: relative;
  padding: 0 6%;
  margin: 0 auto 2rem;

}

section.points .points_detail.points_right {
  flex-direction: row-reverse;
}

.points_detail .points_num {
  position: absolute;
  width: 5.375rem;
  height: 5.375rem;
  left: 0.5rem;
  top: -1rem;
  background-image: url(../img/points_num.webp);
  background-size: contain;
  font-size: 2.9025rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;

}


section.points .points_detail img.points_mainimg {
  width: 100%;
  /* height: 13.125rem; */
  border-radius: 1.04625rem;
  filter: drop-shadow(5px 5px 0px rgba(232, 53, 139, 0.20));
  margin: 0 auto;
}

.points_detail div span {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  display: block;
  line-height: 1.2;
  padding-top: 1.6rem;
  text-align: center;
}

.points_detail div span p.p_num {
  position: absolute;
  top: -0.1rem;
  left: -1rem;
  font-family: "al-fresco", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  transform: rotate(-10deg);
}
.points_detail div p {
  text-align: justify;
  letter-spacing: -0.02em;
}



main.recruit .point_wrap {

  position: relative;

  z-index: 2;
  overflow: hidden;
}

section.points .sub_img {
  width:100%;
  margin: 1rem auto 0rem;
  flex-wrap: nowrap;
  gap: 0.2rem
}

section.points .sub_img img {
  width: 24%;
  border-radius: 0.53569rem;
}

main.recruit .recruit_btn {
  width:90%;
  margin: 0 auto 3rem;
  gap: 0.5rem;
  flex-direction: column-reverse;
}

main.recruit .recruit_btn a {
  display: flex;
  color: #ffffff;
  width: 20.625rem;
  height: 3.75rem;
  font-size: 1.625rem;
  border-radius: 4.125rem;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1;
}

main.recruit .recruit_btn a.recruit_contact_btn {
  background: #E8358B;
}
main.recruit .recruit_btn a.recruit_line_btn {
  background:#3D9F2C;
}
main.recruit .photo_wrap {
  position: relative;
  overflow: hidden;
}

main.recruit .photo_wrap section {
  z-index: 2;
  position: relative;
}
main.recruit .photo_wrap .voices_bg {
  position: absolute;
  bottom: 7rem;
  left: -5%;
  width: 120%;
  height: 30rem;
  transform: rotate(-4deg);
  background:linear-gradient(180deg, #FFE3EF 0%, rgba(255, 227, 239, 0.20) 100%);
  z-index: 0;
}


main.recruit .girls_photo .w_line {
  position: relative;
  height: 3rem;
}
main.recruit .girls_photo .w_line h3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
}

main.recruit .girls_photo .w_line span {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #ffffff;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: 0.02em;
  width: 100%;
  font-size: 2.75rem;
  text-align: center;
  display: block;
  z-index: 1;
  text-shadow:
  -2px -2px 0 #fff,
   0px -2px 0 #fff,
   2px -2px 0 #fff,
  -2px  0px 0 #fff,
   2px  0px 0 #fff,
  -2px  2px 0 #fff,
   0px  2px 0 #fff,
   2px  2px 0 #fff;
         white-space: nowrap;
}

main.recruit .photo_area {
  margin-bottom: 4rem;
}
main.recruit .girls_photo .photo_area ul {
  flex-wrap: wrap;
  justify-content: flex-start;

}
main.recruit .girls_photo .photo_area ul li {
  width: 23%;
  aspect-ratio: 3 / 3.5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

main.recruit .girls_photo .photo_area ul li img {
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3 / 3.5;
}




main.recruit .girls_photo ul.voice_slide {
  width: 90%;
  margin: 0 auto;
}

main.recruit .girls_photo ul.voice_slide li {
  background: #ffffff;
  border-radius: 1.875rem;
  padding: 2rem;

}

main.recruit .voice_area {
  padding-bottom: 80px;
}
ul.voice_slide li h4 {
  color: #E8358B;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
ul.voice_slide li div {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.5rem;
}
ul.voice_slide li div span.voice_history {
  width: 4.375rem;
height: 2.25rem;
display: flex;
color:#FF9BCB ;
text-align: center;
line-height: 1.2;
border: solid 1px #FF9BCB;
border-radius: 0.375rem;

}

main.recruit .girls_photo ul.voice_slide li p {
  text-align: justify;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  line-height: 1.2rem; /* 行の高さを設定 */
  min-height: 6rem; /* 5行分の高さ (1.5rem * 5) */
}

main.recruit .girls_photo ul.voice_slide li a.read-more {
  color:#FF9BCB;
  font-size: 1rem;
  text-align: center;
  display: block;
  margin-top: 1rem;
}
main.recruit .girls_photo ul.voice_slide li a.read-more.non {
  height: 24px;
  pointer-events: none;
}

ul.voice_slide .slick-track {
  display: flex !important;
}

ul.voice_slide .slick-slide {
  height: auto !important;
    margin: 0 0.5rem;
}

ul.voice_slide .slick-next {
  top: 9rem;
  right: -0.7rem;
}

ul.voice_slide .slick-prev {
  top: 9rem;
  left: -0.7rem;
}

ul.voice_slide .slick-next:before {
  width: 1.5rem;
  height: 1.5rem;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: solid 1px #E8358B;
  border-right: solid 1px #E8358B;

}


ul.voice_slide .slick-prev:before {
  width: 1.5rem;
  height: 1.5rem;
  transform: translate(-50%, -50%) rotate(225deg);
  border-top: solid 1px #E8358B;
  border-right: solid 1px #E8358B;

}



main.recruit section.requirements {
  background :#FFEDF5;
  box-shadow: 4px 4px 60px 0px rgba(232, 53, 139, 0.60);
  border-radius: 1.25rem;
  position: relative;
  padding: 2rem 1rem;
}

main.recruit h3.ft_kar {
  text-align: center;
  font-size: 2.25rem;
  display: brock;
  width: 100%;
  margin-bottom: 2rem;
}
main.recruit h3.ft_kar span {

  font-family: "fot-chiaro-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

main.recruit section.requirements dl {
  display: flex;
  margin-bottom: 0.4rem;


}

main.recruit section.requirements dl dt {
  background: #E8358B;
  width: 7em;
  color: #ffffff;
  font-size: 0.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;

}

main.recruit section.requirements dl dd {
  width: calc(100% - 7em);
  font-size: 0.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  color: #434343;
  padding: 0.8rem;
  font-family: Kozuka Gothic Pro;
}



main.recruit .recruit_form {
  background: #ffffff;
  padding-top: 3rem;
  padding-bottom: 3rem;
}


main.recruit div.order {
  align-items: center;
  justify-content: center;
}

main.recruit div.order div {
  gap: 0.3rem;
}

main.recruit div.order .order_num {
  position: relative;
  color: #ffffff;
  width: 3.5625rem;
  height: 3.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 1.875rem;
  letter-spacing: -0.05em;
  z-index: 0
}

main.recruit div.order .order_num:after {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  display: block;
  background: url(../img/order_num_heart.webp) no-repeat;
  width: 3.5625rem;
  height: 3.25rem;
  z-index: -1;
}

main.recruit div.order .now .order_num:after {
  background: url(../img/order_num_heart_now.webp) no-repeat;
}

main.recruit div.order .order_txt {
  font-size: 1.125rem;
  color: #FF9BCB;
}

main.recruit div.order .now .order_txt {
  color: #E8358B;
}

main.recruit div.order .order_border {
  width: 2.5rem;
  height: 0.125rem;
  background: #FF9BCB;
}
main.recruit div.order .order_border.now {
  background: #E8358B;
}

main.recruit div.form_main {
  width: 100%;
  border: solid 1px #E7E7E7;
  padding:2rem;
  align-items: flex-start;
}

main.recruit form label {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0.5rem;
}
main.recruit form label span {
  margin-bottom: 0.5rem;
}
main.recruit form label span small {
  font-size:14px;
  color: #434343;
}

main.recruit form label input {
  border: 0;
  background: #FFE3EF;
  border-radius: 10px;
  width: 100%;
  height: 2.5rem;
  padding: 0 0.5rem;
}


main.recruit form label.age div {
  justify-content: flex-start;
  align-items: flex-end;
}
main.recruit form label.age input { 
  width: 10em;
}

main.recruit form label .dates {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 0;

}
main.recruit form label .dates span {
  margin-right: 1rem;
}
main.recruit form label input[type="date"] {
  width: 15rem;
  padding: 0 0.5rem;
  margin-right: 20%;
}
main.recruit form label select {
  width: 30%;
  height: 2.5rem;
background: #FFE3EF;
border-radius: 10px;
border: 0;
padding: 0 0.5rem;
margin-right: 0.5rem;
}

main.recruit form label textarea {
  border: 0;
  background: #FFE3EF;
  border-radius: 10px;
  width: 100%;
  height: 17.1875rem;
  padding:0.5rem;
}

main.recruit form button {
  color:#ffffff;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  
  width: 70%;
  height: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.625rem;
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
  margin: 1rem auto 1.5rem;
  border: 0;
}


main.recruit .form_main.confirm label {
  border-bottom:solid 1px #E7E7E7;
}


main.recruit .form_main.confirm label p {
  padding: 0.5rem 0;
}


main.recruit .form_main.complete strong,
main.recruit .form_main.complete p {
  width: 100%;
}



/* イベント */
main.events {}

main.events .event_select {
  width: 80%;
  margin: 0 auto 1rem;
  justify-content: flex-start;
  gap: 1rem;

}

main.events .event_select a.all_btn {
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
  color: #ffffff;
  height: 2.5rem;
  border-radius: 2.76713rem;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

main.events .event_select a.all_btn:after {
  content: "▼";
}

main.events #monthly div {
  flex-wrap: wrap;
  gap:1rem 0 ;

}
/* タブのスタイル */
.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;

}

.tab-input {
  display: none;

}

.tab-label {
  cursor: pointer;
  padding: 10px 20px;
  text-align: center;
  margin-bottom: 5px;
  color: #ffffff;

  font-family: "din-2014", sans-serif;

  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  height: 2.5rem;
  line-height:1;
  width: calc(50% - 0.5rem);
  border-radius: 2.76713rem;
  background: #FF9BCB;
}


/* タブが選択されたときのスタイル */
.tab-input:checked + .tab-label {
  background: #E8358B;
  color: #fff;
}

/* タブコンテンツのスタイル */
.tab-content {
  width: 100%;
  max-height: 0;
  display: block; /* 常にblockに設定 */
  opacity: 0; /* 初期状態では透明 */
  visibility: hidden; /* 初期状態では非表示 */
  transition: opacity 0.5s, visibility 0.5s; /* トランジションの設定 */
}

/* 選択されたタブのコンテンツを表示 */
#alltab:checked ~ #all-content,
#todaytab:checked ~ #today-content {
  opacity: 1; /* 完全に不透明 */
  visibility: visible; /* 表示 */
  max-height:3000px;
}

#today-content {
  margin-top: -16px;
}

.tab-content .top_events {
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 1rem;
}

.tab-content .top_events li {
  width: calc(50% - 0.5rem);
}



.pager {
  margin: 0 auto;
  justify-content: center;
  gap: 0.5rem;
}

.pager li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  clip-path: circle(50% at 50% 50%);
  background: #FF9BCB;
  color: #ffffff;
  font-size: 1.57225rem;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-style: normal;
  position: relative;
}
.pager li.now a {
  background: #E8358B;
  pointer-events: none;
}

.pager li.prev a,
.pager li.next a {
  background: none;
}

.pager li.prev a:before {
  content: '';
  position: absolute;
  top: 51%;
  right: -30%;
  transform: translate(-50%, -50%) rotate(225deg);
  border-top: solid 1px #E8358B;
  border-right: solid 1px #E8358B;
  width: 20px;
  height: 20px;
}

.pager li.next a:before {
  content: '';
  position: absolute;
  top: 51%;
  right: 30%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: solid 1px #E8358B;
  border-right: solid 1px #E8358B;
  width: 20px;
  height: 20px;
}


.events_article {}

.events_article h4 {
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #434343;
  margin-bottom: 1rem;

}
.events_article img {
  margin-bottom: 1rem;
}
.events .article_move {
  width: 90%;
  margin: 0 auto;
}


.events .article_move a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FF9BCB;
  border-radius: 3.1105rem;
  width: 50%;
  height: 2.5rem;
  color: #ffffff;
  color:#ffffff;
  font-family: "din-2014", sans-serif;
  font-weight: 600;

  font-size: 1.125rem;
}

/* GIRLS */
main.girls .girls_toplink {
  flex-direction: column-reverse;
  gap: 0.4rem;
}

main.girls .girls_select {
  width: 100%;
  margin: 0 auto 1rem;
  justify-content: flex-start;
  gap: 0.5rem;

}

main.girls .girls_select a {
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
  color: #ffffff;
  height: 2.5rem;
  border-radius: 2.76713rem;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  
}

main.girls .girls_select a.now {
  display: none;
}

main.girls ul.girls_week {
  border:solid 1px #E8358B;
  gap: 0;
}

main.girls ul.girls_week li {
  border-right:solid 1px #E8358B;
  flex: 1;
}


main.girls ul.girls_week li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Kozuka Gothic Pro;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  line-height: 1.2;
}

main.girls ul.girls_week li:last-child {
  border: 0;
}

main.girls ul.girls_week li.sat a {
  background: #FFD9EB;
  color: #0085FF;
}

main.girls ul.girls_week li.sun a {
  color: #E8358B;
}

main.girls h3.newfaceh3 {
  color: #434343;
  font-size: 2.125rem;
  text-align: left;
  background: none;
    -webkit-text-fill-color: inherit;
}

main.girls ul.top_girls.rankpage {
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 1rem;
}
main.girls ul.top_girls.rankpage li a {
  width: 100%;
  height: 100%;
  gap: 0;
}
main.girls ul.top_girls.rankpage li.no1 {
  width: 75%;
  margin: 0 auto;
}

main.girls ul.top_girls.rankpage li.no2,
main.girls ul.top_girls.rankpage li.no3 {
  width: calc(50% - 0.32rem);
}

ul.top_girls.ranking li div.ranknum:not(.no1 div.ranknum) {
  font-size: 2.0625rem;
  margin: 0;

}

ul.top_girls.ranking li div.ranknum img:not(.no1 img) {
  width: 2.34375rem;
height: 1.875rem;
}


main.girls ul.top_girls li span.ranknums {
  font-size: 2rem;
  color: #FF9BCB;
}

main.girls .girls_select.rank_select {
  width: 100%;
  border-top: solid 1px #E8358B;
  border-left: solid 1px #E8358B;
  gap: 0;
  flex-wrap: wrap;
  padding: 0;
}

main.girls .girls_select.rank_select a {
  width: calc(50% - 1px)!important;
  border-radius: 0!important;
  border-bottom: solid 1px #E8358B;
  border-right: solid 1px #E8358B;
  background: #ffffff;
  color:#E8358B ;
  font-size: 1.125rem;
}
main.girls .girls_select.rank_select a.now {
  background: #FFE3EF;
  display: flex;
}




/* GIRLS PROFILE */
main.girlsdetail {}
main.girlsdetail section div.detail_wrap {
  align-items: flex-start;

}
main.girlsdetail img.main_img {
  margin-bottom: 1rem;
}

/* 名前・スケジュール */
main.girlsdetail h4 {
  font-size: 1.625rem;
  color:#E8358B ;
  height: 2.5rem;
  border-left: solid 10px #E8358B;
  padding-left: 0.7rem;
  margin-bottom: 1rem;
}
main.girlsdetail .girls_photo_slide img {
  border-radius: 1.47819rem;
}


.girlsdetail .photo_thumbnail {
  width: 100%;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  padding-top: 1rem;
}

.girlsdetail .photo_thumbnail.movie {
  padding: 0;
}

.girlsdetail .photo_thumbnail a {
  width: calc(20% - 0.4rem);
}
.girlsdetail .photo_thumbnail a img {
  border-radius: 0.375rem;
  width: 100%;
}

.girlsdetail ul.girls_sns {
  justify-content: flex-start;
  gap: 0.8rem;
}

.girlsdetail ul.girls_sns li {
  height: 2.4375rem;
}
.girlsdetail ul.girls_sns li a img {
  border-radius: 0;
  height: 2.4375rem;
  width: auto;
}


.girls_schedule {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.6875rem;
}

.girls_schedule th, .girls_schedule td {
  border: 1px solid #FF9BCB;
  text-align: center;
}

.girls_schedule th {
  background-color: #FFEDF5;
  height: 1.875rem;
  vertical-align: middle;
}
.girls_schedule td {

  vertical-align: middle;
  font-size: 0.875rem;
  line-height: 1.1;
  padding: 0.3rem 0;
}

.girls_schedule .sun {
  color: #E8358B;
}

.girls_schedule .sat {
  color: #0085FF;
}

.girls_schedule .rest, .girls_schedule .undecided {
  background-color: #E7E7E7;
}


/* girls_profileクラスに対するスタイル */
.girlsdetail .girls_profile {
  border: 1px solid #E8358B; 
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}

.girls_profile tr {

}

.girls_profile th,.girls_profile td {
  border: 1px solid #E8358B;
  height: 3rem;
  vertical-align: middle;
  min-width: 8em;
  font-size: 0.8rem;
}

.girls_profile th {
  background-color: #FF9BCB;
  color: #ffffff; 
  font-size: 0.8rem;
  padding:0.5rem; 
}

.girls_profile td {
  background-color: #FFEDF5; 
  padding: 0.5rem; 
  text-align: left; 
  font-weight: normal; 
}



.girlsdetail h5 {
  font-size: 2.125rem;
}

.girlsdetail a.more_btn_line {
  width: 100%;
  height: 3.75rem;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  color: #ffffff;
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
}


/* 途中から非表示にする行のスタイル */
.girls_profile.hide-rows tr {
  display: none;
}

.girls_profile tr:nth-child(n+13) { /* 6行目以降を対象 */
  display: none; /* 非表示にする */
}

.girls_profile {
  position: relative;
}

.girls_profile::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 200px; /* グラデーションの高さ */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)); /* 白のグラデーション */
}
.girls_profile.expanded::after {
  content: none;
}
span#showMoreButton {
  color: #E8358B;
  font-size: 1.125rem;
  display: block;
}


.girlsdetail ul.voice_slide {
  width: 90%;
  margin: 0 auto;
}

.girlsdetail ul.voice_slide li {
  background: #ffffff;
  border-radius: 1.875rem;
  padding: 1.6rem;
  border: solid 1px #e7e7e7;

}
.girlsdetail ul.voice_slide li h4 {
  border:none;
  padding: 0;
  font-size: 1.125rem;
  line-height: 1.2;
}


.girlsdetail .voice_area {
  padding-bottom: 80px;
}
.girlsdetail ul.voice_slide li h4 {
  color: #E8358B;
  font-size: 1.125rem;
  height: fit-content;
  margin-bottom: 0.5rem;
}
.girlsdetail ul.voice_slide li div {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.5rem;
}
.girlsdetail ul.voice_slide li div span.voice_history {
padding: 0 1em;
width: fit-content;
height: 2.25rem;
display: flex;
color:#FF9BCB ;
text-align: center;
line-height: 1.2;
border: solid 1px #FF9BCB;
border-radius: 0.375rem;
}
main.girlsdetail ul.voice_slide li div .voice_heart {
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.4rem;    
  height: 2.25rem;
  margin: 0;
}
main.girlsdetail ul.voice_slide li div .voice_heart img {
  width: 1.33594rem;
  border-radius: 0;

}
.girlsdetail ul.voice_slide li p {
  text-align: justify;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  line-height: 1.2rem; /* 行の高さを設定 */
  min-height: 6rem; /* 5行分の高さ (1.5rem * 5) */
}

.girlsdetail ul.voice_slide li a.read-more {
  color:#FF9BCB;
  font-size: 1rem;
  text-align: center;
  display: block;
  margin-top: 1rem;
}
.girlsdetail ul.voice_slide li a.read-more.non {
  height: 24px;
  pointer-events: none;
}


/* ブログ */
main.girlsdetail ul.voice_slide.girls_blog li {
  border: 0;
  border-radius: 0;
  padding: 0;
}

ul.voice_slide.girls_blog li div {
  width: 100%;
  justify-content: space-between;
  align-items: stretch;

}
ul.voice_slide.girls_blog li div img {
  width: 40%;
  border-radius: 0;
}
ul.voice_slide.girls_blog li div div {
  justify-content: space-between;
align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
}
ul.voice_slide.girls_blog li div div h4 {
  margin: 0;
  height: fit-content;
}
ul.voice_slide.girls_blog li div div small {
  color: #888888;
}
ul.voice_slide.girls_blog li div div span {
  display: flex;
  color: #FF9BCB;
  border: solid 1px #FF9BCB;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25px;
}
ul.voice_slide.girls_blog li div div p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3!important;
  overflow: hidden;
  min-height: auto;
  text-align: left;
}

.girlsdetail .more_btn {
  width: 80%;
  font-size: 1.5rem;
  margin-bottom: 3rem;
}


/* 口コミレビュー */

main.review form select {
  width: fit-content!important;

}

.rating {
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 1rem;
}

main.review .rating label {
  cursor: pointer;
  width: fit-content;
}
.rating label img {
  width: 2.8125rem;
height: 2.5rem;
}

.rating input {
  display: none; /* ラジオボタンを非表示にする */
}

.rating label img.on {
  display: none; /* デフォルトでは「on」画像を非表示にする */
}

.rating input:checked ~ label img.off {
  display: none;
}

.rating input:checked ~ label img.on {
  display: inline;
}

.rating label:hover img.on,
.rating label:hover ~ label img.on {
  display: inline;
}

.rating label:hover img.off,
.rating label:hover ~ label img.off {
  display: none;
}

main.contact.review .voice_heart {
  justify-content: flex-start;
  padding-bottom: 1rem;
}
main.contact.review .voice_heart img {
  width: 2rem;
} 



/* GALLERY PHOTO MOVIE  */
main.gallery {}

main.gallery .top_link {
  display: flex;
  flex-direction: column-reverse;
}

main.gallery .top_link .gallery_select {
  width: 100%;
  margin: 0 auto 1rem;
  justify-content: space-between;
  gap: 1rem;
}

main.gallery .gallery_select a {
  margin: 0;
  font-family: "din-2014", sans-serif;
    font-weight: 600;
  width: calc(50% - 0.5rem);
  height: 2.5rem;
  border-radius: 2.76713rem;
  background: #ffffff;
  color: #E8358B;
  border: solid 1px #E8358B;
  font-size: 1.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
main.gallery .gallery_select a.now {
  border: 0;
  color: #ffffff;
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);
}

main.gallery section.gallery_photo div {
  flex-wrap: wrap;
  gap: 0.3rem;
}

main.gallery section.gallery_photo div img {
  width: calc(25% - 0.3rem);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}


main.gallery section.gallery_movie ul:not(.pager) {
  flex-wrap: wrap;
  gap: 1rem;
}

main.gallery section.gallery_movie ul li:not(.pager li) {
  width: calc(50% - 0.6rem);
}


/* SHOP */
main.shop {
}

main.shop .shop_photo {
  width: 100%;
  aspect-ratio: 360 / 260;
  overflow: hidden;
}
main.shop .shop_photo div {
  width: 100%;
  aspect-ratio: 360 / 260;
}
main.shop .shop_photo img {
  border-radius: 20px;
  aspect-ratio: 360 / 260;
  object-fit: cover;
  object-position: center;
}

main.shop .shop_photo_thumbnail {
  width: 100%;
  overflow-x: scroll;
  display: flex;
  gap: 0.5rem;
  padding-bottom: 5px;
}


main.shop .shop_photo_thumbnail img {
  width:15% ;
  border-radius: 4px;
}

/* カスタムスクロールバーのスタイル */
main.shop .shop_photo_thumbnail::-webkit-scrollbar {
  height: 4px; /* スクロールバーの高さ */
}

main.shop .shop_photo_thumbnail::-webkit-scrollbar-track {
  background: #FFD9EB; /* スクロールバーのトラックの背景色 */
}

main.shop .shop_photo_thumbnail::-webkit-scrollbar-thumb {
  background: #FF9BCB; /* スクロールバーのハンドルの背景色 */
  border-radius: 4px; /* ハンドルの角を丸くする */
}

main.shop .shop_photo_thumbnail::-webkit-scrollbar-thumb:hover {
  background: #FF9BCB; /* ハンドルのホバー時の背景色 */
}

/* Firefox用のスクロールバーのスタイル */
main.shop .shop_photo_thumbnail {
  scrollbar-width: thin; /* スクロールバーの幅を細くする */
  scrollbar-color: #FF9BCB #FFD9EB; /* スクロールバーのハンドルとトラックの色 */
}


main.shop table.shop_info {
  width:100%; /* テーブルの幅を100%に設定 */
  border-collapse: separate; /* セルの境界線を分離 */
  border-spacing: 0 0.3rem;
}


main.shop table.shop_info th, td {
  padding: 1rem; /* セル内のパディング */
  text-align: left; /* テキストを左揃え */
  vertical-align: middle;
  font-size: 0.8125rem;
}


main.shop table.shop_info th {
  background-color: #FFE3EF; /* 1行目の背景色 */
  color: #E8358B; /* 1行目の文字色 */
  font-weight: bold; /* 見出しのフォントを太字に */
  vertical-align: middle;
  text-align: center;
  padding :1rem;
  white-space: nowrap;
}


main.shop table.shop_info td {
  background-color: #ffffff; /* データセルの背景色 */
}

main.shop h4 {
  font-size: 2.125rem;
  line-height: 1;
  margin-bottom:0.4rem;
}

main.shop .shop_googlemap iframe {
  width: 100%;
  height: 16.875rem;
  border-radius: 1.875rem;
}


main.shop .insideview img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  }
  


main.shop .shop_youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
main.shop .shop_youtube iframe {
  width: 100%;
  height: 100%;
}

main.shop .shop_officialsns {}
main.shop .shop_officialsns p {
  text-align: center;
}
main.shop .shop_officialsns div {
  width: 100%;
  flex-wrap: wrap;
  gap: 0.6rem;
}
main.shop .shop_officialsns div a {
  width: calc(50% - 0.3rem);
  height: 3.125rem;
  font-size: 1.125rem;
  white-space: nowrap;
  border-radius: 3.75rem;

  justify-content: center;
  align-items: center;

  color: #ffffff;
  background: linear-gradient(90deg, #E8358B 13.02%, #FF9BCB 95.83%);

}


.shop_faq {
  /* padding: 10px; */
}

.faq_contents {
  gap: 0;
  width: 100%;
  padding: 0.6rem 1rem;
  flex-wrap: wrap;
  border-radius: 1.25rem;
border: 2px solid var(--ff-8-ec-4, #FFD9EB);
background: var(--ffffff, #FFF);
box-shadow: 5px 5px 0px 0px rgba(255, 155, 203, 0.20);
margin-bottom: 1rem;
}

.faq_contents .question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1.125rem;
  font-weight: bold;
}

.faq_contents span.faq_title {
  font-size: 3.125rem;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  color: #E8358B;
  line-height: 1;
  margin-right: 0.8rem;
}

.faq_contents .answer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.faq_contents .answer div {
  padding: 1rem 0 0.3rem;
  gap: 0;
  justify-content: flex-start;
}
.faq_contents .answer div p {
  padding-top: 4px;

}
.faq_contents .answer span.faq_title {
  color: #FF9BCB;
}

.faq_contents .toggle {
  font-size: 2.7rem;
  color: #E8358B;
  line-height: 1;
  margin-left: auto;
  padding-left: 0.5rem;
}

.faq_contents .toggle.active {
  transform: scaleX(1.8);
  padding-right: 0.3rem;
  padding-bottom: 0.3rem;
}