@charset "utf-8";

h1 {
    background-image: url("../../images/corporate/h1_bg.webp");
    color: #fff;
    height: 80px;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

h3 {
    background: linear-gradient(45deg, #3ea3ba 0%, #79ccde 100%);
    filter: drop-shadow(1px 1px 0px #457998);
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    padding: 8px 0 8px 54px;
    margin-bottom: 25px;
    position: relative;
}

h3::before {
    content: "";
    width: 14px;
    top: 50%;
    left: 25px;
    height: calc(100% - 24px);
    background-color: #AEE5F2;
    position: absolute;
    transform: translateY(-50%);
}

.breadcrumb {
    margin-bottom: 32px;
}

.main_content section+section {
    margin-top: 60px;
}

.corporate_inner {
    padding: 0 25px;
}

.text_lh p {
    line-height: 195%;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 22px;
        background-color: #32a7d3;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        background-image: url("../../images/corporate/h1_bg_sp.svg");
        background-position: bottom 8px right 13px;
        background-size: 80px;
        height: 60px;
    }

    h3 {
        font-size: 20px;
        padding: 6px 6px 6px 37px;
        margin-bottom: 20px;
    }

    h3::before {
        left: 16px;
        width: 11px;
        height: calc(100% - 17px);
    }

    .corporate_inner {
        padding: 0 16px;
    }

    .text_lh p {
        font-size: 16px;
    }
}


/* ------------------------------
header
------------------------------ */
.copy_block {
    background-image: url("../../images/corporate/copy_bg.webp");
    background-repeat: no-repeat;
    background-size: 104.5%;
    background-position: top 43% right;
    font-family: 'Noto Serif JP', serif;
    display: flex;
    align-items: center;
    padding: 18px 0 18px 72px;
    font-weight: 500;
    font-size: 32px;
    text-align: left;
    color: #0f3c57;
    margin-bottom: 54px;
    position: relative;
}

.copy_block h2::before {
    content: "";
    width: 17px;
    height: calc(100% - 13px);
    background: #34abd4;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 25px;
}

.copy_block h2 {
    text-shadow: 0px 0px 6px #fff;
}

@media screen and (max-width: 767px) {
    .copy_block {
        font-size: 22px;
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 20px;
        background-size: 125%;
        background-position: bottom 64% right 76%;
        padding: 18px 0 21px 66px;
        margin-bottom: 6px;
    }

    .copy_block h2 {
        line-height: 137%;
    }

    .copy_block h2::before {
        width: 14px;
        height: calc(100% - 20px);
        left: 32px;
    }
}


/* ------------------------------
lead_block
------------------------------ */
.lead_block {
    margin-bottom: 84px;
}

.lead_text {
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 175%;
    text-align: left;
    color: #3b4043;
}

@media screen and (max-width: 767px) {
    .lead_block {
        margin-bottom: 40px;
    }

    .lead_text {
        font-size: 16px;
    }
}


/* ------------------------------
arrow_text
------------------------------ */
.arrow_text {
    font-size: 18px;
    position: relative;
}

.icon_arrow {
    position: relative;
    margin-right: 30px;
}

.arrow_text>.icon_arrow::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 20px;
    background-color: #86BCDD;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.arrow_text>.icon_arrow::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 0;
    margin: auto;
    box-sizing: border-box;
    width: 10px;
    height: 12px;
    border: 6px solid transparent;
    border-left: 10px solid #fff;
}

@media screen and (max-width: 767px) {
    .arrow_text {
        font-size: 16px;
    }
}