@charset "UTF-8" ;
/* =============================
common
============================= */
html {
    font-size: 62.5%;
}

body {
    font-family: 
    'Sorts Mill Goudy',
    'Noto Serif JP',
    sans-serif;
    font-style: normal;
    color: #2f2f2f;
    background-color: #fff;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section__topic {
    font-family: "Sorts Mill Goudy";
    font-size: 2.8rem;
    text-decoration: underline dotted #9057A0;
    text-align: center;
}

/* =============================
header
============================= */
.header {
    padding: 27px 0 26px 3.6%;
}

.header__topic,
.nav__topic {
    color: #2f2f2f;
    font-family: "Sorts Mill Goudy";
    font-size: 2rem;
}

/* .nav初期表示 */
.nav {
    background:rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    padding: 20px 0 26px 3.6%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list {
    margin-top: 85px;
}

.nav__item {
    color: #2F2F2F;
    font-family: "Sorts Mill Goudy";
    font-size: 2rem;
    font-weight: 500;
    margin-top: 34px;
}

.nav__item img {
    display: inline-block;
    vertical-align: -3px;
    margin-right: 24px;
}

.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 47px;
    height: 47px;
    position: absolute;
    top: 20px;
    right: 0%;
    cursor: pointer;
}




/* header pc */
@media screen and (min-width:769px) {
    .header {
        max-width: 1280px;
        margin: 0 auto;
        padding: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__topic {
        font-size: 3rem;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0); 
    }

    .nav__list {
        margin-top: 0;
        display: flex;
    }

    .nav__item {
        margin-top: 0;
        color: #9057A0;
        font-family: "Sorts Mill Goudy";
        font-size: 2rem;
        margin-left: 30px;
    }

    .nav__header {
        display: none;
    }

    .nav__item img {
        display: none;
        margin-right: 0;
    }

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

    .header__btn {
        display: none;
    }

}/* pc 760px */

/* =============================
main
============================= */
/* article header */
.mainImg .mainImg__pc {
    display: none;
}

/* articl header pc */
@media screen and (min-width: 769px) {
    .mainImg .mainImg__pc {
        display: block;
    }

    .mainImg .mainImg__sp {
        display: none;
    }

}/* pc 760px */

/* .about */
.section--about {
    padding: 40px 6.7%;
}

.topic__pc {
    display: none;
}

.about__img {
    border-radius: 50%;
    overflow: hidden;
    margin-top: 20px;
}

.about__txt {
    padding-top: 20px;
    font-family: "Noto Serif JP";
    font-size: 1.8rem;
}

/* about pc */
@media screen and (min-width: 769px) {
    .section__topic {
        max-width: 1280px;
        margin: 0 auto;
        font-size: 3rem;
        order: 1;
    }

    .topic__pc {
        display: block;
    }

    .topic__sp {
        display: none;
    }

    .containerBox {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section--about {
        padding: 60px 6.7%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .about__img {
        max-width: 400px;
        height: 400px;
        margin-right: 100px;
    }

    .about__txt {
        max-width: 400px;
        font-size: 1.8rem;

    }
    
}/* pc 769px */

/* .profile */
.section--profile {
    background-color: rgba(226, 196, 234, 0.38);
    padding: 40px 6.7%;
}

.profile__img {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}

.profile__txt {
    font-size: 1.8rem;
    margin-top: 40px;
}

/* profile pc */
@media screen and (min-width:769px) {
    .section--profile {
        padding: 60px 6.7%;
    }
    
    .profile__img {
        max-width: 400px;
        height: 400px;
        margin-left: 100px;
    }

    .profile__txt {
        font-size: 1.8rem;
        margin-top: 20px;
    }

}/* pc 769px */


/* .work */
.section--work {
    padding: 40px 6.7%;
}

.work__item {
    padding:56px 9.6% ;
    border: 3px solid #E2C4EA;
    border-radius: 10px;
    margin-top: 40px;
}

.work__item:first-of-type {
    margin-top: 20px;
}

.work__name {
    color: #9057A0;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 20px;
}

.work__category {
    background-color: #E2C4EA;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 4px 10px;
    margin-top: 15px;
}

.work__txt {
    font-size: 1.6rem;
    margin-top: 15px;
}


.btn {
    display: block;
    width: 270px;
    margin: 0 auto;
    padding: 20px 0 ;
    background-color: #1E2C5B;
    color: #FFF;
    border-radius: 10px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.4s;
    position: relative;
    max-height: 66px;
}

.btn::after {
    display: block;
    content: '';
    width: 10px;
    height: 11px;
    background-image: url(../images/btn-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
}

.btn:hover {
    opacity:0.5;
} 

@media screen and (min-width: 769px) {
    .section--work {
        padding: 64px 0 96px;
    }
    .work {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto;
        padding: 0 60px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .work__item {
        margin-top: 48px;
        max-width: 373px;
        padding: 56px 36px;
    }

    .work__item:first-of-type {
        margin-top: 48px;
    }

    .btn {
        margin-top: 48px;
    }

}/* pc 769px */

/* .contact */
.section--contact {
    background-color: rgba(226, 196, 234, 0.38);
    padding: 40px 5.4%;
}

.contact__item {
    margin: 30px 5.4%;
}

form {
    width: 100%;
    margin: 30px auto;
    padding: 30px 3%;
    background-color:#FFF;
    font-size: 2.2rem;
}

.contact__item {
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea[name=message] {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 2.2rem;
    margin-bottom: 10px;
    padding: 9px;
}

input::placeholder {
    opacity: 0.5;
}

textarea::placeholder {
    opacity: 0.5;
}

textarea {
    height: 180px;
}

input[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0;
    width: 270px;
    background-color: #1E2C5B;
    color: #FFF;
    border-radius: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
}

input[type="submit"]:hover {
    opacity:0.5;
} 

/* contact pc */
@media screen and (min-width:769px){
    .section--contact {
        margin: 0 auto;
        padding: 48px 22.2% 48px;
    }

    .contact__item {
        margin: 48px 5.4%;
}

    form {
        width: fit-content;
        margin: 0 auto;
        padding: 30px 8.8%;
    }

    input[type="submit"] {
        margin-top: 48px;
    }
}/* pc 769px */

/* =============================
footer
============================= */
.footer {
    padding: 40px 6.7%;
}

.footer__topic {
    color: #2F2F2F;
    font-family: "Sorts Mill Goudy";
    font-size: 2.4rem;
}

.menu__list {
    margin-top: 20px;
}

.menu__item {
    color: #9057A0;
    font-family: "Sorts Mill Goudy";
    font-size: 1.8rem;
    margin-top: 15px;
    list-style: none;
}

.sns {
    margin-top: 20px;
    display: flex;
}

.sns__item {
    width: 20px;
    height: 20px;
    margin-right: 20px;
}

.copy {
    margin-top: 52px;
}

.copy small {
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
    line-height: 1.5
}

/* footer pc */
@media screen and (min-width:769px) {
    .footer {
        padding: 40px 60px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .footer__group {
        display: flex;
        justify-content: space-between;
    }

    .footer__topic {
        font-family: "Sorts Mill Goudy";
        font-size: 2.8rem;
    }

    .menu__list {
        display: flex;
        margin-top: 0;
    }

    .menu__item {
        margin-top: 0;
        margin-left: 30px;
    }

    .sns {
        justify-content: flex-end;
    }

    .sns__item {
        margin: 0 0 0 20px;
    }

    .copy {
        margin-top: 20px;
    }
}/* pc 769px */