@charset "UTF-8";
/* CSS Document */

/*ボックスモデルのリセット*/
*,*::before,*::after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/*================================*/

body {
      margin: 0;
      max-width:375px;
      margin: 0 auto;
      font-family: sans-serif;
      position: relative;
    }

img{
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

@media(max-width:700px){/*PCからスマホ幅になった時切り替わる*/
	.container{
		width: 100%;/*スマホに対応できる幅*/
	}
}

h1{
	width: 300px;
	margin: 0 left;/*ロゴ・お店の名前が真ん中へ*/
}

.header img{
	margin-top:10px;
}
.header ul{
	display: flex;
	margin: -50px 0 50px 330px;
	width: 30px;
}

.container{
margin: 0 auto;/*画像が真ん中へ*/
background-image: repeating-linear-gradient(
 to right,          /* 縦方向（右方向）に繰り返し */
#9dd2e4 0px,     /* 1本目：水色 開始 */
  #9dd2e4 125px,   /* 幅125px */
  #ffffff 125px,   /* 2本目：白 */
  #ffffff 250px,   /* 幅125px */
  #9dd2e4 250px,   /* 3本目：水色 */
  #9dd2e4 375px    /* 幅125px（ちょうどスマホ幅） */
);
padding: 30px 10px;
}
.container p{
	margin: 30px 10px;
	font-size: 13px;
}

/*==============================================*/
/* --- ハンバーガーボタン --- */
  .hamburger {
      position: fixed;
      top: 20px;
      right: 30px;
      z-index: 1000; /* メインビジュアルより上に */
      cursor: pointer;
      width: 30px;
      height: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  .hamburger span {
    display: block;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
	transition: all 0.3s;
  }

 /* --- 三本線クリックしたらのメニュー部分 --- */
  nav {
    position: fixed;
      top: 0;
      right: -100%;
      width: 30%;
      height: 50vh;
      background: rgba(255, 255, 255, 0.80);
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: right 0.3s;
      z-index: 999;
  }
nav.active {
      right: 0;
    }
 nav a {
    color: #333;
      text-decoration: none;
      font-size: 1rem;
      margin: 10px 0;
	   text-align: center;/* ← 中央揃え */
	 width: 100%;
  display: block;
  font-weight: 500;
  }

  nav a:hover {
    background-color: #9dd2e4;
  }
      /* ハンバーガー開閉アニメ */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translateY(9px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-9px);
    }

/*==============================================*/

.main-visual {
  position: relative;
  width: 100%;
  height: 45vh; /* 画面の高さの45%を確保 */
  overflow: hidden;
	display: flex;
  justify-content: center;
  align-items: center;
	margin: 0 auto;/*画像が真ん中へ*/
}

.main-visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height:auto;/* ← 高さ自動にして比率維持 */
	max-height: 100vh; /* ← スマホで縦長対応 */
	object-fit: contain; /* ← 全体を収める */
  opacity: 0;
  transform: translate(-50%, -50%) scale(1); /* 最初は少し拡大（引いていく演出用） */
  animation: slideZoom 18s infinite;
}

/* 各画像の表示タイミングをずらす */
.main-visual img:nth-child(1) {
  animation-delay: 0s;
}
.main-visual img:nth-child(2) {
  animation-delay: 6s;
}
.main-visual img:nth-child(3) {
  animation-delay: 12s;
}

/* フェード＋ズームアウトアニメーション */
@keyframes slideZoom {
   0% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
      5% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
      30% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
      35% { opacity: 0; transform: translate(-50%, -50%) scale(1); }
      100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
    }

/*==============================================*/
h2{
	text-align: center;
	font-size: 17px;
}
h2 span{
	font-size: 14px;/*2行目のみ小さく*/
	display:block;/*改行*/
	font-weight: normal;/*文字の太さが標準へ*/
}
	
h3{
	text-align: center;
	color: #00607E;
	font-size: 25px;
	margin: 40px 0 20px 0;
}
h3 span{
	font-size:18px;/*日本語のみ小さく*/
	display:block;/*改行*/
	font-weight: normal;/*文字の太さが標準へ*/
}
/*==================================*/
.bnr img{
		margin: 20px 0;
	}

.bnr_list {
  gap: 10px;
  justify-content: center;
}

.bnr_list a {
  display: block;
  text-align: center;
  border-bottom: 2px solid #C9BC9C;
  padding-bottom: 5px;
  border-radius: 6px;
  transition: all 0.4s ease;
  opacity: 0; /* 初期は非表示 */
  transform: translateY(40px); /* 下から隠しておく */
}

/* 表示されたときに動く */
.bnr_list a.show {
  opacity: 1;
  transform: translateY(0);
}

