@charset "UTF-8";
/* stylelint-disable */

@font-face {
  font-family: "WebSubsetFont";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/WebSubsetFont.woff2") format("woff2");
  font-display: swap;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

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

html{
  font-size: 62.5%;
}

html,body{
  height: 100%;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

ol, ul {
  list-style: none;
}

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

input[type="submit"],input[type="text"],
input[type="email"],input[type="button"],input[type="password"]{
  -webkit-appearance: none;
  border-radius: 0;
}

/*------------------------------
	base
------------------------------*/
a {color: #333;text-decoration: none;}

.my20{margin: 20px auto;}
.mb0 {margin: 0 0 0 0;}
.mb5 {margin: 0 0 5px 0;}
.mb10 {margin: 0 0 10px 0;}
.mb15 {margin: 0 0 15px 0;}
.mb20 {margin: 0 0 20px 0;}
.mb30 {margin: 0 0 30px 0;}
.mb40 {margin: 0 0 40px 0;}
.mb50 {margin: 0 0 50px 0;}
.mb60 {margin: 0 0 60px 0;}
.mb70 {margin: 0 0 70px 0;}
.mb80 {margin: 0 0 80px 0;}
.mb90 {margin: 0 0 90px 0;}
.mb100 {margin: 0 0 100px 0;}
.pt0 {padding-top: 0!important;}
.pb0 {padding-bottom: 0!important;}

body{
  font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Yu Gothic UI','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
  /* font-family: 'futura-pt'; */
  font-size: 1.6rem;
  line-height: 1.7;
  color: #313131;
}

p {
  margin: 0 0 8px;
}

video {
  width: 100%;
  max-width: 100%;
  height: auto;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
}

.ban {
  font-weight: bold;
  color: #ff0000;
}

/*------------------------------
	header
------------------------------*/

header {
  position: fixed;
  top: 0;
  background: rgb(0 0 0 / 80%);
  width: 100%;
  z-index: 100;

}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding : 0 20px;
  height: 70px;
}

.sns li {
  width: 25px;
  height: auto;
}

.home-logo {
  width: 200px;
}

.home-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(2px 2px 3px #333);
}

.header-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.btn-fix-reserve {
  text-align: center;
  width: 175px;
  margin: 0 auto;
}

.btn-fix-reserve a {
  display: block;
  padding: 5px 15px 5px 5px;
  background: url("../img/btn01.png") no-repeat 90% center #fdfdfd;
  background-size: 15px;
  color: #111;
  font-weight: bold;
  border: 1px solid #111;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0,0,0,.3), 0 3px 3px rgba(0,0,0,.3) inset;
  transition: 0.3s;
}

.btn-fix-reserve a:hover {
  border-radius: 0;
  background: url("../img/btn01-hover.png") no-repeat 90% center #111;
  background-size: 15px;
  color: #fff;
}


/*------　Hamburger menu　-------*/

#nav-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 7px;
  box-sizing: border-box;
  background: #111;
  cursor: pointer;
  z-index: 10;
}

#nav-toggle span {
  display: block;
  position: absolute;
  width: 64%;
  height: 3px;
  background: #fff;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 7px;
}

#nav-toggle span:nth-child(2) {
  top: 18px;
}

#nav-toggle span:nth-child(3) {
  top: 29px;
}

#nav-toggle span:nth-child(1).active {
  top: 19px;
  transform: rotate(-45deg);
}

#nav-toggle span:nth-child(2).active, #nav-toggle span:nth-child(3).active {
  top: 19px;
  transform: rotate(45deg);
}

/*------　full screen　-------*/
.gnav {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  background: rgba(255,255,255,.9);
  height: 100%;
  width: 100%;
  z-index: 9;
}

.gnav nav {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.gnav nav li {
  margin: 0 0 12px 0;
  font-weight: bold;
}

.gnav nav li {
  overflow: hidden;
}

.gnav nav li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2d2d2;
}

.gnav nav li a {
  display: inline-block;
  position: relative;
  transition: ease .4s;
  z-index: 1;
}

.gnav nav li a:hover {
  color: #fff;
}

.gnav nav li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #81d8d0;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.gnav nav li a:hover::after {
  transform-origin:left top;
  transform:scale(1, 1);
}

.gnav nav ul {
  width: 82vw;
  padding: 40px 0;
}

.gnav nav li p {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.gnav nav li.tree div {
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  overflow: hidden;
  margin: 0 3px;
}

.gnav nav li.tree span {
  font-weight: normal;
  font-size: 1.5rem;
  display: inline-block;
  float: right;
  margin: 3px 0 0;
}

.gnav nav li.tree span a {
  margin: 0px 0 0 20px;
}

/*------------------------------
	footer
------------------------------*/
footer {
  text-align: center;
  /* box-shadow: 0 5px 8px -5px rgba(55,55,55,.3) inset; */
  padding: 60px 0 80px;
}

footer .logo {
  margin: 0 30px 50px 60px;
  width: 150px;
}

footer .logo small{
  margin: 50px auto 0;
}

footer ul {
  margin: 0 auto 40px;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr;
}

footer li {
  font-size: 1.2rem;
}

footer li:nth-child(odd) {
  text-align: right;
}

footer li:nth-child(even) {
  text-align: left;
}

footer li a:hover {
  color: #81d8d0;
}

footer .sns ul {
  display: block;
  text-align: center;
  margin: 0 auto 50px;
}

footer .sns ul li {
  display: inline-block;
  margin: 0 8px;
}

footer small {
  display: block;
  text-align: center;
  font-size: 1rem;
}

footer .footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 0 40px;
}

footer .footer-sitemap div{
  flex-basis: 25%;
  margin: 0 15px;
}

footer .footer-sitemap h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 20px;
  padding: 0 0 5px 0;
  text-align: left;
  font-size: 1.7rem;
  font-weight: bold;
  border-bottom: 1px solid #333;
}

footer .footer-sitemap h3 label {
  pointer-events: none;
  display: none;
  width: 18px;
  height: auto;
  /*
  border: 0px;
  border-top: solid 4px #111;
  border-right: solid 4px #111; */
  cursor: pointer;
}

footer .footer-sitemap h3 label img{
  transform: rotate(90deg);
  transform-origin:50% 50%;
  cursor: pointer;
  transition: all ease .3s;
}

#expand1,#expand2,#expand3,#expand4 {
  display: none;
}

footer .footer-sitemap div ul {
  display: block;
}

footer .footer-sitemap div ul li{
  text-align: left;
  margin: 10px 0;
}

footer .footer-sitemap div ul li::before{
  /* content: '';
  display: inline-block;
  width: 10px;
  height: 2px;
  margin: 0 5px 0 0;
  vertical-align: middle;
  background-color: #707070; */
}

footer .footer-sitemap .links span {
}

footer .footer-sitemap .links a {
  display: flex;
  flex-direction: column;
}

footer .footer-sitemap .links ul li.core a img {
  max-width: 150px;
  margin: 10px 0;
}

footer .footer-sitemap .links ul li.patolo a img {
  max-width: 100px;
  margin: 10px 0;
}

footer .footer-sitemap .links ul li.affiliate a img {
  max-width: 60px;
  margin: 10px 0;
}

.bottom {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 100%;
  background: #111;
  padding: 10px 25px;
  box-sizing: border-box;
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.form-btn {
  margin: 0;
}

.form-btn a {
  color: #fff;
  font-size: 1.5rem;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid #fff;
  padding: 5px 15px;
  margin: 0 15px 0 0;
  text-align: center;
  width: 100%;
  transition: 0.2s;
}

.pagetop {
  margin: 0;
}

.pagetop a {
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  font-size: 1.3rem;
  text-align: center;
  padding: 3px 25px 3px 5px;
  box-sizing: border-box;
  background: url("../img/arrow02.png") no-repeat center right;
  background-size: 20px;
}


/*------------------------------
	top
------------------------------*/
.top-visual {
    width: 100%;
    /* height: 100%; */
    /* max-height: 750px; */
    position: relative;
    /* margin: 70px 0 0; */
    /* overflow: hidden; */
  }

.visual-bg {
  display: block;
  width: 100%;
  /* height: 100vh; */
  height: 100%;
  /* max-height: 750px; */
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
	/* background-image: radial-gradient(#555 10%, transparent 10%), radial-gradient(#555 30%, transparent 30%); */
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
  z-index: 2;
}

.top-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    color: #fff;
}

@font-face {
  font-family: "SM-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/SM-SemiBold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "SM-ExtraBold";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/SM-ExtraBold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "ZKGN-Regular";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/ZKGN-Regular.woff2") format("woff2");
  font-display: swap;
}

.top-section__catch-copy {
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.8px;
    width: max-content;
    font-family: "Yu Mincho Demibold", YuMincho, "SM-SemiBold";
}

.top-section__divider {
    width: 210px;
    border-top: solid 1px #fff;
}

.top-section__title {
    font-size: 20px;
    width: max-content;
    font-family: "ZKGN-Regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic;
}

.top-section__title::after {
    content: "※";
    font-size: 11px;
}

.top-section__title-catch {
    color: #81D8D0;
    font-size: 32px;
    font-weight: 800;
    font-family: "Yu Mincho Demibold", YuMincho, "SM-ExtraBold";
}

.top-supplement {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    color: #fff;
    z-index: 10;
    font-family: "ZKGN-Regular", "Yu Gothic Medium", "游ゴシック Medium", YuGothic;
}

