html {
    scroll-behavior: smooth;
}


/* 全体の基本スタイル */
body {
    font-family: 'Hiragino Kaku Gothic Pro', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* ヘッダー */
header {
    background-color: #007acc;
    padding: 10px 20px; /* ヘッダー全体に余白 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: white;
}

/* キャッチフレーズのスタイルを修正 */
.catchphrase {
    font-family: 'Noto Serif JP', serif; /* より上品なフォントに変更 */
    font-size: 2.4rem; /* サイズを調整 */
    font-weight: 500; /* やや細めに */
    color: #333;
    line-height: 1.6;
    text-align: center;
    padding: 120px 20px; /* 上下の余白を大きく */
    margin: 0;
    position: relative;
    letter-spacing: 0.05em; /* 文字間隔を少し広げる */
    max-width: 800px; /* 最大幅を設定 */
    margin: 0 auto; /* 中央揃え */
 }
 
 .catchphrase {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 2.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    text-align: center;
    padding: 120px 20px;
    margin: 0;
    position: relative;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin: 0 auto;
}

/* 装飾的な要素を追加 */
.catchphrase::before,
.catchphrase::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #08843c;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.catchphrase::before {
    top: 80px;
}

.catchphrase::after {
    bottom: 80px;
}

/* 引用符のような装飾を追加 */
.catchphrase span {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.catchphrase span::before,
.catchphrase span::after {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    border: 2px solid #08843c;
    opacity: 0.3;
}

.catchphrase span::before {
    top: -15px;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.catchphrase span::after {
    bottom: -15px;
    right: 0;
    border-left: none;
    border-top: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .catchphrase {
        font-size: 1.8rem;
        padding: 80px 20px;
    }
    
    .catchphrase::before {
        top: 50px;
    }
    
    .catchphrase::after {
        bottom: 50px;
    }
    
    .catchphrase span {
        padding: 0 40px;
    }
}

nav {
    display: flex;
    gap: 10px;
}

/* ヘッダーのナビゲーション */
nav a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    background-color: #08843c; /* 基本の青色 */
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover {
    background-color: #005f99; /* ホバー時の色 */
    transform: scale(1.1); /* 少し拡大 */
}

nav a:active {
    background-color: #004f80; /* クリック時の色 */
}


/* ヒーローセクション */
.hero {
    background: url('https://img.travel.rakuten.co.jp/share/image_up/6992/LARGE/d9e08e44ac477ace76cb6d3e040eacb20498ad5c.47.9.26.3.jpg') no-repeat center center;
    background-size: cover;
    height: 730px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 3em;
    font-weight: bold;
}

/* セクション */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    color: #007acc;
    border-bottom: 2px solid #08843c;
    display: inline-block;
    margin-bottom: 20px;
}

/* カードコンテナ（2列レイアウト） */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列 */
    gap: 20px; /* カード間の余白 */
    justify-items: center; /* 中央揃え */
}

/* 個別カード */
.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%; /* カード幅を100%に設定（親要素内） */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column; /* 画像と内容を縦に並べる */
}

/* 画像のアスペクト比を16:9に設定するためのラッパー */
.card .image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9の比率 (9 / 16 = 0.5625 -> 56.25%) */
    background-color: #e0e0e0; /* プレースホルダカラー */
    overflow: hidden; /* 画像が親要素をはみ出さないようにする */
}

/* 実際の画像 */
.card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* アスペクト比を保ちつつ画像をカバー */
}

/* カード内容 */
.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #007acc;
}

.card-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
}

.card-content a {
    display: inline-block;
    background-color: #08843c;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.card-content a:hover {
    background-color: #08843c;
}

.catch-image img {
    width: 100%; /* ページ幅いっぱいに表示 */
    height: auto; /* 画像の縦横比を維持 */
    display: block; /* 不要な余白を排除 */
    margin-bottom: 20px; /* 画像とセクションタイトルの間に余白 */
}

/* フッター */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
}

/* セクション全体の設定 */
#hotel-attractions {
    margin-top: 40px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

/* カラムの配置（左と右） */
.row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* 個別のカラム（左と右） */
.column {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 48%; /* 2カラムのため、幅は48% */
    padding: 20px;
    text-align: center;
}

/* カードの画像 */
.card-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* タイトルとサブタイトル */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
    text-transform: uppercase;
}

.card-subtitle {
    display: block;
    background-color: #dedede;
    padding: 5px 10px;
    background-color: #08843c;
    border-left: 4px solid ;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* リストのスタイル */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    text-align: left;
    line-height: 1.8;
}

