@charset "UTF-8";
/* ==========================
about
========================== */
.contents{
    max-width: 900px;
    margin: auto;
}

.message__items{
    display: flex;
    gap: 36px;
    align-items: center;
    text-align: left;
    letter-spacing: 0.02em;
}

.about__txt{
    margin: 24px 0;
}

.about__spBr{
    display: none;
}

.about__picture{
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-end;
}

.about__picture img:nth-of-type(1){
    width: 42%;
}

.about__picture img:nth-of-type(2){
    width: 54%;
}

/* about sp */
@media screen and (max-width:769px) {
.message__items{
    display: block;
}

.message__img{
    width: 57%;
    max-width: 300px;
    margin-bottom: 24px;
}

.about__txt{
    text-align: left;
}

.about__spBr, .about__picture, .about__picture img{
    display: block;
}

.about__picture img:nth-of-type(1){
    width: 53%;
}

.about__picture img:nth-of-type(2){
    width: auto;
    margin-top: 24px;
}
}