@charset "utf-8";

html {
  visibility: visible !important;
  opacity: 1 !important;
}
html.wf-loading {
  visibility: visible !important;
  opacity: 1 !important;
}
html {
    scroll-behavior: smooth;
}
body {
  overflow-x: hidden; /* 横スクロールを強制的に禁止 */
  width: 100%;
}

#sp-info-display {
  display: none;
}
/* ==========================================================================
   1. 変数・共通設定・リセット
   ========================================================================== */
/*-----------------------------------------------------------------------common*/ 
:root {
  /* Colors */
  --red: #d54642;
  --darkred: #732624;
  --orange: #fa9e3d;
  --paleorange: #fcc891;
  --baige: #f8f0e3;
  --palered: #f68974;
  --pink: #f48791;
  --palepink: #fac4c9;
  --white: #ffffff;
  --black: #333333;
  --beige:  #f8f0e3;
 /* Fonts */
  --font-family-selfie: "selfie-neue-round", sans-serif;
  --font-family-base: "Zen Maru Gothic", sans-serif;

  --font-weight-regular: 400;
  --font-weight-bold: 700;

  --line-height-large: 2;
  --line-height-normal: 1.7;
  --line-height-narrow: 1.5;
}
/* 画像のレスポンシブ対応 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* リンク */
a {
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}
/* リスト */
ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* レイアウトコンテナ */
#all-container {
  background-color: var(--baige);
}
.all-wrapper {
  position: relative;
  width: 100%;
}

.container {
  margin: 0 auto;
  position: relative;
}

/* フォント調整 */
#pankuzu, main, aside, .f-footer, section, nav, {
  font-family: var(--font-family-base); /* 元の指定を統合 */
}

/* 表示制御 */
.tb, .sp { display: none; }
.pc { display: block; }



.all-container, .menu,.callcenter{
  padding: 15px auto;	
  font-size: 1.125rem;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
  color:black;
}

.swiper-pagination{
	z-index: 10;
}
.visual-swiper-slide img {
  height: auto;
  width: 100%;
}


/* ==========================================================================
   2. ヘッダー周辺・ナビゲーション
   ========================================================================== */
/* パンくずリスト */
#pankuzu {
  width: 100% !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 20px;
  box-sizing: border-box;
}
#pankuzu ul {
  display: flex;
  justify-content: flex-start;
  margin: 10px auto;
}
#pankuzu ul li span {
  margin: 0 .3em;
}
#pankuzu ul li::after {
  content: ">";
  margin: 0 0.5em;
}
#pankuzu ul li:last-child::after {
  content: none;
}

/* 追従メニュー (Smart Nav) */
.menu {
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, top 0.3s;
  position: absolute;
  left: 0;
  top: 116px;
}

.menu-links {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
.menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.menu li p {
  padding: 10px 0;
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
}

/* 固定時のスタイル */
.menu.is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

/* メニューが固定された時に、後ろのコンテンツがガクッとなるのを防ぐための余白用クラス */
body.menu-fixed-padding {
    padding-top: 60px; /* メニューの高さ分（推定60px）を追加 */
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* メニューのテーマカラー切り替え */
.menu-light {
  background-color: var(--red);
}
.menu-light a{
  color: white;
}
.menu-light a:hover p {
  color: var(--darkred);
}

.menu-dark {
  background-color: white;
}
.menu-dark a{
  color: var(--red);
}
.menu-dark a:hover p {
  color: black;
}

/* ==========================================================================
   3. Top Visual (top-v)
   ========================================================================== */
.visual-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15); 
  z-index: 2; 
  pointer-events: none; /* マスク越しにスライド操作ができるようにする */
}
#top-v .visual-wrapper {
  position: relative;
  width: 100%;	
  height: 92vh;
　overflow: hidden;	
}
#top-v .swiper {
  width: 100%;	
  height: 92vh;
}

/* タイトルロゴ */
#top-v .title {
   max-width: 800px;	
  top: 50%; /* 中央寄せの例 */
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 3;
  width: 100%;       
  pointer-events: none; /* タイトルがスライド操作を邪魔しないようにする */
}

#top-v .title img {
	width: 850px;
	max-width: 100%;
}

/* スライド画像調整 */
#top-v .swiper-slide {
  width: 100% !important;  /* 強制的に画面幅いっぱい */
  height: 100% !important;
  margin: 0 !important;
}
#top-v .swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
/* ページネーション */
#top-v .swiper-pagination01 {
  bottom: 30px !important;
