html {
    scroll-behavior: smooth;
}
:root {
  --primary: #ff007a; /* エモいピンク */
  --secondary: #00896c; /* 画像のグリーン */
  --accent: #005bac; /* 画像のブルー */
  --bg-white: #ffffff;
  --bg-light: #f5f7f9; /* 薄いグレー */
  --text-main: #333333;
  --text-sub: #666666;
  --price-red: #eb4242;
}
* {
  box-sizing: border-box;
}
/* --- Layout --- */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.container {
  width: 100%;
}
/* --- Hero Section (メインイメージ) --- */
.hero {
  height: 401px;
  display: flex;
  /*  flex-direction: column;
            justify-content: center;*/
  align-items: center;
  text-align: center;
  
  background: url("../img/osaka.jpg") no-repeat center center;
  
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}
.hero h1 {
  /*font-size: 2.8rem;*/
  font-size: 60px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}
.hero p {
  /*font-size: 1.2rem;*/
  font-size: 30px;
  font-weight: bold;
  background: rgba(255, 0, 122, 0.8); /* ピンクの背景で強調 */
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
/* --- CTA Button --- */
.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 18px 45px;
  border-radius: 50px; /* 丸く */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 30px;
  box-shadow: 0 6px 0 #c7005f;
  transition: all 0.2s ease;
  z-index: 10; /* 最前面へ */
}
.cta-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #c7005f;
}
.cta-btn:active {
  transform: translateY(6px);
  box-shadow: none;
}
/* --- Hotel Grid (白背景セクション) --- */
.hotel-section {
  background-color: var(--bg-light); /* ここだけ薄グレー */
  /*padding-top: 80px;
  padding-bottom: 80px;*/
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--text-main);
  font-weight: 900;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
/* タイトルの下線 */
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.hotel-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px; /* 少し丸く */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.card-img {
  position: relative;
  height: 200px;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}
