@charset "UTF-8";
:root {
  --wh: 100vw; /* 初期値：画面幅の代用 */
  --font-ratio: calc(24 / 1024); /* デザイン比率：1024pxで24pxフォント */
  --text-color: #f7f6d1;
  --point-color: #acabd0;
  --index-text-color: #86167b;
  --sub-text-color: #333769;
  --pink-color: #FF3994; 
}

.trans {
    transition:all .6s cubic-bezier(.19,1,.22,1);
}

html {
    font-size: 16px; /* 基準値 */
    background-color: #58207b;
}

#index {
    background-color: var(--point-color);
}

body {
    font-size: 1rem; /* = 16px */
    padding: 1.4rem;
    font-family: "M PLUS 1p", sans-serif;
    font-weight: 400;
}

/*
h1.main {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
}
*/

h1.main {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.responsive-title {
    font-size: clamp(16px, calc(var(--font-ratio) * var(--wh)), 100px);
    line-height: 1.4;
    transition: font-size 0.2s ease;
}

h1 {
    font-size: 2rem; /* = 32px */
    color: var(--text-color);
}

a {
    color: #FF74BD;
}

p {
    font-size: 1rem; /* = 16px */
}

/************************************************************************************
HEADER
*************************************************************************************/

#index #title {
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

#title {
    text-align: center;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

#title p {
    font-size:clamp( 1.2rem, 2.2vw, 1.6rem) ;
    line-height: 0.1;
    color: var(--point-color);
    font-weight: 900;
}

#title address {
    font-size:clamp( 0.8rem, 2.2vw, 1.2rem) ;
    color: var(--text-color);
    display: inline-block;
    margin: 0px auto 10px;
}

#title .tel {
    max-width: 200px;
    width: 100%;
    margin: 0 auto 10px;
}

#title figure {
    max-width: 140px;
    width: 100%;
    margin: 0 auto;
}

.topimage {
    width: 100%;
    max-width: 100%;
    margin: 20px 0 0 0;
    overflow: hidden;
    max-width: 1100px;
}

.topimage img {
    width: 100%;
}

@media screen and (min-width: 701px) {

    .topimage {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
    }
}

/************************************************************************************
MAIN NAV
*************************************************************************************/

#main-nav {
	margin: 0px auto;
	padding: 2% 0 2%;
	width: 100%;
    max-width: 1000px;
    font-size: 0;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

#main-nav li {
    width: 33.333%;
    display: inline-block;
    vertical-align: top;
	text-align: center;
    margin: 5px 0 5px;
}

#main-nav li:nth-child(4),
#main-nav li:nth-child(5),
#main-nav li:nth-child(6){
    margin: 5px 0 0px;
}

#main-nav li a {
    font-size:clamp( 1.0rem, 2.2vw, 1.5rem) ;
	color: #FFFFFF;
	display: block;
	padding-top: 10px;
	padding-bottom: 5px;
    white-space: nowrap;
    text-decoration: none;
    font-weight: 700;
}

#main-nav li.here a {color: #FF0076;}
#main-nav a:hover {color: #FF0076;}

#main-nav li small {
	display: block;
	font-size: 60%;
	font-weight: normal;
    line-height: 1.6;
    margin-top: 10px;
}

@media screen and (min-width: 701px) {

    #main-nav {
        border: none;
    }

    #main-nav li {
        width: 16.5%;
        margin: 0 0 0;
    }
    
    #main-nav li:nth-child(4),
    #main-nav li:nth-child(5),
    #main-nav li:nth-child(6){
        margin: 0px;
    }
    
    #main-nav li small {
        display: block;
        font-size: 60%;
        margin-top: 15px;
    }
}

/************************************************************************************
INDEX
*************************************************************************************/

#Indexbox {
    width: 84%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#Room {
    width: 100%;
    position: relative;
    font-size: 0;
    line-height: 0;
    padding-bottom: 60px;
}

.logoindex {
    margin: 0 auto 20px;
    max-width: 500px;
    width: 100%;
}

#Room .kin18 {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 5%;
    left: 0;
    margin: auto;
    width: 100%;
    max-width: 160px;
}

#Room .kin18 img,figure.indexroom img {width: 100%;}

