@charset "utf-8";

/* =====================
root
===================== */

:root{
    --primary-white: #FDFDFD;
    --primary-red: #C64528;
    --primary-yellow:#BFA679;
    --primary-lightYellow:#D3C2A3;
    --primary-blue:#003268;
    --primary-pink:#E4B3A8;
    --primary-black:#333333;
    --contentWithSp:80%;
    --contentPaddingSp:10%;
}

/* =====================
背景スペース 
===================== */

.main {
    position: relative;
}

.main::before{
    content: '';
    display: block;
    background-color: var(--primary-lightYellow, #D3C2A3);
    top: 0;
    bottom: 0;
    right: 13%;
    width: 28.8vw;
    height: 100%;
    position: absolute;
    z-index: -1;
}


/* =====================
profile
===================== */

.profile_contents {
    display: flex;
    flex-flow: column;
    flex-direction: column-reverse;
    margin: 60px 10% 0;
}

.profile_img {
    position: relative;
    margin: 0 auto;
}

.profile_pic {
    position: relative;
    max-width: 275px;
    aspect-ratio: 275 / 318;
    margin: 0 auto;
}

/* 影の表現 */
.profile_pic::after {
    content: '';
    display: inline-block;
    background-color: var(--primary-red, #C64528);
    border-radius: 30px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5%;
    right: -5%;
    z-index: -1;
}

.profile_pic img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--primary-red, #C64528);
}

.profile_img::before {
    content: '';
    display: block;
    position: absolute;
    background: url(../images/cloud_yellow_clear.png) no-repeat center / contain;
    top: -32px;
    right: 59%;
    width: 150px;
    height: 97px;
    z-index: 1;
}

.profile_img::after {
    content: '';
    display: block;
    position: absolute;
    background: url(../images/cloud_white_clear.png) no-repeat center / contain;
    bottom: -23px;
    left: 48%;
    width: 150px;
    height: 97px;
    z-index: 1;

}

.profile_txt {
    margin-top: 60px;
}

.profile h2 {
    color: var(--primary-black, #333333);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

.en {
    color: var(--primary-black, #333333);
    font-family: Helvetica;
    font-size: 1.4rem;
    line-height: 1.5; /* 157.143% */
    letter-spacing: 0.7px;
    margin-top: 23px;
}

.ja {
    color: var(--primary-black, #333333);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5; /* 157.143% */
    letter-spacing: 0.7px;
    text-align: left;
    margin-top: 30px;
}

.about_logo {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.about_logo img {
    width: 100px;
}

.sns_mail {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-items: center;
}

.sns_mail img{
    width: 24px;
}

.works {
    margin: 157px 10% 0;
}

.works h2 {
    color: var(--primary-black , #333333);
    font-family: "Josefin Sans";
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.6; /* 160% */
}

.works h2::after {
    content: '';
    width: 180px;
    height: 1px;
    display: block;
    background-color: var(--primary-black , #333333);
    margin-top: 10px;
}

.works h3 {
    color: var(--primary-black, #333333);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6; /* 157.143% */
    margin-top: 20px;
}

.works h3:nth-of-type(1){
    margin-top: 15px;
}

.works_txt {
    padding-top: 5px;
    color: var(--primary-black, #333333);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6; /* 157.143% */
    letter-spacing: 0.7px;
}

.ProduceGoods {
    margin-top: 50px;
}

.ProduceGoods p {
    margin-top: 10px;
}

.support {
    margin-top: 50px;
}

.support_title {
    color: var(--primary-black, #333333);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6; /* 157.143% */
}

.model {
    margin-top: 15px;
}

.model_name {
    color: var(--primary-black, #333333);
    font-size: 2.0rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.6; /* 160% */
}

.model_content {
    display: flex;
    gap: 15px;
}

.model_content img {
    width: 24px;
}

.camera {
    margin-top: 30px;
}
/* トップに戻る */

.btn_content {
    display: inline-block;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 213px;
}

.top_btn {
    max-width: 100px;
}

/* ボタンの設定 */

.btn_common {
    position: relative;
    padding: 20px 27px 20px 13px;
    color: var(--primary-blue, #003268);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    background-color: var(--primary-white, #FDFDFD);
    border: 3px solid var(--primary-blue, #003268);
    border-radius: 100px;
    transition: ease .2s;
}

.btn_common span {
	position: relative;
	z-index: 3;
}


.btn_common::after {
    content: '';
    position: absolute;
    top: 44%;
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #003268;
    border-right: 2px solid #003268;
    transform: rotate(45deg);
    transition: all .3s;
}

.btn_common:hover {
    color: var(--primary-white , #FDFDFD);
    background-color: var(--primary-blue , #003268);
}

.btn_common:hover::after {
    border-top: 2px solid var(--primary-white, #FDFDFD);
    border-right: 2px solid var(--primary-white, #FDFDFD);
    right: 11px;
}

@media screen and (min-width:769px) {

    /* profile */

    .profile h2 {
        font-size: 4.8rem;
        font-weight: 400;
        line-height: 1.6; /* 160.417% */
        text-align: left;
    }

    .profile_contents {
        display: flex;
        justify-content: space-between;
        margin: 75px 12% 0 10%;
        flex-flow: nowrap;
    }

    .profile_imgBox {
        width: 50%;
    }

    .profile_pic {
        max-width: 550px;
        aspect-ratio: 550 / 650;
    }

    .profile_img::before {
        top: 55px;
        right: 70%;
        width: 20.62vw;
        max-width: 300px;
        height: 12.85vw;
    }

    .profile_img::after {
        background: url(../images/cloud_white_clear.png) no-repeat center / contain;
        bottom: 35px;
        left: 48%;
        width: 20.83vw;
        max-width: 300px;
        height: 7.81vw;
    }

    .profile_txt {
        width: 50%;
        margin-top: 0;
        padding-right: 18%;
    }

    .about_logo {
        display: flex;
        gap: 0;
        margin: 40px 0 0;
    }

    .about_logo img {
        width: 150px;
    }

    .sns_mail {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-top: 58px;
    }

    .sns_mail img{
        width: 50px;
    }

    /* works */

    .works {
        margin: 157px 66% 0 10%;
    }

    .ProduceGoods {
        margin-top: 60px;
    }

    .support {
        margin-top: 60px;
    }

    .camera {
        margin-top: 44px;
    }

    /* ボタン */
    
    .top_btn {
        max-width: 150px;
    }

    .btn_content {
        gap: 40px;
    }

    .btn_common {
        padding: 27px 117px 27px 61px;
    }

    .btn_common::after {
        top: 40%;
        width: 15px;
        height: 15px;
        right: 66px;
        border-top: 3px solid #003268;
        border-right: 3px solid #003268;
    }

    .btn_common:hover::after {
        border-top: 3px solid var(--primary-white, #FDFDFD);
        border-right: 3px solid var(--primary-white, #FDFDFD);
        right: 50px;
    }

}




