@charset "UTF-8";

/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

/* リンクの色設定 */
a {
    color: #559E2A;
    text-decoration: underline; /* 常に下線を表示 */
}
a:hover {
    text-decoration: underline;
    opacity: 0.8; /* ホバー時に少し薄くして反応を見せる */
}

/* ヘッダー */
.site-header {
    background-color: #559E2A;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
}

/* キービジュアル */
.key-visual {
    background-color: #DEF2D5;
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    z-index: 2;
}

.main-title span {
    display: inline;
}

@media screen and (max-width: 600px) {
    .main-title span {
        display: block;
    }
}

/* 絞り込みエリア */
.filter-area {
    width: 100%;
    background-color: #f9f9f9;
    padding: 20px 0;
    text-align: center;
    margin: 0;
}

.filter-area label {
    font-weight: bold;
    margin-right: 10px;
}

.filter-select {
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .filter-select {
        display: block;
        width: 90%;
        margin: 10px auto 0;
    }
}

/* コンテンツラッパー */
.content-wrapper {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 店舗情報エリア */
.store-info {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.store-info h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
    padding-top: 20px;
}

.info-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #eee;
}
.info-item:last-child {
    border-bottom: none;
}

.info-item h3 {
    font-size: 0.9rem;
    font-weight: bold;
    color: #559E2A;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    margin-left: 10px;
}

/* 仕切り線 */
.section-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 60px auto;
    max-width: 600px;
    width: 100%;
}

/* Google Mapボタン */
.map-link-btn {
    display: inline-block;
    background-color: #f1f1f1;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 5px;
    border: 1px solid #ccc;
    text-decoration: none; /* ボタン内のテキストは下線なしにする場合 */
}
.map-link-btn:hover {
    background-color: #e0e0e0;
    text-decoration: none;
}

/* ページトップボタン */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #FF0000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.scroll-top-btn:hover {
    opacity: 1;
}
.scroll-top-btn::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: rotate(45deg);
    margin-top: 4px;
}