figure.indexroom{
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
}

div.entrans {
    position: absolute;
    top: auto;
    right: 0;
    bottom: -10px;
    left: 0;
    margin: auto;
    width: 100%;
    max-width: 600px;
    height: 60px;
}

div.entrans table {}

div.entrans table td {
	text-align: center;
	line-height: 1em;
}

div.entrans table td.td01 {text-align: right;}
div.entrans table td.td02 {text-align: left;}

div.entrans table td.td01 img,
div.entrans table td.td02 img{
    width: auto;
    height: 30px;
}

#indexpage {text-align: center;}

#indexpage p {
	font-size:0.8rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--index-text-color);
}

.telindex {
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
}

@media screen and (max-height: 390px) {

    #Indexbox {
        width: 40%;
    }
    
    figure.indexroom{
        display: none;
    }
    
    #Room .kin18 {
        max-width: 60px;
    }
    
    #indexpage br {
        display: none;
    }

}

/************************************************************************************
大枠
*************************************************************************************/

#contentwrap {
    margin: 7% auto 0;
	width: 100%;
}

#content {width: 100%;}
#sidebar {width: 100%;margin-top: 2%;}

@media screen and (min-width: 701px) {

    #contentwrap {
        display: flex;
        gap:0 5%;
        margin: 3% auto 0;
        width: 100%;
        max-width: 1100px;
    }

    #content {width: 100%;}
    #sidebar {width: 400px;}

}

#sidebar section {
    color: var(--sub-text-color);
}

#scheduleblocks h2 {
    font-family: "Zen Antique Soft", serif;
    font-weight: 400;
    font-size:4.2rem;
    line-height: 1;
    color: var(--point-color);
    letter-spacing: -0.05em;
    margin: 0 0 10px;
    padding: 0;
}

/************************************************************************************
共通部分
*************************************************************************************/

#content .post h3 {
    position: relative;
    color:var(--sub-text-color);
    background: var(--point-color);
    line-height: 1.4;
    margin: 20px 0 30px;
    padding: 0.5em 0.5em 0.5em 1.8em;
    border-radius: 2px;
}

#content .post h3:before {
    content: "●";
    color: #fff;
    position: absolute;
    left : 0.5em; /*左端からのアイコンまでの距離*/
}

.onebox {
    padding: 0 0 40px;
}

.onebox .container {
    width: 100%;
    margin: 0 auto;
}

.onebox ul {
    padding: 0;
    margin: 0 0 30px;
}

.onebox ul li {
    position: relative;
    font-size:clamp( 0.9rem, 2.2vw, 1rem) ;
    list-style: none;
    padding-left: 21px;
    margin: 10px 0;
    line-height: 1.5;
    color: #fff;
}

.onebox ul li:before {
    position: absolute;
    left: 0;
    margin: 0;
    content: "※"; 
    display: inline-block;
    vertical-align: top;
}

.onebox table {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    color:var(--sub-text-color);
}

.onebox table.special {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    color:var(--sub-text-color);
}

.onebox table tr {
    background-color: #EFEFEF;
}

.onebox table.special tr {
    background-color: #fff8f1;
}

.onebox table tr:nth-child(odd) {
    background-color: #fff;
}

.onebox table.special tr:nth-child(odd) {
    background-color: #fff8f1;
}

.onebox table th {
    padding: 1em 0.5em;
}

.onebox table th {
    font-weight: bold;
    text-align: center;
    width: 50%;
    min-width: 4em;
}

.onebox table.special thead th,
.onebox table.special th {
    font-size: 1em;
    font-weight: 400!important;
}

.onebox table.special thead th {
    font-weight: bold;
    text-align: left;
    width: auto;
    min-width: 4em;
}

.onebox table.special th {
    padding: 0.5em 0em;
    text-align: center;
    width: 20%;
}

.onebox table.special td {
    font-size:clamp( 1.2rem, 2vw, 1.4rem) ;
    font-weight: 700;
}

.onebox table.special.sunday td {
    font-size:clamp( 1.2rem, 2vw, 1.3rem) ;
    font-weight: 700;
    line-height: 1.4;
}

.onebox table.special th b {
    font-size: 1.2em;
    font-weight: 700;
}

