/* --- 変数・リセット --- */
:root {
    --primary-text: #555;
    --accent-pink: #ff9999; /* ボタンや予約エリアのピンク */
    --accent-blue: #cceeff; /* Facebookエリアの水色 */
    --bg-gray: #f2f2f2;
    --font-base: "Noto Sans JP", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-base); color: var(--primary-text); line-height: 1.6; font-size: 14px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }
ul { list-style: none; }

.container {
    max-width: 1000px; /* 少し狭めに設定 */
    margin: 0 auto;
    padding: 0 15px;
}
.section-padding { padding: 60px 0; }

/* --- ヘッダー上部 --- */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.header-logo img {
    height: 60px; /* ロゴサイズ調整 */
}

.header-info {
    text-align: right;
    font-size: 12px;
}

/* 予約電話番号（ピンクの座布団） */
.tel-box {
    background-color: var(--accent-pink);
    color: #fff;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.address, .hours {
    margin-bottom: 2px;
}

.social-icons {
    margin-top: 5px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.social-icons img {
    width: 24px;
    height: 24px;
}


/* --- グローバルナビゲーション --- */
.global-nav {
    border-top: 1px solid #ddd;
}
.global-nav ul {
    display: flex;
    justify-content: space-around; /* 均等配置 */
    padding: 15px 0;
}
.global-nav a {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.sp-contact-info {
    display: none; 
}

/* --- メインビジュアル --- */
.main-visual img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* --- サービス紹介（3カラム） --- */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* 2. ボタンの上側の余白(margin-top)を「auto」にすることで、
      余ったスペースをすべて埋め、ボタンを最下部に押し下げる */
.service-item .btn-outline {
    margin-top: auto;
    
    /* Flexbox化するとtext-align:centerが効かなくなる場合があるため、
       念のため左右中央寄せを指定 */
    margin-left: auto;
    margin-right: auto;
}

.circle-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%; /* 完全な丸にする */
}
.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    margin-bottom: 15px;
    font-weight: normal;
    font-size: 1.1rem;
}
.service-item .desc {
    font-size: 0.85rem;
    text-align: left; /* 説明文は左揃え */
    margin-bottom: 20px;
    min-height: 80px; /* 高さ揃え用 */
}

/* ピンク枠のボタン */
.btn-outline {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    font-size: 0.9rem;
    background: #fff;
    text-align: center;
}
.btn-outline:hover {
    background: var(--accent-pink);
    color: #fff;
}

/* --- Info Blocks (Information / Facebook) --- */
.info-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-box {
    height: 250px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-box h3 a {
    font-size: 1.2rem;
    text-decoration: underline;
    color: #444;
}

.box-pink { background-color: #f7ceca; } /* 薄いピンク */
.box-blue { background-color: #d1edf6; } /* 薄い水色 */

/* --- フッター --- */
.site-footer {
    background: #f4f4f4;
    text-align: center;
    padding: 40px 0;
    font-size: 0.75rem;
    color: #888;
}

/* --- ハンバーガーメニュー（初期非表示） --- */
.hamburger { display: none; }

/* --- レスポンシブ対応 (スマホ) --- */
@media (max-width: 768px) {
    /* ヘッダーレイアウト変更 */
    .header-top {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }
    .header-logo img{
        height: 40px;
        margin-bottom: 15px;
    }
    
    .header-logo {
        margin-left: 20px;
        margin-bottom: 10px;
    }
    .header-info {
        text-align: left;
        width: 100%;
    }
    .social-icons {
        justify-content: flex-start;
    }
    
    /* スマホでナビを隠す */
    .global-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: 0.3s;
        border-top: none;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        padding-top: 60px;
        padding-left: 24px;  /* 追加 */
        padding-right: 24px; /* 追加 */
    }
    .global-nav.is-active { right: 0; }
    
    .global-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* ハンバーガー表示 */
    .hamburger {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        z-index: 1100;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
    }
    .hamburger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: #333;
        transition: 0.3s;
    }
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 10px; }
    .hamburger span:nth-child(3) { top: 20px; }
    
    /* ハンバーガーのアニメーション */
    .hamburger.is-active span:nth-child(1) { transform: rotate(45deg); top: 10px; }
    .hamburger.is-active span:nth-child(2) { opacity: 0; }
    .hamburger.is-active span:nth-child(3) { transform: rotate(-45deg); top: 10px; }

    /* コンテンツの1カラム化 */
    .services, .info-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .info-box { height: 180px; }
}

