/* ------------------------
   共通スタイル（初期）
------------------------ */
body {
    margin: 0;
    font-family: "Helvetica Neue", "Arial", sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    /* はみ出し防止 */
}

/* スマホだけで改行 */
.br-sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .br-sp {
        display: inline;
    }
}

/* ------------------------
   ロゴ画像
------------------------ */
.logo-image {
    text-align: center;
}

.logo-image img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .logo-image img {
        width: 180px;
    }
}

/* ------------------------
   ヘッダー
------------------------ */
header {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
}

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.6em;
    }

    header p {
        font-size: 1em;
    }
}

/* ------------------------
   電話ボタン
------------------------ */
.header-tel-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #fe0000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1em;
}

.header-tel-btn:hover {
    background-color: #cc0000;
}

.center {
    text-align: center;
}

/* ------------------------
   メインコンテナ
------------------------ */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
}

/* ------------------------
   共通見出し
------------------------ */
h2 {
    font-size: 1.3em;
    border-left: 6px solid #fe0000;
    padding-left: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5em;
    padding-left: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ------------------------
   イメージエリア（画像切り替え）
------------------------ */
.image {
    text-align: center;
    margin-bottom: 30px;
}

/* 初期：両方非表示にしておく */
.img-pc,
.img-sp {
    display: none;
    border-radius: 10px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
}

/* PC用画像（900×400） */
@media screen and (min-width: 769px) {
    .img-pc {
        display: block;
        width: 900px;
        max-width: 100%;
        margin: 20px auto;
    }

    .img-sp {
        display: none;
    }
}

/* スマホ用画像（800×800） */
@media screen and (max-width: 768px) {
    .img-pc {
        display: none;
    }

    .img-sp {
        display: block;
        width: 100%;
        max-width: 800px;
        margin: 15px auto;
    }
}

/* ------------------------
   ハイライト（キャンペーンなど）
------------------------ */
.highlight {
    background: #ffeef3;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #fbbbc8;
    text-align: center;
    font-weight: 600;
}

.highlight span {
    color: #fe0000;
    font-size: 1.2em;
}

/* ------------------------
   テーブル（料金表など）
------------------------ */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.info-table th,
.info-table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 768px) {

    .info-table,
    .info-table tbody,
    .info-table tr,
    .info-table th,
    .info-table td {
        display: block;
        width: auto;
    }

    .info-table tr {
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }

    .info-table th {
        font-weight: bold;
        background-color: #f5f5f5;
        padding: 10px;
        border-bottom: none;
    }

    .info-table td {
        padding: 10px;
        border-bottom: none;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* ------------------------
   汎用ボタン
------------------------ */
.btn {
    display: inline-block;
    background: #fe0000;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

/* ------------------------
   募集エリア
------------------------ */
.recruit {
    background: #f9f9f9;
    padding: 20px;
    border-left: 6px solid #fe0000;
    margin-top: 40px;
}

/* ------------------------
   フッター
------------------------ */
footer {
    text-align: center;
    font-size: 0.9em;
    padding: 20px;
    background: #eee;
    color: #666;
    margin-top: 60px;
}

/* Googleマップ付きフッター */
.site-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px;
}

.site-footer a {
    color: #fe0000;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.site-footer h2 {
    color: #fe0000;
    font-size: 1.4em;
    margin-bottom: 10px;
    border-left: none;
    padding-left: 0;
}

.site-footer .label {
    color: #fe0000;
    font-weight: bold;
}

.site-footer .map-embed {
    margin-top: 20px;
}

.site-footer iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.copyright {
    text-align: center;
    font-size: 0.85em;
    color: #aaa;
    margin-top: 30px;
}