@charset "UTF-8";

/*
Theme Name: Club SEXY 2025
Description: Club SEXY用のWordPressテンプレート
Version: 1.1
Author: Maito OBATA
*/

/* 全体に対する設定 ---------------------------------------- */
* {
    font-family: 'inter', 'noto sans jp', sans-serif;
    scroll-behavior: smooth;
}

main{
    margin-top: 70px;
}

body{
    overflow-x: hidden;
}

a{
    color: inherit;
    text-decoration: none;
}


/* header ---------------------------------------- */
header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    border-bottom: solid .7px #5c5c5c;
    background-color: #252525;
    position: fixed;
    margin-top: -70px;
    z-index: 99;
}


/* header for PC ---------------------------------------- */
.header__container--forPC{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1300px;
    height: auto;
}

.header__logoBox--forPC{
    display: block;
    width: auto;
    height: auto;
}

.header__logoLink--forPC{
    display: block;
    width: auto;
    height: auto;
}

.header__logoLink--forPC img{
    display: block;
    height: 55px;
    width: auto;
}

.header__navMenu--forPC{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
}

.header__navContent--forPC{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    color: #dedede;
    font-style: italic;
    margin: 0 15px;
    transition: .3s;
}

.header__navContent--forPC:nth-child(1){
    margin-left: 0px;
}

.header__navContent--forPC:hover{
    color: #f18e8e;
    transition: .3s;
}

.header__navContentEN--forPC{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
}

.header__navContentEN--forPC p{
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.header__navContentJP--forPC{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    margin-top: -2px;
}

.header__navContentJP--forPC p{
    display: block;
    font-weight: 400;
    font-size: 9.5px;
}


/* header for Mobile ---------------------------------------- */
.header__container--forMobile{
    display: none;
}

.header__logoBox--forMobile{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
}

.header__logoBox--forMobile a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
}

.header__logoBox--forMobile a img{
    display: block;
    width: auto;
    height: 55px;
}

.header__hamburgerBox--forMobile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    position: relative;
}

.header__hamburgerBox--forMobile:hover{
    cursor: pointer;
}

.header__hamburger01--forMobile{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    opacity: 1;
    transition: opacity 0s .15s;
    position: absolute;
    right: 0;
    padding-left: 2px;
}

.header__hamburger01--forMobile span{
    display: block;
    width: 36px;
    height: 1.1px;
    background-color: #dedede;
    transition: transform .15s;
}

.header__hamburger01--forMobile span:nth-child(1){
    margin-bottom: 2.4px;
    transition: transform .15s .15s;
    transform: translateY(0px);
}

.header__hamburger01--forMobile span:nth-child(2){
    margin-top: 2.4px;
    transition: transform .15s .15s;
    transform: translateY(0px);
}

.header__hamburger02--forMobile{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    opacity: 0;
    transition: opacity 0s .15s;
    position: absolute;
    right: 0;
    padding-left: 2px;
}

.header__hamburger02--forMobile span{
    display: block;
    width: 36px;
    height: 1.1px;
    background-color: #dedede;
    transition: transform .15s;
}

.header__hamburger02--forMobile span:nth-child(1){
    transition: transform .15s;
    transform: rotate(0deg);
    transform-origin: center;
    margin-bottom: -0.55px;
}

.header__hamburger02--forMobile span:nth-child(2){
    transition: transform .15s;
    transform: rotate(0deg);
    transform-origin: center;
    margin-top: -0.55px;
}

.header__mobile-hamburger01--active{
    opacity: 0;
}

.header__mobile-hamburger01--active span:nth-child(1){
    transition: transform .15s;
    transform: translateY(2.95px) !important;
}

.header__mobile-hamburger01--active span:nth-child(2){
    transition: transform .15s;
    transform: translateY(-2.95px) !important;
}

.header__mobile-hamburger02--active{
    opacity: 1 !important;
}

.header__mobile-hamburger02--active span:nth-child(1){
    transition: transform .15s .15s;
    transform: rotate(25deg) !important;
}

.header__mobile-hamburger02--active span:nth-child(2){
    transition: transform .15s .15s;
    transform: rotate(-25deg) !important;
}

.header__hamburgerMenu--forMobile{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: calc(100vh - 70px);
    position: absolute;
    top: 70px;
    left: 0;
    padding-top: 30px;
    background-color: inherit;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    z-index: 99;
}

.header__mobile-hamburgerMenu--active{
    visibility: visible;
    opacity: 1;
    transition: .3s;
}

.header__mobile-hamburgerMenuContainer{
    display: flex;
    flex-direction: column;
    width: 85%;
    height: auto;
    justify-content: center;
    align-items: center;
}

.header__hamburgerMenuContent-forMobile{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 95%;
    height: auto;
    color: #dedede;
    transition: .1s;
    margin: 11px 0;
    font-style: italic;
}

.header__hamburgerMenuContent-forMobile:nth-child(1){
    margin-top: 0px;
}

.header__hamburgerMenuContent-forMobile:nth-child(5){
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.header__hamburgerMenuContent-forMobile:hover{
    color: #f18e8e;
    transition: .1s;
}

.header__hamburgerEN-forMobile{
    display: block;
    width: auto;
    height: auto;
}

.header__hamburgerEN-forMobile p{
    display: block;
    font-weight: 600;
    font-size: 18px;
}

.header__hamburgerJP-forMobile{
    display: block;
    width: auto;
    height: auto;
    margin-left: 5px;
}

.header__hamburgerJP-forMobile p{
    display: block;
    font-weight: 400;
    font-size: 11px;
}

.header__hamburgerMenuContent-forMobile svg{
    margin-left: 8px;
    transition: .1s;
}

.header__hamburgerMenuContent-forMobile:hover svg{
    transform: translateX(1.2px);
    transition: .1s;
}

@media screen and (max-width: 959px) {
	.header__container--forPC{
        display: none;
    }

    .header__container--forMobile{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 96%;
        height: 53px;
    }
}

.header__hamburgerMenuPhone--forMobile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 102%;
    height: auto;
    margin-top: 25px;
    padding: 15px 22px;
    background-color: #f4f4f7;
    border-radius: 12px;
}

