@charset "utf-8";

/* ===========================================
   ◆ メインビジュアル
===========================================*/

.mv{
    width: 741px;
    margin: 0 auto;
    padding-top:50px;
    position: relative; /* 煙の基準にする */
    overflow: hidden; /* ← 横スクロール防止 */
}

.mv img{
    display: block;                /* インライン要素の余白を消す */
    width: 100%;                   /* 親の幅にフィット */
    height: auto;                  /* 比率保持 */
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* ← 影を弱めた */
    position: relative;
    z-index: 1;
}

/* 煙ベース共通 */
.mv::before,
.mv::after,
.mv .smoke-extra1,
.mv .smoke-extra2,
.mv .smoke-extra3,
.mv .smoke-extra4 {
  content: "";
  position: absolute;
  left: 55%;               /* ← 発生位置を中央より少し右へ */
  top: 50%;                /* 画像の縦中央を基点 */
  width: 65%;
  max-width: 480px;
  height: 200px;
  background: radial-gradient(circle, rgba(200,200,200,0.5) 25%, transparent 70%);
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 2;
}

/* メイン煙 */
.mv::before { animation: burgerSmokeUp 6s ease-in-out infinite; }
.mv::after { animation: burgerSmokeLeft 5s ease-in-out 1s infinite; }
.mv .smoke-extra1 { animation: burgerSmokeRight 5.5s ease-in-out 2s infinite; }
.mv .smoke-extra2 { animation: burgerSmokeWide 7s ease-in-out 3s infinite; }

/* 小粒の煙（もくもく感） */
.mv .smoke-extra3 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(200,200,200,0.45) 20%, transparent 70%);
  filter: blur(12px);
  animation: burgerSmokePuff1 4s ease-in-out 1.5s infinite;
}
.mv .smoke-extra4 {
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(200,200,200,0.4) 20%, transparent 70%);
  filter: blur(10px);
  animation: burgerSmokePuff2 3.5s ease-in-out 2.5s infinite;
}

/* 上 */
@keyframes burgerSmokeUp {
  0%   { opacity:0; transform: translate(-50%,-30%) scale(0.8); }
  25%  { opacity:0.7; transform: translate(-50%,-60%) scale(1.1); }
  60%  { opacity:0.45; transform: translate(-50%,-140%) scale(1.4); }
  100% { opacity:0; transform: translate(-50%,-200%) scale(1.6); }
}
/* 左斜め */
@keyframes burgerSmokeLeft {
  0%   { opacity:0; transform: translate(-50%,-30%) scale(0.7); }
  25%  { opacity:0.6; transform: translate(-60%,-70px) scale(1.0); }
  70%  { opacity:0.35; transform: translate(-70%,-150px) scale(1.3); }
  100% { opacity:0; transform: translate(-80%,-210px) scale(1.5); }
}
/* 右斜め */
@keyframes burgerSmokeRight {
  0%   { opacity:0; transform: translate(-50%,-30%) scale(0.7); }
  25%  { opacity:0.6; transform: translate(-40%,-70px) scale(1.0); }
  70%  { opacity:0.35; transform: translate(-30%,-150px) scale(1.3); }
  100% { opacity:0; transform: translate(-20%,-210px) scale(1.5); }
}
/* 広がるもや */
@keyframes burgerSmokeWide {
  0%   { opacity:0; transform: translate(-50%,-30%) scale(0.9); }
  20%  { opacity:0.55; transform: translate(-50%,-70px) scale(1.2); }
  50%  { opacity:0.35; transform: translate(-50%,-150px) scale(1.5); }
  100% { opacity:0; transform: translate(-50%,-200px) scale(1.7); }
}
/* 小粒の煙 1 */
@keyframes burgerSmokePuff1 {
  0%   { opacity:0; transform: translate(-50%,-20%) scale(0.5); }
  30%  { opacity:0.6; transform: translate(-60%,-80px) scale(0.9); }
  70%  { opacity:0.3; transform: translate(-70%,-150px) scale(1.2); }
  100% { opacity:0; transform: translate(-80%,-200px) scale(1.5); }
}
/* 小粒の煙 2 */
@keyframes burgerSmokePuff2 {
  0%   { opacity:0; transform: translate(-50%,-20%) scale(0.4); }
  30%  { opacity:0.55; transform: translate(-40%,-70px) scale(0.8); }
  70%  { opacity:0.3; transform: translate(-30%,-140px) scale(1.0); }
  100% { opacity:0; transform: translate(-20%,-190px) scale(1.3); }
}

/* ===========================================
   ◆ メインコンテンツ共通
===========================================*/

main section{
    margin: 20px;
    width: 741px;
    height: 386px;
    position: relative;
    transform: translateX(20px) translateY(-20px);
    opacity: 0;
}

main section::before {
    content: "";
    position: absolute;
    top: -26px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: url(../assets/images/pushpin_60x60.png) no-repeat center/contain;
    transform: rotate(12deg);
    transform-origin: 50% 95%; /* 針の先を支点に回転 */
    z-index: 2;
    filter: drop-shadow(2px 4px 4px rgba(0,0,0,0.35)); /* 影をつける */
}

@keyframes fademove{
    0%{
        transform: translateX(20px) translateY(-20px);
        opacity: 0;
    }

    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

.fademove-active{
    animation:fademove 1s ease forwards;
}

main section h2{
    text-align:center;
    color: #643800;
    text-shadow: 4px 4px 0 #ffcc33;
    /* カンプにない装飾つける */
    font-family: "Capriola", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size:40px;
    font-weight:bold;
    padding-top: 23px;
    padding-bottom:10px;
    margin-bottom: 41px;
    background: url(../assets/images/border_419x4.png) center bottom no-repeat;
}

main section .cta{
    text-align:right;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 16px;
}

main section .cta a{
    color:#643800;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

main section .cta a:hover {
    color:#a67c52;
}

main section .cta a .juice {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../assets/images/drink_640x640.png) no-repeat center/contain;
    transition: transform 0.3s;
}

main section .cta a:hover .juice {
    transform: translateY(-3px);
}

/* ===========================================
   ◆ 発祥
===========================================*/

.origin .flex{
    justify-content: center;
}

.origin img{
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
    margin-right:22px;
}

.origin .text{
    width: 308px;
    height:227px;
    text-align:justify;
    letter-spacing: 0.5px;
    line-height:33px;
}

main section .text span{
    font-weight:bold;
}

/* ===========================================
   ◆ メニュー
===========================================*/

.menu{
    text-align:center;
}

.menu img{
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
    margin-top:-25px;
    margin-bottom:10px;
}

.menu .text{
    font-size: 20px;    
    width:240px;
    margin: 0 auto;
}

.menu .menu-name{
    font-weight:bold;
    line-height:1.3;
}

.menu .price{
    line-height:1.8;
    font-style: italic;
    font-size: 18px;
}

/* ===========================================
   ◆ ニュース
===========================================*/

.update {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 0 40px;
  }
  
  .update dt.date {
    grid-column: 1;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }
  
  .update dd.title {
    grid-column: 2;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
  }
  
  .update dd.news-content {
    grid-column: 2;
    font-size: 16px;
    line-height: 1.9;
    margin: 4px 0 20px;
  }

/* ===========================================
   ◆ バナー
===========================================*/

.banner{
    justify-content: center;
    gap: 30px;
    margin-bottom:20px;
}

.banner a{
    transition: opacity 0.3s;
}

.banner a:hover{
    opacity:0.8;
}

