/* ベーススタイル */
body {
    font-family: 'Kosugi Maru', sans-serif;
    color: #343a40;
    line-height: 1.8;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #343a40;
}

/* ヘッダー - ヒーローセクション */
.hero-section {
    position: relative;
    height: 40vh;
    background: url('../img/image-top.jpg') no-repeat center center/cover;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 1px rgba(0,0,0,1);
}

.hero-section .lead {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

/* 天気予報 iframe を背景上に重ねる */
.weather-frame {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 600px;
    height: 48px; /* 1行分の高さに調整 */
    z-index: 2;
}

.weather-frame iframe {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: none;
}


/* プライマリーボタンの色を温かみのあるオレンジに */
.btn-primary {
    background-color: #e67e22;
    border-color: #d35400;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 126, 34, 0.3);
}

.btn-outline-primary {
    border-color: #e67e22;
    color: #e67e22;
}

.btn-outline-primary:hover {
    background-color: #e67e22;
    color: white;
}

/* ナビゲーションバー */
.navbar {
    z-index: 1030;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #555 !important;
    font-weight: 600;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #e67e22 !important;
}

/* セクションタイトル */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    padding-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #e67e22;
    border-radius: 2px;
}

/* 緊急情報・天気予報バナー */
.info-banners {
    background-color: #6c757d !important;
}

/* iframe横並び用コンテナ */
.iframe-container {
    display: flex;
    flex-wrap: wrap; /* スマホで折り返し可能に */
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
}

.iframe-box {
    flex: 1 1 300px; /* 最小300px、最大で均等に広がる */
    max-width: 48%;
    height: 48px;
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

/* スマホ対応：縦並びにする */
@media (max-width: 576px) {
    .iframe-box {
        max-width: 100%;
    }
}


  .heart-icon {
    color: red;
  }