@charset "utf-8";
/*============= 
headline
============= */
.article__header {
    padding: 20px 0 30px 0;
}

/* article header PC */
@media screen and (min-width:769px) {
    .article__header {
        padding: 20px 0 60px 0;
    }
}
/* pc 769px */

/*============= 
ABOUT
============= */
.about {
    padding: 0 6.1%;
    position: relative;
}

.about > div {
    position: relative;
    z-index: 2;
}

.about__photo {
    position: absolute;
    z-index: 1;
    opacity: 0.4;
    right: 6.1%;
    bottom: 10%;
    width: 284px;
    transform: translateY(-10%);
}

.about__txt1 p {
    margin-bottom: 16px;
}

.about__txt1 p:last-of-type {
    margin-bottom: 0;
}

.about__txtGraphic {
    font-family: big-caslon-fb, serif;
    font-weight: 400;
    font-style: normal;
    padding: 60px 0;
}

.txt__cursive1 span {
    font-family: duos-brush, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8rem;
}

.txt__cursive1 {
    padding: 0 16% 0 0;
}

.txt__cursive2 {
    padding: 0 0 0 16%;
    margin-top: 18px;
}

.pcBr {
    display: none;
}

/* about PC */
@media screen and (min-width:769px) {
    .about {
        padding: 0 5.6% 16px 5.6%;
        position: relative;
    }

    .about__txt1 p {
        margin-bottom: 8px;
    }

    .pcBr {
        display: inline;
    }

    .txt__cursive1 span {
        font-size: 3rem;
    }

    .about__txtGraphic {
        font-size: 2.2rem;
        padding: 60px 0;
    }

    .txt__cursive1 {
        padding: 0 0 0 10%;
    }
    
    .txt__cursive2 {
        text-align: right;
        padding: 0 10% 0 0;
    }

    .about__photo {
        right: 5.6%;
        bottom: 0;
        top: auto;
        transform: none;
        width: 518px;
    }
}
/* pc 769px */

/*============= 
CONTACT
============= */
.article__header--contact {
    padding: 0;
}

.contact {
    margin: 60px 6.1%;
    background-color: var(--tertiary-pink);
    padding: 50px 0;
}

.contact__txt {
    text-align: center;
    padding: 36px 40px 0 40px;
}

.contact__btn {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
}

.btn--email,
.btn--insta {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

.btn--email::before {
    content: '';
    display: inline-block;
    background-image: url(../images/contact-email.svg);
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.btn--insta::before {
    content: '';
    display: inline-block;
    background-image: url(../images/contact-insta.svg);
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* contact PC */
@media screen and (min-width:769px) {
    .contact__btn {
        flex-direction: row;
        width: auto;
        justify-content: center;
        gap: 60px;
    }

    .btn--email,
    .btn--insta {
        width: fit-content;
    }

    .contact {
        margin: 5.6%;
        padding: 60px 0 70px 0;
    }
    .contact__txt {
        padding-top: 60px;
    }

    .contact__btn {
        margin-top: 40px;
    }
}
/* pc 769px */