@charset "UTF-8";

/* header */
.header {
    width: 100%;
    box-sizing: border-box;
}

.mainVisual {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.main_logo {
    color: var(--primary-white);
}

.logo {
    position: absolute;
    width: 100%;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    z-index: 10;
    overflow: hidden;
}

.logo::after {
    content: "";
    display: block;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-white);
    margin: 0 auto;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.logo h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 8px;
}

.logo p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0.7px;
    margin-bottom: 20px;
}

.image {
    background-image: url(../image/common/mv.webp);
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.image_title {
    background-color: var(--primary-gold);
    color: var(--primary-white);
    padding: 5px 12.8%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 1.15px;

    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 769px) {
    .logo::after{
        height: 3px;
    }

    .logo h1 {
        font-size: 4rem;
        line-height: 45px;
        margin-bottom: 10px;
    }
    
    .logo p {
        font-size: 2rem;
        line-height: 25px; /* 125% */
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .image_title {
        padding: 9px 13%;
        font-size: 2.3rem;
        letter-spacing: 2px;

        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
    }
}/* pc 769px */

/* main */
.main_top {
    padding: 100px 5.1% 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_top h2 {
    text-align: left;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 33px; /* 165% */
    margin-bottom: 45px;
}

.main_top p {
    font-size: 1.2rem;
    line-height: 3.3;
    text-align: center;
}

.main_about {
    padding: 0px 5.1% 60px;
    text-align: center;
    align-items: center;
}

.main_img_01 {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: 0% 90%;
    border-radius: 0 30px 0 30px;
}

@media screen and (min-width:769px){
    .main_top {
        padding: 150px 10.4% 0;
    }

    .main_top h2 {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .main_top p {
        font-size: 1.8rem;
        font-weight: 600;
        letter-spacing: 2px;
        margin-bottom: 100px;
    }

    .mainCaption_img {
        height: 400px;
        margin-bottom: 120px;
    }

    .main_about h2 {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .main_about p {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 50px; /* 250% */
        letter-spacing: 2px;
        margin-bottom: 60px;
    }

    .main_about {
        padding: 0 10.4% 200px;
        text-align: center;
        align-items: center;
    }
    
    .main_img {
        display: flex;
        gap: 3%;
    }
    
    .main_img_01 {
        width: 90%;
        height: 340px;
    }
}/* pc 769px */

/* MESSAGE */
.section--message {
    padding: 60px 0px;
    position: relative;
}

.message_box {
    clear: right; /* float解除 */
    margin-top: 120px;
    padding: 0 5.1%;
}

.message_photo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.profile {
    width: auto;
    height: 85vw;
    object-fit: contain;
    border-radius: 50px 0 50px 0;
    margin-bottom: 15px;
}

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

.profile_name {
    display: flex;
    align-items: baseline;
    font-family: var(--primary-font);
    margin-bottom: 40px;
}

.profile_name h3 {
    font-size: 2rem;
    margin-right: 15px;
}

.profile_name p {
    font-size: 1.3rem;
}

.message_wrapper h3 {
    font-size: 3.6vw;
    font-weight: 700;
    line-height: 2.5;
    margin-bottom: 20px;
}

.message_txt {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 3.8;
    letter-spacing: -0.35px;
    margin-bottom: 10px;
}

.Instagram_norichiyo {
    font-family: var(--primary-font);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    display: inline-block;
    border-bottom: solid 0.8px var(--primary-black);
    padding-bottom: 3px;
    padding-right: 12px;
    padding-left: 74%;
    position: relative;
}

.Instagram_norichiyo::after {
    position: absolute;
    content: "";
    top: 8px;
    right: 1px;
    width: 10px;
    height: 9px;
    background: url(../image/illust/btn-yazirushi-black.svg) no-repeat;
}

@media screen and (min-width: 769px) {
    .section--message {
        padding: 60px 0px 120px;
    }

    .message_box {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 7%;
    }
    
    .message_photo {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .profile {
        height: 40vw;
        margin-bottom: 15px;
    }
    
    .profile_name {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .profile_name h3 {
        font-size: 3.5rem;
        margin-right: 10px;
    }
    
    .profile_name p {
        font-size: 1.8rem;
    }
    
    .message_wrapper {
        margin-bottom: 150px;
    }

    .message_wrapper h3 {
        font-size: 2vw;
    }
    
    .message_txt {
        font-size: 1.6rem;
        margin-bottom: 0px;
    }
    
    .Instagram_norichiyo {
        font-size: 1.8rem;
        padding-left: 25%;
        padding-right: 30px;
        padding-bottom: 8px;
    }
    
    .Instagram_norichiyo::after {
        height: 60px;
        padding-left: 25px;
    }    

}/* pc 769px */