.card-list li {
    margin: 10px 0;
}

.card-list i {
    color: #007acc;
    margin-right: 8px;
}

/* ボタンのスタイル */
.card-btn .btn {
    background-color: #08843c;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.card-btn .btn:hover {
    background-color: #08843c;

}

.recommended-plans {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.recommended-plans h3 {
    font-size: 1.8em;
    color: #007acc;
    margin-bottom: 20px;
}

.plans {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.plan {
    width: 30%;
    text-align: center;
}

.plan img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.plan a {
    display: block;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    color: #007acc;
}

.plan a:hover {
    text-decoration: underline;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 80vh; /* 画面の高さの80%に設定 */
    overflow: hidden;
    margin-bottom: 20px; /* スライドショーの下に余白を追加 */
}

.hero-slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 24s infinite;
}

/* テキストオーバーレイを追加（オプション） */
.hero-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0)); /* 上部に薄い影を追加 */
}

/* スライド6枚対応：1枚あたり4秒 × 6枚 = 合計24秒 */
.hero-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .slide:nth-child(2) { animation-delay: 4s; }
.hero-slideshow .slide:nth-child(3) { animation-delay: 8s; }
.hero-slideshow .slide:nth-child(4) { animation-delay: 12s; }
.hero-slideshow .slide:nth-child(5) { animation-delay: 16s; }
.hero-slideshow .slide:nth-child(6) { animation-delay: 20s; }

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1.02); /* スケールアニメーションを追加 */
    }
    4% {
        opacity: 1;
    }
    16.66% {
        opacity: 1;
        transform: scale(1); /* ゆっくりズームアウト */
    }
    20.66% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ナビゲーションメニューの位置調整 */
.main-nav {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: -20px; /* スライドショーとの間隔を詰める */
    position: relative;
    z-index: 10; /* スライドショーより前面に表示 */
}

.nav-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* 追加：画面幅が狭い時に折り返し */
}

.nav-list li {
    position: relative;
    margin: 5px; /* 追加：余白調整 */
}

.nav-list a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #08843c;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #08843c;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list a:hover {
    color: #08843c;
}

.nav-list a:hover::after {
    transform: scaleX(1);
}

.map-section {
    text-align: center;
    margin: 20px auto;
    padding: 20px 0;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    max-width: 1200px;
}

.map-section iframe {
    max-width: 100%;
    width: 950px;
    height: 450px;
    border: none;
}

.box-011 {
    margin-top: 20px;
    padding: 20px;
    text-align: left;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333; /* テキストの色を修正 */
    display: inline-block;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 80%; /* 幅を調整 */
    max-width: 950px;
}

.box-011 h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
    color: #08843c; /* タイトルの色を基調色に変更 */
    font-weight: bold;
}

.box-011 p {
    margin: 0;
    color: #333; /* テキストの色を指定 */
}

footer {
    background-color: #7aa594;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
    margin-top: 20px; /* フッターの上部に余白を追加 */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .nav-list a {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    .map-section iframe {
        width: 100%; /* モバイル時は画面幅に合わせる */
    }
}

.columns-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.column {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 45%;
    padding: 20px;
    text-align: center;
}

.column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.column-title {
    font-size: 1.3rem;
    margin: 10px 10px;
    line-height: 1.6;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.column-highlight {
    display: block;
    padding: 5px 10px;
    border-left: 4px solid #007acc;
    font-weight: bold;
    font-size: 1.2rem;
}

.business-column .column-highlight {
    background: #dedede;
}

.family-column .column-highlight {
    background: #e8ffcb;
}

.column-points {
    list-style: none;
    padding: 0;
    margin: 20px 10px;
    font-size: 1rem;
    text-align: left;
    line-height: 1.8;
}

.column-points li i {
    margin-right: 8px;
}

.business-column .column-points li i {
    color: #007acc;
}

.family-column .column-points li i {
    color: #007a33;
}

.column-action {
    margin-top: 20px;
}

.column-action a {
    background-color: #007acc;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.group-hotels {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.group-hotels h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.group-hotels ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style-type: none;
    padding: 0;
}

.group-hotels ul li {
    flex: 0 1 300px;
}

.group-hotels ul li a {
    display: block;
    transition: transform 0.3s ease;
}

.group-hotels ul li a:hover {
    transform: scale(1.05);
}

.group-hotels ul li a img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}