body {
    /* background: url('../images/common/sub_bg.png') no-repeat 0 0 / cover; */
    width: 100vw;
    height: 63.75vw;
    object-fit: cover;
}

.bg_wrap {
    position: relative;
    padding: 150px 0;
}

/* ヘッダーセクション */
.header-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header-section .main-title {
    font-family: 'Cinzel', serif;
    font-size: 5.6rem;
    color: #231815;
    text-align: center;
    letter-spacing: 0;
    line-height: 170%;
}

.header-section .subtitle {
    font-size: 2.0rem;
    color: #231815;
    line-height: 170%;
    letter-spacing: 0.09em;
}

.header-section .divider {
    width: 140px;
    height: 2px;
    background: linear-gradient(to right, transparent, #231815, transparent);
    margin: 20px auto;
}

section.map {
    max-width: 1000px;
    width: 90%;
    height: auto;
    margin: 125px auto 0;
}

section.map img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 1200px;
    margin: 105px auto 0;
}

.button-container {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gradient-button {
    background: linear-gradient(90deg, #A5D0DF 0%, #1F7470 100%);
    color: #FFFFFF;
    border: none;
    padding: 23.5px 35px;
    width: 315px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.448em;
    letter-spacing: 0.1em;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gradient-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.button-icon {
    position: absolute;
    right: 23px;
    top: 21px;
}

.button-text {
    text-align: center;
}

/* アイコンのSVG */
.map-icon {
    width: 8.05px;
    height: 15.68px;
    fill: #FFFFFF;
}

.print-icon {
    width: 21px;
    height: 21px;
    fill: #FFFFFF;
}

.contents-section {
    width: 731px;
    margin: 153px auto 0;
}

footer p.footer-info {
    color: #000;
    display: none;
}

.gallery {
    max-width: 1000px;
    width: 90%;
    margin: 150px auto 0;
}

.map h3,
.gallery h3 {
    font-size: clamp(16px, 1.5vw, 24px);
    letter-spacing: 0.075em;
    text-align: center;
    margin: 0 0 40px;
}

.gallery img {
    width: 100%;
    height: auto;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .bg_wrap {
        padding: 70px 0;
    }

    .button-container {
        gap: 16px;
    }

    .gradient-button {
        width: 100%;
        max-width: 315px;
        font-size: 1.4rem;
        padding: 20px 30px;
        height: 55px;
    }

    .contents-section {
        width: 100%;
    }

    .gallery {
        margin: 80px auto 0;
    }

    section.map {
        margin: 60px auto 0;
    }
}

@media (max-width: 480px) {
    body {}

    .gradient-button {
        font-size: 1.3rem;
        padding: 18px 25px;
        height: 50px;
    }

    .button-icon {
        right: 20px;
    }
}

/* 印刷時のスタイル */
@media print {
    body {
        background: none;
        background-color: transparent;
    }

    .gradient-button {
        background: none;
        border: 1px solid #333;
        color: #333;
    }

    .header-section .main-title {
        font-size: 3.2rem;
    }

    #header_wrap {
        display: none;
    }

    .container {
        margin: 0;
    }

    .button-container {
        display: none;
    }

    .contents-section {
        display: none;
    }

    footer {
        display: none;
    }

    .header-section {
        margin: 0;
    }

    section.map {
        margin: 20px auto 0;
    }

    .header-section .main-title {
        line-height: 1;
    }

    .button-icon svg {
        fill: #333;
    }


    section.map,
    section.gallery {
        width: 85%;
    }

    section.gallery {
        margin: 50px auto 0;
    }

    .map h3,
    .gallery h3 {
        margin: 0 0 20px;
    }

    .header-section .divider {
        margin: 10px auto;
    }
}