@charset "utf-8";

/* 共通部品 */
html {
    font-family: Noto Sans JP;
    color: #333;
    line-height: 1.5;
    letter-spacing: 0.08em;
    -webkit-text-size-adjust: 100%;
}

.u-sectionWrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 40px;
}

@media screen and (max-width: 560px) {
    u.sectionWrapper {
        padding: 64px 20px;
    }
}


.u-sectionTitle {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

@media screen and (max-width: 560px) {
    .u-sectionTitle {
        font-size: 24px;
    }
}


.u-sectionText {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
}

/* ここから記述します。 */
/* ヘッダー */
.header {
    padding: 12px;
    display: flex;
    background-color: #83776a;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.header__title {
    font-size: 40px;
}


.header__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.header__nav {
    display: flex;
    gap: 20px;
    font-weight: 500;
}

/* first View */
.firstview__image {
    width: 100%;
}

.firstview__picture img {
    width: 100%;
    height: auto;
    /* max-width: 100%; */
    object-fit: contain;
}

/*　pick up */
* {
    box-sizing: border-box;
}


.pickup_wrapper {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 40px;
}

@media screen and (max-width: 560px) {
    .pickup_wrapper {
        padding: 64px 20px;
    }
}


.pickup__item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

@media screen and (max-width: 560px) {
    .pickup__item {
        flex-direction: column;
        align-items: center;
    }
}


.pickup__title {
    font-size: 30px;
    font-weight: bold;
    color: #83776a;
    margin-bottom: 40px;
    text-align: center;
}

.image_container {
    width: 50%;
    text-align: center;
}

@media screen and (max-width: 560px) {
    .image_container {
        width: 100%;
    }
}


.pickup__image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.pickup__container {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 65px 0px 65px 32px;
}

@media screen and (max-width: 560px) {
    .pickup__container {
        width: 100%;
        padding: 32px 0 0 0;
        text-align: center;
    }
}



.pickup__container_revers {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 65px 0px;
}

@media screen and (max-width: 560px) {
    .pickup__container_revers {
        width: 100%;
        padding: 32px 0 0 0;
        text-align: center;
    }
}



.pickup__subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #83776a;
    margin-bottom: 20px;
}

@media screen and (max-width: 560px) {
    .pickup__subtitle {
        text-align: center;
    }
}



.pickup__text {
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: 400;
}


.pickup__btn {
    width: 179px;
    height: 43px;
    border: 1px solid #83776a;
    border-radius: 100px;
    background-color: #fff;
    color: #83776a;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

@media screen and (max-width: 560px) {
    .pickup__btn {
        margin: 0 auto;
    }
}


.pickup__btnlink {
    display: inline-block;
    padding: 10px 0;
}

.pickup__item__reverse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: row-reverse;
}

@media screen and (max-width: 560px) {
    .pickup__item__reverse {
    flex-direction: column;
    align-items: center;
    }
}


/* コンタクト */

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    background-color: #83776a;
}

.contact__wrapper {
    margin: 0 auto;
    max-width: 1080px;
    width: 100%;
    padding: 80px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact__title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.contact__text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.contact__btn {
    width: 179px;
    height: 43px;
    border: 1px solid #fff;
    border-radius: 100px;
    background-color: #fff;
    color: #83776a;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

.contact__btnlink {
    display: inline-block;
    padding: 10px 0;
}

/* footer */

.footer {
    height: 100px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__text {
    font-size: 12px;
    color: #83776a;
    text-align: center;
}