@charset "utf-8";
/**
 * jtb style.css 1.0.1
 * Released on: 04,2025
 */
/* Google Fonts の読み込み（全ウェイト対応） */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

/* ページ全体に適用 */
body {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 400; /* デフォルトは標準 */
}

/* 太さごとの指定 */
.light-text {
  font-weight: 300; /* Light */
}

.normal-text {
  font-weight: 400; /* Regular */
}

.medium-text {
  font-weight: 500; /* Medium */
}

.bold-text {
  font-weight: 700; /* Bold */
}

.black-text {
  font-weight: 900; /* Black */
}
hr{
    border: none;    
}

/* # =================================================================
   # color
   # ================================================================= */
.shimane_bg{
    background-color: #D28DA3!important;
}
.tottori_bg{
    background-color: #839BCF!important;
}
.coupon_bg{
    background-color: #00A99D!important;
}
.movie_bg{
    background-color: #646362!important;
}
.hotel_bg{
    background-color: #FFA183!important;
}
.shimane_txt{
    color: #D28DA3!important;
}
.tottori_txt{
    color: #839BCF!important;
}


/* # =================================================================
   # header
   # ================================================================= */
.mahoroba_head{
width: 100%;
  border-top: 1px solid #000!important;
  background: #E8DDF7;
}

/* # =================================================================
   # slideshow
   # ================================================================= */
#slide_bx{
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 55px;
    padding-bottom: 25px;
}
#slide_bx .main_title{
    width: 1200px;
    position: absolute;
    z-index: 10;
    top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
#slide_bx .main_title img{
  width: 100%;
  max-width: 420px;
}
#slide_bx .sab_image{
    width: 80px;
    position: absolute;
    z-index: 5;
    left: 20px;    
}

#slide_bx .sab_image img{
    width: 100%;
    height: auto; /* 幅優先で縦横比維持 */
    opacity: 0.6; /* 0:完全透明、1:不透明 */
}
.slideshow {
  position: relative;
  width: 100%;
  max-width: 1480px;
  aspect-ratio: 2 / 1;
}
.background-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

.slide image {
  width: 100%;
  height: 100%;
  object-fit: cover!important;
}

.controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}

#prev { left: 15%; }
#next { right: 15%; }

.dots {
  position: absolute;
  bottom: 10px;
  left: 52%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
}

.dots button.active {
  background: rgba(0,0,0,0.7);
}

/* スマホ用（幅768px以下など） */
@media (max-width: 768px) {
.controls button {
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
  .controls button {
    font-size: 1.24rem; /* 2remの約70% */
  }
}

/* スマホ対応 */
@media (max-width: 1480px) {
  .slideshow { aspect-ratio: auto; height: 50vw; }
  #prev { left: 15px; }
  #next { right: 15px; }
    #slide_bx .sab_image{
        width: auto;
        left: 20px;
        bottom: 5%;
    }
    #slide_bx .sab_image img{
      width: 70%;
    min-width: 70px;

    }
}
@media (max-width: 1280px) {
#slide_bx .main_title{
    width: 100%;
    top: 20px;
    margin-left: auto;
    margin-right: auto;
}
   
 #slide_bx .sab_image {
      width: auto;        /* 幅は自動 */
      height: 65%;       /* 画面の高さに応じてサイズ決定（例: 10%） */
    left: 10px;    
  }

  #slide_bx .sab_image img {
      width: auto;
      height: 100%; 
      object-fit: contain; /* アスペクト比を維持しつつ収める */
  } 
}
@media (max-width: 980px) {
#slide_bx .main_title{
    width: 45%;
    left: 5%; 
}
#slide_bx{
    width: 100%;
    padding-top: 75px;

}
}@media (max-width: 680px) {
  html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* 横スクロール禁止 */
  }

  .slideshow-wrapper {
    width: 100vw;
    overflow: hidden; /* はみ出しを隠す */
    position: relative;
    margin: 0 auto;   /* 中央寄せ */
  }

  .slideshow {
    width: 100vw;
    height: calc(100vw / 2);
    margin: 0;
    transform: scale(1.3);
    transform-origin: center center;
    display: block;
  }

  #slide_bx {
    padding-left: 0;
    padding-right: 0;
  }

  #slide_bx .sab_image {
    left: 0;    
  }

  #bgBlob {
    transform: scale(1.03);
    transform-origin: center center;
  }

  #prev { left: 15%; }
  #next { right: 15%; }

  .dots {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    height: auto;
    align-items: center;
  }

  .dots button {
    width: 8px !important;
    height: 8px !important;
    min-width: 8px;
    min-height: 8px;
    border-radius: 50%;
    flex: 0 0 auto;
  }

  .mahoroba_head {
    padding-bottom: 30px;
  }
}
@media (max-width: 420px) {
    #slide_bx{
    width: 100%;
    padding-top: 65px;
}
}
/* # =================================================================
   # coupon_bg
   # ================================================================= */