　z-index: 100;
}
/* ドット全体の大きさを変更 */
.swiper-pagination-bullet {
    width: 16px !important;    /* 横幅 */
    height: 16px !important;   /* 縦幅 */
    margin: 0 8px !important;  /* ドット同士の間隔 */
    background: #000;          /* 色（必要であれば） */
    opacity: 0.7;              /* 透過度（非アクティブ時） */
}

/* 現在表示中のドット（アクティブ）の大きさをさらに変えたい場合 */
.swiper-pagination-bullet-active {
    width: 18px !important;
    height: 18px !important;
    opacity: 1;
	background: var(--red);
}
/* ==========================================================================
   4. Catch Section (Intro)
   ========================================================================== */
#catch section {
  background-color: var(--red);
}
#catch p {
  font-size: 14px;
  padding: 10px 30px;
  color: white;
  line-height: 1.6;
}
#catch .container {
  padding: 2em 0 3em;
  color: white;
  text-align:center;
}
#catch h2 {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1em;
}
#catch .container p {
  font-size: 18px;
  padding-bottom: 15px;
}

#catch img{
  width: 200px;
  height: 200px;
  border-radius: 50%; 
  object-fit: cover; 
	border: 5px solid var(--darkred);
}

/* ==========================================================================
   5. Points Section (5つのポイント)
   ========================================================================== */
.points{
	padding-top: 40px;
	padding-bottom: 60px;
	position: relative;
}


/* セクションタイトル装飾 (共通) */
.sub-title {
  position: relative;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}
.sub-title h2 {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  position: relative;
}
/* 背景の英字装飾 */
#points h2::before { content: "Points"; color: var(--paleorange); }
#blog h2::before { content: "Blog"; color: var(--palepink); }
#map h2::before { content: "Map"; color: var(--orange); }
#hotel h2::before { content: "Hotel"; color: var(--palepink); top: 20px; }
#info h2::before { content: "Basic Info"; color: var(--darkred); }
#tour h2::before { content: "Tour"; color: var(--paleorange); top: -20px; }
#video h2::before { content: "Video"; color: var(--palepink); top: -20px; }

/* 背景文字共通スタイル */
section h2::before {
  font-family: var(--font-family-selfie);
  font-weight: 400;
  position: absolute;
  transform: translateX(-50%);
  z-index: -1;
  white-space: nowrap;
}


#points h2::before {
  font-size: 160px;	
  top: -5px;
  left: 48%;
}
.points .sub-title  h2 {
  padding-top: 30px;
  padding-bottom: 200px;
}
.points .sub-title h3 {
  font-size: 24px;
	font-weight:  var(--font-weight-regular);
	background: none;
}

/* ポイントコンテンツ */
.points .point-left,
.points .point-right {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
.points .point-left { justify-content: flex-start; }
.points .point-right { justify-content: flex-end; }

/* 番号 */
.points h5 {
  position: relative;
  font-family: var(--font-family-selfie);
  font-size: 4rem;
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--palered);
  text-align: center;
  line-height: 90px;
 font-weight: var(--font-weight-regular);
  top: -5px;
  left:-50px;
}
.points h4{
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 5px;	
}
.points h3{
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  background: linear-gradient(transparent 75%, white 0%);	
  display: inline-block;
  margin-bottom: 15px;
}
.points p{
  font-size: 18px;
}
.point-text{
margin: 20px;
max-width:600px;
z-index: 3;	
}

.point-left img{
width: 720px;
height: auto;
border-radius:0px 20px 20px 0px;	
}

.point-right img{
width: 720px;
height: auto;
border-radius: 20px 0px 0px 20px;	
justify-content: right;	
}

.point-left,.point-right{
padding-bottom: 40px;	
}

/* 装飾アイコン類 */
.deco01, .deco02, .deco03, .deco04, .deco05, .mum02, .dau01 {
  position: absolute;
   z-index: 1;
}
.deco02 { top: 20px; left: 0; width: 350px; }
.deco04 { top: 20px; right: 0; width: 400px; }
.mum02 { top: 200px; left: 15%; width: 110px; }
.deco01 { top: 42%; right: 10px; width: 255px; z-index:10;}
.deco03 { bottom: 30%; left: 10px; width: 235px; z-index:10;}
.deco05 { bottom: 180px; right: 10px; width: 200px; }
.dau01 { bottom: 0; right: 15%; width: 210px; }

