@charset "UTF-8";

:root {
    --color-primary: #7a96a7;
    --color-secondary: #F3F0EB;
    --font-color-base: #1f1f1f;
    --font-color-sub: #7a96a7;
    --bg-color-main: #fff;
    --bg-color-secondary: #7a96a7;
    --bg-color-sub: #f3f0eb;
    --font-family: "Zen Maru Gothic", sans-serif;
    --font-size-base: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
    --line-height-base: 2;
    --border-sytle-base: 1px solid #dedede;
    --border-radius-base: 30px;
}

html {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--font-color-base);
    line-height: var(--line-height-base);
    scroll-behavior: smooth;
}

/* -------------------------
Header
--------------------------*/

header {
    p.tagline {
        width: 100%;
        height: 50px;
        background: var(--bg-color-secondary);
        text-align: center;
        font-size: 0.75rem;
        color: #fff;
        line-height: 50px;
    }
    h1 {
        display: flex;
        justify-content: center;
        margin: 60px auto;
    }
    nav ul {
        display: flex;
        justify-content: center;
        gap: 50px;
    }
    nav ul li {
        text-align: center;
        font-size: 1.125rem;
        line-height: 1;
    }
    nav ul li a {
        display: block;
        transition: color .2s;
        font-weight: 500;
    }
    nav ul li a:hover {
        color: var(--font-color-sub);
    }
    nav ul li span {
        display: block;
        margin-top: 10px;
        font-size: 0.875rem;
        color: var(--font-color-sub);
        line-height: 1;
    }
}

/* -------------------------
Main
--------------------------*/

section.mv {
    padding: 0 7vw;

    div.mv__top {
        max-width: 1200px;
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        margin: 50px auto 0;
    }
    div.mv__top h2 {
        width: calc(62.5% / 2);
        display: flex;
        align-items: center;
        padding-top: 80px;
        writing-mode: vertical-rl;
        font-weight: 500;
        font-size: 1.5rem;
        opacity: 0;
        animation: fadeTop 1s ease-out .5s forwards;

        img {
            max-width: 40%;
        }
    }
    div.mv__top__img {
        width: 37.5%;
        position: relative;
    }
    div.mv__top__img img {
        width: 100%;
        border-radius: 9999px;
    }
    div.mv__top > p {
        width: calc(62.5% / 2);
        display: flex;
        align-items: center;
        padding-top: 80px;
        writing-mode: vertical-rl;
        font-weight: 500;
        font-size: 1.125rem;
        opacity: 0;
        animation: fadeTop 1s ease-out .8s forwards;
    }
    span.ico_mv-img {
        width: 40%;
        border-radius: 50%;
        background: #F3F35F;
        position: absolute;
        bottom: 0px;
        right: 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        aspect-ratio: 1 / 1;
    }
    span.ico_mv-img p:nth-child(1) {
        font-weight: 500;
        font-size: 1.375rem;
        line-height: 1;
    }
    span.ico_mv-img p:nth-child(2) {
        font-size: 1rem;
        line-height: 1.5;
        margin-top: 10px;
    }
    div.mv__txt {
        max-width: 1200px;
        margin-inline: auto;
        background: #f3f0eb;
        border-radius: 120px;
        padding: 380px 7vw 100px;
        margin-top: -330px;
        display: flex;
        gap: 5vw;
    }
    div.mv__txt h2 {
        flex: 1;
        text-align: left;
    }
    div.mv__txt div {
        flex: 2;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------------
Parts
--------------------------*/

h2.h2_style_1 {
    margin-bottom: 80px;
    font-weight: 500;
    text-align :center;

    p.jp {
        margin-bottom: 10px;
        font-size: clamp(1.25rem, 0.9rem + 1.36vw, 2rem);
        line-height: 1;
    }
    p.en {
        font-size: 1rem;
        color: var(--font-color-sub);
        line-height: 1;
    }
}

/* -------------------------
Menu
--------------------------*/

section.menu {
    padding: 100px 7vw 0;

    ul.menu__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 5vw;
        max-width: 1200px;
        margin-inline: auto;
    }
    ul.menu__list li {
        display: flex;
        gap: 3.33vw;
    }
    div.menu__list__img {
        width: 33%;
        position: relative;

        img {
            width: 100%;
            height: auto;
            border-radius: 50%;
        }
        p {
            width: 60px;
            height: 60px;
            background: #7a96a7;
            border-radius: 50%;
            position: absolute;
            top: 0;
            right: 0;
            color: #fff;
            font-size: 1.125rem;
            text-align: center;
            line-height: 55px;
            
            span {
                font-size: 0.875rem;
            }
        }
    }
    div.menu__list__txt {
        flex: 1;

        h3 {
            font-size: 1.25rem;
            line-height: 1;
            margin: 15px 0;
        }
        p.txt_menu-desc {
            line-height: 1.75;
            margin: 0 0 10px;
        }
        p.txt_menu-price {
            font-size: 1.25rem;
            color: var(--font-color-sub);
            span {
                font-size: 0.875rem;
            }
        }
    }
}

p.txt_menu-option {
    max-width: 1200px;
    padding: 0 7vw;
    margin: 80px auto 0;
    font-weight: 500;
    font-size: 1.25rem;
    box-sizing: content-box;
}

section.menu__option {
    margin-top: 50px;
    padding-top: 0;
}

/* -------------------------
Point
--------------------------*/

section.point {
    padding: 100px 7vw 0;

    ul.point__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3vw;
        max-width: 1200px;
        margin-inline: auto;
    }
    ul.point__list li {
        background: var(--bg-color-sub);
        border-radius: 40px;
        padding: 40px 30px;
    }
    ul.point__list li img {
        height: 120px;
        display: block;
        margin-inline: auto;
    }
    ul.point__list li h3 {
        font-weight: 500;
        font-size: 1.25rem;
        text-align: center;
        line-height: 1.5;
        margin: 25px 0;
    }
    p.txt_point-num {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        color: var(--font-color-sub);
        font-weight: 500;
        font-size: 3.2rem;
        line-height: 1;
        text-align: center;

        span {
            font-size: 1.125rem;
        }
    }
}

