/* ------------------------------------------
  sec_page_ttl
------------------------------------------ */
.sec_page_ttl .container {
    width: 90%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0;
}

.sec_page_ttl .page_ttl_wrap {
    border-radius: 32px;
    border: 2px solid #000;
}

.sec_page_ttl .page_ttl_wrap .inner {
    border-radius: 30px;
    text-align: center;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec_page_ttl .page_ttl_wrap .inner .page_ttl {
    font-family: "Shippori Mincho", sans-serif;
    font-size: 2.187rem;
    line-height: calc(42/35);
}


@media screen and (max-width: 767px) {
    .sec_page_ttl .container {
        width: calc(100% - 30px);
    }
    
    .sec_page_ttl .page_ttl_wrap {
        border-radius: 30px;
        border: 1px solid #000;
    }
    
    .sec_page_ttl .page_ttl_wrap .inner {
        border-radius: 28px;
        padding: 60px 0 50px;
        flex-direction: column;
    }    
    
    .sec_page_ttl .page_ttl_wrap .inner .page_ttl {
        font-size: 1.562rem;
        line-height: calc(30/25);
    }
}

/* ------------------------------------------
  sec_links
------------------------------------------ */
.sec_links {
    margin-top: 67px;
}

.sec_ttl_wrap.deco {
    position: relative;
}

.sec_ttl_wrap.deco::before {
    display: block;
    content: "";
    background-color: #000000;
    height: 1px;
    width: 100%;
    top: 50%;
    left: 0;
    right: 0;
    position: absolute;
    z-index: -1;
}

.sec_ttl_wrap.deco .sec_ttl {
    display: table;
    margin: 0 auto;
    padding: 0 15px;
    background-color: #fff;
    font-family: "Shippori Mincho", sans-serif;
    font-weight: normal;
    font-size: 1.125rem;
}


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

    .sec_ttl_wrap.deco .sec_ttl {
        padding: 0 10px;
        font-size: 1.062rem;
        text-align: center;
    }
}

/* ------------------------------------------
  sec_links_list
------------------------------------------ */
.sec_links_list {
    margin-top: 63px;
    display: flex;
    row-gap: 27px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sec_links_list_item {
    width: 31.4%;
    border-radius: 5px;
    border: 1px solid #000;
    overflow: hidden;
}

.sec_links_list_item_ttl {
    background-color: #F8F8E7;
    height: 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Shippori Mincho", sans-serif;
    font-weight: bold;
    padding: 0 25px;
}

.sec_links_list_item_desc {
    padding: 15px 25px;
}

.sec_links_list_item_desc a {
    display: table;
    margin: 0 auto;
    width: 100px;
    background-color: #000;
    color: #fff;
    text-align: center;
    line-height: 20px;
    border-radius: 10px;
    font-size: 0.75rem;
    background-image: url(../images/common/icon_arrow_url.svg);
    background-repeat: no-repeat;
    background-size: 6px 9px;
    background-position: right 8px center;
}

.sec_links_list_item_desc .url {
    text-align: center;
    margin-top: 6px;
    font-size: 0.75rem;
    line-height: 1.3;
}

.sec_links_list_item_desc .desc {
    padding-top: 13px;
    margin-top: 12px;
    border-top: 1px dotted #000;
}


@media screen and (max-width: 767px) {  
    .sec_links_list {
        margin-top: 40px;
        flex-direction: column;
        gap: 20px 0;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .sec_links_list_item {
        width: auto;
    }
    
    .sec_links_list_item_ttl {
        height: 58px;
        padding: 0 15px;
    }
    
    .sec_links_list_item_desc {
        padding: 15px;
    }
    
    .sec_links_list_item_desc a {
        width: 200px;
    }
}