@charset "UTF-8";
body {
    font-family: "Noto Sans JP", sans-serif;
}

.sp-only,
.pc-only {
    display: none;
}

/* intro-view */
#introview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.logo-wrap {
    text-align: center;
}
.intro-logo {
    max-width: 70%;
    max-height: 70%;
    animation: fadeIn 1s ease;
}
.intro-text {
    font-size: 0.875rem;
    animation: fadeIn 1s ease;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
body.no-scroll {
    overflow: hidden;
    overflow-anchor: none;
}

.scroll-indicator {
    position: relative;
    width: 24px;
    height: 48px;
    margin: 20px auto 0;
}
.scroll-indicator span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
    opacity: 0.6;
}
.scroll-indicator span:nth-child(1) {
    top: 0;
    animation-delay: 0s;
}
.scroll-indicator span:nth-child(2) {
    top: 12px;
    animation-delay: 0.2s;
}
.scroll-indicator span:nth-child(3) {
    top: 24px;
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: rotate(45deg) translateY(6px);
        opacity: 1;
    }
}




.inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}
.inner2 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo h1 img {
    max-width: 150px;
    width: 100%;
    height: auto;
}
header {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: top 0.3s;
}
.logo h1 img {
    max-width: 150px;
    width: 100%;
    height: auto;
    margin-left: 20px;
}
.hamburger {
    margin: 10px auto;
    width: 100%;
    max-width: 1040px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hamburger .btn-gNav {
    position: fixed;
    top: 30px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 12;
    opacity: 0.7;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.hamburger .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(255, 157, 157, 0.7);
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.hamburger .btn-gNav span:nth-child(1) {
    top: 0;
}
.hamburger .btn-gNav span:nth-child(2) {
    top: 10px;
}
.hamburger .btn-gNav span:nth-child(3) {
    top: 20px;
}

/***activeクラスが付与されると線が回転して×になる***/
.hamburger .btn-gNav.active span:nth-of-type(1) {
    top: 0px;
    left: 0px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
    background: hsl(0, 0%, 100%);
}
.hamburger .btn-gNav.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
}
.hamburger .btn-gNav.active span:nth-of-type(3){
    top: 12px;
    left: 0px;
    transform: translateY(-6px) rotate(45deg);
    width: 100%;
    background: hsl(0, 0%, 100%);
}
/**回転して×ここまで**/

.btn-gNav {
    display: none;
}
.gNav .gNav-menu {
    display: flex;
    justify-content: space-between;
}
.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 10px;
    font-weight: 700;
    font-size: 14px;
}
.gNav .gNav-menu li a:hover{
	color: #800020;
}
/**********ここから**********/
/*女性*/
.recruit {
    margin-top: 170px;
}
.recruit h1 {
    font-size: clamp(16px, 2vw, 21px);
    font-weight: bold;
}
.recruit h2 {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: bold;
    margin-top: 35px;
}
.recruit ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px; /* アイテム間の間隔 */
    padding: 0;
    list-style: none;
    margin: 20px 0;
}
.recruit ul li {
    background-color: #fdfdfd;
    padding: 10px;
    border: 3px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    flex: 1 1 calc(33.333% - 40px); /* 三等分し、gapを考慮 */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(33.333% - 10px); /* 最大幅を設定 */
    height: auto;
}
/*
.recruit ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: block;
}
*/
.recruit ul li:empty {
    background-color: transparent; /* 背景色を透明に */
    border: none; /* ボーダーを解除 */
    padding: 0; /* パディングを解除 */
}
/*男性*/
.recruit-man {
    margin-top: 70px;
}
.recruit-man h1 {
    font-size: clamp(16px, 2vw, 21px);
    font-weight: bold;
}
.recruit-man h2 {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: bold;
    margin-top: 35px;
}
.recruit-man ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px; /* アイテム間の間隔 */
    padding: 0;
    list-style: none;
    margin: 20px 0;
}
.recruit-man ul li {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    flex: 1 1 calc(33.333% - 40px); /* 三等分し、gapを考慮 */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(33.333% - 10px); /* 最大幅を設定 */
    height: auto;
}
/*ここから共通*/
.min-store {
    display: flex;
}
.img-wrapper {
    margin-bottom: 10px;
}
.img-wrapper img {
    display: block;
    max-width: 250px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-out;
}
.img-wrapper:hover img {
    transform: scale(1.05);
}
.image {
    max-width: 100%;
    height: auto;
}
.text-wrapper {
    max-width: 240px;
    width: 100%;
}
.store {
    font-weight: bold;
    margin-bottom: 5px;
}

.explain {
    font-size: 14px;
    color: #666;
}