#coupon_bg{
    width: 100%;
    background: #C1DAD5;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #808080;
}
#coupon_bg .coupon_bx{
    width: 100%;
    max-width: 1280px;
    background: #fff;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
}
#coupon_bg .coupon_title{
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
#coupon_bg .coupon_title img{
    width: 100%;
}
#coupon_bg .coupon_read{
    width: 95%;
    margin: 15px auto 15px;
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    font-weight: 600;
}
#coupon_bg .coupon_read span{
    font-size: 80%;
    font-weight: 400;
}
#coupon_bg ul{
    margin: 0px;
    list-style: none;
    padding: 0px;
}
#coupon_bg li{
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    
}
#coupon_bg .coupon_buttun_bx{
    width: 100%;
}
#coupon_bg .slash{
    display: inline-block;  /* transformを効かせるために必要 */
    transform: rotate(-35deg); 
    margin-right: 15px;
    font-size: 120%;
}
#coupon_bg .backslash{
    display: inline-block;  /* transformを効かせるために必要 */
  transform: rotate(35deg); /* 45度傾ける */
    margin-left: 15px;
    font-size: 120%;
}
#coupon_bg .coupon_list_title{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 35px;
    line-height: 45pt;
    margin-top: 30px;
}
#coupon_bg .coupon_list_bx{
    width: 100%;
}
#coupon_bg .shimane_list_bg{
    background-color: #F1DDE3;    
}
#coupon_bg .tottori_list_bg{
    background-color: #DAE1F1;    
}
#coupon_bg .coupon_list_facility{
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
}
#coupon_bg .coupon_facility_title{
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 4px;
    margin-top: 15px;
    font-weight: bold;
}
#coupon_bg .coupon_facility_photo{
    width: 100%;
}
#coupon_bg .coupon_facility_photo img{
    width: 100%;
}
#coupon_bg .coupon_btn{
    width: 98%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}
#coupon_bg .movie_btn{
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;    
}
#coupon_bg .movie_btn2{
    width: 100%;
    padding-top: 0px;
    padding-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;    
}
.popup-iframe {
  display: inline-block;
  color: #fff;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}
.mfp-bg { background: rgba(0,0,0,0.9); }
.mfp-iframe-holder .mfp-content {
  width: 90%;
  max-width: 580px; /* 横幅は画面幅の90%まで */
  height: 90vh;    /* ★ 高さをブラウザの高さの90%に */
}
.mfp-iframe-scaler {
  padding-top: 175%; /* ← 16 ÷ 9 × 100 = 約177.78% */
}
.mfp-iframe-scaler iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
    z-index: 1000;
}

@media (max-width: 1280px) {
#coupon_bg .coupon_bx{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
   }
    
#coupon_bg .movie_btn{
    width: 90%;
}
#coupon_bg .movie_btn2{
    width: 90%;
}
}
@media (max-width: 980px) {
    
#coupon_bg .coupon_read{
    width: 95%;
    text-align: justify;
}
}
@media (max-width: 680px) {
#coupon_bg .coupon_title{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#coupon_bg .coupon_read{
    width: 95%;
    margin: 15px auto 15px;
    text-align: justify;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}
