@charset "UTF-8";

/*==========================
Article header
==========================*/
.article__header {
    margin-top: 58px;
    padding: 110px 6.6%;
    background: radial-gradient(103.71% 66.18% at 50% 50%, #FFF1DB 0%, #FFFBFB 0.01%, #FFF 64.41%, #FFFEFE 75.34%, #FFF1DB 97.19%);
    position: relative;
}

.article__header::before {
    content: "";
    position: absolute;
    background-image: url(../img/item1.svg);
    background-size: cover;
    width: 125px;
    height: 113px;
    left: 57px;
    top: 13px;
    transform: translateX(-50%);
}

.article__header::after {
    content: "";
    position: absolute;
    background-image: url(../img/item2.svg);
    background-size: cover;
    width: 93px;
    height: 125px;
    right: -38px;
    bottom: -40px;
    transform: translateX(-50%);
}

.header__container {
    margin-top: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header__txt {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.header__title {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.header__txt--en {
    color: #454545;
    font-family: "Sorts Mill Goudy";
    font-size: 1.8rem;
    font-weight: 400;
}

.header__txt--ja {
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-weight: 500;
}

.header__txt--main {
    font-size: 1.8rem;
    font-weight: 400;
}

.header__txt--sub {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.65;
    text-align: left;
}

.header__img {
    margin-top: 29px;
    width: 257px;
    height: 227px;
}

/* Article pc */
@media screen and (min-width:769px) {
    .article__header {
        margin-top: 111px;
        padding: 174px 13.4%;
        background: radial-gradient(103.71% 66.18% at 50% 50%, #FFF1DB 0%, #FFFBFB 0.01%, #FFF 64.41%, #FFFEFE 75.34%, #FFF1DB 97.19%);
    }

    .article__header::before {
        width: 166px;
        left: 78px;
        top: -11px;
        transform: translateX(-50%);
    }

    .article__header::after {
        width: 147px;
        height: 147px;
        right: -65px;
        bottom: -22px;
    }

    .header__txt {
        justify-content: center;
        align-items: center;
    }

    .header__txt--en {
        font-size: 2.4rem;
    }

    .header__txt--ja {
        font-size: 3.2rem;
    }

    .header__txt--main {
        font-size: 2.8rem;
    }

    .header__txt--sub {
        font-size: 1.8rem;
    }

    .header__img {
        margin-top: 0;
        margin-left: 63px;
        width: 291px;
        height: 257px;
    }
}

/*==========================
Contact
==========================*/
.section--contact {
    padding: 75px 4.5% 35px;
}

.form__conteiner {
    padding: 45px 20px;
    border: 1px solid #9A9A9A;
}

.from {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #B3B3B3;
    border-radius: 8px;
    font-size: 1.5rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F59999;
}

.required {
    color: #fff;
    background-color: #F59999;
    padding: 0 17px;
    font-size: 1.5rem;
    margin-left: 10px;
    line-height: 1.5;
}

.form-group textarea {
    height: 230px;
    resize: none;
}

.agreement {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 10px;
}

.agreement__title {
    font-size: 1.6rem;
    color: #666;
}

.agreement__conteiner {
    border: 1px solid #B3B3B3;
    border-radius: 8px;
    padding: 11px;
    height: 157px;
    overflow-y: scroll;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    border: 1px solid #9A9A9A;
    border-radius: 2px;
}

.input[type="checkbox"]:checked {
    position: relative;
}

.input[type="checkbox"]:checked::after {
    display: inline-block;
    content: '';
    width: 11px;
    height: 8px;
    border-left: 3px solid #F59999;
    border-bottom: 3px solid #F59999;
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.checkbox-group label {
    font-size: 1.8rem;
    line-height: 18px;
    margin-bottom: 0;
}

.submit-btn {
    display: flex;
    width: 268px;
    height: 56px;
    padding: 13px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 45px;
    background: #F59999;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFF;
    margin: 0 auto;
}

.warning {
    display: none;
    color: #f18d8d;
    font-size: 1.5rem;
}

.submit-btn:hover {
    background-color: #f18d8d;
}

/* Contact pc */
@media screen and (min-width:769px) {
    .section--contact {
        padding: 60px 22.6%;
    }

}

/*==========================
Contact_main
==========================*/
.contact_main {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
}

.section-thanks {
    padding: 100px 40px;
}

.thanks_h1 {
    font-size: 2.8rem;
    text-align: center;
}

.thanks_a {
    display: flex;
    width: 268px;
    height: 56px;
    padding: 13px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 45px;
    background: #F59999;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFF;
    margin: 0 auto;
    margin-top: 100px;
}