/* =========================================================
   Access
   ========================================================= */
.sg-access {
    padding: 0 0 50px;
}

/* 見出し */
.sg-access .sgacc-h2 {
    display: block;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: .2em;
    text-align: center;
    color: #fff;
    background: #3d4955;
    margin: 30px 0 50px;
    padding: 12px 0;
}

/* 上段：店舗情報（2カラム） */
.sg-access .sgacc-topgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 50px;
}

/* 店舗情報：表組み（row / th / td） */
.sg-access .sgacc-info {
    border-top: 1px solid rgba(0, 0, 0, .35);
    margin-bottom: 30px;
}

.sg-access .sgacc-dl {
    margin: 0;
    padding: 0;
}

.sg-access .sgacc-row {
    position: relative;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    column-gap: 20px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .35);
}

.sg-access .sgacc-th {
    position: relative;
    align-self: stretch;
    font-weight: 400;
    text-align: left;
    letter-spacing: .05em;
    padding-left: 10px;
}

/* 縦の区切り線 */
.sg-access .sgacc-th::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    right: calc(-20px / 2);
    background: rgba(0, 0, 0, .35);
}

.sg-access .sgacc-td {
    overflow-wrap: anywhere;
    word-break: normal;
    line-height: 1.7;
    margin: 0;
}

.sg-access .sgacc-td p {
    margin: 0;
}

/* 交通アクセス */
.sg-access .sgacc-access {
    max-width: none;
    margin: 0;
}

.sg-access .sgacc-h3 {
    font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 500;
    letter-spacing: .08em;
    font-size: 22px;
    margin: 0 0 10px;
}

.sg-access .sgacc-accesscols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.sg-access .sgacc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background: #3d4955;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.sg-access .sgacc-ico {
    display: inline-block;
    font-size: 25px;
    line-height: 1;
    color: #fff;
    margin-right: 15px;
}

.sg-access .sgacc-accesslist ul {
    list-style: none;
    padding-left: 0;
    line-height: 1.9;
    margin: 0;
}

.sg-access .sgacc-accesslist li {
    position: relative;
    padding-left: 1.3em;
}

.sg-access .sgacc-accesslist li::before {
    position: absolute;
    left: 0;
    top: 5px;
    content: "chevron_right";
    font-family: "Material Icons Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 25px;
    line-height: 1;    
    color: #0055ff;
}

.sg-access .sgacc-accesslist a.sgacc-way{
  color: #000;
}

.sg-access .sgacc-accesslist a.sgacc-way:hover,
.sg-access .sgacc-accesslist a.sgacc-way:focus{
  color: #0055ff;
}

/* 地図 */
.sg-access .sgacc-mapframe {
    border: none;
}

.sg-access .sgacc-mapframe iframe {    
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

/* -------------------------
   Responsive
------------------------- */
@media (max-width: 900px) {

    .sg-access .sgacc-topgrid {
        grid-template-columns: 1fr;
    }

    .sg-access .sgacc-accesscols {
        grid-template-columns: 1fr;
    }

    .sg-access .sgacc-ggrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-access .sgacc-stgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-access .sgacc-areagrid {
        grid-template-columns: 1fr;
    }

    .sg-access .sgacc-other .sgacc-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* thの横幅を少し詰める */
    .sg-access .sgacc-row {
        grid-template-columns: 80px minmax(0, 1fr);
    }
}

/* 600px以下：1列＆表組みを縦積み */
@media (max-width: 600px) {

    .sg-access .sgacc-ggrid {
        grid-template-columns: 1fr;
    }

    .sg-access .sgacc-stgrid {
        grid-template-columns: 1fr;
    }

    /* 表組み：スマホは縦並びで読みやすく。縦線は不要 */
    .sg-access .sgacc-row {
        grid-template-columns: 1fr;
        row-gap: 6px;
    }

    .sg-access .sgacc-th {
        padding-left: 0;
    }

    .sg-access .sgacc-th::after {
        display: none;
    }
}