/* ==========================================================================
   6. Blog Section
   ========================================================================== */
#blog section {
  background-color: var(--pink);
}
#blog .container{
  padding: 2em 0 5em;
}

.blog-comment {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 30px;
  text-align: center;
}

#blog h2::before {
  font-size: 150px;	
  top: -30px;
  left: 48%;
}
.blog .sub-title  h2 {
 padding-top: 25px;
  padding-bottom: 85px;
}
.blog .sub-title h3 {
  font-size: 24px;
	font-weight:  var(--font-weight-regular);
	background: none;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    max-width: 1000px;
    margin: 0px auto;	
}


.blogcontent {
  background-color: white;
  border-radius: 30px;
  box-shadow: 8px 8px 0px 0px rgba(115, 4, 47, 0.65);
  transition: 0.3s;
  overflow: hidden;
  height: 100%;
  display: block;
}
.blogcontent:hover {
  box-shadow: 4px 4px 0px 0px rgba(115, 4, 47, 0.8);
}
.blogcontent img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blogcontent .text-area {
  padding: 15px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog li:hover{
	transform: translateY(-5px);
	box-shadow: 1px 1px 0px 0px rgba(115, 4, 47, 0.8);
}
.mum01{
position: absolute;
bottom:0px;
left:11%;
width:200px;	
}
.text-area{
  margin: 10px;
  height: 150px;	
}
#blog .blogtitle {	
  text-align: left;
  padding-bottom: 0px;
  font-weight: 600px;	
}
.blogcontent h6 {
  text-align: right;
  color: var(--red);
  font-size: 14px;
}


/* Coming Soon (Disabled) */
.is-disabled {
  pointer-events: none;
  position: relative;
  cursor: default; 	
  filter: grayscale(100%);
  color: none;	
	background-color: gray;
  opacity: 1;
}
.is-disabled::after {
  content: "coming soon...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  z-index: 100;
}

.is-disabled:hover,
.is-disabled:active {
  box-shadow: none; 
}
/* ==========================================================================
   7. Map Section
   ========================================================================== */
#map section{
  position: relative; /* 子要素（ボタン）の基準にする */	
  background-color: #95cac2;	
  background-image: url("../img/dubaiimg/map_illust.JPG");
  background-repeat: no-repeat;	
  background-position: center center;
  background-size: 1320px auto;
  height: 1080px;
}

/* Map Title */
#map h2::before {
  font-size: 150px;	
  top: 0px;
  left: 49%;
}
.map .sub-title  h2 {
 padding-top: 60px;
  padding-bottom: 100px;
}
.map .sub-title img {
  width: 300px;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.map .sub-title h3 {
  font-size: 24px;
	font-weight:  var(--font-weight-regular);
	background: none;
}

/* マップ上のボタン（ホットスポット） */
/* Map Buttons (Common) */
.bt-dubai, .bt-dubai-sub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* これにより中心基準で配置 */
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}
/* メインスポットボタン */
.bt-dubai {
  padding: 7px 34px 7px 10px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 14px;
  border: 2px solid white;
}
.bt-dubai:hover {
  background-color: var(--red);
}

/* ＜ */
.bt-dubai.r-side{
    padding: 8px 10px 8px 34px;
}

/* ピンの形状（CSSで作る矢印） */
.bt-dubai::before, .bt-dubai::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  transform-origin: 100% 50%;
  height: 2px;
  width: 15px;
  background-color: white;
  border-radius: 2px;
  transition: 0.3s;
}
.bt-dubai::before { transform: translateY(-50%) rotate(30deg);}
.bt-dubai::after { transform: translateY(-50%) rotate(-30deg);}
.bt-dubai:hover::before {transform: translate(8px, -50%) rotate(30deg);}
.bt-dubai:hover::after {transform: translate(8px, -50%) rotate(-30deg);}

/* 右向きピンの反転 */
.bt-dubai.r-side::before, .bt-dubai.r-side::after {
  right: auto;
  left: 14px;
  transform-origin: 0% 50%;}