.onebox table th span {
    position: relative;
}

.onebox table th span i {
    position: absolute;
    font-style: normal;
    top: -5px;
    right:-15px;
    color: #FD0004;
    font-size: 0.7em;
}

.onebox table td.price {
    width: 20%;
}

.separatebox {
   display: block;
}

.separatebox .box01 {width: 100%;position: relative;}
.separatebox .box02 {width: 100%;}
.separatebox .box03 {
    background-color: #fff8f1;
    width: 100%;
    padding: 20px 15px 20px 10px;
    border-radius: 10px;
}

.separatebox .box03:first-of-type {
    margin-bottom: 40px;
}

.separatebox .box03 h4 {
    font-size:clamp( 1.8rem, 2vw, 2.4rem) ;
    text-align: center;
    color:var(--sub-text-color);
    margin: 20px 0 3%;
}

.separatebox .box04 {
    width: 100%;
    padding: 0;
    border-radius: 0;
}

@media screen and (min-width: 701px) {

    .separatebox {
       display: flex;
       gap: 5%;
    }
    
    .separatebox.nogap {
       display: flex;
       gap: 0;
    }
    
    .separatebox .box01 {width: 60%;}
    .separatebox .box02 {width: 40%;}
    .separatebox .box03 {width: 50%;}
    
    .separatebox .box03:first-of-type {
        margin-bottom: 0;
    }
    
    .separatebox .box03 {
        padding: 20px 20px 20px 0px;
    }

}

/* ------開演時間、開場時間のテーブル設定------- */

.mini-separate {
    display: flex;
    gap: 5%;
    margin-bottom: 10px;
}

.mini-separate .box1 {width: 50%;position: relative;padding-right: 10px;}
.mini-separate .box2 {width: 50%;}

.onebox table.kaien {
    width: 50%;
    margin: 0 auto;
    background-color: transparent;
    white-space: nowrap;
}

.mini-separate .box1 table.kaien {float: right;}
.mini-separate .box2 table.kaien {float: left;}

.mini-separate .box1:after {
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    left: calc(100% - 10px);
    top: 50%;
    background-color: #000;
    transform:rotate(-60deg);
}

.onebox table.kaien th {
    padding: 0.5em 0.5em 0.5em 0em!important;
    text-align: center;
    width: auto;
    min-width: auto;
    white-space: nowrap;
}

.onebox table.kaien tr,
.onebox table.kaien th,
.onebox table.kaien td{
    background-color: transparent!important;
    font-size:clamp( 1.5rem, 2vw, 1.5rem);
    padding: 0;
    margin: 0;
}

.onebox table.kaien.sunday th,
.onebox table.kaien.sunday td{
    font-size:clamp( 1.2rem, 2vw, 1.3rem) ;
}

.onebox table.kaien th {text-align: right;width: 25%;}
.onebox table.kaien td {text-align: left;width: 25%;}

.onebox table.special tr.sunday td {
    background-color: #C6C4E9;
}

.onebox table.kaien tr.sunday td {
    background-color: #C6C4E9!important;
}

@media screen and (min-width: 701px) {
    
    .onebox table.kaien {
        width: 50%;
        margin: 0 auto;
    }

}

/************************************************************************************
モデル表示部分
*************************************************************************************/

#Modelblock {
    font-size: 0;
    line-height: 0;
    padding-bottom: 30px;
}

.modelblock {
    font-size: 0;
    line-height: 0;
    margin-top: 20px;
    padding-bottom: 30px;
}

.modelthumb {
    display: inline-block;
    vertical-align: top;
    width: 46.6%;
    margin: 1.65%;
}

.modelthumb figure {
    position: relative;
}

.modelthumb figure:before {
    content: '';
    display: block;
    padding-top: 140%;
}

.modelthumb img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
}

.modelthumb h3 {
    font-size:clamp( 1.2rem, 2.6vw, 1.5rem);
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin: 10px 0 0;
}

.modelthumb em {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    font-size: 18px;
    color: #fff;
    background-color: #FF3994;
    line-height: 1.4;
    padding: 0.3em 0.5em;
}

.modelblock p {
    white-space: nowrap;
    font-size: 1rem; /* = 16px */
    line-height: 1.6;
}