#coupon_bg .coupon_facility_title{
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
#coupon_bg .coupon_list_title{
    font-size: 25px;
    line-height: 35pt;
    margin-top: 30px;
}
}
@media (max-width: 420px) {
    
#coupon_bg li{
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;    
}
#coupon_bg .coupon_bx{
    padding: 15px;
    border-radius: 15px;
}
#coupon_bg .coupon_facility_title{
    font-size: 14px;
    line-height: 20px;
} 
}
@media (max-width: 370px) {
    
#coupon_bg .coupon_facility_title{
    font-size: 12px;
    line-height: 20px;
} 
}


/* # =================================================================
   # buttun
   # ================================================================= */

.buttun a{
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0;
    color: #fff!important;
    text-decoration: none;
    text-align: center;
    margin-bottom: 0px;
	cursor:pointer!important;
    border-radius: 12px;
}
.buttun{
    color: #fff;
    font-size: 24px;
}
.buttun a:hover{
    border-radius: 12px;
    opacity: 0.7; /* 0:完全透明、1:不透明 */
}
.buttun-arrow-right a::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media (max-width: 980px) {
.coupon_buttun_bx .buttun,
#coupon_bg .buttun{
    color: #fff;
    font-size: 20px;
}
#coupon_bg .buttun a{
    padding: 15px 0;
}
}
@media (max-width: 680px) {
.coupon_buttun_bx .buttun,
#coupon_bg .buttun{
    color: #fff;
    font-size: 18px;
    padding: 10px 0;
    border-radius: 5px!important;
}
}
@media (max-width: 540px) {
.coupon_buttun_bx .buttun,
#coupon_bg .buttun{
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    border-radius: 5px!important;
}}
@media (max-width: 420px) {
.coupon_buttun_bx .buttun,
#coupon_bg .buttun{
    color: #fff;
    font-size: 16px!important;
    padding: 5px 0;
    border-radius: 5px!important;
}
#coupon_bg .buttun-arrow-right a::after{
  right: 10px;
  width: 7px;
  height: 7px;
}
#coupon_bg .buttun a{
    padding: 10px 0;
}
}
/* # =================================================================
   # model_tabs タブボタン切り替え
   # ================================================================= */
