@charset "utf-8";

h1 {
    background-image: url("../../images/strengths/h1_bg.webp");
    height: 206px;
    background-size: cover;
    background-position: top 58% center;
    background-repeat: no-repeat;
    font-family: 'Noto Serif JP', serif;
    font-size: 40px;
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-shadow: 0px 0px 7px #001950;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-top: 22px;
}

h1 .h1_small {
    font-size: 25px;
}

h1 span:not(.h1_small):not(.has_smalltext) {
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.05em;
    padding: 10px 22px 0;
    margin-top: 10px;
    width: 605px;
    position: relative;
}

h1 span:not(.h1_small):not(.has_smalltext) {
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 0.05em;
    padding: 10px 22px 0;
    margin-top: 10px;
    width: 605px;
    position: relative;
}

h1 span:not(.h1_small):not(.has_smalltext)::before,
h1 span:not(.h1_small):not(.has_smalltext)::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 7px #001950;
}

.h2_gradation01,
.h2_gradation02 {
    font-weight: 500;
    font-size: 26px;
    color: #fff;
}

.h2_gradation01 {
    background: linear-gradient(45deg, #73c9e0 0%, #0e9fc4 100%);
    padding: 10px 30px;
}

.h2_gradation02 {
    background: linear-gradient(-45deg, #73c9e0 0%, #0e9fc4 100%);
    position: relative;
    padding: 10px 40px;
}

.h2_gradation02::after {
    content: "";
    border-right: 0;
    border-bottom: 40px solid #C6F2F4;
    border-left: 40px solid transparent;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

h3.h3_blue {
    border-left: 10px solid #94D5E6;
    border-left-style: solid;
    border-bottom: 1px solid #888888;
    padding: 3px 0 15px 23px;
    font-family: 'Noto Serif JP','serif';
    font-size: 28px;
    margin-bottom: 16px;
}


@media screen and (max-width: 1000px) and (min-width: 768px) {
    h1 {
        width: 100%;
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 22px;
        height: auto;
        padding: 12px 0;
        background-position: top 58% right 30%;
    }

    h1 span:not(.h1_small):not(.has_smalltext)::after {
        display: none;
    }

    h1 span:not(.h1_small):not(.has_smalltext) {
        font-size: 13px;
        max-width: 320px;
        width: calc(100% - 32px);
    }

    .h2_gradation01,
    .h2_gradation02 {
        font-size: 20px;
        width: 100vw;
        margin: 0 calc(50% - 50vw);
        text-align: center;
        padding: 10px 16px;
    }

    .h2_gradation02::after {
        border-bottom: 22px solid #C6F2F4;
        border-left: 22px solid transparent;
    }

    h3.h3_blue {
        font-size: 17px;
        border-left-width: 6px;
        padding: 6px 0 10px 13px;
    }
}


/* ------------------------------
copy_block
------------------------------ */
.copy_block {
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 66px;
}

.copy_block h2 {
    font-family: 'Noto Serif JP','serif';
    font-size: 32px;
    color: #0f3c57;
    text-shadow: 0px 0px 6px #fff;
}

@media screen and (max-width: 767px) {
    .copy_block {
        width: 100vw;
        margin: 0 calc(50% - 50vw) 23px;
    }

    .copy_block h2 {
        font-size: 22px;
        text-align: left;
    }
}

/* ------------------------------
column02
------------------------------ */
.column02 {
    display: flex;
    justify-content: space-between;
}

.text_column {
    width: 59.2%;
}

.text_column>div+div {
    margin-top: 40px;
}

.img_column {
    width: 37%;
    display: flex;
    flex-flow: column;
}

.img_column img {
    flex-shrink: 0;
}

.img_column img:last-child {
    margin-top: auto;
}

@media screen and (max-width: 767px) {
    .column02 {
        flex-flow: column;
    }

    .text_column,
    .img_column {
        width: 100%;
        height: 100%;
    }

    .img_column {
        margin-top: 20px;
    }

    .text_column img {
        margin-top: 26px;
    }
}

/* ------------------------------
btn_list
------------------------------ */
.btn_list {
    max-width: 500px;
    margin: 90px auto 0;
}

.btn_list li:not(:last-child) {
    margin-bottom: 60px;
}

.btn_list a {
    display: block;
}

.btn_list a span {
    font-size: 12px;
    padding: 0 5px;
}

@media screen and (max-width: 767px) {
    .btn_list {
        margin-top: 30px;
    }

    .btn_list li:not(:last-child) {
        margin-bottom: 30px;
    }

    .btn_list a {
        letter-spacing: -0.02em;
        padding: 10px 20px 10px 0;
    }
}