.top-visual h1 img {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 30px;
  filter: drop-shadow(2px 2px 5px #333);
}

.top-visual div img.pc {
  display: block;
}

/* .top-visual h1 span.text-left {
    text-align: left;
}

.top-visual h1 span.text-right {
    text-align: right;
} */

.top-visual div img.sp {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  max-height: 550px;
}

.top-visual p img.sp {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  max-height: 550px;
}

/* .top-visual .main-visual::after{
  content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
} */

.top-visual .main-visual video {
    display: block;
    /* position: absolute; */
    /* width: 100%; */
    /* height: 100vh; */
    object-fit: cover;

    /* top: 0; */
    /* left: 0; */
}

.visual-wrap {
    height: 100vw;
}

.top-img-wrapper {
    position: relative;
    aspect-ratio: 1920 / 1080;
    display: block;
}

.visual-wrap img {
    height: 100%;
}

.triple img {
  aspect-ratio: 2 / 3;
}

@media screen and (width < 768px) {
    .top-img-wrapper {
        aspect-ratio: 720 / 1080;
    }
}

.wrap-youtube {
  max-width: 650px;
  padding: 0 10px 90px;
  box-sizing: border-box;
  margin: 0 auto;
}

.wrap-800 {
  max-width: 800px;
  padding: 60px 20px 80px;
  box-sizing: border-box;
  margin: 0 auto;
}

.manual-men .wrap-800 , .manual-women .wrap-800 , .lounge-feature .wrap-800{
  padding: 55px 20px;
}

.wrap-1000 {
  max-width: 1000px;
  padding: 55px 10px;
  box-sizing: border-box;
  margin: 0 auto;
}

.top section:nth-child(odd) {
  background: #f8f8f8;
}

h2.title01 {
  text-align: center;
  margin: 0 0 55px;
  font-size: 1.2rem;
}

h2.title01 span {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
  margin: 0 0 8px;
}

h2.title01 span::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #111;
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0 0 0 -50px;
}

.center {
  text-align: center;
}

.back {
  color: #111;
  font-weight: bolder;
  font-size: 1.4rem;
  text-decoration: underline;
}

.back:hover {
  text-decoration: none;
}

.font-l {
  font-weight: bold;
  font-size: 2.4rem;
}

.btn01 {
  text-align: center;
  max-width: 220px;
  margin: 0 auto;
}

.btn01 a {
  display: block;
  padding: 10px 15px 10px 5px;
  background: url("../img/btn01.png") no-repeat 90% center transparent;
  background-size: 15px;
  color: #111;
  font-weight: bold;
  border: 1px solid #111;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0,0,0,.3), 0 3px 3px rgba(0,0,0,.3) inset;
  transition: 0.3s;
}

.btn01 a:hover {
  border-radius: 0;
  background: url("../img/btn01-hover.png") no-repeat 90% center #111;
  background-size: 15px;
  color: #fff;
}

.btn-reserve {
  text-align: center;
  width: 240px;
  margin: 65px auto 0;
}

.btn-reserve a {
  display: block;
  padding: 10px 15px 10px 5px;
  background: url("../img/btn01.png") no-repeat 90% center transparent;
  background-size: 15px;
  color: #111;
  font-size: 1.5rem;
  font-weight: bold;
  border: 1px solid #111;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0,0,0,.3), 0 3px 3px rgba(0,0,0,.3) inset;
  transition: 0.3s;
}

.btn-reserve a:hover {
  border-radius: 0;
  background: url("../img/btn01-hover.png") no-repeat 90% center #111;
  background-size: 15px;
  color: #fff;
}

.btn-reserve-firstview {
  text-align: center;
  width: 240px;
  margin: 45px auto 0;
}

.btn-reserve-firstview a {
  display: block;
  padding: 10px 15px 10px 5px;
  background: url("../img/btn01.png") no-repeat 90% center rgba(252,252,252,.6);
  background-size: 15px;
  color: #111;
  font-weight: bold;
  border: 1px solid #E3E3E3;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0,0,0,.3), 0 3px 3px rgba(0,0,0,.3) inset;
  transition: 0.3s;
}

.btn-reserve-firstview a:hover {
  border-radius: 0;
  background: url("../img/btn01-hover.png") no-repeat 90% center #111;
  background-size: 15px;
  border: 1px solid #111;
  color: #fff;
}

.btn-more {
  text-align: center;
  width: 100%;
  max-width: 200px;
  margin: 65px auto 0;
}

.btn-more a {
  display: block;
  padding: 10px 15px 10px 5px;
  background: url("../img/btn01.png") no-repeat 90% center transparent;
  background-size: 15px;
  color: #111;
  font-size: 1.5rem;
  font-weight: bold;
  border: 1px solid #111;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0,0,0,.3), 0 3px 3px rgba(0,0,0,.3) inset;
  transition: 0.3s;
}

.btn-more a:hover {
  border-radius: 0;
  background: url("../img/btn01-hover.png") no-repeat 90% center #111;
  background-size: 15px;
  color: #fff;
}


.btn-login {
  text-align: center;
  width: 100%;
  max-width: 350px;
  margin: 60px auto 0;
}

.btn-login a {
  display: block;
  margin: 0 0 0 10px;
  padding: 11px 15px 10px 0;
  background: url("../img/btn01.png") no-repeat 93% center transparent;
  background-size: 15px;
  color: #111;
  font-size: 1.5rem;
  font-weight: bold;
  border: 1px solid #111;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0,0,0,.3), 0 3px 3px rgba(0,0,0,.3) inset;
  transition: 0.3s;
}

.btn-login a:hover {
  border-radius: 0;
  background: url("../img/btn01-hover.png") no-repeat 93% center #111;
  background-size: 15px;
  color: #fff;
}

.text-link {
  text-align: center;
}

.text-link a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-link a:hover {
  text-decoration: none;
}

p.catch {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  margin: 0 0 70px;
}

/* slick slide */

.slide-box {
  padding: 50px 0;
}

.event-slide {
  max-width: 650px;
  margin: 0 auto;
}

.event-slide a:hover {
  opacity: 0.8;
}

.gallery-slide {
  max-width: 750px;
  margin: 0 auto;
}

.hospitality-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: 30px auto;
}

.inline dd {
  padding: 60px 0 0 25px;
}

.women-hospitality-slide {
  max-width: 320px;
  margin: 25px 0;
}

.women-hospitality-slide .slick-list{
  height: 100%;
  max-height: 220px;
  margin: 0 auto;
}

/*.ladies-slide {
  max-width: 1000px;
  margin: 0 auto;
}

.ladies-slide li a {
  position: relative;
  font-size: 1.4rem;
}

.ladies-slide li a:hover {
  opacity: 0.8;
}

.ladies-slide li a:hover::after {
  content: "この女性を見る";
  color: #fff;
  background: rgba(0,0,0,.9);
  text-align: center;
  width: 140px;
  padding: 8px 10px;
  border-radius: 25px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin: 0 0 0 -70px;
}*/

/* Number of Member */

.visitor {
    text-align: center;
}

.visitor .business-hours {
    margin-bottom: 46px;
    font-size: 1.75rem;
}

.visitor .number {
  display: flex;
  justify-content: space-evenly;
  align-items: baseline;
}

.visitor .number div img {
    max-height: 380px;
    width: auto;
    display: block;
    margin: auto;
}

.visitor .number p {
  display: block;
  margin: 30px auto;
  text-align: center;
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: -1px;
}

.visitor .number p.count span {
    font-size: 0.6em;
}

.visitor .number p.count-men {
    color: #537AB5;
}

.visitor .number p.count-women {
    color: #D489BF;
}

/* Number of Member END */

.news-lady {
  margin: 0 auto 45px;
}

.news-lady li {
  margin: 0 0 60px;
  min-width: 100%;
}

.news-lady li .img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 800 / 1200;
}

.news-lady li .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-lady li p {
  padding: 15px 10px;
  margin: 0;
  background: #f8f8f8;
  font-size: 1.2rem;
}

.news-lady li p span {
  font-weight: bold;
  font-size: 1.4rem;
  display: block;
  margin: 0 0 5px;
}

.double li {
  margin: 0 0 90px;
}

.double li:last-child {
  margin: 0;
}

ul.news-list {
  margin: 0 auto 80px;
  max-width: 600px;
}

ul.news-list li {
  border-bottom: 1px solid #111;
  padding: 0 0 20px;
  margin: 0 0 20px;
  display: grid;
  grid-gap: 0 10px;
  grid-template-columns: 70px 1fr;
  align-items: center;
}

ul.news-list li a:hover {
  color: #81d8d0;
}

ul.news-list li span {
  color: #707070;
  font-size: 1.2rem;
}

.system.double-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.system div span {
  display: inline-flex;
  margin: 0 10px 0;
  width: 35px;
}

.system div span.woman {
  width: 28px;
  margin: 0 10px 0 15px;
}

.system div.title {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  text-align: left;
  line-height: 2;
  margin: 0 0 40px;
}

.system .free {
  font-weight: bold;
  font-size: 1.9rem;
}

.system .free p {
  margin: 0 auto 0 10px;
}

.system .title a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.system .title a:hover {
  text-decoration: none;
}

.system .title p {
  margin: 0 auto;
}

.system .title .entrance-fee {
  display: flex;
  flex-direction: column;
}

.system .title .entrance-fee p.usually {
  font-size: 1.5rem;
  text-decoration: line-through;
  line-height: 1.2;
  margin: 10px 0 0;
  color: #a9a9a9;
}

.system .title .entrance-fee p.discount {
  margin: 10px 0;
  color: red;
  font-weight: bold;
  line-height: 1;
}

.system .title .entrance-fee small {
  font-size: 0.8em;
}

.system .title .entrance-fee p.campaign {
  margin: 3px 0 0;
  color: #111;
  font-weight: normal;
  font-size: 1.4rem;
}

.system .title .entrance-fee p.campaign a {
  color: #1F2AA9;
  font-weight: bolder;
  font-size: 1.4rem;
}

.system .title .entrance-fee p.details {
  margin: 10px 0 0;
  color: #111;
  font-weight: normal;
  font-size: 1.4rem;
}

.system .title .entrance-fee p.details a {
  color: #1F2AA9;
  font-weight: bolder;
  font-size: 1.4rem;
}

.system .title p.free-text {
  margin: 0 auto 0 3px;
}

.faq {
  margin: 0 auto 70px;
  max-width: 600px;
}

.faq dt {
  font-weight: bold;
  margin: 0 0 20px;
  background: url("../img/q.png") no-repeat left center;
  background-size: 30px;
  padding: 15px 0 15px 40px;
  margin: 0 0 15px;
  border-bottom: 3px dotted #ccc;
}