/* 枠線ホバー */
.bnr_list a:hover {
  border: 2px solid #C9BC9C;
}

.bnr_list img {
  display: block;
  width: 90%;
  height: auto;
  margin-left: 10px;
}

.look{
	width:90px;
	margin: 30px 0px 50px 260px;
}

.look img:hover {
  background-color: #9DD2E4; /* ホバー時に背景でる */
}
/*==================================*/
.Produits ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.Produits li {
  position: relative;
  justify-content: center;
  margin: 15px 0;
  overflow: visible; /* ← 湯気がはみ出しても見えるように */
}

.Produits img {
  width: 100%;
  height: auto;
  transition: transform .5s ease, box-shadow .5s ease;
  display: block;
  border-radius: 8px;
  position: relative;
  z-index: 1; /* 画像を下にする */
}

/* ホバーでふわっと浮く */
.Produits img:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- 湯気を出す部分 --- */
.Produits li::before {
  content: "";
  position: absolute;
  top: -10%; /* 画像の上あたりから湯気が出る */
  left: 50%;
  width: 50px;
  height: 100px;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.8) 10%, rgba(255,255,255,0.2) 60%, transparent 100%);
  opacity: 0;
  transform: translateX(-50%) scale(1);
  pointer-events: none;
  z-index: 2; /* ← 湯気を前面に */
  filter: blur(12px); /* ← ぼかして柔らかく */
  border-radius: 50%;
}

/* ホバー時に湯気が出る */
.Produits li:hover::before {
  animation: steam 2.5s ease-out infinite;
  opacity: 1;
}

/* 湯気アニメーション（上昇＋消える） */
@keyframes steam {
  0% {
    transform: translate(-50%, 10px) scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -30px) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -60px) scale(1.2);
    opacity: 0;
  }
}

/*==============================================*/

/*オンラシンショップボタン*/
.btn {
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 300px;
  background-color: #0084b3;
  padding: 10px;
  margin: 10px auto 0;
  border-radius: 50px; /* 角丸 */
  font-size: 18px;
  font-weight: bold; /* 太文字 */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* シャドウ */
  transition: all 0.3s ease;
  z-index: 1000;
  filter: opacity(90%); /* 半透明 */
  position: relative;
  overflow: hidden;
  cursor: pointer;
		margin-bottom: 60px;
}

.btn:hover {
  background-color: #a4daf1;
  color: #000;
  filter: brightness(1.1);
  transform: translateY(-8px) scale(1.02); /* バウンド */
}

/* 飛び出すアイコン */
.sparkle {
  position: fixed;
  font-size: 22px;
  pointer-events: none;
  animation: floatUp 1s ease-out forwards;
  z-index: 2000;
}

/* ふわっと上に浮かぶ */
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-60px) scale(0.5); opacity: 0; }
}
/*==============================================*/

.Access{
	background-color: #f0f7fc;
	text-align: center;/*中央揃え*/
padding:10px 10px;
}

.Access ul{
  list-style: none;
	margin: 40px;
}
.Access img{
	margin: 20px 0;
}
.Access p{
	margin:30px 10px;
    text-align:left;
	font-size: 14px;
}
/*==============================================*/
.Points{
	background-image: url("../images/foot.png");/*プロフィール部分の背景画像*/
	background-size:cover;/*カバー＝背景画像の全体表示*/
	background-position:left;/*画像が左合わせで真ん中に見えるように*/
	padding: 30px 0;

}

.container2{
  text-align: right; /* 中の要素（テキストやインライン要素）を右揃え */
  margin-right: 20px; /* ページ右端から少し余白（任意） */
}
.container2 p{
	font-size:20px;
	margin-top:15px;
}

footer{
	text-align: center;/*中央揃え*/
	padding: 20px;/*上下左右に内側余白*/
}
	
	/*==============SHOP予約ボタン======================*/
.fixed-btn {
  position: fixed;          /* スクロールしても固定 */
  right: 20px;              /* 画面右からの距離 */
  bottom: 23px;             /* 画面下からの距離 */
  background-color: #0084b3;/* ボタンの背景色（お好みで変更） */
  color: #fff;              /* 文字色 */
  padding: 10px 25px;       /* 内側の余白 */
  border-radius: 40px;      /* 角丸 */
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;            /* 他の要素より前に出す */
  filter: opacity(90%);/*半透明*/
}

.fixed-btn:hover {
  background-color: #a5e0f9;
  color: #000;  
	filter: brightness(1.1);/*ふわっと光る*/
	transform: translateY(-8px) scale(1.02);/*ホバー後に少し「バウンド」*/
}
@media (max-width: 400px) {
  .fixed-btn {
    bottom: 10px;
    right: 10px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

