/* ===== PC ===== */
body {
    margin: 0;
}

h1 {
    margin-top: 80px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

/* 情報リスト */
.info-list {
    max-width: 800px;
    width: 60%;
    margin: 20px auto;
    padding: 30px 0;
    font-size: 1.2em;
    font-family: monospace;
    display: grid;
    grid-template-columns: 200px 1fr;
    row-gap: 10px;
    column-gap: 10px;
    box-sizing: border-box;
}

.info-item {
    padding-top: 10px;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0;
    text-align: left;
}

dt.thick-border {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid rgb(128, 128, 0);
    line-height: 1;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: center;
}

dd.thick-border {
    border-bottom: 1px solid #ddd;
}

.info-item:not(.thick-border) {
    border-bottom: 1px solid #ddd;
}

/* Google Map */
.googlemap {
    max-width: 50%;
    margin: 40px auto 250px;
    padding: 0;
    box-sizing: border-box;
}

.googlemap__inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

/* CONTACT US セクション */
.contact-us {
    background-color: #1c1c1c;
    padding: 80px 0;
    text-align: center;
    transition: background-color 0.5s;
}

.contact-link {
    color: #fff;
    font-size: 40px;
    letter-spacing: 0.3em;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 20px 40px;
    transition: all 0.3s;
}

.contact-link .arrow {
    display: inline-block;
    width: 220px;
    height: 16px;
    margin-left: 20px;
    background: url("../images/arrow_right(white).svg") no-repeat center center / contain;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.contact-us:hover {
    background-color: #c9b090;
}

.contact-us:hover .contact-link {
    color: #000;
}

.contact-us:hover .contact-link .arrow {
    transform: translateX(20px);
}
/* ===== PC END ===== */

/* ===== タブレット ===== */
@media (min-width: 768px) and (max-width: 1030px) {
    .info-list {
        width: 80%;
        grid-template-columns: 150px 1fr;
    }

    .googlemap {
        max-width: 70%;
    }

    .contact-link {
        font-size: 32px;
        padding: 25px 30px;
    }

    .contact-link .arrow {
        width: 180px;
    }
}
/* ===== タブレット END ===== */

/* ===== スマートフォン ===== */
@media (min-width: 480px) and (max-width: 767px) {
    .info-list {
        width: 70%;
        grid-template-columns: 1fr;
        padding-top: 30px;
		margin: 0 auto;
        text-align: center;
    }

    .info-list dt.thick-border {
        display: block;
        width: 200px;
        margin: 0 auto;
        padding-top: 50px;
        text-align: center;
        font-size: 16px;
    }

    .info-list dd {
        text-align: center;
        font-size: 13px;
    }

    .googlemap {
        max-width: 80%;
        margin: 20px auto 120px;
    }

    .contact-us {
        padding: 40px 0;
    }

    .contact-link {
        font-size: 28px;
        padding: 20px 25px;
    }

    .contact-link .arrow {
        width: 90px;
    }
}
/* ===== スマートフォン END ===== */

/* ===== 小型スマートフォン ===== */
@media (max-width: 479px) {
    .info-list {
        width: 70%;
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    .info-list dt.thick-border {
        display: block;
        width: 200px;
        margin: 0 auto;
        padding-top: 50px;
        text-align: center;
        font-size: 14px;
    }

    .info-list dd {
        text-align: center;
        font-size: 10px;
    }

    .googlemap {
        max-width: 70%;
        margin: 20px auto 100px;
    }

    .contact-us {
        padding: 20px 0;
    }

    .contact-link {
        font-size: 24px;
        padding: 15px 20px;
    }

    .contact-link .arrow {
        width: 60px;
    }
}
/* ===== 小型スマートフォン END ===== */