@charset "utf-8";

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, 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, p,
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-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

ol, ul {
    list-style: none;
}

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

input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
}

/* common */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

::-webkit-scrollbar {
    display: none;
}

body {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    position: relative;
    text-align: justify;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
}

svg .a {
    font-family: 'Niconne', cursive, "Noto Sans JP", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

.row {
    padding: 60px 0
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ta-center {
    text-align: center !important;
}

.flex {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-basis: auto;
}

.relative {
    position: relative;
}

.bg-pink {
    background: linear-gradient(#d83757 0%, #c11858 100%);
}

/* animation */
.fadein {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s ease;
}

.fadein.is-shown {
    opacity: 1;
    transform: translateY(0);
}

/* overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.8;
    background-image: url(../images/bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}


/* header */
.header {
    width: 100%;
    height: fit-content;
    border-top: 12px solid #D83757;
}

.header-logo {
    max-width: 90%;
    margin: 30px auto 0;
    padding: 0 30px;
}

.hamburger {
    position: fixed;
    top: 55px;
    right: 30px;
    width: 30px;
    height: 20px;
    z-index: 100;
    cursor: pointer;
    font-family: 'Niconne', cursive;
    font-size: 16px;
    text-align: center;
    color: #d83757;
    transition: 0.3s;
}

.hamburger:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.hamburger::after {
    content: "Menu";
    position: absolute;
    bottom: -30px;
    transform: translateX(-50%);
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #D83757;
    transition: .5s;
    left: 0;
}

.hamburger span:first-of-type {
    top: 0;
}

.hamburger span:nth-of-type(2) {
    top: 50%;
}

.hamburger span:last-of-type {
    top: 100%;
}

.hamburger.open::after {
    content: "Close";
    color: #fff;
}

.hamburger.open span {
    background-color: #fff;
}

.hamburger.open span:first-of-type {
    top: 50%;
    transform: rotate(45deg);
}

.hamburger.open span:nth-of-type(2) {
    opacity: 0;
}

.hamburger.open span:last-of-type {
    top: 50%;
    transform: rotate(-45deg);
}

#shop.open {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    filter: opacity(0.95);
    backdrop-filter: blur(2px);
    transition: .5s;
    z-index: 10;
}

#shop.open .wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadein 0.5s ease 0.1s both;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1 !important;
    }
}

#shop.open .shop-logo,
#shop.open .shop-title+p {
    display: none;
}

#shop.open .shop-list {
    justify-content: center;
    gap: 10%;
    margin: 50px 0 30px;
}

#shop.open li {
    width: fit-content;
}

.copyright.open {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    z-index: 10;
}

.cta-popup {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 390px;
    max-width: 100%;
    padding: 28px 35px 20px;
    background-color: #06C755f0;
    color: #fff;
    border-radius: 20px 0 0 0;
    text-align: center;
    transition: 0.5s ease-in-out;
}

.cta-popup-arrow {
    position: absolute;
    top: 0;
    left: 40px;
    transform: translateY(-100%);
    background-color: #06C755f0;
    border-radius: 10px 10px 0 0;
    width: 60px;
    cursor: pointer;
}

.cta-popup-arrow img {
    transition: 0.3s;
    padding-bottom: 3px;
}

.cta-popup-title {
    font-weight: 900;
    font-size: 21px;
    margin-bottom: 15px;
}

.cta-popup-text {
    font-size: 14px;
    text-align: justify;
}

.cta-popup-btn {
    background-color: #fff;
    color: #06C755;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    font-size: 18px;
    margin-top: 20px;
    transition: 0.3s;
}

.cta-popup-btn:hover {
    opacity: 0.6;
    transition: 0.3s;
}

.cta-popup-tel {
    color: #fff;
    font-size: 18px;
    margin-top: 15px;
    font-weight: bold;
    display: block;
    transition: 0.3s;
}

.cta-popup-tel:hover {
    text-decoration: underline;
    transition: 0.3s;
}

.cta-popup.is-close {
    transform: translateY(100%);
    transition: 0.5s ease-in-out;
}

