/* ================================
   変数定義
   ================================ */
:root {
    --primary-color: #1B365D;
    /* メインカラー：深みのある紺色 */
    --accent1-color: #4A6B8A;
    /* アクセント1：落ち着いた青灰色 */
    --accent2-color: #2C4B6B;
    /* アクセント2：やや明るい紺色 */
    --accent3-color: #0F1F2E;
    /* アクセント3：濃い紺色 */
    --accent4-color: #F5F7FA;
    /* アクセント4：明るいグレー */
    --accent5-color: #E8ECF2;
    /* アクセント5：やや明るいグレー */
    --accent6-color: #D4DCE6;
    /* アクセント6：中間のグレー */

    /* 背景・テキスト */
    --secondary-color: #FFFFFF;
    /* 全体の背景色：白 */
    --text-main-color: #1B365D;
    /* 本文など主要テキスト：メインカラーと同じ */
    --text-sub-color: #4A6B8A;
    /* サブ的に使うテキスト：アクセント1と同じ */
    
    /* 新しく追加した色変数 */
    --success-color: #28a745;
    --info-color: #007bff;
    --danger-color: #dc3545;
}

/* ================================
   基本スタイル（デスクトップ優先）
   ================================ */

/* Body */
body {
    background-color: var(--secondary-color);
    color: var(--text-main-color);
    font-family: "BIZ UDMincho", serif;
    line-height: 1.8;
    scroll-behavior: smooth;
}

