@charset "utf-8";

/* about_outline */
.outline_dl {
    display: flex;
    flex-wrap: wrap;
}
.outline_dl dt {
    width: 25%;
}
.outline_dl dd {
    width: 75%;
}
.outline_dl dt,
.outline_dl dd {
    padding: 24px;
    box-sizing: border-box;
    border-bottom: 1px dashed #A4B5C0;
}
.outline_dl .officer_mitsu p {
    display: flex;
}
.outline_dl .officer_mitsu .c_post {
    min-width: 120px;
    margin-right: 32px;
}
/* about_outlineここまで */

/* about_company_img */
.about_company_img {
    position: relative;
    height: 320px; /* パララックスエフェクトを適用する要素の高さを設定 */
    overflow: hidden;
}
.about_company_img .parallax_img {
    width: 100%;
    min-height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0; /* 画像を上部に配置 */
    left: 0;
    transform: translateY(-50%) translateX(0); /* 画像を垂直中央から横にずらす */
    scale: 1.2;
    transition: transform .4s ease-out; /* スムーズな移動 */
}
/* about_company_imgここまで */

/* greeting_content */
.greeting_ttl {
    position: relative;
    z-index: 0;
}
.ceo_txt {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 32px 56px 45%;
}
.ceo_img img {
    min-height: 240px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
}
.ceo_txt_inner {
    text-align: left;
}
.ceo_txt_inner h3 {
    display: inline-block;
    text-align: left;
    margin-bottom: 32px;
    font-size: 32px;
}
.ceo_txt_inner .profile .c_post {
    margin-bottom: 8px;
}
.ceo_txt_inner .profile .name {
    font-size: 24px;
}
.greeting_desc {
    position: relative;
    z-index: 1;
    margin: -32px 32px 0 32px;
    padding: 32px;
    box-sizing: border-box;
    background-color: #FFF;
}
.greeting_desc p {
    line-height: 2em;
}
/* greeting_contentここまで */


/* about_outline */
.equipment_ct {
    margin-bottom: 48px;
}
.equipment_ct:last-child {
    margin-bottom: 0;
}
.equipment_ct_head {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.equipment_ct_head::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    margin-left: 16px;
    background-color: #1D4763;
}
.equipment_ct_h3 {
    display: inline-flex;
}
.equipment_ct_h3 .h_sup {
    margin-left: 8px;
    font-weight: 400;
    font-size: 0.8em;
}
/* about_outlineここまで */

/* レスポンシブ */
@media screen and (max-width: 599px) {
    .outline_dl dt {
        width: 100%;
        background-color: #EFF9FA;
    }
    .outline_dl dd {
        width: 100%;
    }
    .greeting_ttl {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        margin-bottom: 16px;
    }
    .ceo_txt {
        position: relative;
        padding: 0;
    }
    .ceo_img {
        margin-bottom: 8px;
    }
    .greeting_desc {
        margin: 0 16px;
        padding: 0;
    }
    .ceo_txt_inner h3 {
        margin-bottom: 8px
    }
    .ceo_txt_inner .profile .c_post {
        margin-bottom: 0
    }
}
/* レスポンシブここまで */