@import url('https://fonts.cdnfonts.com/css/adobe-garamond-pro');
@import url('https://fonts.cdnfonts.com/css/garamond-premier-pro');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif JP', 'A-OTF A1 Mincho Std', serif;
    background-color: #FCFCFC;
    color: #151515;
    overflow-x: hidden;
    line-height: 1.43;
}
/* 光のオーバーレイ */
.light-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 738px;
    height: 805px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
/* MAPタイトル */
.map-title {
    position: absolute;
    top: 194px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Garamond Premier Pro', serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.476em;
    color: #171717;
    text-align: center;
    z-index: 2;
}
/* サイドナビゲーション */
.side-nav {
    position: fixed;
    left: 48px;
    top: 623px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    width: 12px;
    opacity: 0;
}
.nav-item {
    font-family: 'Adobe Garamond Pro', serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.143em;
    color: #171717;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-dot {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.167em;
    color: #171717;
}

.nav-sub {
    font-family: 'A-OTF A1 Mincho Std', serif;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.167em;
    color: #3E3E3E;
}

/* ボタン */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10.5px;
    background: linear-gradient(90deg, #807420 0%, #544B0C 100%);
    color: #fff;
    padding: 12.75px 40px;
    width: 253px;
    height: 48px;
    border-radius: 48px;
    text-decoration: none;
    font-family: 'A-OTF A1 Mincho Std', serif;
    font-size: 15px;
    line-height: 1.43;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) skewX(-20deg);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.button-arrow {
    position: absolute;
    right: 21px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}


/* マップセクション */
.map-section {
    background: #FCFCFC;
    margin: 386px 0 100px;
    position: relative;
    min-height: 920px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.map-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.section-title {
    font-family: 'A-OTF A1 Mincho Std', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.094em;
    color: #171717;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-image {
    width: 1000px;
    height: 635px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}
.map-foot-root {
    text-align: left;
    font-size: 12px;
}
.map-foot-root .dot {
    font-size: 16px;
    font-weight: 900;
    color: #1D2088;
    letter-spacing: -1px;
    margin-left: 4px;
}
.map-foot-root .txt {
    vertical-align: top;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #888;
}

/* 徒歩ルートアイコン */
.route-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 146.32px;
    height: 14.32px;
}

/* アクションボタン */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 43px;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(90deg, #F0F0F0 0%, #C1B8AC 100%);
    color: #171717;
    padding: 12.75px 40px;
    width: 305px;
    height: 48px;
    border-radius: 48px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) skewX(-20deg);
    transition: left 0.5s ease;
}

.action-button:hover::before {
    left: 100%;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.button-label-main {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.43;
    letter-spacing: 0.042em;
}

.button-label-sub {
    font-family: 'A-OTF A1 Mincho Std', serif;
    font-size: 11px;
    line-height: 1.43;
    letter-spacing: 0.205em;
}

.map-section .button-arrow-dark {
    position: absolute;
    left: 21px;
    width: 6px;
    height: 6px;
    background: #171717;
    border-radius: 50%;
}

/* モバイル対応 */
@media (max-width: 768px) {

    .light-overlay {
        display: none;
    }
    .header {
        height: 80px;
        padding: 20px;
    }

    .map-title {
        font-size: 28px;
        letter-spacing: 0.3em;
        top: 120px;
    }

    .side-nav {
        display: none;
    }

    .map-section {
        margin: 200px 20px 50px;
        min-height: 600px;
    }

    .map-container {
        max-width: 100%;
    }

    .section-title {
        font-size: 24px;
    }

    .map-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1000 / 635;
    }

    .action-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .action-button {
        width: 100%;
        max-width: 305px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-box {
        width: 100%;
        max-width: 450px;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

