@charset "UTF-8";

/* =======================
common
==========================*/
:root {
    --primary-black: #171717;
    --primary-gray: #828282;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black, #171717);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

/*==========================
header
==========================*/
.header {
    padding: 7px 10%;
    top: 0;
    left: 0;
    position: fixed;
    height: 58px;
    z-index: 999;
    width: 100%;
    height: auto;
    background-color: #fff;
}

.header__logo {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 20;
}

.header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 130px;
    background: linear-gradient(180deg, #FFF 79.69%, #DE94A4 146.52%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.header__menu.is-active {
    opacity: 1;
    visibility: visible;
}


.header__nav {
    width: 100%;
}

.header__nav-list {
    width: 100%;
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
}

.header__nav-item {
    width: 100%;
    display: flex;
    padding: 0 50px;
    justify-content: space-between;
    align-items: center;
}

.header__nav-item:not(:first-child) {
    margin-top: 32px;
}

.header__nav-link {
    font-size: 2rem;
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-bottom: 10px;
    border-bottom: 0.5px solid #E7B191;
}

.header__nav-item img {
    vertical-align: -6px;
    margin-left: auto;
}

.hamburger {
    position: fixed;
    top: 33px;
    right: 37px;
    width: 18px;
    height: 14px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
}

.hamburger__line-zone {
    display: block;
    margin-inline: auto;
    width: 18px;
    height: 14px;
    position: relative;
}

.hamburger__line {
    display: inline-block;
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 0.5px;
    border-radius: 4px;
    background-color: #2F2F2F;
    transition: 0.3s;
}

.hamburger__line:nth-child(1) {
    top: 0;
}

.hamburger__line:nth-child(2) {
    top: 5px;
}

.hamburger__line:nth-child(3) {
    top: 11px;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    top: 8px;
    transform: rotate(-45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    top: 8px;
    transform: rotate(45deg);
}

/* header pc */
@media screen and (min-width:769px) {
    .header {
        padding: 8px 7.2% 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }

    .header__logo {
        width: 85px;
        height: 85px;
    }

    .header__menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        opacity: 1;
        visibility: visible;
        padding-top: 0;
        display: flex;
        align-items: center;
    }

    .header__nav {
        display: flex;
        align-items: center;
        width: auto;
    }

    .header__nav-list {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: auto;
        padding: 0;
        transform: translate(0);
    }

    .header__nav-item {
        padding: 0;
    }

    .header__nav-item:not(:first-child) {
        margin-top: 0;
    }

    .header__nav-link {
        font-size: 1.8rem;
        padding-bottom: 0;
        border-bottom: none;
        margin-left: 24px;
        white-space: nowrap;
    }

    .header__nav-item img {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

/*==========================
Contant
==========================*/
.section--contant {
    padding: 40PX 10.6%;
}


.section--contant .title__ja {
    text-align: center;
}

.section--contant {
    background: linear-gradient(179deg, #FFF 79.02%, #F8E8EB 99.48%);
}

.section--contant .title__txt {
    font-size: 1.5rem;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 21px;
}

.title__sp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.title__en {
    color: var(--primary-gray, #282828);
    text-align: center;
    font-family: "Sorts Mill Goudy";
    font-size: 1.8rem;
    font-weight: 400;
}

.title__ja {
    font-size: 2.4rem;
    font-weight: 400;
    font-family: "Noto Serif JP";
}

.title__txt {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.65;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 29px 16px 0;
    padding: 14px 29px 14px 25px;
    border-radius: 45px;
    background: #F46677;
    box-shadow: 0px 2px 5px 0px rgba(83, 55, 0, 0.25);
    cursor: pointer;
    transition: 0.4s ease;
}

.button a {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 400;
    margin-right: 7px;
}

.button .btn__line {
    position: relative;
    display: inline-block;
    width: 27px;
    height: 1px;
    margin-top: 0.8px;
    border-radius: 9999px;
    z-index: 1;
    transition: transform 0.4s ease, background-color 0.4s ease;
    background-color: #FFF;
}

.button .btn__line::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 7px;
    height: 1px;
    border-radius: 9999px;
    transform: rotate(32deg);
    transform-origin: calc(100% - 1px) 50%;
    background-color: #FFF;
}

/* Contant pc */
@media screen and (min-width:769px) {
    .section--contant {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section--contant .title__txt {
        font-size: 1.8rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .title {
        gap: 32px;
    }

    .title__sp {
        gap: 19px;
    }

    .title__en {
        font-size: 2.4rem;
    }

    .title__ja {
        font-size: 2.8rem;
        font-weight: 500;
        text-align: center;
    }

    .title__txt {
        margin: 0 auto;
        width: 698px;
    }

    .button {
        width: 436px;
        margin-top: 32px;
        padding: 27px 95px 21px;
    }

    .button a {
        font-size: 2rem;
        margin-right: 10px;
    }
}

/*==========================
Footer
==========================*/
.footer {
    padding: 25px 6.4%;
}

.footer__logo-link img {
    width: 65px;
    height: 65px;
}

.menu__list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu__list {
    margin-top: 23px;
}

.menu__item {
    flex: 1 1 calc(50% - 10px);
    text-align: left;
}

.menu__item a {
    display: block;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 5px 0;
}

.copy {
    margin-top: 23px;
    color: #828282;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
}

/* Footer pc */
@media screen and (min-width:769px) {
    .footer {
        padding: 32px 4.1% 55px;
    }

    .footer__group {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }

    .footer__logo-link img {
        width: 50px;
        height: 50px;
    }

    .menu__list {
        display: flex;
        flex-wrap: nowrap;
        margin-top: 0;
        padding: 0;
        gap: 24px;
        list-style: none;
    }

    .menu__item {
        flex: none;
    }

    .menu__item a {
        font-size: 1.8rem;
        padding: 0;
    }

    .copy {
        margin-top: 64px;
        text-align: end;
        font-size: 1.6rem;
    }
}