@charset "utf-8";

/*================================
全サイズ適用
================================*/
/* メインビジュアル
--------------------------------*/
.mainvisual > .inner {
    background-image: url(./img/mv01.jpg);
}

/* プロフィール
--------------------------------*/
.profile {
    background: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.profile > .inner {
    max-width: calc(1100px + 14rem);
}

/*flexbox*/
.profile_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.profile_flex .profile_sentence {
}
.profile_flex .profile_photo {
}

/*名前・役職など*/
.profile_position {
    color: #e99200;
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: left;
}
.profile_name {
    margin-bottom: 40px;
    font-size: 3.8rem;
    text-align: left;
    line-height: 1.6;
    color: #6d502c;
    font-weight: 500;
}
.profile_eng {
    color: #e99200;
    font-size: 2rem;
    font-weight: 400;
    text-align: left;
}
.profile_job {
    display: block;
    color: #e99200;
    font-size: 2.4rem;
    text-align: left;
}

/*略歴*/
.history {
    position: relative;
    z-index: 1;
    /*padding-bottom: 40px;*/
}
.history_content {
}
.history_title {
    margin-bottom: 10px;
    color: #6d502c;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: left;
}
.history_lists {
    margin-bottom: 30px;
    padding-left: 20px;
}
.history_lists li {
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0;
    text-shadow: 1px 1px #fff, 0px 1px #fff, 1px 0px #fff;
    text-align: left;
}

/*================================
0〜1366pxまで
================================*/
@media (max-width: 1366px) {
}

/*================================
0〜1080pxまで
================================*/
@media (max-width: 1080px) {
    /* プロフィール
    ------------------------------*/
    /*名前・役職など*/
    .profile_position .sub {
        display: block;
    }
}

/*================================
0〜834pxまで
================================*/
@media (max-width: 834px) {
    /* プロフィール
    ------------------------------*/
    .profile {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /*flexbox*/
    .profile_flex {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;

        max-width: 480px;
        margin-inline: auto;
    }
    .profile_flex .profile_sentence,
    .profile_flex .profile_photo {
        display: contents;
        flex-basis: 100%;
    }

    /*名前・役職など*/
    .profile_position .sub {
        display: inline-block;
    }
}

/*================================
0〜667pxまで
================================*/
@media (max-width: 667px) {
    /* メインビジュアル
    --------------------------------*/
    .mainvisual > .inner {
        background-image: none;
    }

    /* プロフィール
    ------------------------------*/
    .profile {
        padding-top: 30px;
    }
    .profile::after {
        height: 122vw;
        background: linear-gradient(-8deg, #fffffa 60%, transparent 60%);
    }

    /*名前・役職など*/
    .profile_position {
        font-size: 2rem;
        display: contents;
    }
    .profile_position .sub {
        display: block;
    }
    .profile_name {
        font-size: 3.6rem;
        margin-bottom: 20px;
    }
    .profile_eng {
        font-size: 1.4rem;
    }
    .profile_job {
        font-size: 1.4rem;
    }

    /*略歴*/
    .history {
        order: 3;
        width: 100%;
    }
    .history_lists {
        padding-left: 0;
    }
    .history_lists li {
        font-size: 1.6rem;
    }
}