@media screen and (min-width: 701px) {

    .modelthumb {
        width: 30%;
    }
    
    .modelthumb.wide {
        width: 15%!important;
        margin: 0;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    
    .modelthumb.wide:nth-child(6n){
        margin-right: 0;
    }
    


}

/************************************************************************************
緊急情報
*************************************************************************************/

#informationblocks {
	padding-bottom: 10%;
}

#informationblocks .special {
	padding-bottom: 10px;
	margin-bottom: 20px;
}

#informationblocks .special img {
    width: auto;
    height: 50px;
}

#informationblocks p.kinkin {
	text-align: left;
    display: inline;
    border-bottom: 1px solid #cf1376;
    font-style: italic;
}

#informationblocks p.kinkin a{
	font-size:clamp( 1.8rem, 2.6vw, 2.0rem);
	font-weight: 700;
    line-height: 1.4;
	color: #cf1376;
}

#informationblocks p.kinkin time {
    font-family: "Zen Antique Soft", serif;
    font-weight: 400;
    font-size:clamp( 1.1rem, 2.6vw, 1.2rem);
    display: block;
    text-align: left;
    color: #cf1376;
    margin-bottom: 5px;
}

#informationblocks p.kinkin a:hover {
}

/* kinkin */
#informationblocks h1.kinkin {
	font-size:clamp( 1.6rem, 2.6vw, 2.0rem);
	line-height: 1.4;
	font-weight: bold;
    text-align: left;
}

#informationblocks h1.kinkin a {
	font-weight: bold;
	color: #E10202;
}

#informationblocks p.post-meta {
	text-align: center;
}

#informationblocks .post-content {
	text-align: center;
}

.post-content p {
    white-space: normal;
    word-break: break-all!important;
}

/************************************************************************************
新着情報
*************************************************************************************/

#content h1,
#content h2.post-title,
#content .newstitle {
	text-align: left;
	position: relative;
	color: #CB005E;
	font-size: 22px;
	line-height: 1.4;
	font-weight: bold;
	background-color: var(--text-color);
	border-bottom: 1px solid var(--text-color);
	margin: 0 0 30px;
	padding: 10px 15px 8px 20px;
	border-radius: 5px;
    white-space: normal;
}

#content .post h1 a,
#content h2.post-title a,
#content .newstitle a{
	color: #CB005E;
}

#content h2.post-title::before,
#content h2.post-title::after,
#content .newstitle::before,
#content .newstitle::after,
#content h1::before,
#content h1::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 24px;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-top-color: var(--text-color);
	text-align: left;
	z-index: 1;
}

#content h1 time,
#content h2.post-title time,
#content .newstitle time {
    font-family: "Zen Antique Soft", serif;
    display: block;
    text-align: right;
    font-size: 16px;
    line-height: 1.4;
}


/* post title */
.post-title {
    margin-bottom: 5%;
}

#newsblocks h2 {
    margin: 2% 0 5%;
    padding: 0 0 10px 0;
	font-size:clamp( 1.1rem, 2.6vw, 1.6rem);
    white-space: nowrap;
}

/*
#newsblocks h2.post-title {white-space: normal;}

#newsblocks h2.post-title {
    font-weight: bold;
    border-bottom: 3px solid var(--point-color);
    padding: 0.3em 0 0.5em;
    margin: 2% 0 0.3em;
    transform: skewX(-15deg);
    position: relative;
}

#newsblocks h2.post-title::before, .ttl_line4::after {
    content: '';
    background-color: var(--point-color);
    width: 3px;
    height: 20px;
    transform: rotate(30deg);
    position: absolute;
    bottom: -10px;
}

#newsblocks h2.post-title::before {
    right: 2.5em;
}

#newsblocks h2.post-title::after {
    right: 2em;
}

#newsblocks p.post-meta {
	font-family: "Zen Antique Soft", serif;
    text-align: left;
}
*/

#newsblocks h2 {
    margin: 2% 0 5%;
    padding: 0 0 10px 0;
	font-size:clamp( 1.1rem, 2.6vw, 1.6rem);
    white-space: nowrap;
}

