* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

.gc-page-content {
    --primary-color: #d2691e;
    --secondary-color: #8b4513;
    --accent-color: #ff6b35;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #faf8f5;
    --border-color: #e0d5c7;
	font-size: 14px;
}

.clear {
	clear: both;
}
        body {
            font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
            line-height: 1.4;
            color: var(--text-dark);
            background: #fff;
        }

/* ヒーローセクション */
        .hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background-image: url('images/bg_gc.jpg');
			background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
			background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

		.hero::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: linear-gradient(to bottom, rgba(139,69,19,0) 50%, rgba(67,25,19,0.6) 100%);
			background-size: cover;
			opacity: 0.5;
		}

        .hero-content {
            position: relative;
            text-align: center;
            color: white;
            z-index: 1;
            padding: 2rem;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            margin-bottom: 2rem;
        }

        .hero-cta {
            display: inline-flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
			align-items: center;
			justify-content: center;
			
            font-size: 1.2rem;
			vertical-align: middle;
        }

        .btn-primary {
            background: var(--accent-color);
            color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
			 flex-direction: column;
			
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary-color);
        }

/* コンテナ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }




/* キャンペーンバナー */
.campaign-banner {
    margin: 3rem auto;
    max-width: 1200px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.campaign-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.campaign-banner-image {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #ff6b35 0%, #d2691e 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
}

/* モーダル */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-header {
    background: linear-gradient(135deg, #ff6b35 0%, #d2691e 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.5rem;
}

.modal-header p {
    opacity: 0.95;
    font-size: 1rem;
}

.modal-body {
    padding: 2rem;
}

.coupon-code-box {
    background: var(--bg-light);
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.coupon-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.coupon-code {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin: 0.5rem 0;
}

.coupon-discount {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.how-to-use {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.how-to-use h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-list {
    list-style: none;
    counter-reset: step-counter;
}

.step-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

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

.modal-btn {
    flex: 1;
    min-width: 200px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bolder;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.modal-btn-primary {
    background: var(--accent-color);
    color: white;
}

.modal-btn-primary:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.modal-btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.modal-btn-secondary:hover {
    background: var(--bg-light);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .modal-buttons {
        flex-direction: column;
    }

    .modal-btn {
        min-width: 100%;
    }

    .coupon-code {
        font-size: 1.5rem;
    }
}






/* Black Friday */
.bf_special {
	display: block;
	max-width: 50%; 
	background-color: #fff5cc;
    border: 5px dashed #bd9700;
    border-radius: 6px;
    margin: 0 auto 30px auto;
    padding: 15px;
	text-align: center;
}
.bf_special span {
	font-size: 1.4em;
}



        /* セクション */
        section {
            padding: 5rem 0;
        }

        section:nth-child(even) {
            background: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 1.4rem;
            color: var(--text-light);
            margin-top: 1.5rem;
        }

/* 基本情報グリッド */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .info-card {
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

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

        .info-card h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
			text-align: center;
        }

		.info-card p {
			text-align: left;
			color: var(--text-light);
			line-height: 1.8;
		}

		.info-card img {
			width: 100%;
			margin: 6px 0;
		}

        .icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        /* 地図スタイル */
        .map-container {
            margin-top: 3rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            background: var(--bg-light);
            padding: 2rem;
            
        }

        .map-placeholder {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            color: var(--text-light);
			margin-bottom: 3rem;
        }

		.map-container > h3 {
			text-align: center;
			color: var(--secondary-color);
			margin-bottom: 1rem;
		}

/* クーポンコード */
 .coupon-container {
    width: 300px; 
    text-align: center;
    margin: 15px auto 30px auto;
  }

.coupon-container p {
	font-size: 0.8em;
	font-weight: bolder;
}

  .coupon-button {
    background-color: #e63946;
    color: yellow;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    transition: background-color 0.3s ease;
  }

  .coupon-button:hover {
    background-color: #d62828;
  }

  .coupon-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    background-color: #f6f6f6;
    border: 3px dashed #999;
    border-radius: 6px;
    margin-top: 10px;
    padding: 0 15px;
    transition: all 0.4s ease;
  }

  .coupon-content strong {
	font-size: 1.6em;
}

  .coupon-content.open {
    max-height: 400px; 
    opacity: 1;
    padding: 10px 15px;
  }






/* ツアーセクション */

        .tour-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .tour-tab {
            padding: 1rem 2rem;
            border: 2px solid var(--border-color);
            background: white;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            color: var(--text-dark);
        }

        .tour-tab:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .tour-tab.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .tour-content {
            display: none;
        }

		.tour-grid-wrapper {
			position: relative;
			margin: 0 -2rem; 
			padding: 0 2rem; 
		}

	.tour-scroll-wrapper {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.tour-scroll-wrapper::before,
.tour-scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px; 
  height: 100%;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0; 
}

.tour-scroll-wrapper::before { left: 0; background: linear-gradient(to right, white 0%, transparent 100%); }
.tour-scroll-wrapper::after { right: 0; background: linear-gradient(to left, white 0%, transparent 100%); }


.tour-content.active {
     display: block;
}

.tour-grid {
    display: flex; 
	gap: 1.5rem;
	overflow-x: auto;
	scrollbar-gutter: stable;
	scroll-behavior: smooth;
	padding-bottom: 1rem;
	scrollbar-width: none;
	scrollbar-color: var(--primary-color) var(--bg-light);
}

/* Webkit（Chrome, Safari）用のスクロールバースタイル */
.tour-grid::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

	.tour-grid::-webkit-scrollbar-track {
		background: var(--bg-light);
		border-radius: 10px;
	}

	.tour-grid::-webkit-scrollbar-thumb {
		background: var(--primary-color);
		border-radius: 10px;
	}

	.tour-grid::-webkit-scrollbar-thumb:hover {
		background: var(--secondary-color);
	}

/* ▼ グラデーション（スマホ時のみ有効） */
.scroll-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  transition: opacity 0.3s ease;
    display: none;
}

.scroll-gradient.left {
  left: 0;
  background: linear-gradient(to right, rgba(250,248,245,1), rgba(250,248,245,0));
  opacity: var(--show-left, 0);
}
tour-scroll-wrapper::before
.scroll-gradient.right {
  right: 0;
  background: linear-gradient(to left, rgba(250,248,245,1), rgba(250,248,245,0));
  opacity: var(--show-right, 1);
}

/* ▼ 矢印ボタン（PC時のみ表示） */
.scroll-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  font-size: 2rem;
  padding: 0rem 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.45);
  z-index: 10;
  transition: background 0.3s;
}

.scroll-btn:hover {
  background: rgba(255,255,255,1);
}

.scroll-btn.left { left: 10px; }
.scroll-btn.right { right: 10px; }


        .tour-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
			min-width: 320px; 
			max-width: 400px;
			flex-shrink: 0;
        }

        .tour-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .tour-image {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .tour-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .tour-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--bg-light);
            color: var(--secondary-color);
            border-radius: 20px;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
			letter-spacing: normal;
        }
		.tour-tag-red {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--bg-light);
            color: crimson;
            border-radius: 20px;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
			letter-spacing: normal;
        }

        .tour-title {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
            line-height: 1.4;
            font-weight: 600;
			letter-spacing: normal;
        }

        .tour-highlights {
            list-style: none;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .tour-highlights li {
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .tour-highlights li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
			font-size: 1.4rem;
        }


.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px; 
}

