
@charset "UTF-8";

/* 基本レイアウト */
body {
    margin: 0;
    padding: 0;
    line-height: 1.8;
    color: #333;
    background-color: #fcfcfc;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.guide-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px 100px;
}

/* 上部バー */
.top-close-bar {
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 13px;
}
.top-close-bar a {
    color: #d4a017;
    margin-left: 10px;
    text-decoration: underline;
}

/* 見出し */
h1 {
    font-size: 26px;
    color: #1a1a1a;
    border-bottom: 3px solid #d4a017;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    font-size: 20px;
    color: #d4a017;
    border-left: 5px solid #d4a017;
    padding-left: 15px;
    margin: 40px 0 20px;
}

/* ボックス類 */
.info-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.blue-box {
    background: #eef6ff;
    border: 1px solid #b3d7ff;
}
.blue-box h2 {
    margin-top: 0;
    color: #0056b3;
    border-left-color: #0056b3;
}

.region-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.region-box {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}
.region-box h3 {
    margin-top: 0;
    color: #444;
}

/* 病院リスト */
.agency-box.highlight {
    background: #fff9e6;
    border: 2px solid #d4a017;
    padding: 25px;
    margin-bottom: 30px;
}
.tel-list {
    list-style: none;
    padding: 0;
}
.tel-list li {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.tel-list li span {
    font-size: 14px;
    font-weight: normal;
    display: inline-block;
    width: 120px;
}

.hospital-grid {
    display: flex;
    gap: 30px;
}
.hospital-item {
    flex: 1;
}
.hospital-item h4 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

/* リンク・ボタン */
.forth-link {
    text-align: right;
    margin-top: 20px;
}
.forth-link a {
    color: #0056b3;
    text-decoration: underline;
}

.bottom-nav {
    margin-top: 80px;
    text-align: center;
    background: #f2f2f2;
    padding: 40px;
    border-radius: 10px;
}
.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    min-width: 200px;
}
.btn-primary { background: #d4a017; color: #fff; }
.btn-secondary { background: #666; color: #fff; }

/* レスポンシブ */
@media (max-width: 768px) {
    .region-flex, .hospital-grid, .btn-group {
        flex-direction: column;
    }
    .tel-list li { font-size: 16px; }
}