.model_tabs {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

/* タブボタン用ラッパー */
.tab-buttons {
  display: flex;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.model_tabs input[type="radio"] {
  display: none; /* ラジオボタンを非表示 */
}
/* タブラベル */
.tab-buttons label {
  font: 600 25px/30px 'Zen Maru Gothic', sans-serif;
  flex: 1;
  padding: 20px 0;
  background: #ddd; /* 未選択時 */
  cursor: pointer;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}

/* 選択中のラベル */
.tab-buttons label.active-tab1 { background-color: #D28DA3; }
.tab-buttons label.active-tab2 { background-color: #839BCF; }

/* コンテンツ */
.tab-content { display: none; padding: 0px; background: #fff; width: 100%; }
.tab-content.active { display: block; }

@media (max-width: 680px) {
    
/* タブラベル */
.tab-buttons label {
  font: 600 20px/30px 'Zen Maru Gothic', sans-serif;
  flex: 1;
  padding: 20px 0;
}
    .model_hotel_link{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    }
    .model_hotel_link img{
    width: 100%;
    }
}

/* # =================================================================
   # モデルコース
# ================================================================= */
.tab_shimane_title {
    position: relative;
    background-color: #D28DA3;
    color: #fff;
    padding: 60px 0px 0px;
    text-align: center;
    font: 600 40px/45px 'Zen Maru Gothic', sans-serif;
    z-index: 10;
}
.wave-down {
    display: block;
    width: 100%;
    margin-top: 0px;
    transform: scaleY(-1); /* 上下反転して下向きに */
}
.tab_tottori_title{
    position: relative;
    background-color: #839BCF;
    color: #fff;
    padding: 60px 0px 0px;
    text-align: center;
    font: 600 40px/45px 'Zen Maru Gothic', sans-serif;
    z-index: 10;
}
.model_bx{
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0px;
    margin-top: 0px;
}
.model_bx ul {
    padding: 0;
    margin: 0 auto;
    list-style: none;
    width: 100%;
}
/* メニュー項目のスタイル */
#model_shimane .model_bx li,
#model_tottori .model_bx li {
    width: 48%;
    position: relative;
    flex: 1;
    text-align: center;
    font-size: 24px;
    box-sizing: border-box;
    line-height: 38px;
    margin-left: 1%;
    margin-right: 1%;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 8px;
}
#model_shimane .model_bx li {
    border: 3px solid #D28DA3;
}
#model_tottori .model_bx li {
    border: 3px solid #839BCF;
}


.model_day{
    text-align: center;
}

/* アイコンのスタイル */
.model_bx li a .arrow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    opacity: 1; /* 通常時にも表示 */
    transition: color 0.2s ease; /* 色の変化をスムーズに */
}


/* ホバー時にアイコンの色を変更 */
.model_bx li:hover{
    background-color: #FFFFC8;
}
.model_bx li a:hover .arrow {
}

@media only screen and (max-width:680px) {
.model_bx li a {
    font-size: 18px;
    line-height: 22px;
}
.model_spbx{
    width: 90%!important; 
    margin-left: auto;
    margin-right: auto;
    }
}
@media only screen and (max-width:480px) {
.model_bx li a {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 0px 15px;
}
/* アイコンのスタイル */
.model_bx li a .arrow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #D28DA3;
    opacity: 1; /* 通常時にも表示 */
    transition: color 0.2s ease; /* 色の変化をスムーズに */
}
    .tab_shimane_title {
    position: relative;
    background-color: #D28DA3;
    color: #fff;
    padding: 20px 0px 20px;
    text-align: center;
    font: 600 20px/24px 'Zen Maru Gothic', sans-serif;
    z-index: 10;
}
    .tab_tottori_title {
    position: relative;
    color: #fff;
    padding: 20px 0px 20px;
    text-align: center;
    font: 600 20px/24px 'Zen Maru Gothic', sans-serif;
    z-index: 10;
}
}
/* 左右に横線 */
.heading {
    align-items: center; /* 横線を上下中央 */
    display: flex; /* 文字と横線を横並び */
    justify-content: center; /* 文字を中央寄せ */
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
    margin-top: 40px;
}
.heading::before,
.heading::after {
  background-color: #000; /* 横線の色 */
  content: "";
  height: 2px; /* 横線の高さ */
  width: 60px; /* 横線の長さ */
}
.heading::before {
  margin-right: 15px; /* 文字との余白 */
}
.heading::after {
  margin-left: 15px; /* 文字との余白 */
}
.model_start{
    display: flex;
    justify-content: center; /* 横方向中央 */
    align-items: center;     /* 縦方向中央 */
    gap: 20px;               /* 写真とタイトルの間隔 */
    text-align: center;      /* テキスト中央寄せ */
    padding: 20px;           /* 必要に応じて */
    border-radius: 15px;
}
.model_start2{
    display: flex;
    justify-content: center; /* 横方向中央 */
    align-items: center;     /* 縦方向中央 */
    gap: 40px;               /* 写真とタイトルの間隔 */
    text-align: center;      /* テキスト中央寄せ */
    padding: 60px 20px 60px;           /* 必要に応じて */
    border-radius: 15px;
}
.model_photo img {
  display: block;
  max-width: 100%;         /* 画像がはみ出さないように */
  height: auto;
}
#day01{
    margin-top: 50px;
    margin-bottom: 30px;
}
.start_title{
    color: #FFFFFF;
    text-align: left;
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
}
@media only screen and (max-width:1280px) {
  .model_start{
    border-radius: 0px;
}
.model_start2{
    border-radius: 0px;
}  
}
@media only screen and (max-width:680px) {
  
.model_photo{
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}  
.model_photo img{
    width: 100%;
}
.wave-down {
    margin-top: -2px;
}
.model_start{
    border-radius: 0px;
}
.model_start2{
    padding: 35px 20px 35px;           /* 必要に応じて */
}
.start_title{
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-align: center;
}
}
/* # =================================================================
   # model_course_01
   # ================================================================= */