.bt-dubai.r-side::before { transform: translateY(-50%) rotate(-30deg); }
.bt-dubai.r-side::after { transform: translateY(-50%) rotate(30deg); }
.bt-dubai.r-side:hover::before {transform: translate(-8px, -50%) rotate(-30deg);}
.bt-dubai.r-side:hover::after {transform: translate(-8px, -50%) rotate(30deg);}

/* ホテルボタン */
.bt-dubai.bt-hotel {
  background-color: rgba(185, 44, 40, 0.6);
}
.bt-dubai.bt-hotel a {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
}

/* サブボタン（グレー） */
.bt-dubai-sub {
  padding: 4px 8px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: lightgray;
  font-size: 12px;
  border: 2px solid lightgray;
  pointer-events: none; /* クリック不可 */
}

/* ==========================================================================
   8. Modal (Popup)
   ========================================================================== */
.Modal.active {
	opacity: 1;
    pointer-events: auto;
	display: flex; /* モーダルの中身（Modal__container）を中央に配置 */
    justify-content: center;
    align-items: center;
}
/* ポップアップ（モーダル）の初期設定 */
.Modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* モーダルの中身全体を保持し、背景色とサイズ、レイアウトを定義するコンテナ */
.Modal__container {
  width: 800px;
  max-width: 90%;
  height: 500px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: flex;
  transform: scale(0.9);
  transition: transform 0.3s ease-out;
}
.Modal.active .Modal__container {
    transform: scale(1);
}

/* モーダル内部レイアウト */
.Modal__container img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.Modal__contents02 {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.modal-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 40px;
  color: var(--darkred);
}

.Modal__contents02 .caption {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.8;
  border-top: 2px solid #ddd;
  padding-top: 10px;
}
.modal-close-btn {
  align-self: flex-end;
  padding: 8px 20px;
  background: #ccc;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  margin-top: 20px;
}
.modal-close-btn:hover {
  background: #aaa;
}

/* ------------------------------------- */

/* 背景を暗くするオーバーレイ */
/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999; /* モーダルの下 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#overlay.active {
  opacity: 1;
  pointer-events: auto;
}
/*　　∧＿∧
　 （　´∀｀）⊃
　（ ⊃　　）
　/　ノ　/
（__/（＿）
/* ==========================================================================
   9. Hotel Section
   ========================================================================== */
#hotel .hotel-section{
  padding: 0em 0 3em;
  background-image: var(--beige);
}
#hotel .sub-title{
  background-color: var(--pink);
  line-height: 1.8;
  padding-bottom: 2em;	
}
#hotel .sub-title  h2 {
  padding-top: 120px;
  padding-bottom: 60px;
}
#hotel .sub-title h3 {
  font-size: 24px;
	font-weight:  var(--font-weight-regular);
	background: none;
}
#hotel .sub-title p {
  font-size: 18px;
	font-weight:  var(--font-weight-regular);
	background: none;
	text-align: center;
}
#hotel h2::before {
  font-size: 150px;	
  z-index: -1;
	top: 20px;
font-family:  var(--font-family-selfie);
font-weight: var(--font-weight-regular);
  left: 48%;
  transform: translateX(-50%);
  position: absolute;
}

/* タブ切り替えシステム */
input[name="hotel-tab-radio"] { display: none; }

.tab-buttons {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 0;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  border: 0px solid transparent;
  text-shadow: 0 3px 3px rgba(0,0,0,0.8);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  filter:opacity(50%);
  color: #fff;	
}
.tab-buttons label[for="hotel01"]{
	background:url("../img/dubaiimg/Palace.jpg");
}
.tab-buttons label[for="hotel02"]{
	background-image:url("../img/dubaiimg/JWMM.jpg");
}
.tab-buttons label[for="hotel03"]{
	background-image:url("../img/dubaiimg/Sofitel.jpg");
}
.tab-buttons label[for="hotel04"]{
	background-image:url("../img/dubaiimg/VDM.jpg");
}
.tab-btn:hover {
  transform: scale(1.05);
  filter: none;
}

.tab-btn h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}
/* 選択時のスタイル */
#hotel01:checked ~ .tab-buttons label[for="hotel01"],
#hotel02:checked ~ .tab-buttons label[for="hotel02"],
#hotel03:checked ~ .tab-buttons label[for="hotel03"],
#hotel04:checked ~ .tab-buttons label[for="hotel04"] {
  filter: none;
  color: #fff;
}