.tour-category-tag {
  font-size: 0.95rem;
  padding: 0.2rem 0.5rem;
  background: #faf8f5;
  border: 1px solid gray;
  color: #454545;
  border-radius: 0.3rem;
}


        .tour-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
        }

        .tour-price {
            font-size: 2rem;
            color: var(--primary-color);
            font-weight: 700;
			line-height: 1.1em;
        }

        .tour-price-from {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 400;
        }

        .tour-btn {
            padding: 1rem 2rem;
           background: var(--accent-color);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.2rem;
			letter-spacing: 0.1rem;
        }

        .tour-btn:hover {
            background: var(--secondary-color);
            transform: scale(1.05);
        }

/* 観光地紹介 */
        .destination-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .destination-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .destination-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #d2691e 0%, #ff6b35 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
        }

        .destination-body {
            padding: 2rem;
        }

        .destination-title {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .destination-description {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
.destination-link-text {
	text-align: right;
	font-size: 0.85em;
}

        .climate-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            font-size: 0.9rem;
        }

        .climate-table th,
        .climate-table td {
            padding: 0.5rem;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .climate-table th {
            background: var(--bg-light);
            font-weight: 600;
            color: var(--secondary-color);
        }

/* 豆知識セクション */
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .tip-card {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            border-left: 4px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .tip-title {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .tip-content {
            color: var(--text-light);
            line-height: 1.8;
        }

.tip-card img {
	width: 60%;
	display: block;
	margin: 0 auto;
	
}

        /* フッターCTA */
        .footer-cta {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            text-align: center;
            padding: 5rem 2rem;
        }

        .footer-cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        .footer-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }


@media (max-width: 768px) {
            section {
                padding: 3rem 0;
            }

.hero {
    height: 60vh;
    min-height: 300px; 
    background-attachment: scroll; 
    background-position: center 30%; 
}
            .destination-grid,
            .info-grid {
                grid-template-columns: 1fr;
            }
			.tour-grid-wrapper {
				margin: 0 -1rem;
				padding: 0 1rem;
			}
	.tour-scroll-wrapper::before { opacity: var(--show-left, 0); }
  .tour-scroll-wrapper::after { opacity: var(--show-right, 1); }
	
.scroll-gradient {
  width: 20px;
}
.scroll-btn {
    display: none;
}

			.tour-card {
				min-width: calc(85vw - 2rem);
				 max-width: calc(85vw - 2rem);
			}

            .tour-tabs {
                flex-direction: column;
            }

            .tour-tab {
                width: 100%;
            }
}

/* アニメーション */
@keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out;