.model_course_01 {
  position: relative;
  width: 100%;
  padding-top: 128.03%; /* 1320x1690 の比率 */
  background-image: url('../images/model/model_s_day01_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 1rem; /* 基準サイズ */
  line-height: 1.6;
  text-align: justify;
}
.clearfix_day{
    margin-top: 80px;    
}
/* テキストは親を基準に絶対配置 */
.model_course_01 .model_course_txt01 {
  position: absolute;
  top: 17%;
  left: 34%;
  width: 17%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_01 .model_course_txt02 {
  position: absolute;
  top: 35%;
  left: 42%;
  width: 12%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_01 .model_course_txt03 {
  position: absolute;
  top: 65.5%;
  left: 32.5%;
  width: 16%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_01 .model_course_txt04 {
  position: absolute;
  top: 55.5%;
  left: 52.5%;
  width: 18%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_01 .model_course_txt05 {
  position: absolute;
  top: 84%;
  left: 79%;
  width: 20%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_01 .model_course_txt05 span{
  font-size:80%;  
}
.model_course_01 .model_course_txt06 {
  position: absolute;
  top: 90%;          /* 親の高さに対して垂直位置 */
  left: 50%;          /* 水平方向中央 */
  transform: translateX(-50%);
  width: 45%;         /* 画面幅に応じて可変 */
  max-width: 600px;   /* 元画像の最大サイズ */
}

.model_course_01 .model_course_txt06 img {
  width: 100%;        /* 親幅に合わせて拡大縮小 */
  height: auto;       /* アスペクト比を維持 */
  display: block;
}
.model_course_sp{
  width: 100%;        /* 親幅に合わせて拡大縮小 */
}
.model_course_sp img{
  width: 100%;        /* 親幅に合わせて拡大縮小 */
  height: auto;       /* アスペクト比を維持 */
  display: block;
}
/* # =================================================================
   # model_course_02
   # ================================================================= */
.model_course_02 {
  position: relative;
  width: 100%;
  padding-top: 169.7%; /* 1320x2242 の比率 */
  background-image: url('../images/model/model_s_day02_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 1rem; /* 基準サイズ */
  line-height: 1.6;
  text-align: justify;
}
.model_course_02 .model_course_txt07 {
  position: absolute;
  top: 14.5%;
  left: 5%;
  width: 22%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_02 .model_course_txt08 {
  position: absolute;
  top: 12.5%;
  left: 68%;
  width: 25%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_02 .model_course_txt09 {
  position: absolute;
  top: 34.5%;
  left: 55%;
  width: 19%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_02 .model_course_txt10 {
  position: absolute;
  top: 54.5%;
  left: 1%;
  width: 25%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_02 .model_course_txt11 {
  position: absolute;
  top: 77%;
  left: 14%;
  width: 22%;
  font-size: clamp(12px, 1.2vw, 22px);
}

/* # =================================================================
   # hotel_title
   # ================================================================= */
#hotel_bx{
    margin-top: 65px;
    background-color: #E6F4F0;
  width: 100%;
}
#hotel_bx .hotel_title {
    position: relative;
    background-color: #5AB99B;
    color: #fff;
    padding: 80px 0px 0px;
    text-align: center;
    font: 600 40px/45px 'Zen Maru Gothic', sans-serif;
    z-index: 10;
}
#hotel_bx .hotel_list_bx{
    width: 100%;
    margin-top: 0px;
    padding-bottom: 40px;
}
#hotel_bx ul li{
    max-width: 1280px;
    padding: 30px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}
#hotel_bx .hotel_left,
#hotel_bx .hotel_right{
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
}
#hotel_bx .hotel_txt{
    width: 100%;
    text-align: justify;
    line-height: 26px;
    margin-top: 5px;
    font-size: clamp(12px, 1.2vw, 18px);
}
#hotel_bx .hotel_point{
    
}
#hotel_bx .hotel_left img,
#hotel_bx .hotel_point img{
    width: 100%;
}
#hotel_bx .hotel_area{
    margin-top: 10px!important;
    margin-bottom: 10px!important;
    font-size: 20px;
    font-weight: 300;
    font-size: clamp(14px, 1.3vw, 20px);
}
#hotel_bx .hotel_list_title{
    width: 100%;
    font-weight: 600;
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 35px;
    line-height: 120%;
    font-size: clamp(20px, 3vw, 36px);
}
#hotel_bx .hotel_list_title span{
    font-size:80%;
}
@media (max-width: 1280px) {
    
#hotel_bx .hotel_list_bx{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#hotel_bx .hotel_title {
    padding: 50px 0px 40px;
}
    
}
@media (max-width: 680px) {
    
#hotel_bx .hotel_title {
    padding: 50px 0px 40px;
    font: 600 24px/36px 'Zen Maru Gothic', sans-serif;
}
#hotel_bx .hotel_left,
#hotel_bx .hotel_right{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
#hotel_bx ul li{
    margin-bottom: 40px;
}
}
/* ==================================================
   ホテルスライダー全体
================================================== */
.hotel_slider {
  position: relative; 
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 520 / 390; /* ← ここを変更 */
}
/* 各スライド */
.hotel_list_photo {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease; /* フェード時間 */
  z-index: 1;
}