/* --- コンテンツの表示・非表示制御 --- */
.tab-content {
  display: none; /* 初期状態は非表示 */
  animation: fadeIn 0.6s ease; /* ふわっと表示 */
  padding-bottom: 60px;	
}

/* ラジオボタンがチェックされたら、対応するIDのコンテンツを表示 */
#hotel01:checked ~ .tab-container #hotel01_content,
#hotel02:checked ~ .tab-container #hotel02_content,
#hotel03:checked ~ .tab-container #hotel03_content,
#hotel04:checked ~ .tab-container #hotel04_content {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.slide-container {
  /* 親要素の幅制限を無視して画面幅(100vw)いっぱいにする魔法の記述 */
  width: 100%; 
  height: auto;	
  position: relative;
  overflow: hidden; 
  padding-bottom: 30px;
}

.slide-container .swiper-wrapper {
  height: auto !important; /* Swiperのデフォルト設定を上書き */
  align-items: flex-start; /* 画像の高さがバラバラでも上揃えにする */
}

/* --- スライド1枚ごとの設定 --- */
.slide-container .swiper-slide {
  width: 1000px;
  max-width: 90%; 
  height: auto; 
  opacity: 0.4;
  transition: opacity 0.3s;
}

.slide-container .swiper-slide-active {
  opacity: 1;
}

.slide-container .swiper-slide img {
  width: 100%;
  height: auto; 
  display: block;
}

.swiper-button-prev { left: 10vw; }
.swiper-button-next { right: 10vw; }
.swiper-button-prev,.swiper-button-next {
 color: white;	
 background-color: rgba(110, 106, 98,0.5);
 width:60px;
 height: 60px;
 border-radius: 50%;
}

.hotel-caption {
  position: absolute;
  bottom: 10px; 
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7); 
  color: white; 
  padding: 5px 10px;
  border-radius: 1.1rem;
}

/* --- ホテル情報のスタイル --- */

.hotel-info {
line-height:1.8;	
max-width: 1000px;
margin: 0 auto;	
}
.hotel-info h5 {
  font-size: 32px;
  margin-bottom: 20px;
  padding-top: 30px;	
  padding-bottom: 10px;
  border-bottom: 2px solid #ddd;
}

.info-contents {
 display: flex;
  gap: 40px;
}

.info-list {
  flex: 1;
  min-width: 280px;
  list-style: none;
  padding: 0;
}

.info-list li {
  display: flex;
  justify-content: space-between;
  text-align: right;
  padding: 8px 0;
  font-size: 20px;
  line-height: 1.6em;
}

.info-list li span {
  background-color: black;
  border-radius:1.8em;
  font-weight: bold;
  color: white;
  padding: 2.5px 5px;
  min-width:150px;	
  text-align: center;
  font-size: 18px;	
  max-height: 38px;
}

.hotel-text {
  flex: 1;
  min-width: 300px;
  line-height: 1.8;
	
}

.tourbtn {
  display: block;
  text-align: center;
  background:var(--pink);
  color: black;
  padding: 15px;
  margin-top: 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 24px;	
  font-weight: 600;	
}

.tourbtn:hover {
  background: var(--red);
  color: white;
}

/* ==============================================
   ▼▼▼ 修正用CSS（既存の記述と差し替えてください） ▼▼▼
   ============================================== */

/* 4. トップ画像（#top-v）の強制リセット（念のため追加） */
#top-v .swiper-slide {
  width: 100% !important;
  max-width: none !important; /* 上記の90%制限を解除 */
  opacity: 1 !important;
  margin: 0 !important;
}

/* ==========================================================================
   10. Basic Info Section
   ========================================================================== */
#info section {
  background-color: var(--red);
}
#info .container{
  padding: 3em 0 ;
	position: relative;
}
#info p {
  text-align: center;
  padding-bottom: 40px;
  color: white;
}
#info h2::before {
  font-size: 150px;	
  top: -30px;
  left: 48%;
}
.info .sub-title  h2 {
	color: white;
 padding-top: 30px;
  padding-bottom: 100px;
}
.basic-info {
  background-color: var(--baige);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 30px;
  box-sizing: border-box;
}
.basic-info li {
  display: flex;
  border-bottom: 1px solid var(--red);
  padding: 15px 0;
}
.basic-info li:last-child {
  border-bottom: none;
}
.basic-info li h6 {
  width: 20%;
  font-weight: bold;
  color: var(--red);
  font-size: 18px;
}
.basic-info li p {
  width: 80%;
  color: black !important;
  text-align: left !important;
  margin: 0 !important;
  padding: 0 !important;
}
.dau03{
position: absolute;
bottom: 0px;
right: 8%;
width: 130px;
}
/* ==========================================================================
   11. Tour Section
   ========================================================================== */