.tag-blue {
  background: var(--accent);
}
.tag-green {
  background: var(--secondary);
}
.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.5;
  height: 3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.price-box {
  text-align: right;
  border-top: 1px dashed #eee;
  padding-top: 15px;
  margin-top: auto;
}
.price {
  color: var(--price-red);
  font-size: 1.4rem;
  font-weight: bold;
}
.price-sub {
  font-size: 0.8rem;
  color: var(--text-sub);
}
/* --- Benefits (白背景セクション) --- */
.benefit-section {
  background: #fff;
}
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.benefit-item {
  flex: 1;
  min-width: 280px;
  text-align: center;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 12px;
}
.benefit-item h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 900;
}
.benefit-item p {
  color: var(--text-sub);
  font-size: 0.95rem;
}
/* カード全体をリンクにするためのスタイル */
.hotel-card a {
  display: block; /* 領域全体をリンクにする */
  text-decoration: none; /* 下線を消す */
  color: inherit; /* 文字色を親要素から継承 */
  transition: opacity 0.3s ease; /* ホバー時のアニメーション */
}
/* ホバー時の演出（任意） */
.hotel-card a:hover {
  opacity: 0.8;
  /* さらに浮かせたい場合などは transform: translateY(-5px); 等を追加 */
}
/* --- PC・共通スタイル（前回のものと同じ） --- */
.breadcrumb-container {
  width: 100%;
  max-width: 1000px;
  margin: 10px auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #666;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  white-space: nowrap; /* テキストの改行を防ぐ */
}
.breadcrumb-item a {
  color: #0044cc;
  text-decoration: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  margin: 0 8px;
  color: #999;
}
/* --- スマホ専用：スライド（スクロール）対応 --- */
@media screen and (max-width: 768px) {
  .breadcrumb-container {
    margin: 5px auto;
    /* 横スクロールを有効にするための設定 */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかにする */
  }
  .breadcrumb-list {
    display: flex;
    flex-wrap: nowrap; /* 絶対に折り返さない */
    padding-bottom: 5px; /* スクロールバーと文字の重なり防止 */
  }
  /* スクロールバーを非表示にする場合（デザイン性重視なら追加） */
  .breadcrumb-container::-webkit-scrollbar {
    display: none;
  }
  .breadcrumb-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
/* レスポンシブ対応 */
@media (max-width: 600px) {
  /* .hero { height: 60vh; }*/
  .hero {
    height: 30vh;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.5rem;
    padding: 6px 15px;
  }
  .cta-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  .section-title {
    font-size: 2rem;
    /*margin-bottom: 10px;*/
  }
  .hotel-grid {
    grid-template-columns: 1fr;
  } /* スマホでは1列 */
  .card-content h3 {
    font-size: 2.4rem;
    /*margin-bottom: 15px;*/
    line-height: 1.5;
    /*height: 3em;*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .price {
    color: var(--price-red);
    font-size: 2.5rem;
    font-weight: bold;
  }
  .price-sub {
    font-size: 1.2rem;
    color: var(--text-sub);
  }
  .tag {
    font-size: 1.2rem;
  }
  .benefit-item h4 {
    color: var(--primary);
    font-size: 2rem;
  }
  .benefit-item p {
    color: var(--text-sub);
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
/* アイコン全体の囲い */
.bus-icon-wrapper {
  text-align: center; /* 中央寄せ */
  margin-bottom: 10px; /* 見出しとの間隔 */
}
/* アイコン自体の設定 */
.bus-icon {
  width: 200px; /* PCでのサイズ */
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
/* 見出しのスタイル調整（必要に応じて） */
.reason-title {
  text-align: center;
  font-weight: bold;
  margin-top: 0;
}
/* スマホ表示での調整 */
@media screen and (max-width: 768px) {
  section.benefit-section {
    padding: 20px 20px;
  }
  .bus-icon {
    width: 100px; /* スマホでは少し小さく */
  }
  .bus-icon-wrapper {
    margin-bottom: 15px;
  }
}


/******************************
検索フォーム
******************************/

/* 検索フォームの背景と枠組み */
.search-form-container {
    background-color: #f5f5f5; /* 薄いグレーの背景 */
    padding: 30px 10px 50px;
   margin-bottom: 50px;
}

.search-title {
    text-align: center;
    font-size: 20px;
    color: #0054a6; /* オリオンブルー */
    margin-bottom: 20px;
    padding-bottom: 5px;
    position: relative;
    font-weight: bold;
}

.search-form {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* スマホ対応 */
}

/* 各入力項目のスタイル */
.search-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.search-item label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.search-item select, 
.search-item input[type="date"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    height: 45px;
    box-sizing: border-box;
}

/* 検索ボタンのスタイル */
.search-button-item {
    flex: 1;
    min-width: 200px;
}

.btn-search {
    width: 100%;
    height: 45px;
    background-color: #ff8c00; /* オリオンバスのイメージカラー（オレンジ） */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-search:hover {
    background-color: #e67e00;
}

/* 日付セレクトボックスをまとめるコンテナ */
.date-select-group {
    display: flex;
    gap: 5px; /* セレクトボックス間の隙間 */
}

/* 日付セレクトボックスそれぞれの幅調整 */
.date-select-group select {
    flex: 1;
    padding: 10px 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px; /* 少し文字を小さくして収まりを良くする */
    height: 45px;
    background-color: #fff;
}

/* 出発地と日付（親）の幅のバランス調整 */
.search-item {
    display: flex;
    flex-direction: column;
    flex: 1.5; /* 日付エリアを少し広めに確保 */
    min-width: 250px;
}

/* ボタンの幅を少し調整 */
.search-button-item {
    flex: 1;
    min-width: 200px;
}

/* スマホ対応：日付が崩れないように調整 */
@media screen and (max-width: 480px) {
    .date-select-group select {
        font-size: 13px;
        padding: 10px 2px;
    }
}

/* スマートフォン向けの調整 */
@media screen and (max-width: 768px) {
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }
    .search-item, .search-button-item {
        width: 100%;
    }
}


/******************************
プランリスト
******************************/


.tour-list-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* 各カードのスタイル */
.tour-card {
    display: flex;
    align-items: center;
    border-top: 1px dotted #ccc;
    padding: 20px 0;
    gap: 20px;
}

.tour-card:last-child {
    border-bottom: 1px dotted #ccc;
}

/* サムネイル画像エリア */
.tour-thumb {
    position: relative;
    flex: 0 0 220px; /* 固定幅 */
}

.tour-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.badge {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 10px 2px 25px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.badge::before {
    content: "■"; /* アイコンの代用 */
    position: absolute;
    left: 5px;
}

.badge-red { background-color: #c00; }
.badge-blue { background-color: #336; }

/* テキストコンテンツエリア */
.tour-content {
    flex: 1;
}

.tour-title {
    font-size: 16px;
    color: #0033aa;
    margin: 0 0 10px 0;
    font-weight: bold;
}
.tour-title a{
    font-size: 16px;
    color: #0033aa;
    text-decoration: none;
}

.tour-price {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.tour-price span {
    color: #e60012;
    font-size: 20px;
}

.tour-desc {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ボタンエリア */
.tour-action {
    flex: 0 0 160px;
    text-align: right;
}

.btn-detail {
    display: inline-block;
    background-color: #f04e8b; /* 画像に近いピンク */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: opacity 0.3s;
}

.btn-detail:hover {
    opacity: 0.8;
}

/* レスポンス対応（スマホ表示） */
@media screen and (max-width: 768px) {
    .tour-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .tour-thumb {
        flex: none;
        width: 100%;
    }
	.tour-title a{
    font-size: 16px;
    color: #0033aa;
    text-decoration: none;
		font-weight: bold;
}

    .tour-action {
        flex: none;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .btn-detail {
        width: 100%;
        box-sizing: border-box;
		
    }
	.tour-action a{
		color: #FFFFFF;
	}
	
}



/********* ナビゲーション****** */
.plan-nav-container {
    max-width: 1000px;
    margin: 0 auto;
    /*background-color: #f5f5f5;*/ /* 検索フォームと同じ背景色 */
	margin-bottom: 50px;
}

.plan-nav-tabs {
    display: flex;
    list-style: none;
    padding: 2%;
    margin: 0;
   
}

.nav-item {
    flex: 1;
    text-align: center;
}

.nav-item a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    background-color: #e0e0e0; /* 非選択時の色 */
    transition: all 0.3s ease;
	border-radius: 10px; 
	margin-right: 10px;
}

/* 最後のアイテムの右余白を消す */
.nav-item:last-child a {
    margin-right: 0;
}

/* 現在選択されている（active）状態のスタイル */
.nav-item a {
    background-color: #0054a6; 
    color: #fff;
}

/* ホバー時の挙動 */
.nav-item a:hover {
    background-color: #004080;
    color: #fff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .nav-item a {
        font-size: 16px;
        padding: 12px 0;
    }
	.plan-nav-container {
		margin-bottom: 20px;
	}
}

/********* //ナビゲーション****** */


/******************/
.foot_in{
	width: 980px;
	display: flex;
	margin: 20px auto;
	
	
}
.logos{
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.logos a{
	display: block;
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.foot_in{
	width: 100%;
}
	.logos{
	justify-content: center;
	}
		
}