@charset "utf-8";

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    color: #2f1818;
    line-height: 1;
    background-color: #fff0e9;
}

img {
    max-width: 100%;
}

.first-view {
    height: calc(100vh);
    background-image: url(./bg-main.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
}

.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff0e9;
}

.toggle-menu-button {
    display: none;
}

.header-logo {
    display: block;
    width: 170px;
}

.site-menu ul {
    display: flex;
}

.site-menu ul li {
    margin-left: 20px;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}



.inner {
    width: 70%;
    background-color: #fff;
    margin: 0 auto;
    padding: 65px 0 100px;
}


.sub_ttl {
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}




/* 全体ラップ */
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    background: #fffafc;
    font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
    color: #444;
    margin-top: 50px; /* ヘッダー分の余白 */
    border-radius: 15px; /* 角を丸くする */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* optional: 影で立体感を追加 */
}

/* 見出し */
.wrap h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #634b46;
    font-weight: 600;
    position: relative;
}

.wrap h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #fd183e;
    margin: 8px auto 0;
    border-radius: 1px;
}

/* 横並びレイアウト */
.area-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 30px;
}

/* エリアリスト */
.area-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.area-item {
    background: #f8e4de;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(96, 64, 81, 0.15);
    transition: transform 0.2s ease;
}

.area-item:hover {
    transform: translateY(-3px);
}

.area-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #5a3b48;
    margin-bottom: 5px;
}

.area-desc {
    font-size: 0.95rem;
    color: #555;
}

/* 地図 */
.area-map {
    flex: 1;
    text-align: center;
}

.area-map img {
    width: 60%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(160, 82, 124, 0.2);
}

/* 備考メモ */
.note {
    margin-top: 25px;
    font-size: 1rem;
    color: #555;
    background: #faf6f7;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(160, 82, 124, 0.15);
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    /* PC時に中央寄せ */
}

/* レスポンシブ */
@media screen and (max-width: 767px) {
    .area-wrapper {
        flex-direction: column;
        align-items: center;
        /* エリアリストを中央に */
    }

    .area-list {
        width: 100%;
        max-width: 500px;
    }

    .area-map img {
        max-width: 100%;
    }

    .note {
        display: block;
        margin: 20px auto 0;
        /* 中央に */
        max-width: 500px;
    }
}






@media(max-width: 800px) {
    .site-menu ul {
        display: block;
        text-align: center;
    }

    .site-menu li {
        margin-top: 20px;
    }

    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff0e9;
        height: 50px;
        z-index: 10;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        position: relative;
    }

    .header-site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        color: #a99797;
        background-color: #fabcbc;
        background-color: ;
        padding-top: 30px;
        padding-bottom: 50px;
        display: none;
    }

    .toggle-menu-button {
        display: block;
        width: 44px;
        height: 34px;
        background-image: url(./img/22981878.png);
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: none;
    }

    .header-logo {
        width: 100px;
    }

    .header-site-menu.is-show {
        display: block;
    }

    .main {
        padding-top: 50px;
    }
}