.header__hamburger--phoneNumber{
    display: block;
    width: auto;
    height: auto;
    font-weight: 600;
    font-size: 22px;
}

.header__hamburger--phoneNumber a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.header__hamburger--phoneNumber a:hover{
    text-decoration: underline;
}

.header__hamburger--phoneInfo{
    display: block;
    width: auto;
    height: auto;
    font-weight: 400;
    font-size: 12px;
}


/* footer ---------------------------------------- */
footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: #252525;
    z-index: 98;
}

.footer__top{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width:92%;
    max-width: 1000px;
    height: auto;
    padding: 30px 0;
}

.footer__logoBox{
    display: block;
    width: 80px;
    height: auto;
}

.footer__logoBox img{
    display: block;
    width: 100%;
    height: auto;
}

.footer__infoBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    height: auto;
    margin-left: 3px;
}

.footer__infoEN{
    display: block;
    font-weight: 400;
    font-size: 10px;
    font-style: italic;
    color: #dfdfdf;
}

.footer__infoENG{
    display: block;
    font-weight: 700;
    font-size: 18px;
    font-style: italic;
    color: #dfdfdf;
    margin-top: 1px;
}

.footer__bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width:92%;
    max-width: 1000px;
    height: auto;
    padding: 11px 0 15px 0;
    border-top: solid .8px #8f8f8f;
}

.footer__bottom p{
    display: block;
    font-weight: 400;
    font-size: 9.5px;
    color: #dedede;
    font-style: italic;
}

.footer__socialMedia{
    display:flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    margin-top: 5px;
    margin-bottom: 12px;
}


.footer__socialMediaButton{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background-color: #efefef;
    border-radius: 50%;
    border: solid #efefef 1px;
    fill: #383838;
    transition: .1s;
    margin: 0 5px;
    overflow: hidden;
}

.footer__socialMediaButton img{
    display: block;
    width: 100%;
    height: 100%;
    transition: .1s;
    opacity: 1;
}

.footer__socialMediaButton img:hover{
    opacity: .5;
    transition: .1s;
}

.footer__socialMediaButton:hover{
    background-color: #383838;
    fill: #efefef;
    transition: .1s;
}

.footer__telButton{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 15px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #b60006;
    border: solid 1.2px #b60006;
    transition: .2s;
    border-radius: 50%;
    z-index: 80;
}

.footer__telButton:hover{
    background-color: #fefefe;
    transition: .2s;
}

.footer__telButton svg{
    display: block;
    width: 25px;
    height: 25px;
    fill: #fefefe;
    transition: .2s;
}

.footer__telButton:hover svg{
    fill: #b60006;
    transition: .2s;
}



/* 下層ページ共通のタイトルセクション ---------------------------------------- */
.titleSection{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 40px 0;
    background-color: #efefef;
}

.titleSection__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 95%;
    max-width: 1300px;
    height: 320px;
    padding: 0 5%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-color: #010101;
}

.titleSection__container h1{
    display: block;
    width: auto;
    height: auto;
    color: #f9f9f9;
    font-style: italic;
    font-weight: 700;
    font-size: 32px;
    z-index: 5;
}

.titleSection__container span{
    display: block;
    width: auto;
    height: auto;
    color: #efefef;
    font-style: italic;
    font-weight: 500;
    font-size: 15px;
    margin-left: -3px;
    z-index: 5;
}

.titleSection__background{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.titleSection__background img{
    display: block;
    width: 100%;
    height: auto;
    opacity: .5;
}


/* キャスト一覧のキャストごとのテンプレ ---------------------------------------- */
.castInfoCard{
    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: calc(25% - 1.8px);
	height: auto;
	position: relative;
	border: solid #efefef .9px;
}

.castInfoLink{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.castInfoLink img{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
}

.castNameBox{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    left: 7px;
    bottom: 7px;
    padding: 5px 10px 5px 8px;
    font-weight: 600;
    font-size: 15px;
    color: #fefefe;
    font-style: italic;
    background-color: #b60006;
}

@media screen and (max-width: 720px) {
	.castInfoCard{
		width: calc(33% - 1.8px);
	}

    .castNameBox{
        font-size: 12px;
    }
}


/* 404 ---------------------------------------- */
.section404{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: #efefef;
    padding: 80px 0;
}

.section404__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 95%;
    max-width: 900px;
    height: auto;
}

.section404__container img{
    display: block;
    width: 250px;
    height: auto;
}

.section404__mainText{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    font-weight: 800;
    font-size: 300%;
    color: #383838;
    margin-top: 20px;
}

.section404__subText{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    font-weight: 500;
    font-size: 80%;
    color: #383838;
    margin-top: 8px;
}

.section404__container a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 8px 20px;
    border-radius: 2rem;
    border: solid 1px #b60006;
    background-color: #b60006;
    color: #fefefe;
    font-weight: 600;
    font-size: 12px;
    transition: .2s;
    margin-top: 20px;
}

.section404__container a:hover{
    background-color: #fefefe;
    color: #b60006;
    transition: .2s;
}