@charset "UTF-8";
/*
SP ~519px
tab 520~959px
PC 960~
*/

/*===================
変数宣言
====================*/
:root {
    --size_ss: 0.8rem;
    --size_s: 1rem;
    --size_m: 1.4rem;
    --size_md: 1.6rem;
    --size_lg: 2rem;
    --size_xl: 2.4rem;
    --size_xxl: 3.2rem;
    --main_color: #F8F4EF;
    --main_color_80: 248, 244, 239, 0.5;
    --accent_color: #464544;
    --text_color: #2E2E2E;
    --gutter_base: 8px;
    --font_sans: 'Zen Kaku Gothic New', san-serif;
}

/*===================
共通
====================*/
.about .about_inner {
    margin: calc(var(--gutter_base)*20) auto;
}

.about_concept {
    margin-bottom: calc(var(--gutter_base)*20);
}

img {
    width: 100%;
}

.about_concept img {
    padding-right: calc(var(--gutter_base)*3);
    padding-bottom: calc(var(--gutter_base)*5);
}

.about_concept .about_img2 {
    width: 60%;
}

.about_textbox {
    margin: calc(var(--gutter_base)*2);
}

.about_title {
    text-align: left;
    font-size: var(--size_lg);
    font-family: var(--font_sans);
    font-weight: 500;
    line-height: 2;
}

.about_text {
    text-align: justify;
}

.about_text p {
    padding-bottom: calc(var(--gutter_base)* 2);
}

@media screen and (min-width:960px) {
    .about .about_inner {
        margin: calc(var(--gutter_base)*20) auto;
    }

    .about_concept {
        display: flex;
    }

    .about .concept_2 {
        flex-direction: row-reverse;
    }

    .about_concept .about_img2 {
        width: 100%;
        padding-bottom: calc(var(--gutter_base)*5);
    }

    .about_title {
        line-height: 3;
    }

    .about_text {
        line-height: 4;
    }

    /*======min-width:960px======*/
}

.contact img {
    width: auto;
}

/*===================
Profile
====================*/
.profile .profile_inner {
    background-color: #ffffff;
    padding: calc(var(--gutter_base)*20) calc(var(--gutter_base)*2);
}

.profile .profile_inner h3 {
    letter-spacing: 0.5rem;
    text-align: center;
}

.profile .profile_inner img {
    width: 40%;
    display: block;
    margin: calc(var(--gutter_base)*10) auto;
    max-width: 300px;
}

.profile .profile_inner .profile_text {
    display: block;
    margin: 0 auto;
    width: 300px;
}

.profile .profile_inner .profile_text .work {
    font-size: 1.2rem;
}

.profile .profile_inner .profile_text .career {
    padding-top: calc(var(--gutter_base)*5);
    padding-bottom: calc(var(--gutter_base)*5);
    line-height: 3;
}

/*===================
key visual
====================*/
.kv {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -1;
    top: 0;
    left: 0;
}

.kv img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}