/* -------------------------
Profile
--------------------------*/

section.profile {
    padding: 100px 0 0;

    div.profile__contents {
        background: url(img/bg_profile.jpg) no-repeat;
        padding: 0 0 100px;
        background-position: center 110px;
        background-size: cover;
        color: #fff;
    }
    img {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        margin-inline: auto;
        display: block;
    }
    p.txt_profile__shikaku {
        font-size: 0.875rem;
        text-align: center;
        line-height: 1.5;
        margin-top: 20px;
    }
    p.txt_profile__desc {
        max-width: 600px;
        margin: 50px auto 0;
        padding: 0 7vw;
        box-sizing: content-box;
    }
}

/* -------------------------
Contact
--------------------------*/

section.contact {
    background: var(--bg-color-sub);
    padding: 100px 7vw 0;

    p.contact__desc {
        max-width: 800px;
        margin: 0 auto 50px;
    }
    form {
        max-width: 800px;
        margin-inline: auto;
    }
    form dl {
        display: flex;
        gap: 3vw;
        border-top: var(--border-sytle-base);
        padding: 30px 0;
    }
    form dl:first-child {
        border-top: none;
    }
    form dh {
        width: 33%;
        font-size: 1.125rem;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    form dd {
        flex: 1;
    }
    form p.ico_r {
        width: 70px;
        height: 30px;
        background: #fe5e5e;
        border-radius: 15px;
        color: #fff;
        font-size: 0.875rem;
        text-align: center;
        line-height: 30px;
    }
    form p.ico_g {
        width: 70px;
        height: 30px;
        background: #989898;
        border-radius: 15px;
        color: #fff;
        font-size: 0.875rem;
        text-align: center;
        line-height: 30px;
    }
    select {
        width: 100%;
        height: 60px;
        background: #fff;
        border-radius: 10px;
        padding: 0 20px;
        cursor: pointer;
    }
    dd#wrap_select {
        position:relative;
    }
    dd#wrap_select::after {
        position: absolute;
        content: '';
        display:block;
        width: 10px;
        height: 10px;
        top: 50%;
        right: 25px;
        margin-top: -7px;
        border-bottom: 2px solid #000;
        border-right: 2px solid #000;
        transform: rotate(45deg);
    }
    input[type="text"],input[type="email"],input[type="tel"] {
        width: 100%;
        height: 60px;
        background: #fff;
        border-radius: 10px;
        padding: 0 15px;
    }
    textarea {
        width: 100%;
        height: 320px;
        background: #fff;
        border-radius: 10px;
        padding: 25px;
        line-height: 1.7;
        resize: vertical;
    }
    p.contact__policy {
        text-align: center;
        margin: 20px 0 50px;
    }
    button[type="submit"] {
        width: 250px;
        height: 70px;
        border-radius: 35px;
        background: var(--bg-color-secondary);
        margin-inline: auto;
        display: block;
        color: #fff;
        padding: 0 30px;
        position: relative;
    }
    button[type="submit"]::before {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        background: #fff;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        margin-top: -15px;
        right: 20px;
        transition: all .2s;
    }
    button[type="submit"]:hover::before {
        transform: scale(1.5);
    }
    button[type="submit"]::after {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        background: url(img/ico_arrow.svg) no-repeat center;
        position: absolute;
        top: 50%;
        right: 25px;
        margin-top: -10px;
        transition: all .2s;
    }
    button[type="submit"]:hover::after {
        transform: scale(1.2);
    }
    div.contact__license {
        max-width: 800px;
        margin: 50px auto 0;
        border-top: var(--border-sytle-base);
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;

        img {
            width: 180px;
            height: 40px;
        }

        p a {
            font-size: 1rem;
        }

        p a:hover {
            text-decoration: underline;
        }
    }
}

