@charset "UTF-8";
/* ===========================
header
===============================*/
.nav__item:first-of-type {
    display: block;
}

.nav__item:last-of-type {
    display: none;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header--contact {
        align-items: center;
        justify-content: center;
        background-color: transparent;
        backdrop-filter: blur(1px);
        
    }

    .nav__list {
        display: flex;
        margin: 0 auto;
        gap: 40px;
    }

    .nav__item {
        text-align: center;
    }

    .header__logo {
        display: none;
    }

} /* header pc 769px */


/* ===========================
contact
===============================*/
.main__contact {
    display: block;
    padding-top: 60px;
}

.section__topic--contact {
    text-align: center;
    color: var(--primary-black, #0F1419);
    font-family: "Shippori Mincho B1";
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.section__topicUnder--line2 {
    text-align: center;
}

.section__topicUnder--line2::after {
    content: '';
    display: block;
    width: 0.3px;
    height: 64px;
    background-color: var(--primary-white);
    margin: 20px auto;
}

.section__txt--contact {
    color: var(--primary-white, #F5F5F5);
    text-align: center;
    font-family: "Shippori Mincho B1";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    padding: 0 8%;
}

.article__footer--formGroup {
    padding: 0 8%;
}

.contactImgSp {
    text-align: end;
    margin-top: 86px;
}

.contactImgPc {
    display: none;
}

/* contact pc */
@media screen and (min-width: 769px) {
    .contactImgSp {
        display: none;
    }
    
    .contactImgPc {
        display: block;
        text-align: end;
        margin-top: 180px;
    }
} /* contact pc 769px */


/* ===========================
article__footer--order
===============================*/
.contents--contact {
    margin-top: 135px;
    padding: 0 0 100px;
    background-image: url(../imges/product_orderBg.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: left;
}

.form__topic {
    text-align: center;
}

.form__topic--contact {
    color: var(--primary-white, #F5F5F5);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.2;
}

.form__parts--order {
    margin-top: 40px;
}

.form__parts--order:first-of-type {
    margin-top: 76px;
}

label[for="name"],
label[for="email"],
label[for="tel"],
label[for="comments"] {
    color: var(--primary-white, #F5F5F5);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.2;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="comments"],
textarea {
    background-color: var(--primary-white);
    color: #333333;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;
}

.contactImg {
    margin-top: 86px;
}

/* article__footer--order pc */
@media screen and (min-width: 769px) {
    .contents--contact {
        padding: 0 0 200px;
    }

    .section__txt--contact {
        text-align: center;
        font-size: 1.8rem;
        font-style: normal;
        font-weight: 500;
        line-height: 2;
        margin-top: 207px;
    }

    .form__topic--contact {
        text-align: center;
        font-size: 1.6rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
    }

    label[for="name"],
    label[for="email"],
    label[for="tel"],
    label[for="comments"] {
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.2;
    }

    .article__footer--formGroup {
        padding: 0 30%;
    }
} /* article__footer--order pc 769px */



/* ===========================
footer
===============================*/
.footer {
    background-color: var(--primary-white);
}


