@charset "utf-8";

#breadcrumb .breadcrumb_inner a,
#breadcrumb .breadcrumb_inner span {
    color: #FFF;
}

#breadcrumb .breadcrumb_inner a::after {
    border-color: #FFF;
}

/*------------ メッセージ ------------*/

.bg_blue {
    display: block;
    padding: 62px 0 71px;
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.bg_blue::before {
    position: absolute;
    content: "";
    width: 100vw;
    min-width: 1300px;
    height: calc(100% + 50px);
    background: rgb(20, 136, 221);
    background: linear-gradient(124deg, rgba(20, 136, 221, 1) 0%, rgba(135, 225, 225, 1) 200%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -10;
}

.bg_blue>*:first-child {
    margin-top: 0;
}

.bg_blue>*:last-child {
    margin-bottom: 0;
}

.bg_blue .sec_ttl_h2 {
    color: #FFF;
    margin: 0 0 47px;
}

.bg_blue .h2_sub {
    display: block;
    text-align: center;
    color: #FFF;
    margin-bottom: 10px;
}

.catch {
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: center;
    color: #FFF;
    margin-bottom: 79px;
}

.catch_name {
    text-align: right;
    color: #FFF;
}

.catch_name span {
    display: inline-block;
    font-size: 2.2rem;
    padding: 5px 0 0;
}

/*------------ カラム ------------*/
.message_col {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -139px;
}

.message_col_img {
    width: 44%;
}

.message_img {
    border-radius: 15px;
    overflow: hidden;
}

.message_img img {
    width: 100%;
}

.message_img:last-child {
    margin-top: 20px;
}

.message_col_txt {
    width: 50%;
}

.message_col_txt p {
    line-height: 1.875;
    margin-bottom: 0;
}

/*------------ テーブル ------------*/
.table_overview {
    margin: 0 0 100px;
}

.table_overview table {
    border-collapse: separate;
    border-spacing: 0 10px;
    border: none;
    margin: 0;
}

.table_overview table tr {
    position: relative;
}

.table_overview table tr::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #F2F6F8;
    border-radius: 10px;
}

.table_overview table th,
.table_overview table td {
    line-height: 1.875;
    border: none;
    padding: 29px 20px 30px 50px;
    vertical-align: top;
    position: relative;
}

.table_overview table th {
    background: transparent;
    text-align: left;
    width: 23.9%;
}

.table_overview dl {
    display: flex;
    flex-wrap: wrap;
}

.table_overview dl dt {
    width: 120px;
    margin-right: 20px;
}

.table_overview dl dd {
    width: calc(100% - 140px);
}

/*------------ アクセス ------------*/
.access_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background: #FFF;
    margin-bottom: 50px;
    border-radius: 15px;
}

.access_map {
    width: 50%;
    background: #F2F6F8;
    aspect-ratio: 13/9;
    position: relative;
}

.access_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.access_txt {
    width: 45.192%;
}

.access_txt h3 {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin: 4px 0 14px;
}

.access_txt p {
    line-height: 1.875;
    margin-bottom: 17px;
}

.access_txt a {
    font-weight: 500;
    color: #0996E9 !important;
    padding-right: 25px;
    background: url(../img/icon_map.svg) no-repeat center right 5px !important;
}

/*------------ 沿革 ------------*/
.table_no_bg table th {
    width: 23.9%;
}

@media screen and (max-width: 767px) {

    /*------------ メッセージ ------------*/

    .bg_blue {
        padding: 45px 0 100px;
    }

    .bg_blue::before {
        height: 100%;
    }

    .bg_blue .sec_ttl_h2 {
        margin: 0 0 20px;
    }

    .bg_blue .h2_sub {
        margin-bottom: 5px;
    }

    .catch {
        font-size: 2rem;
        letter-spacing: 0.05em;
        margin-bottom: 25px;
    }

    .catch_name span {
        font-size: 1.6rem;
        padding: 3px 0 0;
    }

    /*------------ カラム ------------*/
    .message_col {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
        margin-top: -60px;
    }

    .message_col_img {
        width: 100%;
        margin-bottom: 20px;
    }

    .message_img:last-child {
        margin-top: 20px;
    }

    .message_col_txt {
        width: 100%;
    }

    /*------------ テーブル ------------*/
    .table_overview {
        margin: 0 0 50px;
    }

    .table_overview table {
        border-spacing: 0 5px;
    }
    .table_overview table tbody,
    .table_overview table tr {
        display: block;
    }

    .table_overview table tr::before {
        border-radius: 5px;
    }

    .table_overview table th,
    .table_overview table td {
        display: block;
        width: 100%;
        padding: 10px 20px;
    }

    .table_overview table th {
        border-bottom: 1px solid rgba(255, 255, 255, .6)
    }

    .table_overview dl dt {
        width: 105px;
        margin-right: 15px;
    }

    .table_overview dl dd {
        width: calc(100% - 120px);
    }

    /*------------ アクセス ------------*/
    .access_item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .access_map {
        width: 100%;
        margin-bottom: 15px
    }

    .access_txt {
        width: 100%;
    }

    .access_txt h3 {
        font-size: 1.5rem;
        margin: 0 0 7px;
    }

    .access_txt p {
        margin-bottom: 7px;
    }

    /*------------ 沿革 ------------*/
    .table_no_bg table th {
        width: 100%;
    }
}