*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing : border-box;
}
body {
    background: #000;
    color: #fff;
    font-family: "a-otf-ryumin-pr6n", serif;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 0.05em;
    box-sizing : border-box;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    transform: scale(1.01);
}
p {
    line-height: 30px;
}
section {
    padding: 96px 24px;
}

.sec-title {
    margin-bottom: 64px;
    text-align: center;
}
.sec-title .en {
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 2.6rem;
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .sec-title .en {
        font-size: 1.8rem;
    }
}

.sec-title .jp {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1rem;
}
@media (max-width: 767px) {
    .sec-title .jp {
        font-family: "Lato", sans-serif;
        font-weight: 400;
        font-size: 0.7rem;
    }
}

.text {
    font-size: 16px;
    line-height: 32px;
    text-align: center;
}

.mv {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
@media (max-width: 767px) {
    .mv {
        height: 48vh;
        height: 39vh;
        margin-top: 80px;
    }
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeOutUp 3s forwards;
}

.logo {
    width: 200px;
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -150%);
    }
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* ヘッダー（初期非表示） */
.header {
    width: 100%;
    background-color: #000;
    color: #fff;
    position: fixed;
    top: -100px;
    left: 0;
    z-index: 99;
    transition: top 0.5s ease;
    padding: 24px;
    box-sizing: border-box;
}
@media (max-width: 768px) {
    .header {
        top: 0;
        display: flex;
        justify-content: space-between;
    }
}
.header.fixed {
    top: 0;
}

.page-header {
    top: 0;
}

@media (max-width: 767px) {
    .header .header-logo {
        width: 40px;
    }
}

/* ヘッダー共通 */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 20px;
}
@media (max-width: 767px) {
    .navbar {
        justify-content: flex-end;
    }
}

.menu-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-list .menu-item a {
    color: #fff;
    text-decoration: none;
    padding: 16px;
    margin: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Josefin Sans';
    font-size: 18px;
    transition: color 0.3s ease;
}

.menu-list .menu-item a:hover {
    color: #C2B280;
    transform: scale(1.01);
}

.menu-list .menu-item a .menu-ja {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .sub-header {
        display: none;
    }
    .hamburger-menu-list {
        background-color: #000;
        align-items: center;
        display: flex;
        flex-direction: column;
        left: 0;
        padding: 2rem 2rem 6rem;
        position: absolute;
        transform: translateX(-100%);
        transition: 0.3s;
        top: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    .hamburger-menu-list .menu-item {
        border-top: solid 0.8px #fff;
        padding: 8px 0;
    }
    .hamburger-menu-list .menu-item:last-child {
        border-bottom: solid 0.8px #fff;
    }
    .hamburger-menu-button {
        align-items: center;
        appearance: none;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: 32px;
        justify-content: center;
        width: 32px;
    }
    .hamburger-menu-button-mark {
        background-color: #fff;
        display: block;
        height: 1px;
        transition: 0.3s;
        width: 20px;
    }
    #hamburger:checked
        ~ .hamburger-menu-button.active
        .hamburger-menu-button-mark:nth-of-type(1) {
        transform: translate(2px, 1px) rotate(45deg);
        transform-origin: 0%;
    }
    #hamburger:checked
        ~ .hamburger-menu-button.active
        .hamburger-menu-button-mark:nth-of-type(2) {
            opacity: 0;
    }
    #hamburger:checked
        ~ .hamburger-menu-button.active
        .hamburger-menu-button-mark:nth-of-type(3) {
            transform: translate(2px, 3px) rotate(-45deg);
            transform-origin: 0%;
    }
    #hamburger:checked ~ .hamburger-menu-list.active {
        transform: translateX(0%);
        transition: 0.3s;
    }

    .hamburger-menu-button.active
        .hamburger-menu-button-mark:nth-of-type(1) {
        transform: translate(2px, 1px) rotate(45deg);
        transform-origin: 0%;
    }
    .hamburger-menu-button.active
        .hamburger-menu-button-mark:nth-of-type(2) {
            opacity: 0;
    }
    .hamburger-menu-button.active
        .hamburger-menu-button-mark:nth-of-type(3) {
            transform: translate(2px, 3px) rotate(-45deg);
            transform-origin: 0%;
    }
    .hamburger-menu-list.active {
        transform: translateX(0%);
        transition: 0.3s;
    }
}