#newsblocks h2 span {
	font-size: 240%;
	font-weight: bold;
	color: #FFFFFF;
	text-align: right;
	display: inline-block;
	white-space: nowrap;
	margin: 0px;
    padding: 0 0 20px;
}

#newsblocks h2 figure {
    width: 55%;
    max-width: 240px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

#newsblocks h2.whatnew figure {
    width: 70%;
    max-width: 340px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

#newsblocks h2.whatnew figure img,
#newsblocks h2 figure img{
    width: 100%;
    margin-top: -10px;
}

@media screen and (min-width: 701px) {

    #newsblocks h2 figure {
        margin-right: 20px;
    } 
    
    #newsblocks h2 figure img {
        margin-top: -10px;
    }
}

.oneblocks h2 {
    margin: 2% 0 5%;
    padding: 0 0 10px 0;
	font-size:clamp( 1.1rem, 2.6vw, 1.6rem);
    white-space: nowrap;
}

.oneblocks h2 span {
	font-size: 240%;
	font-weight: bold;
	color: #FFFFFF;
	text-align: right;
	display: inline-block;
	white-space: nowrap;
	margin: 0px;
    padding: 0 0 20px;
}

.oneblocks h2 figure {
    width: 55%;
    max-width: 200px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.oneblocks h2.whatnew figure {
    width: 70%;
    max-width: 340px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}

.oneblocks h2.whatnew figure img,
.oneblocks h2 figure img{
    width: 100%;
    margin-top: -10px;
}

@media screen and (min-width: 701px) {

    .oneblocks h2 figure {
        margin-right: 20px;
    } 
    
    .oneblocks h2 figure img {
        margin-top: -10px;
    }
}

/* post */
.post {
	margin-bottom: 10px;
	position: relative;
	padding-bottom: 10px;
}

#newsblocks .post-content {
   padding-bottom: 60px;
}

#newsblocks .post-content p {
	color: #FFFFFF;
    line-height: 1.5;
    font-weight: 400;
}

div.tablebox_form {
	padding-top: 20px;
}

div.tablebox_form table {
}

div.tablebox_form table th {
	color: #FFFFFF;
	text-align: left;
	vertical-align: top;
	padding-bottom: 25px;
}

div.tablebox_form table th p {
	font-size: 0.7rem;
	line-height: 1;
	color: var(--text-color);
}

div.tablebox_form table th p span {
	color: #FF0000;
}

div.tablebox_form table td {
	color: #FFFFFF;
	text-align: left;
	vertical-align: top;
	padding-left: 10px;
	padding-bottom: 25px;
}

div.tablebox_form table td span {
    display: inline-block;
	font-size: 0.8rem;
    line-height: 1.4;
	color: var(--text-color);
}

#errMsgBox {
    width: 100%;
    font-size: 0.8rem;
    margin: 20px auto;
    padding: 15px 0 0;
    border: 1px dashed #f00;
    background:var(--text-color);
}

#errMsgBox ul {
    margin-left: 20px;
    list-style: none;
}

#errMsgBox ul li {
    color: var(--pink-color);
}

input[type=text], input[type=email], input[type=password], textarea {
	background:var(--text-color);
	border: none;
	color: #4b423a;
	padding: 6px 2%;
	border-bottom: solid 1px #c8c7b4;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-appearance: none;
}

input[type=text], input[type=email] {
    width: 100%;
    max-width: 96%;
}

input[type=reset], input[type=submit] {
    display: block;
    width: 100%;
    max-width: 400px;
	background: #FF3994;
	text-transform: uppercase;
	color: #fff;
	border: none;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-appearance: none;
    padding: 10px 40px 10px;
    margin: 10px auto;
}

input[type=reset]:hover, input[type=submit]:hover {
	background: #FF66AC;
	color: #fff;
}

@media screen and (min-width: 701px) {

    input[type=text], input[type=email] {
        width: 300px;
    }

}

a.btnbutton {
    display: block;
    background-color: var(--point-color);
    color: var(--sub-text-color);
    font-size: 22px;
    line-height: 1;
    padding: 2%;
    border-radius: 5px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    transition:all .6s cubic-bezier(.19,1,.22,1);
}

a:hover.btnbutton {
    background-color: #b2b2f9;
    color: #fff;
}
