@charset "UTF-8";

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul{
    list-style: none;
}

html, body {
  overflow-x: hidden; /* ✅ 横スクロール防止 */
}

/* 基本設定 */
body {
  background: radial-gradient(50% 50% at 50% 50%, #BC192A 0%, #8F0316 100%);
  font-family: "Shippori Mincho", serif;
}

/* ✅ 全体ラッパー：スマホサイズを基準に固定 */
.wrapper {
  width: 375px;
  margin: 0 auto;
}

/* 画像を親幅いっぱいに */
img {
  width: 100%;       /* 親幅に合わせる */
  height: auto;      /* 縦横比を維持 */
  display: block;    /* 下の余白をなくす */
}

section{
  margin-top: 20px;
}

p{
    color: #FFF;
    font-family: "Shippori Mincho", serif;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.header{
    position: relative;
}

.title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -42px;
    z-index: 1;
}

.headerbgimg1{
  position: relative;
  width: 100%;       /* 横幅は親に合わせる */
  height: auto;      /* 縦横比を維持 */
  transform-origin: top;  /* 上端を基準に拡大 */
  display: block;
  top: -20px;
  z-index: -1;
  left: 46%;
  transform: translateX(-50%) scale(1.2);
}

.topcake{
    width: 100%;
    margin: -40px auto 0 auto;
}

.headerbgimg2{
  position: absolute;
  top: 155px;
  z-index: -1;
  width: 100%;       /* 横幅は親に合わせる */
  height: auto;      /* 縦横比を維持 */
  transform: scale(1.75); /* 縦方向だけ120%に拡大 */
  transform-origin: top;  /* 上端を基準に拡大 */
  display: block;
}


.w-line{
    margin: 30px auto;
    width: 300px;
}

.cake{
  width: 100%;
  margin: 0 auto;
}

#kanoacake{
  margin: -30px auto 0 auto;
}

.shop{
  position: relative;
  text-align: center;
}

.shoplogo{
     width: 60%;
    margin: 0 auto;
}

.shop1-bgimg{
  width: 60%;
  position: absolute;
  top: 10px;
  right: -68px;
  z-index: -1;
}

.shop2-bgimg{
  position: absolute;
  top: -87px;
  left: -172px;
  z-index: -1;
}

.shop3-bgimg{
  position: absolute;
  top: -97px;
  right: -205px;
  z-index: -1;
  width: 100%;       /* 横幅は親に合わせる */
  height: auto;      /* 縦横比を維持 */
  transform: scale(1.25); /* 縦方向だけ120%に拡大 */
  transform-origin: top;  /* 上端を基準に拡大 */
}

.shop3-asirai{
  position: absolute;
  width: 45px;
  top: 24px;
  left: 18px;
}

.attention-wrapper{
  margin: 0 18px;
  position: relative;
}

.attention-inner{
  position: relative;
  margin-bottom: 18px;
}

.tonakai{
right: 0px;
    top: 65px;
    position: absolute;
    width: 35%;
}

.attention-bgimg{
    position: absolute;
    top: 192px;
    left: -182px;
    z-index: -1;
    width: 80%;
}

.map{
  width: 90%;
  margin: 20px auto;
}

.access{
  color: #333;
  padding: 0 40px;
}

  .address{
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

.r-line{
    margin: 20px auto -2px auto;
    width: 300px;
}

/* 画像幅に背景色を合わせる */

.info-title {
  display: block;
  position: absolute;
  z-index: 2;
  width: 200px;
  left: 50%;
  transform: translateX(-50%);
}


.information {
  background-color: #FFF;
  width: 100vw;                /* ✅ 画面幅いっぱい */
  margin: 20px 0 0 0;
  padding: 15px 5px 0 5px;
  position: relative;
  left: 50%;                   /* ✅ 親の .wrapper に依存せず中央に */
  transform: translateX(-50%);
  box-sizing: border-box;
}

.information-inner {
  max-width: 375px;
  margin: 0 auto;
}

.info-bg {
  display: block;
  width: 100vw;  /* ✅ .informationいっぱい */
  height: auto;
  margin: 40px auto -22px auto;
  position: relative;
  left: 50%;                   /* ✅ 親の .wrapper に依存せず中央に */
  transform: translateX(-50%);
}



/* === フッター === */
footer {
  background-color: #FFF;
  position: relative;
  padding: 20px 0;      /* 上下に余白追加（任意） */
  width: 100vw;
  left: 50%;                   /* ✅ 親の .wrapper に依存せず中央に */
  transform: translateX(-50%);
}

.footer-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;       /* ✅ スマホで折り返し対応 */
  width: 90%;
  max-width: 375px;
  margin: 0 auto;        /* 中央寄せ */
}

.logo{
  width: 100px ;
}

ul{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

.icon{
  width: 35px;
  padding: 2px;
}

.smaller{
  font-size: 0.8rem;
}

.bigger{
  font-size: 0.8rem;
  font-weight: 600;
}

/* ボタン例 */
.btn-reserve {
  display: inline-block;
  padding: 5px 0px 10px 0px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2;
  color: #333;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  animation: shake 3s ease-in-out infinite;
  border-radius: 20px;
background: var(--Linear, linear-gradient(90deg, #FFFAB4 0%, #FFD84D 50%, #FFFAB4 100%));
box-shadow: 0 5.843px 5.843px 0 rgba(0, 0, 0, 0.25);
    width: 230px;
    margin: 10px auto;
}

/* 🔸 小刻みに揺れるアニメーション */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateX(2px); }
}

.shake {
  animation: shake 1s ease-in-out infinite;
}

/*
@keyframes gentleFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  20%  { transform: translateY(-2px) rotate(-0.5deg); }
  40%  { transform: translateY(1px) rotate(0.3deg); }
  60%  { transform: translateY(-1px) rotate(-0.3deg); }
  80%  { transform: translateY(1px) rotate(0.2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}*/

/* 光のアニメーション */
.btn-reserve::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.5);
  transform: skewX(-25deg);
  animation: shine 3.5s infinite;
}

@keyframes shine {
  0% { left: -75%; }
  60% { left: 125%; }
  100% { left: 125%; }
}

.btn-reserve:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 15px rgba(253, 216, 53, 0.6);
}

/* 雪の舞い */
.snow-container::before,
.snow-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 20px 20px;
  animation: snowfall 10s linear infinite;
  opacity: 0.6;
}

.snow-container::after {
  animation-duration: 15s;
  opacity: 0.3;
  background-size: 30px 30px;
}

@keyframes snowfall {
  0% { background-position: 0 0; }
  100% { background-position: 0 600px; }
}

/* ✅ PC表示時にスマホ版を拡大 */
@media (min-width: 768px) {
  .wrapper {
    transform: scale(2);        /* 拡大倍率を調整（1.2〜2で好み調整） */
    transform-origin: top center; /* 中央基準で拡大 */
  }

    .info-bg {
    width: 375px; /* 画面幅の半分などに調整 */
    margin: 40px auto -22px auto;
  }

    .information {
    width: 375px; /* または 70vw などに調整 */
  }

  footer{
    width: 375px;
  }
}