.hamburger-menu input {
    display: none;
}


/* SNSメニュー */
.sns {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 100;
}
@media (max-width: 767px) {
    .sns {
        display: none;
    }
}
.sns .sns-menu {
    padding: 40px;
}
@media (max-width: 767px) {
    .sns .sns-menu {
        padding: 96px 18px;
    }
}
.sns .sns-menu .sns-menu-item {
    margin-bottom: 2rem;
}
.sns .sns-menu .sns-menu-item a {
    writing-mode: vertical-rl;
    letter-spacing: 0.1em;
    font-family: 'Josefin Sans';
    font-size: 0.7rem;
    display: flex;
    align-items: center;
}
.sns .sns-menu .sns-menu-item a:hover {
    color: #C2B280;
    transition: 0.5s all;
}
.sns .sns-menu .sns-menu-item a img {
    margin-bottom: 1rem;
    width: 40px;
}

/* コンセプト */
.concept {
    position: relative;
    display: flex;
    justify-content: center;
}
@media (max-width: 767px) {
    .concept {
        padding-left: 0;
        padding-right: 0;
        flex-direction: column;
    }
}
.club-view-main::before {
    content: "";
    background-image: url(/img/club-view-main-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 320px;
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
    opacity: 0.2;
}
@media (max-width: 767px) {
    .club-view-main::before {
        display: none;
    }
}

.club-view-main::after {
    content: "";
    background-image: url(/img/concept-text-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 640px;
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
}
@media (max-width: 767px) {
    .club-view-main::after {
        content: none;
    }
}

.pc-hidden {
    display: none;
}
@media (max-width: 767px) {
    .pc-hidden {
        display: block;
    }
    .sp-hidden {
        display: none;
    }
}

.concept .concept-text {
    position: absolute;
    top: 30%;
}
@media (max-width: 767px) {
    .concept .concept-text {
        position: unset;
        padding-bottom: 64px;
    }
}

.concept .catchcopy {
    line-height: 64px;
    font-size: 2.5rem;
    text-align: center;
}
@media (max-width: 767px) {
    .concept .catchcopy {
        font-size: 2rem;
        line-height: 56px;
    }
}
.club-view-main {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 560px;
}
@media (max-width: 767px) {
    .club-view-main {
        padding-bottom: 0;
    }
}
.club-view-main img {
    width: 100%;
}

/* システム料金 */
.system {
    position: relative;
    background-image: url(/img/club-view-system-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1; /* オーバーレイを文字の下に配置 */
}
.system .sec-title {
    position: relative;
    z-index: 2;
}
.system .system-price {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 auto;
}
.system .system-price .system-price-menu {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3.5rem 4.5rem;
    /* background-image: url(/img/system-frame.png); */
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.system .system-price::before {
    content: '';
    display: inline-block;
    width: 340px;
    height: 340px;
    background-image: url(../img/system-frame-top.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -32px;
    left: -34px;
    z-index: 3;
    background-repeat: no-repeat;
}
.system .system-price::after {
    content: '';
    display: inline-block;
    width: 340px;
    height: 340px;
    background-image: url(../img/system-frame-bottom.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    bottom: 63px;
    right: -26px;
    z-index: 3;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .system .system-price::after {
        bottom: 80px;
    }
}

.system .system-price .system-price-menu .system-price-menu-list {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
}
.menu-name {
    color: #C2B280;
}
.price {
    text-align: right;
}
.notes {
    margin: 0 8px;
}
.notes p {
    font-family: 'A-OTF Ryumin Pr6N';
    font-size: 0.8rem;
    color: #C2B280;
    text-indent: -1em;
    padding-left: 1em;
    line-height: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    margin-top: 0.5rem;
}


/* ドリンクメニュー */
.drink {
    position: relative;
    background-image: url(/img/club-view-drink-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}
.drink .sec-title {
    position: relative;
    z-index: 2;
}
.drink .drink-menu {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.drink .drink-menu .drink-menu-list {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    margin-bottom: 3rem;
}
@media (max-width: 767px) {
    .drink .drink-menu .drink-menu-list {
        flex-wrap: wrap;
    }
}

.drink .drink-menu .drink-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'A-OTF Ryumin Pr6N';
    font-size: 0.7rem;
    margin-bottom: 2.5rem;
}
.drink .drink-menu .drink-menu-item img {
    width: 50%;
    margin-bottom: 0.5rem;
}
.drink .button {
    border: 1px solid #fff;
    margin: 0 auto;
    padding: 16px 40px;
}

.drink .button:hover {
    background: #C2B280;
    border: #C2B280;
}

.other-drink-menu {
    max-width: 480px;
    margin: 0 auto;
}
.other-drink-menu-list {
    padding: 3.5rem 4.5rem 0;
    
}
.others .drink-menu-item {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
}
.others h3.en {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 300;
    font-size: 2rem;
    text-align: center;
    margin: 0;
}

/* ギャラリー */
.gallery {
    padding: 0;
}
.slider img{
    width:100%;
}
.slick-prev, .slick-next {
    display: none !important;
}

/* アクセス */
.access-info {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .access-info {
        flex-direction: column-reverse;
        align-items: center;
    }
}

.address {
    display: flex;
    flex-direction: column;
}

@media (max-width: 767px) {
    .address {
        margin: 40px 0;
    }
}



.access-logo {
    max-width: 180px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .access-logo {
        margin: 40px auto 16px;
    }
}

.access-info .address p {
    margin-bottom: 8px;
}

.box-flex {
    display: flex;
    flex-wrap: wrap;
}
.hours {
    /* display: flex; */
    align-items: baseline;
}
.hours p {
    margin-top: 0;
    margin-bottom: 0 !important;
    margin-right: 8px;
}
.tell {
    /* display: flex; */
    align-items: baseline;
}
.tell p {
    margin-top: 0;
    margin-bottom: 0 !important;
    margin-right: 8px;
}
.tell a {
    text-decoration: underline;
}
.map {
    margin-left: 3rem;
}
@media (max-width: 767px) {
    .map {
        margin-left: 0;
    }
}
img.champagne-icon {
    width: 20px;
    margin-right: 0.5rem;
}
img.tell-icon {
    width: 19px;
    margin-right: 0.5rem;
}

/* 採用情報 */
.recruit {
    text-align: center;
    padding: 2rem 0;
    max-width: 800px;
    margin: 48px auto;
    position: relative;
    background-image: url(/img/frame.png);
    background-size: contain;
    background-repeat: no-repeat;
}
@media (max-width: 767px) {
    .recruit {
        background-image: url(/img/frame-sp.png);
        height: 260px;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}
.recruit img {
    position: absolute;
    top: -12px;
    left: 0;
    width: 240px;
}
@media (max-width: 767px) {
    .recruit img {
        top: -18px;
        left: -24px;
        width: 160px;
    }
}

.recruit p {
    font-size: 1rem;
    line-height: 30px;
    letter-spacing: 0.05em;
}
@media (max-width: 767px) {
    .recruit p {
        font-size: 0.85rem;
        padding: 0 40px;
    }
}



/* マウスストーカー */
#mouse-stalker {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(128, 0, 64, 0.536);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease;
    filter: blur(8px);
    box-shadow: 0 0 30px rgba(128, 0, 64, 0.5);
}
  

footer {
    text-align: center;
}
footer .footer-logo {
    width: 112px;
}
footer .copyright{
    font-size: 0.7rem;
    font-family: "Josefin Sans", sans-serif;
}


/*  */
