@charset "UTF-8";

p:not(:last-child) {
    margin-bottom: 0.5em;
}

.under_subtitle {
    position: relative;
    margin-bottom: var(--contents_gutter);
}

.under_subtitle span {
    position: absolute;
    display: block;
    color: var(--main_color);
    font-size: var(--size_xxl);
    line-height: 0;
    top: 90%;
    left: calc(50% + 1rem);
    transform: translateX(-50%);
    /* z-index: -1; */
    mix-blend-mode: multiply;
}


@media screen and (max-width:760px) {
    .under_subtitle span {
        font-size: var(--size_xl);
        left: calc(50%);
    }

    /*=====max-width:760px=====*/
}

@media screen and (max-width:599px) {
    .under_subtitle span {
        font-size: var(--size_lg);
        left: calc(50%);
    }

    /*=====max-width:599px=====*/
}

@media screen and (max-width:1200px) {
    .container {
        padding-left: 5%;
        padding-right: 5%;
    }

    /*=====max-width:1200px=====*/
}

/* ============================
* section:principle
* ========================= */

.principle .principle_inner {
    position: relative;
    margin-bottom: var(--contents_gutter);
}

.principle .principle_inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 80%;
    height: 50%;
    background-color: var(--main_color);
    /* background-color: var(--beige_pale); */
    z-index: -2;
}

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

.principle .principle_item {
    position: relative;
    width: 30%;
}

.principle_item .principle_img {
    margin-bottom: 0.5em;
}

.principle_item .principle_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principle_item h4 {
    color: var(--beige_dense);
    font-size: var(--size_md);
    font-weight: 500;
    text-align: center;
}

.principle_item .principle_txt {
    padding: 0.5em;
}

@media screen and (max-width:1024px) {
    .principle .principle_inner::before {
        height: 90%;
    }

    .principle .flex {
        flex-direction: column;
        align-items: center;
    }

    .principle .principle_item {
        width: 100%;
        margin-bottom: var(--contents_gutter);
    }

    .principle_item .principle_img {
        margin-bottom: 1rem;
    }

    .principle_item .principle_img img {
        max-height: 520px;
        aspect-ratio: 4/3;
    }

    .principle_item h4 {
        font-size: var(--size_lg);
    }

    /*=====max-width:1024px=====*/
}

/* ============================
* section:feature
* ========================= */

.feature .feature_inner {
    position: relative;
    padding-top: var(--section_gutter);
}

.feature .feature_inner::before {
    content: "";
    position: absolute;
    top: 120px;
    right: 0;
    width: 60%;
    height: 90%;
    background-color: var(--main_color);
    /* background-color: var(--beige_pale); */
    z-index: -1;
}

.feature h4 {
    color: var(--beige_dense);
    font-size: var(--size_lg);
    font-weight: 500;
}

.feature .feature_item {
    margin-bottom: var(--contents_gutter);
}


.feature .flex_wrap {
    display: flex;
    justify-content: space-between;
    margin-left: var(--contents_side_gutter);
}

.feature .flex_wrap .feature_img {
    width: 50%;
    padding: var(--contents_side_gutter);
}

.feature .flex_wrap .feature_txt {
    width: 50%;
    margin-top: var(--contents_side_gutter);
    padding: var(--contents_side_gutter);
}

.feature .feature_item .roof {
    width: 100%;
}

.feature .feature_item .roof img {
    width: 60%;
    text-align: right;
    margin-left: auto;
}

@media screen and (max-width:1024px) {
    .feature .flex_wrap {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }

    .feature h4 {
        text-align: center;
        margin-bottom: 1rem;
    }

    .feature .flex_wrap .feature_img {
        width: 100%;
        padding: 0;
        margin-bottom: 1rem;
    }

    .feature .flex_wrap .feature_img img {
        width: 100%;
        height: 100%;
        max-height: 520px;
        aspect-ratio: 4/3;
        object-fit: cover;
    }

    .feature .flex_wrap .feature_txt {
        width: 100%;
        margin-top: 1rem;
        padding: 0;
    }

    .feature .feature_item .roof img {
        width: 90%;
        margin-top: 1rem;
    }

    /*=====max-width:1024px=====*/
}

/* ============================
* section:staff
* ========================= */
.staff_inner {
    padding-top: var(--section_gutter);
    margin-bottom: var(--section_gutter);
}

.staff .under_subtitle span,
.company .under_subtitle span {
    color: var(--sub_color);
}


.staff .staff_msg {
    margin-bottom: 1rem;
}

.staffall_img {
    max-width: 960px;
    margin: 0 auto;
    margin-bottom: var(--contents_gutter);
}

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

.staff_member {
    width: 46%;
}

.staff_figure {
    display: flex;
    margin-bottom: 1rem;
}

.staff_img {
    width: 50%;
    aspect-ratio: 1/1;
}

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

.staff_name {
    width: 50%;
    margin-left: 1rem;
    color: var(--title_color);
    font-size: var(--size_lg);
    align-self: end;
}

.staff_name p {
    display: inline-block;
    padding-right: 1rem;
    border-right: 3px solid var(--text_color);
}

.staff_name span {
    display: block;
    font-size: var(--size_ss);
}

.staff_disc {
    padding: 0 var(--contents_side_gutter);
}

.staff_disc p:last-child {
    text-align: right;
}

@media screen and (max-width:1024px) {
    .staff_wrap {
        flex-direction: column;
        align-items: center;
        margin-left: 5%;
        margin-right: 5%;
    }

    .staff_figure {
        justify-content: center;
        align-items: center;
    }

    .staff_member {
        width: 100%;
        margin-bottom: var(--contents_gutter);
    }

    .staff_name {
        width: auto;
    }

    .staff_disc p:last-child {
        text-align: left;
        font-size: 12px;
    }

    /*=====max-width:1024px=====*/
}

@media screen and (max-width:599px) {
    .staff_figure {
        justify-content: space-between;
    }

    .staff_disc {
        padding: 0 0;
    }

    /*=====max-width:599px=====*/
}

/* ============================
* section:company
* ========================= */

.company .company_inner {
    padding-top: var(--section_gutter);
    padding-bottom: var(--footer_gutter);
}

.company .company_inner {
    padding-top: var(--contents_side_gutter);
    padding-bottom: var(--section_gutter);
    background-color: #e3efef;
}

.company .company_box {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: var(--contents_side_gutter);
    padding: 1rem var(--contents_side_gutter);
}

.company_item {
    display: flex;
    padding: 32px;
    border-bottom: 1px solid #a7a7a7;
}

.company_item:last-child {
    border-bottom: none;
}

.company_item dt {
    width: 37%;
}

.company_item dd {
    width: 63%;
}

.map {
    width: 100%;
    height: 460px;
}

@media screen and (max-width:700px) {
    .company_item {
        flex-direction: column;
        padding: 1rem;
    }

    .company_item dt {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .company_item dd {
        width: 100%;
    }

    /*=====max-width:700px=====*/
}