#tour section {
  background-color: var(--baige);
}
#tour .container{
  padding: 3em 0 3em;
}
#tour p {
  text-align: center;
  padding-bottom: 50px;
}
#tour h2::before {
  font-size: 150px;	
  top: -20px;
  left: 48%;
}
.tour .sub-title  h2 {
  font-size: 32px;
 padding-top: 50px;
  padding-bottom: 70px;
}
.tour .sub-title h3 {
  font-size: 24px;
	font-weight:  var(--font-weight-regular);
	background: none;
}
.tour-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  max-width: 1000px;
  margin: 0 auto;
}
.tour-cards img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.tour-cards .text-area {
  padding: 5px;
}
.blog-comment{
	position: relative;
	width: 1000px;
	margin: 0 auto;
}
.tour-cards li {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 0px 0px rgba(250, 158, 61, 0.5);
  transition: 0.3s;
}
.tour-cards li:hover {
  transform: translateY(-5px);
  box-shadow: 2px 2px 0px 0px rgba(250, 158, 61, 0.8);
}
#tour .text-area p{	
  text-align: left;
  font-size: 20px;	
  padding-bottom: 0px;
}
#tour .text-area p span{	
  padding-bottom: 0px;
  font-size:16px;	
}
/* .tour-cards .text-area h4 {
  color: var(--red);
  font-size: 20px;
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0; 	
}
.tour-cards .text-area h4 span{
  color: black;
  font-size: 12px;
}*/
#tour .text-area{	
 height: auto;
}

.mini-tourbtn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 50px auto 0;
  background: var(--red);
  color: white;
  padding: 15px;
  border-radius: 50px;
  text-align: center;
  font-size: 18px;
}
#tour .mum01 {
  bottom: 0;
  top: auto;
  left: 5%;
  width: 190px;	
}

/* ==========================================================================
   12. Video Section
   ========================================================================== */
#video .container {
  background-color: var(--pink);
  padding: 3em 0;
}
#video p {
  text-align: center;
  padding-bottom: 50px;
}
#video h2::before {
  font-size: 150px;	
  top: -10px;
  left: 48%;
}
.video .sub-title  h2 {
  font-size: 32px;
  font-weight:  var(--font-weight-bold);
 padding-top: 50px;
  padding-bottom: 70px;
}
.video .sub-title h3 {
  font-size: 24px;
	font-weight:  var(--font-weight-regular);
	background: none;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.video-wrapper iframe {
  width: 800px;
  height: 450px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
/* ==========================================================================
   13. Footer / Call Center
   ========================================================================== */
.callcenter {
  padding: 2em 0 1em;
  background: #3d3d3d;
  color: #fff;
}
.callcenter .wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.callcenter h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.callcenter h4 {
  font-size: 18px;
  margin:10px 0;
}
.callcenter p {
  font-size: 14px;
  margin-bottom: 20px;
}
.callcenter ul.phone {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.callcenter li h3 {
  font-size: 32px;
}

/* ==========================================================================
   14. Other UI Elements
   ========================================================================== */
/*-------------------------------------------------上に戻るボタン */
.pagetop {
  height: 80px;
  width: 80px;
  position: fixed;
  right: 48px;
  bottom: 48px;
  border: solid 3px var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.3) !important; 
}
.pagetop:hover { opacity: 1; }
.pagetop__arrow {
  height: 16px;
  width: 16px;
  border-top: 4px solid var(--white);
  border-right: 4px solid var(--white);
  transform: translateY(20%) rotate(-45deg);
  transition: all 0.3s;
}
/* ===================================================
   ▼▼▼ ページ全体のズレ・はみ出し防止用CSS ▼▼▼
   =================================================== */

/* 1. ページ全体の余白とスクロール設定をリセット */
html, body {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 4. スライドコンテナの最終調整（念押し） */
.slide-container {
  width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  left: auto !important;
  transform: none !important;
}

/* 5. 画像がはみ出すのを防ぐ */
img {
  max-width: 100%;
  height: auto;
}