.faq dd {
  margin: 0 0 40px;
}

.faq dd p:last-child {
  text-align: right;
  font-size: 1.2rem;
  font-weight: bold;
}

.faq dd p:last-child a:hover {
  color: #81d8d0;
}

/* tiktok */

.tiktok {
  margin: 0 auto 45px;
}

/* media */

.media {
  margin: 0 auto 20px;
}

.media li {
  position: relative;
  margin: 0 0 40px;
}

.media div {
  display: block;
}

.media img {
  max-height: 170px;
}

.media div .photo {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.media a {
  display: block;
  height: 100%;
  border-bottom: 1px solid #d2d2d2;
}

.media a:hover {
  color: #81d8d0;
}

.media a img {
  width: 100%;
  height: 100%;
  transition:0.3s all;
}

.media a:hover img {
  transform:scale(1.2,1.2);
  transition:0.3s all;
}

.media time {
  width: 50%;
  color: #707070;
  text-align: right;
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.media li .title {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 5px;
}

.media li .more {
  text-align: right;
  font-weight: bold;
  font-size: 1.2rem;
}

.blog {
  margin: 0 auto 20px;
}

.blog li {
  position: relative;
  margin: 0 0 40px;
}

.blog div {
  display: block;
}

.blog img {
  max-height: 170px;
}

.blog div .photo {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.blog div .photo .view-number {
  position: absolute;
  z-index: 9;
  right: 0;
  top: 0;
  padding: 0 5px;
  font-size: 1.3rem;
  color: #fff;
  background: #333;
}

.blog a {
  display: block;
  height: 100%;
  border-bottom: 1px solid #d2d2d2;
}

.blog a:hover {
  color: #81d8d0;
}

.blog a img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition:0.3s all;
}

.blog a:hover img {
  transform:scale(1.2,1.2);
  transition:0.3s all;
}

.blog time {
  width: auto;
  color: #707070;
  text-align: right;
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.blog li .title {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.blog li .more {
  text-align: right;
  font-weight: bold;
  font-size: 1.2rem;
}

.top section.reserve-area {
  /* background-color: transparent; */
  /* background-image: url(../img/reserve-bg.svg); */
  background-repeat: no-repeat;
  background-position: center center;
  border-top: 1px solid #fafafa;
  border-bottom: 2px solid #fafafa;
  background-size: contain;
}

ul.access {
  max-width: 285px;
  margin: 0 auto;
}

ul.access li {
  margin: 0 0 20px;
}

ul.access li span {
  display: inline-block;
  color: #111;
  padding: 3px 15px 3px 0;
  margin: 0 10px 10px 0;
  text-align: right;
  font-size: 1.6rem;
  width: 90px;
  font-weight: bold;
}


section div .menu-container ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10px;
}

section div .menu-container ul li {
  width: calc(50% - 10px);
  box-sizing:border-box;
  border-top: 1px solid #ddd;
}

section div .menu-container ul li:nth-last-child(-n+2) {
  border-bottom: 1px solid #ddd;
}

section div .menu-container ul li a {
  display: flex;
  align-items: center;
  padding: 30px 10px;
}

section div .menu-container ul li a::before {
  margin-right: 10px;
}

section div .menu-container ul li a.useful::before {
  content: '';
  display: inline-block;
  vertical-align: bottom;
  width: 35px;
  height: 35px;
  background-image: url(../img/useful.svg);
  background-repeat: no-repeat;
}

section div .menu-container ul li a.qa::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  margin: 5px 5px 0 0;
  background-image: url(../img/qa.svg);
  background-repeat: no-repeat;
}

section div .menu-container ul li a.news::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  background-image: url(../img/news.svg);
  background-repeat: no-repeat;
}

section div .menu-container ul li a.sitsumonbako::before {
  content: '';
  display: inline-block;
  vertical-align: bottom;
  width: 35px;
  height: 35px;
  background-image: url(/img/sitsumonbako.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a.darling::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-image: url(../img/darling.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a.cinderella::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-image: url(../img/cinderella.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a.menu-about::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-image: url(../img/menu-lounge-logo.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a.menu-blog::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-image: url(../img/blog.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a.menu-media::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-image: url(../img/media.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a.menu-staff::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-image: url(../img/staff.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a.menu-ceo::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-image: url(../img/ceo-message.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a.menu-employ::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-image: url(../img/employ.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-left: auto;
  background-image: url(../img/btn01.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section div .menu-container ul li a:hover {
  opacity: .5;
}

br.pc {
  display: none;
}

/*------------------------------
	pankuzu
------------------------------*/
.pankuzu {
  max-width: 1000px;
  padding: 15px 15px 0;
  margin: 0 auto 10px;
}

.pankuzu li {
  display: inline-block;
  margin: 0 5px 0 0;
  font-size: 1.3rem;
}

.pankuzu li a:hover {
  color: #81d8d0;
}

.pankuzu li::after {
  content: ">";
  padding: 0 0 0 8px;
}

.pankuzu li:last-child::after {
  content: none;
}

/*------------------------------
	how
------------------------------*/
.visual {
  /* background: url("../img/bg01_sp.jpg") no-repeat center center; */
  background-size: cover;
  margin: 70px auto 0;
  padding: 20px 0;
  box-sizing: border-box;
}

.bg-common {
  background: url("../img/bg01_sp.jpg") no-repeat center center;
  background-size: cover;
}

.bg-about {
  background: url("../img/bg03_sp.jpg") no-repeat center center;
}

.bg-fee-system {
  background: url("../img/bg02_sp.jpg") no-repeat center center;
  background-size: cover;
}

.bg-media {
  background: url("../img/bg04_sp.jpg") no-repeat center center;
}

.bg-member-lady {
  background: url("../img/bg05_sp.jpg") no-repeat center bottom;
  background-size: cover;
}

.bg-for-men {
  background: url("../img/bg06_sp.jpg") no-repeat center center;
  background-size: cover;
}

.bg-for-women {
  background: url("../img/bg07_sp.jpg") no-repeat bottom center;
  background-size: cover;
}

.bg-staff {
  background: url("../img/bg08_sp.jpg") no-repeat center center;
  background-size: cover;
}

.bg-store {
  background: url("../img/bg09_sp.jpg") no-repeat center center;
  background-size: cover;
}

.bg-column {
  background: url("../img/bg10_sp.jpg") no-repeat center center;
  background-size: cover;
}

.visual h1 {
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 20px 10px 10px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 6px #888;
}

.visual span {
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 20px 10px 10px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 6px #888;
  display: block;
}

.bg-for-women h1 {
  text-shadow: 1px 1px 4px #111;
}

.visual .inner {
  background: rgba(255,255,255,.5);
  padding: 15px 30px;
}

.visual .inner p {
  max-width: 1000px;
  margin: 0 auto;
}

article {
  margin-bottom: 65px;
}

.wrap-1000 .flow-list {
}

.flow-list dt {
  font-weight: bold;
  margin: 0 0 10px;
  border-bottom: 1px solid #111;
}

.flow-list li {
  margin: 0 0 65px;
  min-height: 200px;
}

.flow-list p.btn-reserve {
  margin: 15px auto 120px;
}

.flow-list li p img{
  /* position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  */
  width: auto;
  max-width: 320px;
}

.flow-list div.flow-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 25px auto;
}

.flow-list div.flow-content dd {
  line-height: 1.8;
}

.flow-list div.flow-content a {
  color: #1a0dab;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flow-list div.flow-content a:hover {
  color: #1a0dab;
  text-decoration: none;
}

.flow-list div.flow-content p img {
  margin: 5px auto 15px;
}

.flow-list div.flow-content span.ng {
  color: #ff0000;
}


.box01 {
  margin: 0 0 60px;
}

.box01 dt {
  margin: 0 0 25px;
  padding: 0 0 10px;
  border-bottom: 1px solid #111;
}

.box01 dt span {
  font-weight: bold;
  margin: 0 20px 0 0;
  display: inline-block;
}

/*------------------------------
	store-guide
------------------------------*/

.store-guide h2 {
  margin: 0 0 50px;
  padding: 0 0 10px;
  border-bottom: 1px solid #111;
}

.store-guide h2 span {
  font-weight: bold;
  margin: 0 20px 0 0;
  display: inline-block;
}

.box-access {
  display: flex;
  justify-content: start;
  margin: 0 0 60px;
}

.box-access .access-info {
  width: 50%;
}

.box-access .access-info div{
  margin: 0 auto 30px;
}

.box-access .access-info div p{
  margin: 0 0 5px;
}

.address .google-map-link {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.address .google-map-link:hover {
  text-decoration: none;
}

.address .google-map-link::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: text-top;
  background-image: url(../img/map-pin.svg);
  background-repeat: no-repeat;
}

.nearest dl {
  display: flex;
  margin: 10px auto;
}

.nearest dl dt {
  width: 25%;
  font-weight: bolder;
}

.nearest dl dd{
  width: 75%;
}

.access-link {
  margin: 0 0 35px;
}

.access-link p a {
  position: relative;

}

.access-link p a::before {
  content: '';
  position: absolute;
  bottom:8px;
  left:105%;

  width: 60px;
  height: 1px;
  background:#707070;
  transition: all .3s;
}

.access-link p a.metro::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: -26%;
  width: 15px;
  height: 1px;
  background: #707070;
  transform: rotate(35deg);
  transition: all .3s;
}

.access-link p a.jr::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: -40%;
  width: 15px;
  height: 1px;
  background: #707070;
  transform: rotate(35deg);
  transition: all .3s;
}

.access-link p a.metro:hover::before{
  left:108%;
}

.access-link p a.jr:hover::before{
  left:110%;
}

.access-link p a.metro:hover::after{
  right: -29%;
}

.access-link p a.jr:hover::after{
  right: -45%;
}

.access-link::after {
  content: '';
  display: inline-block;
  width: 50px;
  height: 1px;
  margin: 35px 0 0;
  background: #707070;
}

.store-info {

}

.store-info dl {
  display: flex;
  margin: 10px auto;
}

.store-info dl dt{
  width: 25%;
  font-weight: bolder;
}

.store-info dl dd{
  width: 75%;
}

.box-access .embed-map {
  width: 50%;
  background: #111;
}

.google-map {
  width: 100%;
  height: auto;
  max-width: 500px;
  margin: 0 auto;
}

.google-map iframe {
width: 100%;
aspect-ratio: 4/3;
}

.box-reserve {
  margin: 0 0 70px;
}

.box-reserve h3 {
  margin: 20px auto;
  font-weight: bold;
}

.box-reserve .first {
  margin: 50px auto 60px;
}

.box-reserve .first a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.box-reserve .first a:hover {
  text-decoration: none;
}

.box-reserve .existing {
  margin: 0 auto 75px;
}


.box-reserve .existing ul {
  display: flex;
  gap: 30px;
}

.box-reserve .existing ul li.men::before {
  content: '';
  background-image: url(../img/man-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
}

.box-reserve .existing ul li.women::before {
  content: '';
  background-image: url(../img/woman-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  padding: 3px 0 0;
}

.box-reserve .existing ul li a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.box-reserve .existing ul li a:hover {
  text-decoration: none;
}


.box-attention {
  margin: 0 0;
}

.box-attention ul {
  margin: 30px auto;
}

.box-attention ul li {
  margin: 15px auto;
  color: #aa1232;
  font-size: 1.4rem;
}

.box-attention ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 2px;
  margin: -3px 5px 0;
  padding: 0;
  background-color: #333;
}

/*------------------------------
	column お役立ち情報
------------------------------*/

.box-column {
  margin: 0 auto;
}

.box-column span {
  display: block;
  margin: 0 0 25px;
  padding: 0 0 10px;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #111;

}

.posts ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 10px;
}

.posts ul li {
  width: calc( 100% / 3 - 10px);
  height: 225px;
  border-radius: 10px;
  background: #bec3ff;
  transition: .3s;
}

.posts ul li:hover {
  opacity: .8;
}

.posts ul li.bg-date-active {
  background: url('../img/date-active.jpg');
  background-size:cover;
}

.posts ul li.bg-body-touch {
  background: url('../img/body-touch.jpg');
  background-size:cover;
}

.posts ul li.bg-lounge-monster {
  background: url('../img/lounge-monster.jpg');
  background-size:cover;
}

.posts ul li.bg-nice-talk {
  background: url('../img/nice-talk.jpg');
  background-size:cover;
}

.posts ul li a {
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 15px;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

/* お役立ち情報 記事のスタイル */

.title-img {
  position: relative;
  margin: 0 auto 35px 0;
  max-width: 365px;
}

.title-img img {
  width: 100%;
  border-radius: 25px;
  filter: brightness(60%)
}

.title-img img::after {
  content: '';
  position: absolute;
  left: 35%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
}

.title-img p {
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

.box-column .lecture {
  margin: 60px auto;
}

.box-column .lecture p {
  line-height: 2;
}

.box-column .lecture p span {
  display: inline;
  color: red;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: none;

}

.box-column .lecture dl {
  margin: 30px auto;
}

.box-column .lecture dt {
  margin: 0 0 5px;
  color: red;
  font-size: 1.6rem;
  font-weight: bold;
}

.box-column .lecture .lecture-img {
  width: 35%;
  height: auto;
  margin: 0 0 25px;
}

.box-column .lecture ul.check-list {
  margin: 35px 0;
}

.box-column .lecture ul.check-list li {
  margin: 25px 0;
}

.box-column .lecture ul.check-list li label {
  cursor: pointer;
}

.box-column .lecture ul.check-list li input[type=checkbox] {
  transform: scale(1.5);
}

.box-column .review {

}

.box-column .review h3 {
  margin: 15px auto;
  padding: 10px 0;
  text-align: center;
  border: 1px solid #aaa;
  border-radius: 3px;
}

.box-column .review .review-layout {
  margin: 30px auto;
  padding: 5px 15px 20px 15px;
  border-radius: 10px;
}

.box-column .review .review-layout p.detail {
  padding: 0 15px;
  line-height: 1.8;
  font-size: 1.4rem;
}

.box-column .review .review-layout span.update {
  display: block;
  padding: 5px 15px;
  margin: 10px 0;
  text-align: right;
  border: none;
  font-size: 1.2rem;
}

.box-column .review .review-layout .profile-area{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  padding: 20px 5px;
}

.box-column .review .review-layout img {
  width: 85px;
  height: 85px;
}

.box-column .review .review-men {
  background: #EEF5FF;
}

.box-column .review .review-women {
  background: #FEE9E9;
}

/*------------------------------
	price
------------------------------*/
.price {
  & h2 {
    margin: 0 0 25px;
    padding: 0 0 10px;
    border-bottom: 1px solid #111;
    font-weight: bold;
  }

  & h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-align: center;
    margin: 60px 0;
    font-family: "Yu Mincho", "YuMincho";
  }

  & h4 {
    font-size: 14px;
  }

  p:not(.btn-reserve) {
    margin: 0;
  }

  .card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;

    & img {
      max-width: 65px;
    }
  }

  .btn-reserve {
    margin: 60px auto;
  }
}

.price-list__outer,
.notice__outer {
  width: 300px;
  border: 2px solid black;
  padding: 1px 2px;
  margin: 60px auto;
  text-align: center;
  box-sizing: border-box;
}

.notice__outer {
  width: 400px;
  margin: 60px auto;
}

.price-list__inner,
.notice__inner {
  border: 1px solid black;
  padding: 25px;
  font-family: "Yu Mincho", "YuMincho";
}

.notice__inner{
  font-size: 1.3rem;
}

.notice__p {
  margin-bottom: 15px;
}

.price-list__inner h1 {
  font-size: 1.4rem;
  font-weight: 500;
}

.price-list__inner p {
  font-size: 3.6rem;
  font-weight: 800;
}

.price-list__yen{
  font-size: 2rem;
  font-weight: 600;

}

.price-list__tax{
  font-size: 1.6rem;
  font-weight: 600;

}

details {
  border-top: 1px solid #ccc;
  padding: 10px 0;
}

details:not([open]) {
  border-bottom: 1px solid #ccc;
}

details[open] {
  border-bottom: 1px solid #ccc;
}

summary {
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px 10px;
  font-family: "Noto Sans JP", sans-serif;
}

summary img {
  width: 21px;
  height: 21px;
  transition: transform 0.3s;
}

details[open] summary img {
  transform: scaleY(-1);
}

.details-inner,
.details-inner-2 {
  opacity: 0;
  transition: opacity 0.5s ease, max-height 0.5s ease;
  max-height: 0;
}

details[open] .details-inner,
details[open] .details-inner-2 {
  opacity: 1;
}


.details-inner p{
  padding: 16.5px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}

.annotation{
  font-size: 1.3rem !important;
}

.women-galley {
  display: flex;
  justify-content: center;
  padding: 16.5px 0;
  gap: 10px;
}

.women-galley img {
  max-width: 180px;
  width: calc((100% - 20px) / 3);
}

.flat-design {
  text-align: center;
  padding: 16.5px 0;

}

.flat-design img{
  max-width: 480px;
}

.price-class {
  text-align: center;
}

.class-gallery {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom:60px;
}

.class-item {
  position: relative;
  width: 100%;
  height: auto;
}

.class-item img {
  width: 100%;
  border-radius: 4%;
  filter: brightness(0.5);
}

.overlay {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  border-radius: 4%;
  font-family: "Yu Mincho", "YuMincho";
}


.overlay .main-text {
  margin: 0;
  text-align: left;
  font-size: 1.4rem;
}

.overlay .class-text {
  margin: 0;
  text-align: left;
  font-size: 1.4rem;
  margin-top: 20% !important;
}

.overlay .price-text {
  margin: 0;
  text-align: left;
  font-size: 3.7rem;
  font-weight: bold;
  margin-top: -5% !important;
}

.price-text .yen{
  font-size: 2.4rem;
  padding: 0 3px;
}

.price-text .tax{
  font-size: 2rem;
}

.details-inner-2 p {
  padding: 16.5px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
}


.notice__inner{
  font-family: "Noto Sans JP", sans-serif;
}

.price-example__box {
  border: 1px solid #C9C9C9;
  max-width: 400px;
  margin: 20px auto;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
  padding: 16px;
}
.heading {
  font-weight: bold;
  font-size: 2rem;
}
.description {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.fees {
  display: flex;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 500;
  padding-left: 20px;
}
.fees div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 0 7px;
}
.fees .operator {
  font-size: 1.2em;
  margin-top: 35px;
}

.total {
  font-weight: bold;
  font-size: 2.3rem;
  font-weight: 700;
}

.total .tax{
font-size: 1.4rem
}

.payment-method{
  padding-top: 20px;
}

/* .price-list__board {
  background: #F8F8F8;
  padding: 20px;
  position: relative;
}

.price-list__campaign {
  position: absolute;
  top: -2px;
  left: 5px;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transform: rotate(-5.279deg);
  background-color: #C44;
  padding: 5px 15px;
}

.price-list__admission {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.price-list__divider {
  border: none;
  border-top: dashed 1px #000;
  margin: 20px 0;
}

.price-list__details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.price-list__detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-list__detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-list__label {
  font-size: 18px;
}

.price-list__price-before {
  color: #909090;
  font-size: 0.5em;
  font-weight: 700;
  text-decoration-line: line-through;
}

.price-list__price {
  font-size: 24px;
  font-weight: 700;
}

.price-list__price-change {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}

.price-list__price--big {
  font-size: 33.231px;
}

.price-list__tax {
  font-size: 12px;
  font-style: normal;
}

.price-list__price--free {
  color: #00C4D1;
}

.price-list__note {
  color: #6B6969;
  font-size: 12px;
} */

/* .price .flow-list dt {
  font-weight: normal;
}

.price .flow-list dt span {
  font-weight: bold;
  width: 90px;
  display: inline-block;
}

.price-list {
  background: #f8f8f8;
  padding: 30px 15px;
  margin: 0 auto 60px;
}

.price-list h3 {
  text-align: center;
  margin: 0 0 30px;
  font-weight: bold;
  font-size: 2rem;
}

.price-list ul {
  margin: 0 auto 50px;
}

.price-list ul.fee li {
  border-bottom: 1px solid #111;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}

.price-list ul.fee li p {
  text-align: right;
}

.price-list ul.fee li:last-child {
  display: block;
  border-bottom: 0;
  padding: 5px 0;
  font-size: 1.2rem;
  text-align: right;
}

.price-list li em {
  font-size: 1rem;
  margin: 0 0 0 5px;
}

.price-list li p {
  margin: 0;
}

.price-list ul.caution li {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 20px 1fr;
  font-size: 1.4rem;
}

.price-list ul.caution a {
  color: #1F2AA9;
  font-weight: bolder;
  font-size: 1.4rem;
}

.price-list ul.caution li p.campaign a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.price-list ul.caution li p.campaign a:hover {
  text-decoration: none;
}
*/

.flow-list div.price-content {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 25px auto;
}

.flow-list div.price-content dd {
  width: 100%;
  min-width: 660px;
}

.flow-list div.price-content dd p span.all-free {
  font-size: 1.7rem;
  color: #ff0000;
  font-weight: bold;
}


.flow-list .lounge-type-list dd ul.line-up {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 30px;
}

.flow-list .lounge-type-list dd ul.line-up li {
  width: calc(50% - 15px);
  margin: 10px auto;
}

.flow-list .lounge-type-list dd ul.line-up li p {
  margin: 0;
}

.flow-list .lounge-type-list dd ul.line-up li .type {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.flow-list .lounge-type-list dd ul.line-up li .type span {
  flex-basis: 20%;
  padding: 10px;
  background: #656565;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
}

.flow-list .lounge-type-list dd ul.line-up li .type p {
  flex-basis: 80%;
  padding: 10px;
  width: 100%;
  border-top: dotted 2px #313131;
  border-bottom: dotted 2px #313131;
}

.flow-content .slick-dotted.slick-slider
{
    margin-bottom: 0!important;
}


.title-obi {
  text-align: center;
  color: #fff;
  background: #111;
  padding: 5px;
  margin: 0 0 40px;
}

/* ul.card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  margin: 0 0 40px;
}

ul.card li {
  margin: 0 10px 10px;
} */

.reserve-message {
  margin: 85px auto 0;
}

.reserve-message p {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
}

/*------------------------------
	recruit
------------------------------*/
dl.table dt {
  text-align: center;
  margin: 0 0 50px;
  padding: 8px;
  color: #fff;
  background: #111;
}

dl.table dd {
  margin: 0 0 50px;
}

dl.table dd span {
  display: block;
  font-size: 1.2rem;
}

.ul-list {
  padding: 0 0 0 20px;
  margin: 0 0 30px;
}

.ul-list > li {
  list-style: disc;
}

.ol-list {
  padding: 0 0 0 20px;
  margin: 0 0 30px;
}

.ol-list > li {
  list-style: decimal;
}


/*------------------------------
	privacy
------------------------------*/
.tb-info {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 0 0 30px;
}

.tb-info th{
  width: 110px;
  text-align: left;
  color: #212529;
  background: #f1f1f1;
}

.tb-info th, .tb-info td{
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px;
}

.info dt {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 2rem;
}

.info dt.denial {
  text-decoration: line-through;
}

.info dd {
  margin: 0 0 30px;
}

.info dd ol.denial li{
  text-decoration: line-through;
}

.info h3 {
  margin: 0 0 15px;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: left;
}

.info a {
  color: #81d8d0;
}

ul.ul-list {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0 0 15px;
}

.info ul {
  padding: 0 0 0 30px;
  margin: 0 0 10px;
}

.info ol {
  list-style: decimal;
  padding: 0 0 0 30px;
  margin: 0 0 30px;
}

ol > li {
  margin: 0 0 5px;
}

ol.ol-nolist > li {
  list-style: none;
}

ul.ul-alphabet > li {
  list-style: lower-alpha;
}


/*------------------------------
	form
------------------------------*/
.form .line a {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  display: block;
  background: #81d8d0;
  background-size: 30px;
  padding: 20px;
  border-radius: 5px;
  margin: 0 0 60px;
}

.form .line img {
  width: 30px;
  margin: 0 10px 0 0;
}

h3.title01 {
  border: 1px solid #111;
  padding: 10px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 20px;
}

h3.title01 span {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
}

.note {
  margin: 30px 0 20px;
 }

h3.attention {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: bold;
}

.note ul {
}

.note ul li {
  margin: 15px auto;
  color: #aa1232;
  font-size: 1.4rem;
}

.note ul li::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 2px;
  margin: -3px 5px 0;
  padding: 0;
  background-color: #333;
}

a.link {
  color: #81d8d0;
  text-decoration: underline;
}


/*------------------------------
	blog
------------------------------*/
.pager ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager li {
  margin: 0 4px;
}

.pager li a {
  display: block;
  border: 1px solid #707070;
  border-radius: 3px;
  padding: 0 7px;
  color: #111;
  background: #fff;
}

.pager li a:hover {
  color: #fff;
  background: #81d8d0;
}

.pager li.current {
  padding: 0px 7px;
  border: 1px solid #707070;
  border-radius: 3px;
  color: #fff;
  background: #81d8d0;
}

/*------------------------------
	detail => blog media event etc...
------------------------------*/
/* 一時対応 */
.detail .table-of-contents {
  display: none;
}

.detail time {
  display: inline-block;
  font-size: 1rem;
  margin: 0 0 10px;
  color: #707070;
}

.detail span {
  display: inline-block;
  margin: 0 0 0 5px;
  font-size: 1rem;
  color: #707070;
  font-weight: bold;
}

.detail h1.title {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 0 30px;
}

.detail .text {
  border-bottom: 1px solid #d2d2d2;
  padding: 0 0 30px;
  margin: 0 0 30px;
}

.detail h1, .detail h2, .detail h3, .detail h4 {
  font-weight: revert;
  font-size: revert;
}

.detail ul, .detail ol {
  list-style: revert;
  padding-left: 30px;
}

.detail strong {
  font-weight: bold;
}

.detail em {
  font-style: italic;
}

.detail a {
  color: #1F2AA9;
  text-decoration: underline;
}

.detail a:hover {
  text-decoration: none;
}

ul.prev-next {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}

ul.prev-next li {
  margin: 0 5px;
  font-size: 1.2rem;
  font-weight: bold;
}

ul.prev-next li a {
  color: #fff;
  background: #111;
  padding: 5px 12px;
  border-radius: 3px;
  transition: 0.3s;
}

ul.prev-next li a:hover {
  background: #81d8d0;
}

.back-btn {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto;
}

.comment-post-container h3 , .comment-list-container h3 {
  margin: 0 0 40px;
  font-size: 1.6rem;
  font-weight: bold;
}

.comment-post-container span {
  display: block;
  color: #ff0000;
  font-size: 1.3rem;
}

.comment-list-container {
  margin: 50px auto;
}

.comment-list-container .comment-box {
  margin: 20px auto;
  font-size: 1.4rem;
}

.comment-list-container .comment-box .profile {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 0 0 10px;
}

.comment-list-container .comment-box .profile img {
  width: 100%;
  max-width: 40px;
}


.comment-list-container .comment-box .detail p {
  padding: 10px 15px;
  line-height: 2;
  border: solid 1px #f3f3f3;
  border-radius: 3px;
}

.comment-list-container .more-comment {
  text-align: center;
}

.comment-list-container .more-comment p {
  display: inline-block;
  text-align: center;
  font-size: 1.4rem;
  color: #3F92E5;
  cursor: pointer;
}

.comment-post-container {
  margin: 50px auto;
}

.comment-post-container label {
  display: block;
  font-size: 1.4rem;
}

.comment-post-container label.comment::after {
  content: '*';
  font-size: 1.6rem;
  color: red;
}

.comment-post-container div {
  margin: 20px auto;
}

.comment-post-container input[type="text"] {
  display: block;
  min-width: 300px;
  padding: 10px 5px;
  border: 1px solid #a3a3a3;
  border-radius: 3px;
  font-size: 1.5rem;
}

.comment-post-container form .comment textarea {
  width: 100%;
  height: auto;
  min-height: 200px;
  padding: 10px 5px;
  resize: vertical;
  box-sizing: border-box;
  border: 1px solid #a3a3a3;
  border-radius: 3px;
}

.comment-post-container button {
  display: block;
  appearance: none;
  outline: none;
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  padding: 10px 15px;
  background: #38B4D1;
  border: none;
  border-radius: 3px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}

.more-comment-block.appear {
  animation: .5s commentListFadeIn;
}

@keyframes commentListFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/*------------------------------
	about
------------------------------*/
h3.title02 {
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0 0 30px;
}

h4 {
  font-weight: bold;
  margin: 0 0 30px;
}


/*------------------------------
	staff
------------------------------*/

.staff {

}

.staff .staff-container {

}

.staff .staff-container p.message {
  margin: 0 auto 100px;
  text-align: center;
  color: #606060;
  font-weight: bold;
  line-height: 2;
}

.staff .staff-container ul.manager-line {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 30px auto 40px;
}

.staff .staff-container ul.employee-line {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 35px 15px;
  flex-wrap: wrap;
}

.staff .staff-container ul li span {
  display: block;
  margin: 10px auto 5px;
  color: #939393;
  font-size: 1.4rem;
}

.staff .staff-container ul li {
  width: calc(100% / 4 - 15px);
}

.staff p {
  text-align: left;
}

.staff p span {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

.staff .name {
  font-size: 1.8rem;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

/* Staff END */

/* 男性・女性の方へ スタイル */

.manual-men {

}

.manual-men .triple-layout {
    display: flex;
    gap: 50px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.manual-youtube .youtube {
  padding-bottom: 56.25%;
  position:relative;
  overflow: hidden;
  text-align:center;
}

.manual-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.manual-women {

}

.manual-women .triple-layout {
  display: flex;
  gap: 50px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.manual-men .how-register .manual-contents {

}

.manual-women .how-register .manual-contents {

}

.manual-contents {
  margin: 30px auto;
}

.manual-contents img {
  display: block;
  width: auto;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
}

.manual-contents p {
  margin: 60px auto;
  line-height: 1.8;
}

/* LOUNGEデートの感想エリアスタイル */

/* TOPのLOUNGEデートの感想 */

section.date-review .top-review {
  display: flex;
  justify-content: space-evenly;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 20px;
}

section.date-review .top-review .review-box {
  width: calc(50% - 20px);
}

section.date-review .top-review .review-box h3 {
  margin: 15px auto 30px;
  font-weight: bold;
}

section.date-review .top-review .review-box .review-item {
  width: 100%;
  height: auto;
  min-height: 190px;
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  margin: 10px auto;
  padding: 10px 12px;
  border-radius: 5px;
}

section.date-review .top-review .review-box .review-item p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

section.date-review .top-review .review-box .review-item .review-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

section.date-review .top-review .review-box .review-item .review-user img {
  width: 100%;
  max-width: 80px;
  margin: 0;
}

section.date-review .top-review .review-box .review-item .review-user ul li {
  margin: 5px 0;
  font-size: clamp(1.1rem, 0.76rem + 1.024vw, 1.4rem);
  display: flex;
  align-items: center;
}

section.date-review .top-review .review-box .review-item .review-user ul li img {
  width: 18px;
  height: 18px;
}

section.date-review .top-review .review-box .review-item .review-user ul li.post-date::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 0 5px 0;
  background-image: url(../img/ul_page_w30.png);
  background-repeat: no-repeat;
  background-size: contain;

}

section.date-review .top-review .review-box .review-item .review-user ul li.staff-review::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 0 5px 0;
  background-image: url(../img/ul_page_w31.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section.date-review .top-review .review-box .review-item .review-user ul li.men-review::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 0 5px 0;
  background-image: url(../img/ul_page_w32.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section.date-review .top-review .review-box .review-item p {
  margin: 15px auto;
  font-size: 1.4rem;
}


/* 男性・女性の方へのLOUNGEデートの感想 */

section.date-review .manual-contents p.stand-by {
  padding: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #333;
}

section.date-review .manual-contents {

}

section.date-review .manual-contents .review-box {
  display: flex;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

section.date-review .manual-contents .review-box .review-item {
  width: 100%;
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  padding: 10px 15px;
  border-radius: 5px;
}

section.date-review .manual-contents .review-box .review-item .review-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

section.date-review .manual-contents .review-box .review-item .review-user img {
  width: 100%;
  max-width: 80px;
  margin: 0;
}

section.date-review .manual-contents .review-box .review-item .review-user ul li {
  margin: 5px 0;
  font-size: clamp(1.1rem, 0.76rem + 1.024vw, 1.4rem);
  display: flex;
  align-items: center;
}

section.date-review .manual-contents .review-box .review-item .review-user ul li img {
  width: 18px;
  height: 18px;
}

section.date-review .manual-contents .review-box .review-item .review-user ul li.post-date::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 0 5px 0;
  background-image: url(../img/ul_page_w30.png);
  background-repeat: no-repeat;
  background-size: contain;

}

section.date-review .manual-contents .review-box .review-item .review-user ul li.staff-review::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 0 5px 0;
  background-image: url(../img/ul_page_w31.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section.date-review .manual-contents .review-box .review-item .review-user ul li.men-review::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin: 0 5px 0;
  background-image: url(../img/ul_page_w32.png);
  background-repeat: no-repeat;
  background-size: contain;
}

section.date-review .manual-contents .review-box .review-item p {
  margin: 15px auto;
  font-size: clamp(1.3rem, 1.24rem + 0.256vw, 1.4rem);
}

/* 男性コラムエリアスタイル */

.manual-men .darling .article-list ul {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
}

.manual-men .darling .manual-contents .article-list ul li {
  display: flex;
  gap: 10px;
  width: calc(100% / 3 - 15px);
  height: auto;
  padding: 10px;
  border: #e4e4e4 solid 1px;
  border-radius: 5px;
}

.manual-men .darling .manual-contents .article-list ul li img {
  width: 100px;
  height: 100px;
  margin: 5px auto;
}

.manual-men .darling .manual-contents .article-list ul li small {
  font-size: 1.2rem;
}

.manual-men .darling .manual-contents .article-list ul li p {
  margin: 10px auto;
  font-size: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.manual-men .darling .manual-contents .article-list ul li .link-right {
  text-align: right;
}

.manual-men .darling .manual-contents .article-list ul li a {
  display: inline-block;
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin: 0 0 5px;
}

/* 女性コラムエリアスタイル */

.manual-women .cinderella .article-list ul {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
}

.manual-women .cinderella .manual-contents .article-list ul li {
  display: flex;
  gap: 10px;
  width: calc(100% / 3 - 15px);
  height: auto;
  padding: 10px;
  border: #e4e4e4 solid 1px;
  border-radius: 5px;
}

.manual-women .cinderella .manual-contents .article-list ul li img {
  width: 100px;
  height: 100px;
  margin: 5px auto;
}

.manual-women .cinderella .manual-contents .article-list ul li small {
  font-size: 1.2rem;
}

.manual-women .cinderella .manual-contents .article-list ul li p {
  margin: 10px auto;
  font-size: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.manual-women .cinderella .manual-contents .article-list ul li .link-right {
  text-align: right;
}

.manual-women .cinderella .manual-contents .article-list ul li a {
  display: inline-block;
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin: 0 0 5px;
}

/* 男性コラムエリアスタイル */

.manual-men .darling .article-list ul {
  display: flex;
  justify-content: space-evenly;
  gap: 10px;
}

.manual-men .darling .manual-contents .article-list ul li {
  display: flex;
  gap: 10px;
  width: calc(100% / 3 - 15px);
  height: auto;
  padding: 10px;
  border: #e4e4e4 solid 1px;
  border-radius: 5px;
}

.manual-men .darling .manual-contents .article-list ul li img {
  width: 100px;
  height: 100px;
  margin: 5px auto;
}

.manual-men .darling .manual-contents .article-list ul li small {
  font-size: 1.2rem;
}

.manual-men .darling .manual-contents .article-list ul li p {
  margin: 10px auto;
  font-size: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.manual-men .darling .manual-contents .article-list ul li a {
  display: inline-block;
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin: 0 0 5px;
}

/* 入会特典 benefits */

.flow-list .flow-content .benefits-list {
  width: 100%;
  background: #F9F9F9;
  padding: 15px;
}

.flow-list .flow-content .benefits-list ul li {
  flex-direction: column-reverse;
  gap: 20px;
  min-height: auto;
  margin: 10px 15px;
  list-style-type: disc;
}

.flow-list .flow-content .benefits-list ul li.insight{
  color: #ff0000;
  font-weight: bold;
}

.restaurant-page-link {
  margin: 40px auto;
  text-align: center;
}

.restaurant-page-link a img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  transition: 0.3s;
}

.restaurant-page-link a img:hover {
  opacity: 0.8;
}

.manual-btn-layout {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 45px auto;
}

.manual-btn-layout .btn-reserve {
  margin: 0;
}

.sns li span {
  width: 25px;
  height: 25px;
  display: block;
}

.sns li.instagram span {
  background: url("../img/icon-instagram.png") no-repeat center center;
  background-size: 25px;
}

.sns li.tiktok span {
  background: url("../img/icon-tiktok.png") no-repeat center center;
  background-size: 22px;
}

.sns li.line span {
  background: url("../img/icon-line.png") no-repeat center center;
  background-size: 25px;
}

.sns li.twitter span {
  background: url("../img/icon-x.png") no-repeat center center;
  background-size: 25px;
}

.sns li.facebook span {
  background: url("../img/icon-facebook.png") no-repeat center center;
  background-size: 25px;
}

.sns li.instagram:hover span {
  background: url("../img/icon-instagram-hover.png") no-repeat center center;
  background-size: 25px;
}

.sns li.tiktok:hover span {
  background: url("../img/icon-tiktok-hover.png") no-repeat center center;
  background-size: 22px;
}

.sns li.line:hover span {
  background: url("../img/icon-line-hover.png") no-repeat center center;
  background-size: 25px;
}

.sns li.twitter:hover span {
  background: url("../img/icon-x-hover.png") no-repeat center center;
  background-size: 25px;
}

.sns li.facebook:hover span {
  background: url("../img/icon-facebook-hover.png") no-repeat center center;
  background-size: 25px;
}

/* width768以上の設定 */
@media screen and (min-width:768px) {

/*------------------------------
	header
------------------------------*/

.reserve-button {
  display: block;
}

.sns {
  position: fixed;
  bottom: 105px;
  right: 33px;
  z-index: 500;
}

.sns li {
  line-height: 1;
  margin: 0 auto 10px;
}

.sns li span {
  display: block;
  width: 25px;
  height: 25px;
  filter: drop-shadow(2px 2px 1px #fff);
}

.sns li:hover span {
  filter: none;
}

.sns li.instagram span {
  background: url("../img/icon-instagram.png") no-repeat center center;
  background-size: 25px;
}

.sns li.tiktok span {
  background: url("../img/icon-tiktok.png") no-repeat center center;
  background-size: 22px;
}

.sns li.line span {
  background: url("../img/icon-line.png") no-repeat center center;
  background-size: 25px;
}

.sns li.twitter span {
  background: url("../img/icon-x.png") no-repeat center center;
  background-size: 25px;
}

.sns li.facebook span {
  background: url("../img/icon-facebook.png") no-repeat center center;
  background-size: 25px;
}

.sns li a {
  display: inline-block;
}

.sns li a img {
  filter: drop-shadow(2px 2px 1px #fff);
}

.sns li a:hover img {
  visibility: hidden;
}


/*------　full screen　-------*/
.gnav nav ul {
  width: 550px;
}

.gnav nav li {
  font-size: 2rem;
  margin: 0 0 10px;
}

.gnav nav li a{
  padding: 0 10px;
}

.gnav nav li.tree span {
  font-size: 2rem;
  /* margin: 10px 0 0; */
}

.gnav nav li.tree span a {
  margin: 5px 0 0 20px;
}

/*------------------------------
	footer
------------------------------*/
footer {
  display: flex;
  justify-content: center;
  padding: 100px 0 50px;
}

footer .logo {
  width: 300px;
  display: flex;
  flex-direction: column;
}

footer ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  /* width: 500px; */
  margin: 0 auto 30px;
}

footer .sns ul {
  width: auto;
}

footer li, footer li:nth-child(odd), footer li:nth-child(even) {
  margin: 0 5px 0;
  text-align: center;
  font-size: 1.4rem;
}

footer .sns ul {
  display: block;
  margin: 0 auto;
  width: auto;
}

footer .sns ul li {
  display: block;
  margin: 0 auto 15px;
}

footer .sns small {
  display: none;
}

.bottom {
  bottom: 10px;
  right: 20px;
  width: auto;
  background: none;
  padding: 0;
  display: block;
}

.form-btn {
  display: none;
  /* margin: 0 0 10px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl; */
}

.form-btn a {
  color: #fff;
  display: block;
  width: auto;
  box-sizing: border-box;
  padding: 40px 17px;
  margin: 0;
  border: 0;
  line-height: 1;
  background: #111;
  transition: 0.2s;
}

.form-btn a:hover {
  background: #81d8d0;
}

.pagetop a {
  color: #111;
  display: block;
  line-height: 1.2;
  padding: 3px 3px 25px;
  box-sizing: border-box;
  background: url("../img/arrow01.png") no-repeat center bottom;
  background-size: 20px;
}

.pagetop a:hover {
  background: url("../img/arrow01-hover.png") no-repeat center bottom;
  background-size: 20px;
  color: #81d8d0;
}

/*------------------------------
	top
------------------------------*/
.visual-wrap {
    height: auto;
}

.top-visual h1 img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 45px;
}

/* .top-visual h1 {
  font-size: 5rem;
  display: initial;
  white-space: nowrap;
} */

.top-section {
    gap: 48px;
}

.top-section__catch-copy {
    font-size: 54px;
}

.top-section__divider {
    width: 315px;
}

.top-section__title {
    font-size: 30px;
}

.top-section__title::after {
    font-size: 16.5px;
}

.top-section__title-catch {
    font-size: 48px;
}

.top-supplement {
    font-size: 16.5px;
}


.top-visual p img.pc {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.top-visual div img.sp {
  display: none;
}

.visitor .business-hours {
    font-size: 2rem;
}

.wrap-800 {
  padding: 120px 30px;
}

.wrap-1000 {
  padding: 120px 30px;
}

h2.title01 {
  margin: 0 0 65px;
  font-size: 1.8rem;
}

h2.title01 span {
  padding: 20px 0;
  font-size: 2.25rem;
}

.pc-center {
  text-align: center;
}

p.catch {
  font-size: 3.6rem;
  margin: 0 0 80px;
}

p.catch br {
  display: none;
}

.slide-box {
  padding: 120px 0;
}

.top .about {
  text-align: center;
}

.news-lady li {
  margin: 0;
}

.double {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.double li {
  margin: 0 0 0px;
}

.double-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.double.staff {
  grid-gap: 40px;
}

.triple {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}

.triple-oneline {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
}


/* media */

.media li {
  min-height: 435px;
}

.media div {
  display: block;
}

.media div .photo {
  width: 100%;
  height: 170px;
}

.media time {
  width: 100%;
  text-align: left;
}

.media p {
  margin: 0 0 5px;
}

.media .content p {
  display: -webkit-box;
  margin-bottom: 5px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.media li .more {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0 0 8px;
}

.blog li {
  min-height: 415px;
}

.blog div {
  display: block;
}

.blog div .photo {
  width: 100%;
  height: 170px;
}

.blog time {
  width: 100%;
  text-align: left;
}

.blog li .more {
  position: absolute;
  bottom: 0;
  right: 0;
}

ul.access li span {
  display: inline-block;
  margin: 0 20px 0 0;
  width: 110px;
}

br.pc {
  display: block;
}

/*------------------------------
	how
------------------------------*/
.visual {
  /* background: url("../img/bg01_pc.jpg") no-repeat center center; */
  background-size: cover;
}

.bg-common {
  background: url("../img/bg01_pc.jpg") no-repeat center center;
  background-size: cover;
}

.bg-about {
  background: url("../img/bg03_pc.jpg") no-repeat center center;
}

.bg-fee-system {
  background: url("../img/bg02_pc.jpg") no-repeat center center;
}

.bg-media {
  background: url("../img/bg04_pc.jpg") no-repeat center center;
}

.bg-member-lady {
  background: url("../img/bg05_pc.jpg") no-repeat center bottom;
}

.bg-for-men {
  background: url("../img/bg06_pc.jpg") no-repeat center center;
}

.bg-for-women {
  background: url("../img/bg07_pc.jpg") no-repeat center center;

}

.bg-staff {
  background: url("../img/bg08_pc.jpg") no-repeat center center;
}

.bg-store {
  background: url("../img/bg09_pc.jpg") no-repeat center center;
  background-size: cover;
}

.bg-column {
  background: url("../img/bg10_pc.jpg") no-repeat center center;
  background-size: cover;
}

.visual h1 {
  font-size: 1.8rem;
  text-shadow: 1px 1px 6px #888;
}

.visual span {
  font-size: 1.8rem;
  text-shadow: 1px 1px 6px #888;
}

.bg-for-women h1{
  text-shadow: 1px 1px 4px #111;
}

.visual h1 span {
  font-size: 2.6rem;
  font-weight: bold;
}

.visual span {
  font-size: 2.6rem;
  font-weight: bold;
}

.wrap-1000 .flow-list {
  margin-right: auto;
  margin-bottom: auto;
}

.flow-list li {
  grid-template-columns: 1fr 240px;
  min-height: inherit;
}

.flow-list li p {
  /* overflow: hidden; */
  height: auto;
}

.flow-list li p img{
  /* position: static;
  top: auto;
  left: auto;
  -webkit-transform: none;
  transform: none; */
}

.box01 {
  margin: 0 0 90px;
}

/*------------------------------
	price
------------------------------*/
/* ul.card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 15px;
  margin: 0 0 40px;
} */

/*------------------------------
	form
------------------------------*/
h3.title01 {
  font-size: 3rem;
}

h3.title01 span {
  font-size: 1.6rem;
}

/*------------------------------
	deteil
------------------------------*/
ul.prev-next {
  margin: 0 auto 60px;
}

/*------------------------------
	about
------------------------------*/
h3.title02 {
  font-size: 2.4rem;
}

}
/* 768px以上 END */

/* 1024px以上 start */
@media screen and (min-width:1024px) {

/*------------------------------
			footer
------------------------------*/
footer ul {
  display: flex;
  justify-content: center;
  width: auto;
  margin: 0 auto 30px;
}

/*------------------------------
	top
------------------------------*/
.wrap-800, .wrap-1000, .slide-box {
  padding: 60px 0px 105px
}

.manual-men .wrap-800 {
  padding: 50px 0;
}

.manual-women .wrap-800 {
  padding: 50px 0;
}

/*------------------------------
	pankuzu
------------------------------*/
.pankuzu {
  padding: 10px 0;
}

/*------------------------------
	how
------------------------------*/
.visual h1 {
  padding: 25px 0 45px;
}

.visual span {
  padding: 25px 0 45px;
}

/*------------------------------
	price
------------------------------*/
/* .price-list {
  padding: 30px 17%;
}*/
}
/* min-1024 END */


/* タブレット */
@media all and (min-width: 429px) and (max-width: 1024px) {
  /* .top-visual h1 {
    max-width: 200px;
  } */

  .triple {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .box-access {
      display: flex;
      flex-direction: column-reverse;
      margin: 0 0 30px;
  }

  .box-access .access-info {
    width: 100%;
    margin: 30px auto;
  }

  .nearest dl dt {
    width: 20%;
  }

  .nearest dl dd {
    width: 80%;
  }

  .store-info dl dt {
    width: 20%;
  }

  .store-info dl dd {
    width: 80%;
  }

  .google-map {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }

  .google-map iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.box-column .lecture .lecture-img {
  width: 100%;
  border-radius: 10px;
}

footer .footer-sitemap {
  margin: 0 20px;
}

footer .footer-sitemap h3 {
  font-size: 1.5rem;
}

}
/* タブレット END */


/* タブレット以下 */
@media screen and (max-width: 768px) {
  header .reserve-button {
    display: none;
  }

  .dropdown__btn {
    flex-direction: column;
    top: 16px;
    left: 74%;
    width: 100%;
    max-width: 60px;
    padding: 0.2em;
  }

  .dropdown__btn.is-open + .dropdown__body {
    top: 60px;
    left: -10%;
  }

  section.date-review .top-review .review-box {
    width: 100%;
  }

  footer .logo {
    margin: 0 auto 50px 30px;
    width: 300px;
  }

  .overlay .main-text {
    font-size: 1rem;
}

  .overlay .class-text {
    font-size: 1rem;
    margin-top: 23% !important;
}

.overlay .price-text {
  font-size: 2.7rem;
}

.price-text .yen {
  font-size: 1.6rem;
}

.price-text .tax {
  font-size: 1.3rem;
}
}

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

.overlay .main-text {
  font-size: 1rem;
}

.overlay .class-text {
  font-size: 1rem;
  margin-top: 18% !important;
}

.overlay .price-text {
  font-size: 2.4rem;
}

}

/* スマホ */
@media screen and (max-width: 500px) {

/*男性料金システム*/

.class-gallery {
  flex-flow: column;
}

.overlay .main-text {
  font-size: 1.4rem;
}

.overlay .class-text {
  font-size: 1.4rem;
  margin-top: 23% !important;
}

.overlay .price-text {
font-size: 3.7rem;
margin-top: -2% !important;
}

.price-text .yen {
font-size: 1.6rem;
}

.price-text .tax {
font-size: 1.3rem;
}

.notice__outer{
  width: 300px;
}

.heading {
  font-size: 1.6rem;
}

.description {
  font-size: 1.2rem;
}

.fees {
  font-size: 1.6rem;
}

.fees .operator {
  margin-top: 28px;
}

.total {
  font-size: 2rem;
}

.total .tax {
  font-size: 1.2rem;
}

/* スマホ */
@media screen and (max-width: 430px) {

.home-logo img {
    width: 100%;
    max-width: 150px;
}

header .reserve-button {
  display: none;
}

.dropdown__btn.is-open + .dropdown__body:before {
  top: -25px;
}

.dropdown__btn.is-open + .dropdown__body {
  top: 55px;
}

.gnav nav li.tree div {
  margin: 0 -5px;
}

.pankuzu li {
  font-size: 1.2rem;
}

.top-visual {
  /* max-height: 550px; */
}

.top-visual div img.pc {
  display: none;
}

.top-visual h1 {
  /* top: 43%;
  max-width: 200px; */
}

.top section.reserve-area {
  /* background-image: url(../img/reserve-bg-sp.svg); */
  background-size: cover;
}


.top-visual .visual-bg {
  /* max-height: 550px; */
}

.visitor .number div img{
  max-height: 300px;
}

.top-visual div video.pc {
  display: none;
}

.visitor .number div p {
  font-size: 3.5rem;
}

.top-visual div img.pc {
  display: none;
}

.top section.reserve-area {
  /* background-image: url(../img/reserve-bg-sp.svg); */
  background-size: cover;
}

.visitor .number p.count a::after{
  content: '名';
  display: inline-block;
  margin: 0 auto 3px 3px;
  font-size: 2rem;
}

/* 女性一覧 */

.reserve-message p {
  font-size: 1.95rem;
}

.scroll {
  overflow: auto;
  white-space: nowrap;
  margin: 0 0 20px;
}

.scroll::-webkit-scrollbar {
  height: 5px;
}

.scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scroll::-webkit-scrollbar-thumb {
  background: #bcbcbc;
}

.triple {
  display: grid;
  grid-gap: 15px 10px;
  grid-template-columns: 1fr 1fr;
}

.triple-oneline {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr;
}

.news-lady li {
  margin: 0 auto;
}

/* ブログ */

.comment-post-container button {
  max-width: 100%;
}


/* 登録方法・料金システム */

.system.double-flex {
  display: block;
  gap: 0;
}

.system div.title {
  display: flex;
  align-items: center;
  justify-content: start;
}

.system p span.woman {
  width: 28px;
  margin: 0 16px 0 10px;
}

/* FORM */


/* TikTok */
.tiktok {
  margin: 0 auto;
}

/* 店舗案内 アクセス */

.box-access {
  display: flex;
  flex-direction: column-reverse;
  margin: 0 0 30px;
}

.box-access .access-info {
  width: 100%;
  margin: 25px auto;
  font-size: 1.4rem;
}

.box-access .access-info div{
  margin: 0 auto 30px;
}

.box-access .access-info div p{
  margin: 0 0 5px;
}

.nearest dl {
  display: flex;
  margin: 10px auto;
}

.nearest dl dt {
  width: 25%;
  font-weight: bolder;
}

.nearest dl dd{
  width: 75%;
}

.access-link p a.metro::after {
  right: -29%;
}

.access-link p a.metro:hover::after {
  right: -32%;
}

.access-link p a.jr::after {
  right: -45%;
}

.access-link p a.jr:hover::after {
  right: -50%;
}

.visitor-guide {
  font-size: 1.4rem;
}

.box-reserve .first a.reserve {
  font-weight: bold;
  text-decoration: underline;
}

.box-reserve .existing ul {
  flex-direction: column;
  gap: 10px;
}

.box-reserve .existing ul li.women {
  padding: 0 0px 0 3px;
}

.box-reserve .existing ul li.women::before{
  width: 19px;
  height: 19px;
  padding: 5px 8px 0 0;
}

.box-attention .attention-list {
  font-size: 1.4rem;
}

.google-map iframe {
  width: 100%;
  aspect-ratio: 1/1;
}

/* 関連情報・私たちについて */

section div .menu-container ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10px;
}

section div .menu-container ul li {
  width: 100%;
  border-top: 1px solid #ddd;
}

section div .menu-container ul li:nth-last-child(-n+2) {
  border-bottom: none;
}

section div .menu-container ul li:last-child {
  border-bottom: 1px solid #ddd;
}

/* スタッフ紹介 */

.staff .staff-container p.message {
  text-align: left;
  font-size: 1.4rem;
}

.staff .staff-container ul li {
  width: calc(100% / 2 - 10px);
}

/* 男性女性の方へ */

.flow-list div.flow-content {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 25px auto;
}

.manual-men .triple-layout {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.manual-women .triple-layout {
  display: flex;
  flex-direction: column;
  padding-top: 0;
}

.manual-btn-layout {
  flex-direction: column;
  justify-content: center;
  margin: 30px auto;
}

.manual-btn-layout .btn-reserve {
  margin: 0 auto;
}

.manual-youtube .wrap-youtube-manual .short {
  width: 100%;
  height:100vh;
  max-height: 500px;
  position: relative;
  top: 0;
  right: 0;
  padding-bottom: 0;
}

/* TOPのLOUNGEデートの感想 */

section.date-review .top-review {
  flex-direction: column;
}

section.date-review .top-review .review-box {
  width: 100%;
  margin: 20px auto;
}

section.date-review .top-review .review-box .review-item .review-user {
  gap: 5px;
}

section.date-review .manual-contents .review-box .review-item .review-user {
  gap: 5px;
}

section.date-review .top-review .review-box .review-item .review-user img {
  max-width: 75px;
}

section.date-review .manual-contents .review-box .review-item .review-user img {
  max-width: 75px;
}

/* LOUNGEデートの感想エリア */
section.date-review .manual-contents .review-box .review-item {
  width: 100%;
  padding: 20px 15px 10px;
}

/* 男女 コラムエリア */
.manual-women .cinderella .article-list ul {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
}

.manual-women .cinderella .manual-contents .article-list ul li {
  width: 100%;
  padding: 0;
  gap: 5px;
}

.manual-women .cinderella .manual-contents .article-list ul li img {
    margin: 5px auto;
    padding: 5px 8px;
}

.manual-women .cinderella .cinderella-post {
  padding: 3px 5px 3px 3px;
}

.manual-men .darling .article-list ul {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
}

.manual-men .darling .manual-contents .article-list ul li {
  width: 100%;
  padding: 0;
  gap: 5px;
}

.manual-men .darling .manual-contents .article-list ul li img {
    margin: 5px auto;
    padding: 5px 8px;
}

.manual-men .darling .darling-post {
  padding: 3px 5px 3px 3px;
}

/* 男性女性の料金 price-men,price-women */

.flow-list li p {
  /* position: relative;
  overflow: hidden; */
  height: 100%;
  margin: 25px 0;
  text-align: center;
}

.flow-list div.price-content {
  flex-direction: column-reverse;
  gap: 20px;
  margin: 25px auto;
}

.flow-list div.price-content dd {
  min-width: auto;
}

.flow-list .lounge-type-list dd ul.line-up {
  gap: 20px;
}

.flow-list .lounge-type-list dd ul.line-up li {
  width: 100%;
  margin: 10px auto;
  min-height: auto;
}

.flow-list .lounge-type-list dd ul.line-up li .type span {
  flex-basis: 25%;
}

.flow-list .lounge-type-list dd ul.line-up li .type p {
  flex-basis: 75%;
  font-size: 1.4rem;
}

.hospitality-grid {
  display: block
}

.women-hospitality-slide {
  max-width: 100%;
  margin: 25px 0;
}

.inline dd {
  padding: 25px 0;
}

/* お役立ち情報 */

.posts ul {
  flex-direction: column;
}

.posts ul li {
  width: 100%;
  height: 180px;
}

.box-column .lecture .lecture-img {
  width: 100%;
}

/* Form 注意書き */
.note {
  margin: 10px 0 20px;
 }

h3.attention {
  margin: 0 0 30px;
  font-size: 1.6rem;
  font-weight: bold;
}

.note ul li {
  margin: 20px auto;
  font-size: 1.3rem;
  line-height:1.6;
}

/* Footer */

footer .logo {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 60px;
}

footer .footer-sitemap {
  display: block;
  margin: 0 auto;
}

footer .footer-sitemap div{
  flex-basis: 100%;
  margin: 0 20px;
}

footer .footer-sitemap h3 {
  margin: 0 0 20px;
}

/* footer 開閉設定 */

footer .footer-sitemap h3 label {
  pointer-events: all;
  display: block;
  margin: 0 10px;
  transition: all ease-in-out .4s;
}

.toggle {
  height: 0;
  margin: 0 auto;
  padding: 8px 0;
  transition: .3s;
}

input:checked ~ .toggle{
  height: auto;
  padding: 8px 0;
}

input:checked + h3 label img{
  transform: rotate(-90deg);
  transform-origin:50% 50%
}

.toggle li {
  padding: 0 8px;
  line-height: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    padding .2s,
    line-height .2s,
    visibility .2s,
    opacity .0s;
}

input:checked ~ .toggle li{
  padding: 8px;
  line-height: 1.5;
  visibility: visible;
  opacity: 1;
}
/* 開閉設定 END */


footer .sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .sns ul li {
  margin: 20px 0 0;
}

footer .logo small {
  display: none;
}

footer .sns small {
  display: block;
}

}
/* スマホ END */
}