/**********姫予約***********/
.hime-section h1 {
    font-size: 2rem;
    color: #ff96b6;
    font-weight: bold;
    text-align: center;
    margin-top: 170px;
    margin-bottom: 30px; 
    border-bottom: 3px solid #ffb6c1;
    padding-bottom: 15px;
}
.hime-content {
    background-color: #fff;
    color: #333;
    padding: 40px 20px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.hime-content h2 {
    font-size: 1.6rem;
    color: #ff96b6;
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 6px solid #a6dcef;
    padding-left: 12px;
    font-weight: 600;
}
.hime-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}
.hime-content ul,
.hime-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}
.hime-content li {
    margin-bottom: 10px;
    font-size: 1rem;
}
.hime-content ul li::before {
    content: "•";
    color: #ff96b6;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}
.hime-content ol {
    counter-reset: step-counter;
}
.hime-content ol li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 1.5em;
}
.hime-content ol li::before {
    content: counter(step-counter) ".";
    position: absolute;
    left: 0;
    color: #ff96b6;
    font-weight: bold;
}
.hime-wraper {

}
.hime-wraper img {
    float: left;
    width: 50%;
    height: auto;
    margin-right: 20px;
    margin-bottom: 10px;
    object-fit: cover;
}
.hime-text {
    overflow-wrap: break-word;
    text-align: justify;
}
.hime-text p {
    font-size: 1.125rem;
}
.hime-text p strong {
    font-size: 1.125rem;
    font-weight: bold;
}
.merit p {
    font-size: 1.125rem;
}
.merit li {
    font-size: 1.125rem;
}
.merit li strong {
    font-size: 1.125rem;
    font-weight: bold;
}
.tip li {
    font-size: 1.125rem;
}
.summary {
    text-align: justify;
}
.summary p {
    font-size: 1.125rem;
}
mark {
    background: linear-gradient(transparent 50%, #00ffff 80%);
}
@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }

    .video-container {
        position: relative;
        width: 100%;
        height: 85vh;
        overflow: hidden;
        transition: all 0.5s ease;
        z-index: 1;
    }

    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-container.fixed {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
    }

    .hime-section h1 {
        font-size: 1.4375rem;
        padding: 10px 5px;
        margin-top: 110px;
        margin-bottom: 20px;
        text-align: justify;
    }
    .hime-content {
        padding: 30px 15px;
    }
    .hime-content h2 {
        font-size: 1.25rem;
    }
    .hime-content p,
    .hime-content li {
        font-size: 0.95rem;
    }
    .hime-text p {
        font-size: 1rem;
    }
    .hime-text p strong {
        font-size: 1rem;
        font-weight: bold;
    }
    .merit p {
        font-size: 1rem;
    }
    .merit li {
        font-size: 1rem;
    }
    .merit li strong {
        font-size: 1rem;
        font-weight: bold;
    }
    .tip li {
        font-size: 1rem;
    }
    .summary {
        text-align: justify;
    }
    .summary p {
        font-size: 1rem;
    }
}



/**********ここからfooter***********/
.footer-parent {
    display: flex;
    margin: 100px 0 0 0;
}
.nav {
    display: flex;
    flex-wrap: wrap;
}
.footer-nav-menu1 {
    margin: 0 60px 0 0;
    line-height: 2;
    font-size:clamp(12px, 2.3vw, 18px);
}
.footer-nav-menu2 {
    line-height: 2;
    font-size:clamp(12px, 2.3vw, 18px);
}
.footer-nav-menu li {
    margin: 0 auto;
    padding: 0 5px;
    font-weight: 700;
}
.footer-nav-menu li a:hover{
	color: #fdccc6;
}
p.copy {
    font-size: 0.8rem;
    text-align: center;
    margin: 50px 0 50px 0;
}
/* PC画面では非表示 */
@media screen and (min-width: 769px) {
    .pc-only {
        display: block;
    }

    .video-container-pc {
        position: relative;
        width: 70%;
        padding-top: 135.77%; /* 16:9  177.77%*/
        margin: 0 auto;
    }

    .video-container-pc video {
        position: absolute;
        top: 30px;
        left: 0;
        width: 100%;
        object-fit: cover;
    }

    .main_sp  {
        display: none;
    }
    .iframe {
        width: 50%;
    }
}
/* SC画面でのみ表示 */
@media screen and (max-width: 767px) {
    .main_pc{
        display: none;
    }
    .footer-parent {
        display: flex;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 767px) {
    .logo {
        max-width: 100%;
        height: auto;
    }
    /*nav*/
    .btn-gNav {
        display: block;
    }
    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(252, 109, 109, 0.8);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 50px;
        transition: .3s;
    }
    .gNav.open {
        right: 0;
        height: 80vh;
    }
    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }
    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        font-size: 16px;
        letter-spacing: 2px;
        border-bottom: #ffffff 1px solid;
        color: #ffffff;
    }
    .recruit {
        margin-top: 45px; /* 110px */
    }
}
@media screen and (max-width:534px) {
    .recruit ul {
        justify-content: center;
    }
    .recruit ul li { 
        flex: 1 1 calc(100% - 40px);
        max-width: calc(100% - 10px);
    }
    .recruit-man ul {
        justify-content: center;
    }
    .recruit-man ul li { 
        flex: 1 1 calc(100% - 40px);
        max-width: calc(100% - 10px);
    }
}
@media screen and (max-width:450px) {
    
}
@media screen and (max-width:370px) {
    .logo img {
        max-width: 150px;
        width: 100%;
    }
    .footer-nav-menu1 {
        margin: 0 15px 0 0;
    }
}