/* Header Topbar */
.topbar {
    background-color: var(--primary-color);
    padding: 8px 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.topbar .social-icons a {
    margin-left: 15px;
    color: var(--accent4-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.topbar .social-icons a:hover {
    color: #FFFFFF;
}

/* ================================
   ナビゲーション（完全再構築）
   ================================ */

/* ナビゲーションバー基本設定 */
nav.navbar {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--accent6-color);
    padding: 15px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

/* ロゴ */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 0.8;
}

/* PC用メニュー（デフォルト表示） */
.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.navbar-menu .menu-item {
    border-left: 1.2px solid rgba(0, 0, 0, 0.3);
}

.navbar-menu .menu-item:first-child {
    border-left: none;
}

.navbar-menu .menu-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-main-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-menu .menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent2-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-menu .menu-link:hover {
    color: var(--accent2-color);
}

.navbar-menu .menu-link:hover::after {
    width: 80%;
}

/* ハンバーガーボタン（デフォルト非表示） */
.hamburger-btn {
    display: none;
    background: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background-color: rgba(27, 54, 93, 0.1);
}

.hamburger-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hamburger-icon {
    display: block;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-icon span {
    background-color: white;
}

.hamburger-icon span:nth-child(1) {
    top: 0;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.hamburger-btn.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger-btn.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* スライドメニューオーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* スライドメニュー本体 */
.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--secondary-color);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1040;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.slide-menu.show {
    right: 0 !important;
}

/* スライドメニュー内容 */
.slide-menu-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--accent5-color);
}

.slide-menu-header img {
    height: 60px;
    width: auto;
}

.slide-menu-nav {
    flex: 1;
    padding: 20px 0;
}

.slide-menu-nav .menu-item {
    border-bottom: 1px solid var(--accent5-color);
}

.slide-menu-nav .menu-item:last-child {
    border-bottom: none;
}

.slide-menu-nav .menu-link {
    display: block;
    padding: 18px 30px;
    color: var(--text-main-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.slide-menu-nav .menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent4-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.slide-menu-nav .menu-link:hover {
    color: var(--primary-color);
    padding-left: 40px;
}

.slide-menu-nav .menu-link:hover::before {
    width: 100%;
}

/* スライドメニューお問い合わせボタン */
.slide-menu-contact {
    padding: 30px;
    border-top: 1px solid var(--accent5-color);
}

.slide-contact-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    margin-bottom: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-contact-btn:last-of-type {
    margin-bottom: 20px;
}

.slide-contact-btn.phone {
    background-color: var(--success-color);
    color: white;
}

.slide-contact-btn.phone:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.slide-contact-btn.email {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.slide-contact-btn.email:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* 著作表示 */
.slide-menu-footer {
    padding: 20px 30px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-sub-color);
    border-top: 1px solid var(--accent5-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    background-color: rgba(27, 54, 93, 0.8);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hero-title ruby {
    font-size: 2.8rem;
}

.hero-title rt {
    font-size: 1rem;
    color: var(--accent4-color);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 5px;
    line-height: 1.8;
}

.hero-contact-buttons {
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    min-width: 220px;
    backdrop-filter: blur(5px);
}

.hero-contact-btn i {
    font-size: 1.2rem;
}

.hero-contact-btn:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.hero-contact-btn.phone-btn:hover {
    background-color: var(--success-color);
}

.hero-contact-btn.email-btn:hover {
    background-color: var(--info-color);
}

/* カードセクション */
.card-group-custom {
    margin-top: 50px;
    margin-bottom: 50px;
}

.card {
    margin-bottom: 30px;
    border: 1px solid var(--accent6-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-body .btn {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.card-body .btn:hover {
    background-color: var(--accent2-color);
    border-color: var(--accent2-color);
}

/* 物件紹介セクション */
.property-image-container {
    position: relative;
}

.property-type {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    font-size: 1rem;
    font-weight: 500;
}

/* 特徴紹介セクション */
.feature-card {
    background-color: var(--accent4-color);
    padding: 30px 20px;
    border-radius: 8px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--accent6-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-icon i {
    color: var(--accent1-color);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--text-main-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-sub-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* 会社紹介セクション */
.company-section .row,
.greeting-section .row {
    align-items: stretch;
}

.company-section .row {
    min-height: 400px;
}

.company-section .col-md-6 {
    padding: 1rem;
}

.company-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.company-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

table {
    margin-bottom: 0 !important;
}

.company-info-table {
    width: 100%;
    height: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

.company-info-table th,
.company-info-table td {
    padding: 1rem;
    border: 1px solid var(--accent6-color);
    vertical-align: middle;
}

.company-info-table th {
    width: 30%;
    background-color: var(--accent6-color);
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
}

.company-info-table td {
    width: 70%;
    background-color: #fff;
}

.company-info-table td a {
    color: var(--primary-color);
    text-decoration: none;
}

.company-info-table td a:hover {
    color: var(--accent2-color);
    text-decoration: underline;
}

/* 代表挨拶セクション */
.greeting-section img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

/* お問い合わせセクション */
.contact-section .row {
    align-items: center;
}

.contact-image-container {
    width: 85%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.contact-image-container img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.contact-content {
    padding: 0 2rem;
}

.contact-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-text {
    color: var(--text-sub-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.contact-buttons .btn {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.contact-buttons .btn i {
    font-size: 1.5rem;
}

.contact-buttons .btn span {
    font-size: 1rem;
    white-space: nowrap;
}

.contact-buttons .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-buttons .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* お問い合わせフォーム */
.contact-form-section {
    background-color: var(--accent4-color);
    padding: 50px 0;
    margin: 0 -15px;
    border-radius: 8px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-main-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--accent6-color);
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(27, 54, 93, 0.25);
    outline: none;
}

.contact-form .form-control.is-invalid {
    border-color: var(--danger-color);
}

.required {
    color: var(--danger-color);
    font-weight: bold;
}

.error-message {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* プライバシーポリシー専用スタイル */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.privacy-section{
        max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}

.privacy-intro {
    background-color: var(--accent4-color);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.privacy-section-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--accent6-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.privacy-section-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent6-color);
    padding-bottom: 10px;
}

.privacy-list {
    list-style-type: none;
    padding-left: 0;
}

.privacy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.privacy-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info-box {
    background-color: var(--accent4-color);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    margin-top: 15px;
}

.contact-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.privacy-date {
    text-align: right;
    font-style: italic;
    color: var(--text-sub-color);
}

/* Footer */
.footer-topbar {
    background-color: var(--primary-color);
    padding: 15px;
    text-align: center;
    color: var(--accent4-color);
}

.footer-topbar a {
    color: var(--accent4-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-topbar a:hover {
    color: #FFFFFF;
}

.footer-content {
    padding: 50px 0;
    background-color: var(--accent4-color);
}

.footer-content h5 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-content .access-info p {
    margin-bottom: 0.5rem;
    color: var(--text-sub-color);
    line-height: 1.6;
}

.footer-content .map {
    min-height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-content .col-md-6 ul li {
    margin-bottom: 0.5rem;
}

.footer-content .col-md-6 ul li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-main-color);
    text-decoration: none;
    border: 1px solid var(--accent6-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-content .col-md-6 ul li a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.footer-copy {
    background-color: var(--accent3-color);
    padding: 15px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent4-color);
}

/* アニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* セクション区切り */
.section-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            var(--accent6-color) 20%,
            var(--accent6-color) 80%,
            transparent 100%);
    margin: 60px 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* スクロール時のナビゲーションスタイル */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* フォーカスの改善 */
.focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* アクセシビリティ改善 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================================
   レスポンシブナビゲーション
   ================================ */

/* タブレット以下（991.98px以下）でハンバーガーメニューに切り替え */
@media (max-width: 991.98px) {
    /* PC用メニューを非表示 */
    .navbar-menu {
        display: none !important;
    }

    /* ハンバーガーボタンを表示 */
    .hamburger-btn {
        display: block !important;
    }

    /* オーバーレイをアクティブにする */
    .menu-overlay {
        display: block !important;
    }

    /* スライドメニューをアクティブにする */
    .slide-menu {
        display: flex !important;
    }

    .navbar .container {
        padding: 0 20px;
    }
}

/* 大きなタブレット（992px以上、1199.98px以下） */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-menu .menu-link {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .navbar-menu .menu-item {
        border-left: 1px solid rgba(0, 0, 0, 0.3);
    }
}

/* スマホ（767.98px以下） */
@media (max-width: 767.98px) {
    /* Topbar非表示 */
    .topbar {
        display: none;
    }
    
    /* ナビゲーション調整 */
    nav.navbar {
        padding: 10px 0;
    }

    .navbar .container {
        padding: 0 15px;
    }
    
    .navbar-brand img {
        height: 40px;
    }

    /* スライドメニュー幅調整 */
    .slide-menu {
        width: 280px;
    }

    .slide-menu-header {
        padding: 25px;
    }

    .slide-menu-header img {
        height: 50px;
    }

    .slide-menu-nav .menu-link {
        padding: 16px 25px;
        font-size: 1rem;
    }

    .slide-menu-contact {
        padding: 25px;
    }

    .slide-menu-footer {
        padding: 15px 25px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero-section {
        height: 70vh;
    }

    .hero-content {
        width: 90%;
        max-width: 360px;
        padding: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-contact-buttons {
        margin-top: 2rem;
        gap: 10px;
    }

    .hero-contact-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-width: 160px;
    }

    /* 物件カード */
    .property-type {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    /* 特徴セクション */
    .feature-card {
        margin-bottom: 20px;
        padding: 25px 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }

    /* 会社情報 */
    .company-section .row {
        min-height: auto;
    }
    
    .company-section .col-md-6 {
        padding: 0.5rem;
        margin-bottom: 20px;
    }

    .company-info-table th,
    .company-info-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .company-info-table th {
        width: 35%;
    }
    
    .company-info-table td {
        width: 65%;
    }

    /* 代表挨拶 */
    .greeting-section .col-md-6 {
        margin-bottom: 20px;
    }
    
    .greeting-section p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    /* お問い合わせ */
    .contact-content {
        padding: 1rem;
        text-align: center;
        margin-top: 20px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-text {
        font-size: 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .contact-buttons .btn {
        padding: 1rem;
        font-size: 1rem;
    }

    /* お問い合わせフォーム */
    .contact-form-section {
        margin: 0;
        padding: 30px 0;
    }
    
    .contact-form {
        padding: 20px;
    }

    /* プライバシーポリシー */
    .privacy-content {
        padding: 10px;
    }

    .privacy-intro {
        padding: 20px;
    }

    .privacy-section-item {
        padding: 20px;
    }

    /* Footer */
    .footer-content {
        padding: 30px 0;
    }

    .footer-content .col-md-6 {
        margin-bottom: 30px;
    }

    .footer-content .map {
        margin-top: 20px;
        min-height: 150px;
    }

    /* セクション区切り */
    .section-divider {
        margin: 40px 0;
    }
}

/* Printスタイル */
@media print {
    .topbar,
    .navbar,
    .hero-contact-buttons,
    .contact-buttons,
    .contact-form-section,
    .footer-topbar,
    .menu-overlay,
    .slide-menu {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        height: auto;
        page-break-after: avoid;
    }
    
    .section-divider {
        page-break-inside: avoid;
    }
}