.hotel_list_photo.active {
  opacity: 1;
  z-index: 2;
}

.hotel_list_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 前後ボタン */
.hotel-prev, .hotel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(90,185,155,0.7);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}

/* 左右の位置 */
.hotel-prev { left: 1%; }
.hotel-next { right: 1%; }

/* ドットナビ */
.hotel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hotel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
}

.hotel-dots button.active {
  background: #5AB99B;
}

/* ホテルボタン下マージン */
.hotel_btn {
  margin: 15px auto 0;
  width: 100%;
}
@media (max-width: 680px) {
    
.hotel_list_photo {
  width: 100%;
    }
}
/* # =================================================================
   # hotel_buttun
   # ================================================================= */

.hotel_buttun a{
    position: relative;
    display: block;
    width: 100%;
    padding: 25px 0;
    color: #fff!important;
    text-decoration: none;
    text-align: center;
    margin-bottom: 0px;
	cursor:pointer!important;
    border-radius: 12px;
}
.hotel_buttun{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.hotel_buttun a:hover{
    border-radius: 12px;
    opacity: 0.7; /* 0:完全透明、1:不透明 */
}
.buttun-arrow-right a::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media (max-width: 1080px) {
.hotel_buttun a{
    padding: 15px 0;
    font-size: clamp(14px, 1.3vw, 20px);
    }
}

/* ==================================================
   レスポンシブ調整（修正版）
   ================================================== */

/* タブレット用 */
@media (max-width: 980px) {
  .hotel-prev, .hotel-next {
    font-size: 1.5rem;
    padding: 0.4rem 1rem;
  }

  .hotel-dots button {
    width: 10px;
    height: 10px;
  }
}

/* スマホ用 */
@media (max-width: 680px) {
  /* ボタンはそれぞれ個別に設定（両方に left/right を出さない） */
  .hotel-prev {
    left: 8px;        /* 左端に寄せる（半角数字） */
    right: auto;
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
  }

  .hotel-next {
    right: 8px;       /* 右端に寄せる */
    left: auto;
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
  }

  /* 共通の微調整 */
  .hotel-prev, .hotel-next {
    top: 50%;
    transform: translateY(-50%);
    position: absolute; /* 親が position:relative のこと（.hotel_slider） */
    z-index: 999;       /* 画像より手前に表示 */
  }

  .hotel-dots {
    bottom: 15px;
    gap: 6px;
  }

  .hotel-dots button {
    width: 8px;
    height: 8px;
  }

  .buttun {
    color: #fff;
    font-size: 20px;
  }
}

/* 小型スマホ用 */
@media (max-width: 480px) {
  .hotel-prev {
    left: 6px;
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
  }
  .hotel-next {
    right: 6px;
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
  }

  .hotel-dots {
    bottom: 10px;
    gap: 5px;
  }

  .hotel-dots button {
    width: 6px;
    height: 6px;
  }
#hotel_bx .hotel_txt{
    line-height: 20px;
    }
}

/* # =================================================================
   # model_course_03
   # ================================================================= */
