* {
            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: #193567;
    --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;
    overflow: hidden;
    min-height: 100vh;
    padding: 6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* スライド全体 */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* 各スライド */
.hero-slides .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 40s infinite;
}

/* 各スライドの表示タイミング（5枚分） */
.hero-slides .slide:nth-child(1) { animation-delay: 0s; }
.hero-slides .slide:nth-child(2) { animation-delay: 10s; }
.hero-slides .slide:nth-child(3) { animation-delay: 20s; }
.hero-slides .slide:nth-child(4) { animation-delay: 30s; }
.hero-slides .slide:nth-child(5) { animation-delay: 40s; }

/* アニメーション */
@keyframes heroSlide {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  20%  { opacity: 1; }
  25%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

 .hero-content {
    position: relative;
    z-index: 2;

   
    width: 100%;
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.hero-content img {
    width: clamp(180px, 20vw, 350px);
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}


.hero-subtitle {
    max-width: 50ch;
    font-size: clamp(1.1rem, 1.3vw, 1.5rem);
    font-weight: 700;
    color:#fff;
    font-family: "Playfair Display", "Times New Roman", serif;
    margin: 0 auto 2rem;
    line-height: 1.7;
    text-align: center;
}

 .hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

        .btn {
            padding: 1rem 2.5rem;
            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: #b89a3d;
            color:#fff;
            outline: #fff;
            border-color:#fff;
            border-radius:50px;
            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: #193567;
            color: #fff;
        }

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


@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px); /* 上から */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@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;
    }
}



/*  おすすめ目玉商品セクション */


.featured-tour {
    padding: 80px 20px;
    text-align: center;
}

.featured-tour-card {
    max-width: 850px;
    margin: 0 auto;
	padding-top: 30px; 
}

.featured-tour-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.featured-tour-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 30px;
    line-height: 1.5;
    color: #111;
}


.featured-tour-box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}



.featured-tour-description {
    font-size: 1.5rem;
    line-height: 2;
    color: #555;
    max-width: 700px;
    margin: 20px auto 0;
}

.featured-tour-price {
    font-size: 2rem;
    font-weight: bold;
    color: #c62828;
    margin-top: 28px;
}

.featured-tour-btn {
    display: inline-block;
    margin-top: 30px;
    background: #0b5ed7;
    color: #fff;
    padding: 16px 42px;
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.featured-tour-btn:hover {
    background: #084298;
    transform: translateY(-2px);
}

/* スマホ対応 */
@media screen and (max-width: 768px) {

    .featured-tour {
        padding: 60px 16px;
    }

    .featured-tour-title {
        font-size: 1.5rem;
    }

    .featured-tour-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .featured-tour-price {
        font-size: 1.6rem;
    }

    .featured-tour-btn {
        width: 90%;
        max-width: 320px;
    }
}

/* スマホ対応 */
@media screen and (max-width: 768px) {

    .featured-tour {
        padding: 60px 16px;
    }

    .featured-tour-title {
        font-size: 1.5rem;
    }

    .featured-tour-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .featured-tour-price {
        font-size: 1.6rem;
    }

    .featured-tour-btn {
        width: 90%;
        max-width: 320px;
    }
}



/* 横並び目玉商品セクション */
.featured-tour-horizontal {
  padding: 60px 0;
}

.featured-tour-horizontal-grid {
  display: flex;
  justify-content: center;   /* 中央寄せ */
  gap: 30px;
  flex-wrap: wrap;           /* スマホ対応 */
}

/* カード（横並び用） */
.featured-tour-card-horizontal {
  width: 420px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  text-align: center;
}

.featured-tour-card-horizontal .featured-tour-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* スマホ対応 */
@media screen and (max-width: 900px) {
  .featured-tour-card-horizontal {
    width: 100%;
    max-width: 420px;
  }
}









        /* セクション */
        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: ivory;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            
         font-family: "Playfair Display", "Times New Roman", serif;
        }
        .section-title2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: navy;
             margin-top: 2rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            
         font-family: "Playfair Display", "Times New Roman", serif;
        }

       

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





#tours {
    background-color: #193567 !important;
}



/* 基本情報グリッド */
        .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;
             border-color: #c1a025;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            color: #c1a025;
        }

        .tour-tab:hover {
            border-color: #193567;
            color:#193567;
        }

        .tour-tab.active {
            background: #b89a3d;
            color: white;
            border-color: #d5bb6a;
        }

        .tour-content {
            display: none;
        }

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

.tour-scroll-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    position: relative;
    overflow: hidden;
}


.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;
   flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-gutter: stable;
	scroll-behavior: smooth;
	padding-bottom: 1rem;
	scrollbar-width: none;
	scrollbar-color: var(--primary-color) var(--bg-light);
}

/* カードが少ない時だけ中央寄せ */
.tour-grid:has(.tour-card:nth-child(-n+2):last-child) {
    justify-content: center;
}

/* 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;
            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;
             width: fit-content;
  padding: 0.2rem 0.5rem;
  background: #d5bb6a;
  color: #000;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}


        .tour-title {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-top: 1.2rem;
            margin-bottom: 0.9rem;
            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:#365b9f;
            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: #365b9f;
            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:#b89a3d;
            transform: scale(1.05);
        }





        /* フッターCTA */
        .footer-cta {
            background: #b89a3d;
            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: 70vh;
    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%;
            }
    
    
    
        .section-title {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            
        }
        .section-title2 {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
          
        }
    
    
    
    
    
}









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

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