.cta-popup.is-close .cta-popup-arrow img {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* hero */
.girls-list {
    flex-wrap: wrap;
    transition: 0.3s;
    justify-content: space-between;
    align-items: center;
}

.girls-list li {
    position: relative;
    padding: 20px 10px;
}

.girls-lie {
    width: 27%;
    margin-left: 15%;
}

.girls-l {
    width: 33%;
    margin-right: 15%;
}

.girls-akuma {
    width: 43%;
}

.girls-ruru {
    width: 35%;
}

.girls-lem {
    width: calc(322 / (323 + 322 + 218 + 225) * 100%);
}

.girls-neko {
    width: 30%;
}


.girls-ningyo {
    width: 24%;
}

.girls-list img,
.girls-list a {
    transition: 0.3s;
    display: block;
}

.girls-list a:hover img {
    transform: scale(1.05);
    transition: 0.3s;
}

.girls-list:hover a:not(a:hover) {
    opacity: 0.45;
    transition: 0.3s;
}

.bubble {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0;
    transition: 0.3s 0.1s;
    width: clamp(80px, 22vw, 160px);
}

.girls-lie .bubble {
    left: 38%;
}

.girls-ningyo .bubble {
    left: 63%;
}

.girls-list a:hover .bubble {
    transform: translate(-50%, -50px);
    opacity: 1;
    transition: 0.3s 0.1s;
}


/* shop */
#shop a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

.sec-title,
.sec-title-jp {
    display: block;
    color: #FCF1CD;
}

.sec-title {
    font-family: 'Niconne', cursive;
    font-size: 42px;
}

.sec-title-jp {
    font-weight: 500;
    font-size: 12px;
}

.shop-type {
    position: relative;
    justify-content: space-between;
    margin: 60px 0 30px;
    padding: 5px 15px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
}

.shop-type::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
    background-image: url(../images/icon-square-heart.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.concafe .shop-type::before {
    background-image: url(../images/icon-square-cup.svg);
}

.snack .shop-type::before {
    background-image: url(../images/icon-square-grass.svg);
}

.shop-type-en {
    font-family: 'Niconne', cursive;
    font-size: 18px;
    padding-left: 40px;
}

.shop-type-jp {
    font-size: 13px;
}

.shop-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: space-between;
}

.shop-list li {
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(33.333% - 13.33px); /* 3列時にgap考慮 */
    box-sizing: border-box;
    font-size: 14px;
    color: #fff;
}

.shop-list .flex {
    align-items: flex-start;
    gap: 15px;
    color: #fff;
}

.concafe .shop-list {
    gap: 30px 20px !important;
}

.concafe .shop-list li {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: calc(50% - 10px);
    box-sizing: border-box;
    font-size: 14px;
    color: #fff;
}

.shop-list img {
    max-width: 45%;
    max-height: 120px;
    object-fit: contain;
}

.shop-title {
    font-weight: bold;
    font-size: 15px;
}

/* footer */
.footer>.flex {
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.footer-logo {
    max-width: 100px;
}

.footer-text {
    max-width: 250px;
    font-size: 14px;

}

.footer-text div:nth-child(2) {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 24px;
    border-top: 1px solid #000;
}

.footer-text div:last-child {
    font-size: 12px;
}

.copyright {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #C32041;
    color: #fff;
    text-align: center;
    font-size: 14px;
}

@media screen and (max-width:500px) {
    .mb-column {
        flex-direction: column;
    }

    .mb-column li {
        width: 100% !important;
        max-width: 100% !important;
    }

    .overlay {
        background-position: left top;
    }

    .header-logo {
        max-width: 100%;
        margin: 80px 0 -30px;
        padding: 0;
    }

    .hamburger {
        top: 30px;
        right: 20px;
    }

    #shop.open .shop-type {
        margin: 30px 0 0;
    }

    #shop.open .shop-list {
        gap: 25px !important;
        margin: 30px 20px 40px;
    }

    .girls-lie {
        width: 43%;
        margin-left: 0;
    }

    .girls-l {
        width: 49%;
        margin-right: 0;
    }

    .girls-ruru {
        width: 40%;
    }

    .girls-akuma {
        width: 65%;
    }

    .girls-neko,
    .girls-lem,
    .girls-ningyo {
        padding: 20px 5px !important;
    }

    .girls-lem {
        width: calc(145 / (145 + 98 + 101) * 100%);
    }


    .girls-neko {
        width: 55%;
        margin-left: 23%;
    }

    .girls-ningyo {
        width: 33%;
    }

    .bubble {
        max-width: 80px;
    }

    .girls-list a:hover .bubble {
        transform: translate(-50%, -23px);
    }

    .shop-list {
        gap: 45px !important;
    }

    .shop-list img {
        width: 40%;
    }

    .footer>.flex {
        padding: 20px 40px;
    }

    .footer-text div:nth-child(2) {
        font-size: 18px;
    }

}