@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;
    }
}

/*==========================
Company
==========================*/
.section--company {
    padding: 40px 7.4%;
}

.company__block {
    justify-content: space-between;
    border-bottom: 1px solid #E7B191;
    padding: 15px 0;
}

.company__title {
    color: #CB8961;
    font-size: 1.8rem;
    font-weight: 400;
}

.detail {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Company pc */
@media screen and (min-width:769px) {
    .section--company {
        padding: 60px 29.7%;
    }
    
    .company__block {
        display: flex;
        align-items: baseline;
        padding: 30px 0;
    }
    
    .company__title {
        display: flex;
        align-items: baseline;
        width: 311px;
    }
    
    .detail {
        margin-top: 0;
        flex: 1;
    }
    
}