.model_course_03 {
  position: relative;
  width: 100%;
  padding-top: 130.68%; /* 1320x1725 の比率 */
  background-image: url('../images/model/model_t_day01_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 1rem; /* 基準サイズ */
  line-height: 1.6;
  text-align: justify;
}
.clearfix_day{
    margin-top: 80px;    
}
/* テキストは親を基準に絶対配置 */
.model_course_03 .model_course_txt01 {
  position: absolute;
  top: 20.5%;
  left: 39.5%;
  width: 20%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_03 .model_course_txt02 {
  position: absolute;
  top: 42.5%;
  left: 68%;
  width: 28%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_03 .model_course_txt03 {
  position: absolute;
  top: 62%;
  left: 48%;
  width: 30%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_03 .model_course_txt04 {
  position: absolute;
  top: 85%;          /* 親の高さに対して垂直位置 */
  left: 50%;          /* 水平方向中央 */
  transform: translateX(-50%);
  width: 45%;         /* 画面幅に応じて可変 */
  max-width: 600px;   /* 元画像の最大サイズ */
}
.model_course_03 .model_course_txt04 img {
  width: 100%;        /* 親幅に合わせて拡大縮小 */
  height: auto;       /* アスペクト比を維持 */
  display: block;
}
/* # =================================================================
   # model_course_04
   # ================================================================= */
.model_course_04 {
  position: relative;
  width: 100%;
  padding-top: 113.79%; /* 1320x1502 の比率 */
  background-image: url('../images/model/model_t_day02_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 1rem; /* 基準サイズ */
  line-height: 1.6;
  text-align: justify;
}
.clearfix_day{
    margin-top: 80px;    
}
/* テキストは親を基準に絶対配置 */
.model_course_04 .model_course_txt05 {
  position: absolute;
  top: 1%;
  left: 35%;
  width: 17%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_04 .model_course_txt06 {
  position: absolute;
  top: 38.5%;
  left: 64.5%;
  width: 22%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_04 .model_course_txt07 {
  position: absolute;
  top: 55%;
  left: 75.5%;
  width: 20%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_04 .model_course_txt07 span{
  font-size:80%;  
}
.model_course_04 .model_course_txt08 {
  position: absolute;
  top: 81.5%;
  left: 64.5%;
  width: 16%;
  font-size: clamp(12px, 1.2vw, 22px);
}
.model_course_sp{
  width: 100%;        /* 親幅に合わせて拡大縮小 */
}
.model_course_sp img{
  width: 100%;        /* 親幅に合わせて拡大縮小 */
  height: auto;       /* アスペクト比を維持 */
  display: block;
}
.red{
    color: #FF0004;    
}
/* # =================================================================
   # tabisugo_bg
   # ================================================================= */
.tabisugo_bg{
    width: 100%;
    background-color: #C5E6F9;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: 'Zen Maru Gothic', sans-serif;
}
.tabisugo_bx {
    position: relative;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    background-color: #86CBF2;
    padding: 15px;
}
.tabisugo_bx .tabisugo_subtitle{
    font: 800 24px/30px 'Zen Maru Gothic', sans-serif;
    position: absolute;
    background-color: #0066B1;
    padding: 15px 25px 15px 25px;
    color: #FFFFFF;
    text-align: center;
    left: 0px;
    top: 0px;
}
.tabisugo_whbx{
    width: 100%;
    background-color: #fff;
    padding:25px;
    color: #646362;
}
.tabisugo_title{
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding-top: 26px;
}
.tabisugo_title img{
    width: 100%;
}
.tabisugo_cap{
    width: 100%;
    text-align: right;
    font-size: 14px;
    line-height: 18px;
}
.tabisugo_read{
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
}
.tabisugo_list{
    width: 100%;
    border: 10px solid #C5E6F9;
    margin-top: 60px;
}
.tabisugo_sub{
    width: 95%;
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
    color: #0066B1;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.tabisugo_list_title{
    background-color: #0066B1;
    width: 100%;
    color: #fff;
    font-size: 35px;
    line-height: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}
.tabisugo_list_bx{
    width: 100%;
    padding: 30px;
}
.tabisugo_list_left{
    width: 58%;
    margin-right: 2%;
}
.tabisugo_list_right{
    width: 40%;}

.tabisugo_sub img,
.tabisugo_list_right img{
    width: 100%;}
.tabisugo_list_txt{
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
}
.tabisugo_list_info{
    background-color: #E6E6E6;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    line-height: 18px;
    margin-top: 20px;
}

/* # =================================================================
   # tabisugo_link
   # ================================================================= */

.tabisugo_link a{
    position: relative;
    display: block;
    width: 95%;
    padding: 15px 0;
    color: #fff!important;
    text-decoration: none;
    text-align: center;
    margin:0px auto 35px!important;
    cursor: pointer!important;
    border-radius: 10px;
    background-color: #1E96FF
}
.tabisugo_link{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.tabisugo_link a:hover{
    border-radius: 12px;
    opacity: 0.7; /* 0:完全透明、1:不透明 */
}
/* # =================================================================
   # tabisugo_buttun
   # ================================================================= */

.tabisugo_buttun a{
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 0;
    color: #fff!important;
    text-decoration: none;
    text-align: center;
    margin: 20px auto 0px;
    cursor: pointer!important;
    border-radius: 10px;
    background-color: #0066B1;
    max-width: 880px;
}
.tabisugo_buttun{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.tabisugo_buttun a:hover{
    border-radius: 12px;
    opacity: 0.7; /* 0:完全透明、1:不透明 */
}
.buttun-arrow-right a::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
@media (max-width: 1080px) {
    
.tabisugo_bx {
    width: 95%;
}
}
@media (max-width: 680px) {
    
.tabisugo_title{
    width: 70%;
    max-width: 420px;
    margin: 0 auto;
    padding-top: 26px;
}
.tabisugo_list_left{
    width: 100%;
    margin-right: 0%;
}
.tabisugo_list_right{
    width: 100%;
    margin-top: 15px;
}
.tabisugo_read{
    width: 100%;
    text-align: justify;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
}
.tabisugo_buttun{
    font-size: 18px;
}
.tabisugo_link{
    font-size: 18px;
}
.tabisugo_sub{
    width: 95%;
    margin-top: 20px;
    font-size: 20px;
    line-height: 25px;
}
.tabisugo_list_title{
    font-size: 24px;
    line-height: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}
.tabisugo_list_txt{
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
}
.tabisugo_list_info{
    background-color: #E6E6E6;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 18px;
    margin-top: 20px;
}
.tabisugo_list_bx{
    width: 100%;
    padding: 20px 20px 0px;
}
.tabisugo_bx .tabisugo_subtitle{
    font: 800 20px/24px 'Zen Maru Gothic', sans-serif;
    padding: 10px 25px 10px 25px;
}
.tabisugo_link a{
    width: 90%;
    padding: 15px 0;
    margin:10px auto 25px!important;
}
#hotel_bx .buttun-arrow-right a::after,
#tabisugo .buttun-arrow-right a::after{
  right: 10px;
  width: 7px;
  height: 7px;
}
}
@media (max-width: 420px) {
  
.tabisugo_list_bx{
    width: 100%;
    padding: 10px 10px 0px;
}
.tabisugo_list_txt{
    font-size: 14px;
    line-height: 20px;
}
.tabisugo_sub{
    width: 95%;
    margin-top: 20px;
    font-size: 18px;
    line-height: 20px;
}  
.tabisugo_list_title{
    font-size: 22px;
    line-height: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}
.tabisugo_read{
    width: 100%;
    text-align: justify;
    font-size: 16px;
    line-height: 24px;
    font-weight: bold;
}
.tabisugo_buttun{
    font-size: 16px;
}
    
.tabisugo_link{
    font-size: 16px;
}
    
.tabisugo_list_info{
    background-color: #E6E6E6;
    width: 100%;
    padding: 7px;
    font-size: 11px;
    line-height: 14px;
    margin-top: 10px;
}
.tabisugo_link a{
    width: 90%;
    padding: 10px 0;
    margin:10px auto 25px!important;
}
}