/* =========================================
   下層ページ用スタイル (style.cssの末尾に追加)
   ========================================= */

/* --- ページヘッダー --- */
.page-header {
    background-color: #fcecec; /* 薄いピンク背景 */
    padding: 60px 0;
    text-align: center;
    margin-bottom: 20px;
}

.page-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: var(--primary-text);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.page-subtitle {
    font-size: 0.9rem;
    color: #888;
}

/* --- パンくずリスト --- */
.breadcrumbs {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 40px;
}
.breadcrumbs a {
    text-decoration: underline;
}

/* --- 記事本文のスタイル (Typography) --- */
/* .page-content の中にある要素に自動的にスタイルを適用 */

.page-content {
    max-width: 900px; /* 読みやすいように少し幅を狭める */
}

.page-content h2 {
    font-size: 1.6rem;
    border-bottom: 2px solid var(--accent-pink);
    padding-bottom: 10px;
    margin-bottom: 30px;
    margin-top: 40px;
}
.page-content h2:first-child { margin-top: 0; }

.page-content h3 {
    font-size: 1.3rem;
    border-left: 5px solid var(--accent-pink);
    padding-left: 15px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.page-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify; /* 両端揃え */
}

.page-content ul {
    list-style: disc; /* 黒丸 */
    margin-left: 20px;
    margin-bottom: 30px;
}
.page-content li {
    margin-bottom: 10px;
}

/* スマホ調整 */
@media (max-width: 768px) {
    .page-header { padding: 40px 0; }
    .page-title { font-size: 1.5rem; }
    .page-content h2 { font-size: 1.3rem; }
    .page-content h3 { font-size: 1.1rem; }
}

/* =========================================
   Conceptページ用スタイル
   ========================================= */

/* --- ページ見出し（下線付きスタイル） --- */
.page-heading-border {
    font-size: 1.8rem;
    color: var(--accent-pink);
    border-bottom: 1px solid var(--accent-pink);
    padding-bottom: 10px;
    margin-bottom: 40px;
    font-weight: normal;
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.page-heading-border span {
    font-size: 0.9rem;
    color: #999;
}

/* --- コンセプト導入エリア --- */
.concept-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}
.intro-image { flex: 1; }
.intro-text { flex: 1; display: flex; justify-content: center; }

/* 引用デザイン */
.quote-box {
    text-align: center;
    position: relative;
    padding: 20px;
}
.quote-mark {
    font-size: 4rem;
    color: var(--accent-pink);
    font-family: serif;
    position: absolute;
    line-height: 1;
}
.quote-mark:first-child { top: -20px; left: -20px; }
.quote-mark.bottom { bottom: -20px; right: -20px; transform: rotate(180deg); }
.message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
    letter-spacing: 0.1em;
}

/* --- Mission セクション（3カラムレイアウト） --- */
.missions {
    margin-bottom: 80px;
}

.mission-row {
    display: flex;
    background: #fff;
    margin-bottom: 40px;
    min-height: 400px; /* 高さを確保 */
}

