<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.container h2 {
    font-size: 2.4rem;
    font-weight: bold;
}

.container h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #D80C18 20%, #777 20%);
}

.img_map {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-inline: auto;
    margin-bottom: 70px;
}

/* === h2の下の赤→灰色ボーダー === */
.section-border {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #D80C18 20%, #777 20%);
    margin: 10px 0 20px;
}

/* === 共通のテーブルデザイン === */
.details-table {
    width: 100%;
    border-collapse: collapse; /* 余計な隙間を削除 */
    table-layout: fixed; /* 固定レイアウトで高さを統一しやすく */
    margin-bottom: 80px;
}

.details-table tr {
    border-bottom: 1px solid #707070;
}

.network .th_ttl {
    font-size: 1.4rem;
}

/* === PC版のレイアウト（横並び） === */
@media screen and (min-width: 769px) {

  

    .details-table th, .details-table td {
        padding: 1.8rem 2.8rem;
        vertical-align: top; 
        text-align: left;
        height: 100%;
        display: table-cell; /* セルの高さを自動調整 */
    }

    .details-table tr {
        display: table-row; /* テーブルの行として正しく表示 */
    }

    .details-table th {
        width: 25%;
        height:115px;
        background-color: #e6e6e6;
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    .details-table th span {
        padding-left: 1.4rem;
    }

    .details-table td {
        width: 75%;
        height:115px;
        font-size: 1.2rem;
    }

    .details-table tbody tr:first-of-type {
    border-top: 1px solid #707070;
}


    .map-link {
        display: inline-block;
        background-color: #ddd;
        color: #333;
        text-decoration: none;
        padding: 5px 10px;
        border-radius: 50px;
        font-size: 1.2rem;
        margin-top: 5px;
    }

    .details-table td {
        width: 100%;
        display: flex;
        padding: 0px;
        text-align: left;
    }
    
    
    
    .address_box a {
        float: right;
        text-align: center;
        width: 90px;
        min-height: 30px;
        
    }
    
    .tel_area {
        width: 30%;
        display: flex;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        border-left: 1px solid #707070;
    }
    
    .address_box {
        width: 70%;
        padding: 1.8rem;
        /* border-right: 1px solid #707070; */
        position: relative;
        align-self: center;
    }

    .network_tx_area {
        padding: 0 20px;
        font-size: 1.2rem;
    }

    .network_tx_area p {
        margin-bottom: 2rem;
    }
    
    
}


.fixed-height-row th,
.fixed-height-row td {
    max-height: 160px;
    height: 110px; /* 好きな高さを指定 */
    vertical-align: middle; /* 縦方向の中央揃え */
    position: relative;
}

.fixed-height-row .address_box a {
    margin-top: 0px;
}


/* === SP版のレイアウト（縦並び） === */
@media screen and (max-width: 768px) {

    .details-table,
    .details-table tbody,
    .details-table tr {
        display: block;
        width: 100%;
    }

    .details-table {
       border-left: 1px solid #4b4b4b;
       border-right: 1px solid #4b4b4b;
       border-top: 1px solid #4b4b4b;
    }

    .details-table th {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 1.2rem;
        padding: 10px;
        background-color: #f8f8f8;
    }

    .fixed-height-row th, .fixed-height-row td {
        height: auto;
    }

    .fixed-height-row .address_box a {
        margin-top: auto;
    }
    

    .details-table td {
        display: block;
        width: 100%;
        text-align: left;
        font-size: 1.2rem;
        padding: 1.5rem;
        border-top: 1px solid #4b4b4b;
    }

    .img_map img{
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-bottom: 2rem;
    }

    .phone-number {
        display: block;
        font-size: 1.4rem;
        margin-top: 10px;
        color: #333;
    }

    .network_tx_area {
        font-size: 1.2rem;
    }

    .container h2 {
        font-size: 2.0rem;
    }
}

/* MAPボタンデザイン */
.map-link {
    display: inline-block;
    background-color: #ddd;
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 1.2rem;
    margin-top: 5px;
    min-width: 70px;
    text-align: center;
}

.map-link:hover {
    background-color: #bbb;
}

.note {
    font-size: 1.0rem;
    margin-top: 2rem;
}

.sec_1,.sec_2 {
    width: 80%;
    margin: 0 auto;
}

.sec_2 .details-table {
    margin-bottom: 1rem;
}

</pre></body></html>