/* -------------------------
Footer
--------------------------*/

footer {
    background: var(--bg-color-sub);
    padding: 0 0 30px;

    p {
        text-align: center;
        font-size: 0.875rem;
    }
}


/* -------------------------
Tablet
--------------------------*/

@media (width < 1024px) {

    /* header */
    header {
        nav ul {
            gap: 30px;
        }
    }

    /* parts */
    h2.h2_style_1 {
        p.jp {
            font-size: 1.75rem;
        }
        p.en {
            font-size: 1.25rem;
        }
    }

    /* main */
    section.mv {
        padding: 0;

        div.mv__top { 
            flex-direction: row;
            margin-top: 70px;
        }
        div.mv__top h2 {
            width: 40%;
            font-size: 1.75rem;

            img {
                max-width: 50%;
            }
        }
        div.mv__top__img {
            width: 60%;
            margin-right: 7vw;
        }
        div.mv__txt {
            border-radius: 0;
            padding-bottom: 60px;
        }
        div.mv__top > p {
            display: none;
        }
    }
    /* menu */
    section.menu {

        ul.menu__list {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        ul.menu__list li {
            flex-direction: column;
            gap: 5vw;
            align-items: center;
        }
        div.menu__list__img {
            width: 40%;
        }
        div.menu__list__txt h3 {
            margin-top: 0;
        }
        p.txt_menu-option {
            margin-top: 50px;
        }
    }
    section.menu__option {
        margin-top: 50px;
    }
    /* point */
    section.point {
        padding-top: 80px;
    }
    /* profile */
    section.profile {
        padding-top: 80px;

        p.txt_profile__desc {
            max-width: 400px;
        }
    }
    /* common */
    h2.h2_style_1 {
        margin-bottom: 60px;
    }
}



/* -------------------------
Smartphone
--------------------------*/

@media (width < 768px) {

    /* header */
    header {
        p.tagline {
            height: 30px;
            line-height: 30px;
        }
        h1 {
            margin: 45px auto;
        }
        h1 img {
            width: 30%;
        }
        nav {
            display: none;
        }
    }

    /* main */
    section.mv {
        div.mv__top {
            overflow: hidden;
            margin-top: 50px;
            
            h2 {
                width: 45%;
                padding-top: 25px;
                font-size: 1.5rem;
                z-index: 2;

                img {
                    max-width: 65%;
                }
            }
        }
        div.mv__top__img {
            margin-right: 0;
            position: relative;
            left: -60px;
            z-index: 1;

            img {
                width: 150%;
            }
            span.ico_mv-img { 
                width: 65%;
                left: -25vw;
            }
        }
        div.mv__txt {
            flex-direction: column;
            margin-top: -270px;
            padding-top: 320px;
        }
        h2 {
            margin-bottom: 10px;
        }
    }

    /* menu */
    section.menu {
        padding-top: 80px;

        ul.menu__list {
            grid-template-columns: 1fr;
        }
        ul.menu__list li {
            border-bottom: var(--border-sytle-base);
            padding: 20px 0;
        }
        ul.menu__list li:last-child {
            border-bottom: none;
        }
        div.menu__list__img p {
            width: 50px;
            height: 50px;
            line-height: 47px;
        }
    }
    section.menu__option {
        margin-top: 10px;
        padding-top: 0;
    }
    p.txt_menu-option {
        margin: 30px auto;
        text-align: center;
    }

    /* point */
    section.point {
        ul.point__list {
            gap: 7vw;
        }
        ul.point__list li {
            padding: 30px 25px;

            img {
                height: 100px;
            }
        }
    }

    /* profile */
    section.profile {
        div.profile__contents {
            background-position: center 80px;
            padding: 0 0 60px;

            img {
                width: 160px;
                height: 160px;
            }
        }
    }

    /* contact */
    section.contact {
        padding-top: 80px;

        p.contact__desc {
            margin-bottom: 20px;
        }
        form {
            dl {
                flex-direction: column;
                padding: 20px 0;
                dh {
                    width: 100%;
                }
            }
        }
        p.contact__policy {
            margin-bottom: 40px;
        }
        div.contact__license {
            flex-direction: column;
            img {
                width: 140px;
                height: auto;
            }
        }
    }
}

/* ▲20251119：CodeChecked */