/* 左：ピンクの帯 */
.mission-label {
    width: 150px;
    background-color: var(--accent-pink); /* 以前のCSSで定義した変数を使用 */
    color: #fff;
    padding: 30px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.mission-label h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: normal;
}
.mission-label span {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* 中：コンテンツ */
.mission-content {
    flex: 2;
    padding: 30px;
    font-size: 0.95rem;
}
.mission-content h4 {
    color: var(--accent-pink);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.mission-content dl dt {
    font-weight: bold;
    margin-top: 15px;
}
.mission-content dl dd {
    margin-bottom: 5px;
    padding-left: 1em;
}

/* 右：画像 */
.mission-image {
    flex: 1.5;
    position: relative;
}
.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Company Profile（会社概要テーブル） --- */
.company-table {
    border-top: 1px solid #ddd;
}
.company-table dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}
.company-table dt {
    width: 20%;
    font-weight: bold;
    padding-right: 20px;
}
.company-table dd {
    width: 80%;
}

.license-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* --- レスポンシブ (スマホ用) --- */
@media (max-width: 768px) {
    
    
    /* コンセプト導入 */
    .concept-intro { flex-direction: column; }
    
    /* Missionを縦積みに */
    .mission-row {
        flex-direction: column;
        min-height: auto; /* 高さ制限解除 */
    }

    .mission-label {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    .mission-label h3 { margin: 0; font-size: 1rem; }

    /* ▼▼▼ 変更箇所: Mission画像はスマホでは非表示にする ▼▼▼ */
    .mission-image {
        display: none;
    }

    /* 会社概要テーブルを縦積みに */
    .company-table dl { display: block; }
    .company-table dt { width: 100%; margin-bottom: 5px; color: var(--accent-pink); }
    .company-table dd { width: 100%; padding-left: 0; }
    
    /* ▼▼▼ 追加: 登録証などは縦並びにしてはみ出しを防ぐ ▼▼▼ */
    .license-images {
        flex-direction: column;
        gap: 15px;
    }
    /* ▲▲▲ ここまで ▲▲▲ */
}

/* =========================================
   Trimmingページ用スタイル
   ========================================= */

/* --- トップ画像3枚 --- */
.trimming-top-images {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}
.trimming-top-images img {
    width: calc(33.333% - 14px); /* 3等分 */
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* --- 料金表 --- */
.price-section {
    margin-bottom: 80px;
    text-align: center; /* 中央寄せ */
}
.price-section h3 {
    text-align: left;
    color: var(--accent-pink); /* 既存の変数を使用 */
    margin-bottom: 15px;
    font-size: 1.1rem;
    max-width: 800px; /* テーブル幅に合わせる */
    margin-left: auto;
    margin-right: auto;
}

.price-table {
    width: 100%;
    max-width: 800px; /* 読みやすい幅に制限 */
    margin: 0 auto 20px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.price-table th, 
.price-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.price-table th {
    background-color: #fcebd9; /* 薄いオレンジ系 */
    color: #555;
    font-weight: bold;
    width: 30%;
}
.price-table th:first-child { width: 40%; } /* 犬種列を少し広く */

.price-table td {
    background-color: #fff;
    font-weight: 500;
}
/* 数字を等幅にして見やすくする場合 */
.price-table td:not(:first-child) { font-family: "Helvetica Neue", Arial, sans-serif; }

.price-notes {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 0.8rem;
    color: #666;
}
.price-notes li {
    margin-bottom: 5px;
}

/* --- 共通コンテンツボックス --- */
.content-box {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    border-radius: 20px;
}

/* ピンク背景ボックス */
.pink-bg-box {
    background-color: #f7ceca; /* スクショの色味 */
    color: #444;
}
.pink-bg-box h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.pink-bg-box h4 {
    color: #c04040; /* 濃い赤文字 */
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.pink-bg-box dl dt {
    font-weight: bold;
    margin-top: 15px;
}
.pink-bg-box dl dd {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* 枠線ボックス（ご利用にあたって） */
.border-box {
    border: 2px solid #f7ceca;
    background: #fff;
}
.border-box h3 {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.attention-list {
    font-size: 0.95rem;
    margin-bottom: 20px;
    list-style: none; /* 点なし */
}
.attention-list li::before {
    content: "★";
    color: #f7ceca;
    margin-right: 5px;
}
.attention-list strong {
    color: #d00;
}

/* 青いインナーボックス */
.blue-inner-box {
    background-color: #d1edf6; /* 薄い水色 */
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}
.blue-inner-box h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}
.blue-inner-box ul {
    list-style: disc;
    margin-left: 20px;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
    .trimming-top-images {
        flex-direction: column;
    }
    .trimming-top-images img {
        width: 100%;
        height: auto;
    }
    
    .table-scroll {
        overflow-x: auto; /* 横スクロール許可 */
    }
    .price-table {
        min-width: 500px; /* スマホでも表の形を崩さない */
    }
    
    .content-box {
        padding: 20px;
    }
}

/* =========================================
   Estheページ用スタイル 
   ========================================= */

/* --- 3つのコンセプトアイコンエリア --- */
.esthe-concepts {
    display: flex;
    justify-content: center;
    gap: 80px; /* アイコン間の余白をゆったりとる */
    margin-bottom: 100px;
}

.concept-item {
    text-align: center;
    width: 160px;
}

.concept-icon {
    width: 100%;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* ホバー時に少し浮き上がる演出 */
.concept-item:hover .concept-icon {
    transform: translateY(-5px);
}

.concept-icon img {
    width: 100%;
    height: auto;
    /* 本番では花の形状のPNG/SVGを使用するため、border-radiusは削除 */
}

.concept-text {
    font-size: 1.2rem;
    color: #555;
    letter-spacing: 0.1em;
    font-family: serif; /* "癒し"などの雰囲気を出すため明朝系を指定 */
}

/* --- エステメニューリスト (グリッドレイアウト) --- */
.esthe-menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2カラム */
    gap: 40px; /* カード間の隙間 */
    max-width: 1000px;
    margin: 0 auto;
}

.esthe-card {
    display: flex;
    background-color: #fdfdfd; /* 真っ白よりわずかに柔らかい色 */
    border: 1px solid #f0f0f0; /* 境界線を薄く入れる */
    border-radius: 8px; /* 角を少し丸く */
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.esthe-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* ホバー時に影 */
}

.esthe-card-image {
    flex: 0 0 160px; /* 画像幅を固定 */
}
.esthe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.esthe-card-body {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.esthe-title {
    font-size: 1.1rem;
    color: #d48a8a; /* スクショのピンク文字色に近づける */
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.4;
}

.badge-reserv {
    font-size: 0.75rem;
    color: #e66;
    vertical-align: middle;
}

.esthe-price {
    font-size: 1rem;
    color: #888;
    margin-bottom: 12px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.esthe-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7; /* 行間を広げて読みやすく */
}

/* --- レスポンシブ対応 (スマホ) --- */
@media (max-width: 768px) {
    .esthe-concepts {
        gap: 20px;
        margin-bottom: 60px;
    }
    .concept-item {
        width: 30%; /* スマホでは3つ並べるために幅を調整 */
    }
    .concept-text {
        font-size: 0.9rem;
    }

    .esthe-menu-list {
        grid-template-columns: 1fr; /* 1カラムに変更 */
        gap: 20px;
    }

    .esthe-card {
        /* スマホでは画像を上に、テキストを下に */
        flex-direction: column; 
    }
    .esthe-card-image {
        flex: 0 0 200px;
        width: 100%;
    }
    .esthe-card-body {
        padding: 20px;
    }
}

/* =========================================
   Hotelページ用スタイル
   ========================================= */

/* --- レイアウト構造 (画像とテキストのセット) --- */
.hotel-row {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center; /* 上下中央揃え */
}

.hotel-row.align-top {
    align-items: flex-start; /* 上揃え（長文ボックス用） */
}

.hotel-image {
    flex: 0 0 350px; /* 画像幅を350pxに固定 */
}
.hotel-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hotel-content {
    flex: 1; /* 残りの幅を使用 */
}

/* --- 料金表 --- */
.hotel-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}
.hotel-price-table th,
.hotel-price-table td {
    border: 1px solid #e0e0e0;
    padding: 20px;
}
.hotel-price-table th {
    background-color: #f9f9f9;
    font-weight: bold;
    color: #555;
    width: 40%;
    text-align: left;
}

/* --- ホテルの価値（リスト） --- */
.hotel-sub-title {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 5px;
}
.hotel-lead {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
}

.hotel-feature-list dt {
    font-weight: bold;
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 5px;
    margin-top: 20px;
}
.hotel-feature-list dt:first-child { margin-top: 0; }

.hotel-feature-list dd {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    padding-left: 1em;
    margin-bottom: 1em;
}

/* --- ご利用にあたって（ボックス内スタイル） --- */
/* トリミングページのボックススタイル(.content-box .border-box)を継承しつつ調整 */

.hotel-terms-box {
    margin: 0; /* hotel-rowの中に入れるのでマージンリセット */
    width: 100%;
}

/* オレンジの警告ボックス */
.alert-box-orange {
    background-color: #ffccbb; /* 淡いオレンジ */
    color: #d04a4a; /* 濃い赤文字 */
    padding: 20px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    border-radius: 4px;
    line-height: 1.6;
}

/* グレーのインナーボックス */
.gray-inner-box {
    background-color: #e8e8e8;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    margin-top: 10px;
    font-size: 0.9rem;
}
.gray-inner-box h4 {
    margin-bottom: 10px;
    color: #555;
}
.gray-inner-box ul {
    list-style: disc;
    margin-left: 20px;
    color: #666;
}
.gray-inner-box.simple {
    padding: 15px;
}

/* --- レスポンシブ対応 (スマホ) --- */
@media (max-width: 900px) {
    .hotel-row {
        flex-direction: column; /* 縦積みに変更 */
        gap: 30px;
        align-items: flex-start;
    }
    
    .hotel-image {
        width: 100%;
        flex: none;
    }
    .hotel-image img {
        max-width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .hotel-content {
        width: 100%;
    }
}

/* =========================================
   Cakeページ用スタイル
   ========================================= */

.cake-wrapper {
    /* 画面の高さ(100vh)から、ヘッダーとフッターのおおよその高さを引いた分を最低確保 */
    /* これにより、コンテンツが画像1枚でもフッターが浮き上がらず、
       かつ画像が画面の縦方向の真ん中に来ます */
    min-height: calc(100vh - 350px); 
    
    display: flex;
    justify-content: center; /* 左右中央 */
    align-items: center;     /* 上下中央 */
    padding: 40px 20px;
}

.cake-wrapper img {
    max-width: 100%; /* スマホでは画面幅に収まるように */
    width: 600px;    /* PCで大きくなりすぎないように制限（必要に応じて調整） */
    height: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* 少し影をつけて浮遊感を出す */
    border-radius: 50%; /* 画像自体が丸いので、角丸を最大にしておく */
}

/* スマホ対応 */
@media (max-width: 768px) {
    .cake-wrapper {
        min-height: 50vh; /* スマホでは少し高さを抑える */
        padding: 60px 20px;
    }
}

/* =========================================
   Social Serviceページ用スタイル
   ========================================= */

/* --- ヒーローエリア（左右分割） --- */
.social-hero {
    display: flex;
    align-items: stretch; /* 高さを揃える */
    margin-bottom: 80px;
    background-color: #fff;
    /* 画像とテキストをピッタリくっつけるため、gapは指定しません */
}

.social-hero-img {
    flex: 0 0 35%; /* 画像の幅（約35%） */
}

.social-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom; /* 画像下の隙間を消す */
}

.social-hero-text {
    flex: 1; /* 残りの幅すべて */
    background-image: url(img/ss-bg.jpg);
    background-repeat: no-repeat;
    
    /* ▼▼▼ ここを追加してください ▼▼▼ */
    background-size: cover;      /* 背景画像をエリアいっぱいに広げる */
    background-position: center; /* 画像の中心を基準に表示する */
    /* ▲▲▲ ここまで ▲▲▲ */

    /* background: linear-gradient... （元のコードのコメントアウトはそのまま） */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    color: #cc7a55;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", serif;
}

.social-hero-text h2 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.social-hero-text p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: auto; /* 右寄せ気味にする場合 */
    margin-right: 10%;
}

/* --- 本文エリア --- */
.social-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.social-content p {
    color: #004466; /* 濃いネイビー（スクショの色を再現） */
    font-weight: 500;
    line-height: 2.2; /* 行間を広めに */
    font-size: 1.05rem;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
    .social-hero {
        flex-direction: column; /* 縦積みに */
    }
    .social-hero-img {
        flex: none;
        width: 100%;
        height: 250px; /* スマホでの画像の高さ */
    }
    .social-hero-text {
        padding: 40px 20px;
    }
    .social-hero-text h2 {
        font-size: 1.1rem;
    }
    .social-hero-text p {
        margin-right: 0;
        font-size: 1rem;
    }
    .social-content p {
        text-align: left; /* スマホでは左寄せの方が読みやすい場合が多い */
        font-size: 0.95rem;
    }
}

/* =========================================
   Companyページ用スタイル (修正版)
   ========================================= */

.company-detail-list {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--primary-text); /* サイト共通の色（#555）に戻しました */
}

.company-detail-list dl {
    display: flex;
    margin-bottom: 50px;
    line-height: 1.8;
    border-bottom: 1px solid #eee; /* 薄い線を入れて見やすくするのもおすすめです（不要なら削除可） */
    padding-bottom: 20px;
}
.company-detail-list dl:last-child { border-bottom: none; }

.company-detail-list dt {
    width: 30%;
    font-weight: bold; /* タイトル側を太く */
    padding-right: 20px;
}

.company-detail-list dd {
    width: 70%;
    font-weight: normal; /* 情報側を普通に */
}

/* --- レスポンシブ対応 (スマホ) --- */
@media (max-width: 768px) {
    .company-detail-list dl {
        flex-direction: column;
        margin-bottom: 30px;
        border-bottom: none; /* スマホでは線なしでスッキリさせる */
    }
    .company-detail-list dt {
        width: 100%;
        margin-bottom: 5px;
        color: var(--accent-pink); /* スマホでは項目名をピンクにして区切りを分かりやすくする等の工夫も可 */
    }
    .company-detail-list dd {
        width: 100%;
        padding-left: 0;
    }
}

/* =========================================
   Contactページ用スタイル
   ========================================= */

/* --- 電話予約エリア（強調表示） --- */
.contact-tel-area {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background-color: #fffaf5; /* 薄いオレンジ背景で目立たせる */
    border-radius: 10px;
}

.contact-tel-area .label {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 5px;
}

.contact-tel-area .tel-number {
    font-size: 3.5rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    color: #ff8888; /* サイトのキーカラー（ピンク/サーモン系） */
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-tel-area .note {
    font-size: 0.9rem;
    color: #555;
    font-weight: bold;
}


/* --- 地図とメールのレイアウト --- */
.contact-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* 上揃え */
}

/* 左：地図 */
.contact-map {
    flex: 1; /* 幅50% */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.contact-map iframe {
    display: block; /* iframeの下の隙間消し */
}


/* 右：メール案内ボックス */
.contact-email-box {
    flex: 1; /* 幅50% */
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.contact-email-box h3 {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffccbb;
    padding-bottom: 10px;
    display: inline-block;
}

.email-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* メールアドレス表示部 */
.email-address-container {
    background: #fff;
    padding: 20px;
    text-align: center;
    border: 2px dashed #ddd;
    border-radius: 4px;
    margin-bottom: 30px;
}

.email-link {
    font-size: 1.5rem;
    color: #004466; /* リンク色（会社概要などで使ったネイビー） */
    font-weight: bold;
    text-decoration: underline;
    word-break: break-all; /* 長いメアドの折り返し */
}
.email-link:hover {
    text-decoration: none;
    opacity: 0.7;
}
.icon-mail {
    margin-right: 5px;
    font-size: 1.2em;
}

.email-notes {
    font-size: 0.85rem;
    color: #888;
}
.email-notes li {
    margin-bottom: 8px;
    padding-left: 1em;
    text-indent: -1em; /* ※印のぶら下げインデント */
}


/* --- スマホ対応 --- */
@media (max-width: 768px) {
    
    .contact-tel-area .tel-number {
        font-size: 2.2rem; /* スマホでは少し小さく */
    }

    .contact-layout {
        flex-direction: column; /* 縦積みに */
        gap: 40px;
    }
    
    .contact-map, 
    .contact-email-box {
        width: 100%;
        flex: none;
    }

    .contact-map iframe {
        height: 300px; /* スマホでの地図の高さ */
    }

    .email-link {
        font-size: 1.2rem; /* スマホでのメアド文字サイズ */
    }
    
}

/* =========================================
   headerスタイル調整
   ========================================= */

/* --- スマホ対応 --- */
@media (max-width: 768px) {
    
    .header-top .header-info,
    main .container {
        padding-left: 24px;   /* 好みに合わせて調整（例: 5vw なども可） */
        padding-right: 24px;
    }
    
 /* ▼▼▼ 追加・修正箇所 ▼▼▼ */

    /* 1. PC用のヘッダー情報を隠す */
    .header-info.pc-only {
        display: none;
    }

    /* 2. スマホメニュー内の情報を表示して整える */
    .sp-contact-info {
        display: block; /* 表示させる */
        text-align: center;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #eee; /* メニューとの境界線 */
        color: #666;
    }

    /* 以下、デザイン調整 */
    .sp-contact-info .tel-box {
        display: block; /* 幅いっぱいのボタンにする */
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px;
        text-align: center;
        padding: 10px;
    }

    .sp-contact-info .address,
    .sp-contact-info .hours {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .sp-contact-info .social-icons {
        justify-content: center; /* 中央寄せ */
        margin-top: 15px;
        gap: 20px; /* アイコンの間隔を少し広げる */
    }
    
    .sp-contact-info .social-icons img {
        width: 30px; /* アイコンを少し大きくして押しやすく */
        height: 30px;
    }
}