

@media screen and (max-width: 767px) {
  .pc { display: none !important; }
}
@media screen and (min-width: 767px) {
  .sp { display: none !important; }
}

a, p,
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}


/* ============================================================
   1. ページ全体 (.page-main)
   ============================================================ */
   body {
background-color: #F5F5F5;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  /* flexを解除し、ブロック要素のmarginで中央寄せする標準的な方法に戻します */
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-main {
  /* ここが重要：max-widthを指定し、margin: 0 autoで中央へ */
  max-width: 550px;
  width: 100%;
  margin: 0 auto !important; /* 他の指定に負けないよう!importantを付与 */
  
  position: relative;
  background-color: #FFF;
  color: #333;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
               "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Meiryo", sans-serif;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  
  /* 念のため内側の余白をリセット */
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
}

/* 767px以上の時も挙動を固定 */
@media screen and (min-width: 767px) {
  .page-main { 
    max-width: 550px;
    margin: 0 auto !important;
  }
}



/* ============================================================
   2. ヘッダー (.site-header)
   ============================================================ */

.site-header {
  background-color: #fff;
  border-bottom: 2px solid #DADADA;
  width: 100%;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ロゴ */
.site-header__logo {
  margin: 0;
  line-height: 1;
}

.site-header__logo a {
  display: block;
  line-height: 1;
}

.site-header__logo img {
  display: block;
  width: 120px;
  height: auto;
}

/* PC用ナビゲーション */
.site-header__nav { display: none; }

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav-list li { margin: 0; }

.site-header__nav-list a {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.site-header__nav-list a:hover { color: #DADADA; }

@media screen and (min-width: 767px) {
  .site-header__inner { height: 64px; }
  .site-header__nav   { display: block; }
}

@media screen and (max-width: 767px) {
  .site-header__inner { height: 60px; padding: 0 16px; }
}


/* ============================================================
   3. ハンバーガーボタン (.hamburger-btn)  ※SP専用
   ============================================================ */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 200;
}

.hamburger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* アクティブ時（×表示） */
.hamburger-btn.is-active span:nth-child(1) { transform: translateY(8px)  rotate(45deg); }
.hamburger-btn.is-active span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media screen and (max-width: 767px) {
  .hamburger-btn { display: flex; }
}


/* ============================================================
   4. MV（メインビジュアル）(.mv)
   ============================================================ */

.mv        { width: 100%; }
.mv__img   { margin: 0; }
.mv__img img { display: block; width: 100%; }


/* ============================================================
   5. セクション共通見出し (.section-heading)
      ※ 導入・イベント・アンバサダー・SNS で共通使用
   ============================================================ */

.section-heading {
  display: flex;            
  align-items: center;    
  justify-content: center;
  gap: 10px;              
  padding: 40px 15px 30px;
  width: 100%;
  box-sizing: border-box;
}


.section-heading__text {
  flex-shrink: 0;          /* 画面幅が狭まってもテキストが潰れないように */
  text-align: center;
  z-index: 2;
}

.section-heading__catch {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.section-heading__lead {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
.section-heading__lead {
  font-size: 15px;
}
}



.section-heading__title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
  color: #333;
  margin: 0;
}

/* 装飾画像（左右の葉っぱなど）の再定義 */
.section-heading__deco {
  position: static;        
  transform: none;         
}

.section-heading__deco--left {
  width: 60px;
  height: auto;
}

.section-heading__deco--right {
  width: 60px;
  height: auto;
}

/* モバイル対応 */
@media screen and (max-width: 767px) {
  .section-heading {
    padding: 30px 10px 20px;
    gap: 5px;           
  }

  .section-heading__deco--left {
    width: 45px;        
  }
  .section-heading__deco--right {
    width: 35px;          
  }
}

/* ==========================================
   イントロセクション
   ========================================== */

.intro {
  width: 100%;
  max-width: 550px; 
  margin: 0 auto;
  background-color: #FFF8DA; 
  color: #34251D;
  line-height: 1.6;
}

.intro-container {
  position: relative;
  padding: 40px 16px;
  margin: 0 auto;
  overflow: hidden; 
}

/* 紙吹雪の共通設定（最前面に配置） */
.intro .deco-confetti {
  position: absolute;
  top: 25px;
  height: auto;
  z-index: 10;
  pointer-events: none; 
}

.intro .deco-left {
  width: 39px;
  left: 6%;
  top: 6%; 
}

.intro .deco-right {
  width: 32px;
  right: 6%;
    top: 6%; 
}

@media screen and (min-width: 768px) {
.intro .deco-left {
  top: 6%; 
}
.intro .deco-right {
    top: 6%; 
}
}

/* 白い角丸カード */
.intro .promo-card {
background-color: rgba(255, 255, 255, 0.85); 
  border-radius: 20px;
  padding: 30px 16px;
  text-align: center;
  position: relative;
  z-index: 1; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 768px) {
.intro-container  {
        width: 460px;
    }
}
/* キャッチコピー（ひとりでも家族でも楽しい） */
.intro .catch-phrase {
  font-size: 14px;
  font-weight: bold;
  color: #163D7A; /* 濃いブルー */
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
.intro .catch-phrase {
  font-size: 18px;

}
}
.intro .catch-phrase span {
  color: #a0a0a0;
  font-weight: normal;
  margin: 0 4px;
}

/* メインタイトル */
.intro .main-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.7;
  color: #34251D;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
.intro .main-title {
  font-size: 24px;
  line-height: 1.7;
  color: #34251D;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
}
/* 黄色マーカー風のハイライト */
.intro .highlight {
  background: linear-gradient(transparent 70%, #fff29d 30%);
  display: inline-block;
  padding: 0 2px;
  font-size: 24px;
  line-height: 1.8;
}

@media screen and (min-width: 768px) {
.intro .highlight {
  font-size: 28px;
  line-height: 1.8;
}
}

.main-title-font {
    font-size: 24px;
}

@media screen and (min-width: 768px) {
.main-title-font {
    font-size: 28px;
}
}
.intro .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 の比率を維持 */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  
  /* 白フチの設定 */
  background-color: #ffffff;
  border: 4px solid #ffffff; /* フチの太さ。お好みで 6px や 8px に太くしても可愛いです */
  border-radius: 4px;
  box-sizing: border-box; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 中のiframeを枠線いっぱいに広げる */
.intro .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px; 
}


/* 説明文 */
.intro .description-text {
  font-size: 17px;
  color: #34251D;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 25px;
}

@media screen and (min-width: 768px) {
.intro .description-text {
  font-size: 18px;
}
}

.intro .description-text p {
  margin: 0 0 13px 0;
    color: #34251D;
  font-weight: bold;
  letter-spacing: 0.12em;
}

.intro .description-text p:last-child {
  margin-bottom: 0;
    color: #34251D;
  font-weight: bold;
}
/* ==========================================
   イベントセクション
   ========================================== */

.events {
  padding-top: 20px;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  color: #333333;
  box-sizing: border-box;
}

/* --- 1. セクションタイトル周り --- */
.events .section-heading {
  position: relative;
  text-align: center;
  padding: 40px 20px 40px 20px;
}

.section-heading__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.05em;
}

.section-heading__title .text-pink {
  color: #f33b62;
}

.section-heading__deco {
  position: absolute;
  top: 10px;
  height: auto;
  pointer-events: none;
}
.events .section-heading__deco--left {
  left: 2%;
  width: 55px;
}
.events .section-heading__deco--right {
  top: 20px;
  right: 2%;
  width: 45px;
}

/* --- 2. イベントリスト・構造共通（レイアウト） --- */
.events__list {
  padding: 0 16px 40px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
.events__list {
        width: 460px;
        margin: 0 auto;
    }
}

.events .event-card {
  border-radius: 24px;
  padding: 24px 14px;
  margin-bottom: 24px;
  box-sizing: border-box;
  position: relative;
}

.events .event-title {
  font-size: 24px;
  font-weight: 900 !important; 
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.event-title .text-large {
  font-size: 32px;
  font-weight: 900 !important;
}

.events .event-date-label {
  display: inline-block;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  white-space: nowrap;
}

.events .event-flex-container {
  display: flex;
  justify-content: center; 
  align-items: center;    
  width: 100%;
  max-width: 460px;       
  margin: 0 auto;         
}

.events .event-left-column {
  flex: 1;                
  max-width: 320px;       
  min-width: 0;           
  position: relative;
  z-index: 2;
}

.events .event-main-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  margin-left: -5%; 
}
.events .event-main-visual img {
  height: auto;
  display: block;
}

.image-note {
  font-size: 9px;
  color: #666666;
  margin-top: 4px;
  white-space: nowrap;
}

.event-card--pink .event-main-visual img {
  width: 150px; 
}

@media screen and (min-width: 768px) {
  .event-card--pink .event-main-visual img {
    width: 180px; 
  }
  .event-card--pink .event-main-visual {
    margin-top: -20px;
    margin-right: 20px;
  }
}

/* --- 大抽選会：注目の景品エリア --- */
.prize-section {
  background-color: #ffffff;
  border: 1px solid #ffccd5;
  border-radius: 16px;
  padding: 30px 0 16px;
  position: relative;
  margin-top: 30px;
}

.prize-ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 200px;
  z-index: 2;
}
.prize-ribbon img {
  width: 100%;
  height: auto;
  display: block;
}

/* 左右2カラム（中央破線付き）のグリッド */
.prize-schedule-grid {
  display: flex;
  justify-content: space-between;
  gap: 0; 
  margin-bottom: 12px;
  margin-top: 15px;
  padding-bottom: 16px;
}

.prize-day-box {
  width: 50%;
  text-align: center;
  padding: 0 3px; 
  box-sizing: border-box;
}

/* 2カラムの中央にある破線 */
.prize-day-box:last-child {
  border-left: 1px dashed #ffccd5;
}

/* アイコン上・テキスト下の配置 */
.prize-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.prize-item-icon {
  height: auto;
  flex-shrink: 0;
}

.prize-item-icon.item-left {
  width: 44px;
}

.prize-item-icon.item-right {
  width: 65px;
}
.prize-item-text {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0;
}

.prize-item-text.item-left {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0;
}

.text-pink {
  color: #F43C4E;
}


/* 下部「その他にも〜」の薄いオレンジ/白枠ボックス */
.prize-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fffaf0; /* お手本の薄いオレンジ背景 */
  border: 1px solid #ffe0b3;
  border-radius: 12px;
  padding: 10px 14px;
  margin-top: 12px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.prize-footer-note .present-icon {
  width: 35px; 
  height: auto;
  flex-shrink: 0;
}

.prize-footer-note p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  margin: 0;
  text-align: left;
}

/* --- カラーバリエーション --- */
.event-card--pink {
  background-color: rgba(255, 243, 243, 0.93);
  border: 2px solid #ffccd5;
  box-shadow: 0 4px 12px rgba(220, 160, 170, 0.15);
}
.event-card--pink .event-title {
  color: #EE5261;
}
.event-card--pink .event-date-label {
  color: #EE5261;
  border: 1px solid #EE5261;
}

.event-badge {
  display: inline-block;
  background-color: #EE5261;
  color: #ffffff;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 6px;
  -webkit-text-stroke: 0.5px;
}


/* --- ご注意エリア --- */
.event-notice-box {
  background-color: #FFF7F8;
  border: 1px solid #ffccd5;
  border-radius: 16px;
  padding: 13px;
  margin-top: 16px;
}

.notice-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: bold;
  color: #EE5261;
  margin-bottom: 8px;
}

.notice-icon {
  width: 18px;
  height: auto;
  flex-shrink: 0;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  font-size: 10.5px;
  color: #666666;
  line-height: 1.5;
}

.notice-list li:last-child {
  margin-bottom: 0;
}

/* --- イベント詳細リスト --- */
.events .event-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.events .event-info-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
  font-weight: 700;
  line-height: 1.3;
}
.events .event-info-list li:last-child {
  margin-bottom: 0;
}
.events .event-info-list .info-icon {
  width: 18px;
  height: auto;
  margin-right: 6px;
  flex-shrink: 0;
}
.events .event-info-list .info-label {
  margin-right: 4px;
}
.events .event-info-list .info-value {
  font-weight: bold;
  font-size: 14px;
}
.events .event-info-list .info-text-group {
  display: flex;
  flex-direction: column;
}
.events .event-info-list .info-sub {
  font-size: 10px;
  color: #666666;
  margin-top: 1px;
}


/* ==========================================
   オープン記念プレゼント
   ========================================== */

.event-card--blue {
  background-color: rgba(240, 248, 255, 0.93);
  border: 2px solid #bce3fc;
  box-shadow: 0 4px 12px rgba(150, 190, 220, 0.15);
  padding: 16px 16px !important;
  margin-bottom: 24px;
  box-sizing: border-box;
  position: relative; /* 子要素の絶対値の基準にする */
  border-radius: 24px;
  overflow: hidden;   
}

.event-card--blue .event-badge-blue {
  display: inline-block;
  background-color: #1d71eb;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.event-card--blue .event-title-blue {
  font-size: 24px;
  font-weight: 900 !important;
  color: #1d71eb;
  margin-top: 0;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* テキストエリアのレイアウト保持 */
.event-card--blue .event-content-inner {
  position: relative;
  width: 100%;
  padding-right: 130px; /* 右側に画像のスペースを確保 */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-card--blue .event-date-label-blue {
  display: inline-block;
  background-color: #ffffff;
  color: #1d71eb;
  font-size: 14px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #1d71eb;
  margin-bottom: 6px;
  white-space: nowrap;
}

.event-card--blue .event-notice-text-blue {
  font-size: 12px;
  color: #333333;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

/* 画像を絶対値で右上にピタッと配置 */
.event-card--blue .event-main-visual-blue {
  position: absolute;
  right: -20px;
  bottom: -11px;
  z-index: 2;
}

.event-card--blue .event-main-visual-blue img {
  width: 115px;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {

  .event-card--blue .event-main-visual-blue {
  position: absolute;
  right: -7px;
  bottom: -16px;
  z-index: 2;
}

  .event-card--blue .event-main-visual-blue img {
    width: 145px;
  }
}

/* ==========================================
   さとちんさん1日店長カード
   ========================================== */

.event-card--orange {
  background-color: #FEF0E3;
  border: 2px solid #ffd1b3;
  box-shadow: 0 4px 12px rgba(230, 170, 130, 0.15);
  padding: 20px 16px !important;
  margin-bottom: 24px;
  box-sizing: border-box;
  position: relative;
  border-radius: 24px;
  overflow: visible !important; /* カード全体の隠し設定を解除して画像が見切れないようにする */
}

.event-badge-orange {
  display: inline-block;
  background-color: #f77f00;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.event-title-orange {
  font-size: 20px;
  font-weight: 900 !important;
  color: #F77A19;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.2;
}

.text-large-orange {
  font-size: 26px;
}

.event-top-info {
  position: relative;
  padding-right: 130px;
  box-sizing: border-box;
  margin-bottom: 12px;
}

.event-date-label-orange {
  display: inline-block;
  background-color: #ffffff;
  color: #F77A19;
  font-size: 15px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid #f77f00;
  margin-bottom: 6px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.event-sub-text {
  font-size: 13px;
  color: #333333;
  font-weight: 700;
  margin: 0;
}

/* さとちんさん画像 */
.event-main-visual-orange {
  position: absolute;
  right: -10px;
  top: -60px;
  z-index: 5;
  width: 127px;
}

@media screen and (min-width: 768px) {

.event-main-visual-orange {
  position: absolute;
  right: 17px;
  top: -82px;
  z-index: 5;
  width: 145px;
}
}

.event-main-visual-orange img {
  width: 100%;
  height: auto;
  display: block;
}

.sub-event-section-flat {
  position: relative;
  padding-top: 4px;
}

.event-badge-sub {
  display: inline-block;
  background-color: #f77f00;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.sub-event-title {
  font-size: 18px;
  font-weight: 900;
  color: #F77A19;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.sub-text-large-orange {
  font-size: 20px;
}

@media screen and (min-width: 768px) {
.sub-text-large-orange {
  font-size: 24px;
}
}

.event-info-list-orange {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
}

.event-info-list-orange li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
  font-weight: 700;
  line-height: 1.3;
}

.event-info-list-orange li:last-child {
  margin-bottom: 0;
}

.event-info-list-orange .info-icon {
  width: 16px;
  height: auto;
  margin-right: 6px;
  flex-shrink: 0;
}

.event-info-list-orange .info-label {
  margin-right: 6px;
}

.event-info-list-orange .info-value {
  font-weight: bold;
  font-size: 13.5px;
}

.event-info-list-orange .info-text-group {
  display: flex;
  flex-direction: column;
}

.event-info-list-orange .info-sub {
  font-size: 10px;
  color: #666666;
  margin-top: 1px;
}



/* 当選景品ブロック */
.event-card__prize {
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 10px 7px; 
  position: relative;
  z-index: 1;
}

.event-card__prize-inner {
  display: flex;
  align-items: stretch;
  gap: 5px;
}

.prize-badge {
background-color: #F77A19;
  color: #fff;
  padding: 0 8px;      /* 上下paddingは0にし、flexのstretchで高さを出します */
  border-radius: 10px;
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  
  /* 中の文字を上下左右中央に配置 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.prize-text p {
  font-size: 14px;
  font-weight: 700;
  flex: 1;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}

.prize-text .small  {
  font-size: 12px;
  font-weight: 600;
}
.prize-text__note { 
font-size: 11px !important;
  font-weight: 700;
  margin-top: 2px;
  line-height: 1.2;
}

/* 当選景品の小さな画像 */
.prize-img {
  width: 110px;
  position: absolute;
  right: -5px;
  top: -100px;
}

@media screen and (min-width: 768px) {

.prize-img {
  width: 130px;
  position: absolute;
  right: 1px;
  top: -110px;
}
}

/* ==========================================
   爆トレルニャン祭（2店舗＆リボン配置版）スタイル
   ========================================== */

.bakutore-section {

}

/* --- 1. セクションタイトル周り --- */
.bakutore-section .section-heading {
  position: relative;
  text-align: center;
  padding: 0px 20px 15px 20px;
}

.bakutore-section .section-heading__title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.4;
  color: #333333;
  letter-spacing: 0.05em;
}

.bakutore-section .section-heading__title .text-pink {
  color: #f33b62;
  font-size: 24px;
  font-weight: 900;
}

@media screen and (min-width: 768px) {
.bakutore-section .section-heading__title .text-pink {
  font-size: 28px;
}
}

.section-heading__deco {
  position: absolute;
  top: 10px;
  height: auto;
  pointer-events: none;
}
.bakutore-section .section-heading__deco--left {
  left: 1%;
  width: 60px;
  top: -19px;
}

@media screen and (min-width: 768px) {
.bakutore-section .section-heading__deco--left {
  left: 2%;
}
}
.bakutore-section .section-heading__deco--right {
  top: -8px;
  right: 2%;
  width: 45px;
}

/* --- 2. イベントリスト・構造共通（レイアウト） --- */
.bakutore-list {
  padding: 0 16px 40px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .bakutore-list {
    width: 460px;
    margin: 0 auto;
  }
}

/* カード全体のベース設定 */
.event-card--matsuri-stores {
  background-color: rgba(255, 248, 240, 0.93);
  border: 2px solid #ffd1b3;
  box-shadow: 0 4px 12px rgba(230, 170, 130, 0.15);
  padding: 20px 16px 25px 16px !important;
  margin-bottom: 24px;
  box-sizing: border-box;
  position: relative;
  border-radius: 24px;
  overflow: visible !important; /* リボンやイラストがはみ出せるようにする */
  margin-top: 35px; /* 上部のリボンがタイトルに被らないよう余白を確保 */
}

/* 上部オレンジリボン（中央配置・カード上部に引っかける） */
.matsuri-ribbon-wrap {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 250px;
  text-align: center;
}

.matsuri-ribbon-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 5px rgba(232, 93, 4, 0.25));
}

/* 2店舗スケジュール（左右分割グリッド） */
.store-schedule-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  padding: 16px 0;
  margin-bottom: 5px;
  position: relative;
}

/* 左右を区切る点線 */
.store-schedule-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  bottom: 15px;
  width: 1px;
  border-left: 1px dashed #ffb6c1;
  transform: translateX(-50%);
}

.store-column {
  flex: 1;
  text-align: center;
  padding: 0 4px;
}

/* 店舗バッジ */
.store-badge {
  display: inline-block;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  padding: 3px 14px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.store-badge--mobara {
  background-color: #1d71eb; /* 茂原店：ブルー */
}

.store-badge--tsukuba {
  background-color: #E82161; /* つくば店：ピンク */
}

/* 日付テキスト */
.store-date-blue {
  font-size: 18px;
  font-weight: 900;
  color: #1d71eb;
}

.store-date-pink {
  font-size: 18px;
  font-weight: 900;
  color: #E82161;
}

.date-sub {
  font-size: 15px;
  font-weight: 700;
}

/* 下部コンテンツ（左側：UFOキャッチャー、右側：キャッチコピー） */
.matsuri-bottom-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 75px;
  padding-left: 60px; /* UFOキャッチャー用の余白 */
  box-sizing: border-box;
}

/* 左側：UFOキャッチャーイラスト（絶対配置） */
.matsuri-left-visual {
  position: absolute;
  left: 0px;
  bottom: -12px;
  width: 58px;
  z-index: 5;
}

@media screen and (min-width: 768px) {
.matsuri-left-visual {
  left: 4px;
  bottom: -18px;
  width: 67px;
}
}

.matsuri-left-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* 右側：テキストエリアを中央寄せにする調整 */
.matsuri-right-text {
  width: 100%;
  text-align: center; /* テキスト全体を中央寄せ */
  padding-right: 20px; /* 左右のバランスを調整 */
}

.matsuri-catchcopy {
  color: #E82161;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.03em;
  margin: 0 0 4px 0;
  line-height: 1.3;
  text-align: center;
}

.matsuri-subcopy {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  margin: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
.matsuri-catchcopy {
  font-size: 22px;
}
.matsuri-subcopy {
  font-size: 16px;
}
}


/* ==========================================
   茂原店 夏まつりイベントカード用スタイル
   ========================================== */

.event-card--summer-fes {
  background-color: rgba(240, 248, 255, 0.93);
  border: 2px solid #bce3fc;
  box-shadow: 0 4px 12px rgba(150, 190, 220, 0.15);
  padding: 30px 16px 25px 16px !important;
  margin-bottom: 24px;
  box-sizing: border-box;
  position: relative;
  border-radius: 24px;
  overflow: visible !important;
}

/* ちょうちんとタイトルのヘッダーエリア */
.summer-fes-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 0 35px;
}

.chochin-img {
  position: absolute;
  top: -28px;
  width: 70px;
  height: auto;
  z-index: 5;
}

.chochin-left {
  left: 0;
}

.chochin-right {
  right: 0;
}

.summer-fes-title-wrap {
  text-align: center;
}

.summer-fes-main-title {
  font-size: 22px;
  font-weight: 900 !important;
  color: #1d71eb;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 768px) {
.summer-fes-main-title {
  font-size: 24px;
}

}


.summer-fes-main-title .text-pink {
  color: #E82161;
}

/* 開催日バッジ */
.summer-date-badge-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.summer-date-badge {
  display: inline-block;
  background-color: #ffffff;
  color: #1d71eb;
  font-size: 16px;
  font-weight: 900;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid #1d71eb;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(29, 113, 235, 0.1);
}

/* スーパーボール＆射的コンテンツBOX */
.summer-contents-box {
  background-color: #ffffff;
  border: 1px solid #bce3fc;
  border-radius: 16px;
  padding: 10px;
  position: relative;
  margin: 0 10px 12px 10px;
  overflow: visible !important;
}

/* 小学生以下無料バッジ（右上からはみ出る絶対配置） */
.free-badge {
  position: absolute;
  top: -25px;
  right: -14px;
  width: 68px;
  height: 68px;
  background-color: #FDE7E7;
  border: 1px solid #FFB0BC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
}

.free-badge span {
  font-size: 10.5px;
  font-weight: 900;
  color: #F13C5E;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
.free-badge span {
  font-size: 12px;
}
}
/* 左右分割グリッド */
.summer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.summer-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  bottom: 5px;
  width: 1px;
  border-left: 1px dashed #bce3fc;
  transform: translateX(-50%);
}

.summer-col {
  flex: 1;
  text-align: center;
  padding: 0 4px;
}

.summer-item-title {
  font-size: 13px;
  font-weight: 900;
  color: #1d71eb;
  margin: 0 0 8px 0;
  line-height: 1.3;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
.summer-item-title {
  font-size: 16px;
}
}

.summer-item-visual {
  margin: 0 auto;
}

.summer-item-visual.item-left {
  width: 70px;
}

.summer-item-visual.item-right {
  width: 60px;
  transform: rotate(40deg);
}



.summer-item-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ラムネプレゼント・下部BOX */
.ramune-box {
  background-color: #D5EAFF;
  border: 1px solid #bce3fc;
  border-radius: 12px;
  padding: 10px 12px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow: visible !important; /* ボックスからの飛び出しを許可 */
  min-height: 60px;
}

.ramune-visual {
  position: absolute;
  left: 6px;
  bottom: -4px;
  width: 45px;
z-index: 10; /* 最前面に配置 */
  transform: rotate(10deg);
}

.ramune-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 3px 5px rgba(0,0,0,0.1));
}

.ramune-text-area {
  padding-left: 45px;
  width: 100%;
  box-sizing: border-box;
}

.ramune-title {
  font-size: 14px;
  font-weight: 900;
  color: #333333;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
.ramune-title {
  font-size: 16px;
}

.ramune-sub {
  font-size: 13px;
}

}

.ramune-title .text-blue {
  color: #1d71eb;
}

.ramune-sub {
  font-size: 11px;
  color: #666666;
  margin: 0;
  line-height: 1.3;
}

/* ============================================================
    店舗情報 (.store-info)
   ============================================================ */

.store-info {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 40px 16px;
  background-color: #FFF8DA; /* 全体共通の薄いオレンジ背景 */
  color: #333333;
  box-sizing: border-box;
}

/* --- セクション見出しの装飾（2色アンダーライン） --- */
.store-info__heading {
  text-align: center;
  margin-bottom: 30px;
}

.store-info__heading h2 {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

/* 見出しの下線（ベースの太い青線） */
.store-info__heading h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #00a0e9; /* 水色ライン */
  border-radius: 2px;
}



/* --- 店舗カードの一覧 --- */
.store-info__list {
  display: flex;
  flex-direction: column;
  gap: 30px; 
}

/* 立体感を出すための外枠コンテナ */
.store-info .store-card {
  position: relative;
  z-index: 1;
  padding-bottom: 8px; 
}

@media screen and (min-width: 768px) {
.store-info .store-card {
width: 85%;
margin: 0 auto;
}
}



/* 白いメインの角丸カード（ドロップシャドウを適用） */
.store-info .store-card__inner {
  background-color: rgba(255, 255, 255, 0.95); /* ほんのり透過させた白背景 */
  border-radius: 20px;
  padding: 24px 20px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* 茂原店の店舗写真エリア */
.store-info .store-card__img {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.store-info .store-card__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 店舗名 */
.store-info .store-card__name {
  font-size: 19px;
  font-weight: bold;
  color: #0077a3; /* デザインの深みのある青 */
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

/* 店舗サブ（店内表記） */
.store-info .store-card__sub {
  font-size: 13px;
  font-weight: bold;
  color: #444444;
  margin-bottom: 14px;
}

/* 住所・営業時間などの詳細テキスト */
.store-info .store-card__details {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 24px;
}

.store-info .store-card__details p {
  margin-bottom: 8px;
  font-weight: 500;
}

.store-info .store-card__details p:last-child {
  margin-bottom: 0;
}

/* --- GoogleMAPを開くボタン --- */
.store-info .map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 85%;
  max-width: 280px;
  margin: 0 auto;
  padding: 12px 16px;
  background-color: #00aeef; /* 鮮やかなスカイブルー */
  color: #ffffff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px; /* 完全な丸み */
  box-shadow: 0 4px 0 #0089bd; /* ボタン下部の立体的な暗い青の影 */
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

/* ボタン内のSVGアイコン調整 */
.store-info .map-btn__icon {
  width: 16px;
  height: auto;
  flex-shrink: 0;
}

/* ボタンを押したときのちょっとしたインタラクション（必要に応じて） */
.store-info .map-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #0089bd;
}

/* ============================================================
   10. 公式SNS (.sns)
   ============================================================ */

/* セクション全体の背景（爽やかな薄いブルー） */
.sns {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 50px 16px 60px 16px;
  background-color: #e1f0fa;
  box-sizing: border-box;
}

/* 立体的な座布団（影）を再現するための外枠 */
.sns__container {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
.sns__container  {
width: 85%;
margin: 0 auto;
}
}

/* カンプ通りの白いメイン角丸カード */
.sns .sns__card {
  border-radius: 20px;
  padding: 20px 24px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.95); /* ほんのり透過させた白背景 */
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* --- セクション見出し --- */
.sns .section-heading {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

.sns .section-heading__catch {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin: 0;
  line-height: 1.2;
}

.sns .section-heading__title {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin: 6px 0 0 0;
  line-height: 1.2;
}

/* 見出し左右の紙吹雪装飾（位置を完全に固定） */
.sns .section-heading__deco {
  position: absolute;
  width: 42px;
  height: auto;
  pointer-events: none;
}
.sns .section-heading__deco--left {
  left: -10px;
  top: 20px;
}
.sns .section-heading__deco--right {
  right: -10px;
  width: 35px;
  top: 20px;
}


/* --- 店舗別SNSブロック --- */
.sns__content {
  margin-bottom: 40px;
}

.sns__store-block {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1f0fa; /* 店舗間の区切り線 */
  text-align: left;
}

.sns__store-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* 店舗名（アイコンと並列） */
.sns__store-name {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 16px 0;
}

/* クレーンロゴアイコン */
.sns__logo-icon {
  width: 24px;
  height: auto;
  margin-right: 8px;
  flex-shrink: 0;
}

/* --- ボタンエリアのフレックス管理 --- */
.sns__buttons {
  display: flex;
  width: 100%;
}

/* つくば店（1つのみ）の場合は左寄せで、無駄に広がらないよう幅を制限 */
.sns__btn--single {
  width: calc(50% - 6px) !important; /* 茂原店と横幅のサイズ感を統一 */
}

/* 茂原店（2連ボタン）は横並び */
.sns__buttons--twocol {
  justify-content: space-between;
  gap: 12px;
}

/* ボタン本体（カンプ通りの白背景・角丸・薄いシャドウ） */
.sns__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%; /* 2連時は等幅50% */
  padding: 10px 14px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 30px; /* カンプの丸みに合わせて完全に角を丸める */
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.sns__btn:hover {
  background-color: #f8fafc;
}

/* ボタン内部の要素グループ */
.sns__btn-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SNSのブランド丸型アイコン */
.sns__sns-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ボタン内のテキスト（太字） */
.sns__btn-text {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
}

/* 右端のきれいな矢印（＞） */
.sns__arrow {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #718096;
  border-right: 2px solid #718096;
  transform: rotate(45deg);
  margin-right: 4px;
  flex-shrink: 0;
}

/* --- 下部テキスト案内 --- */
.sns__footer-text {
  text-align: center;
}

.sns__sub-note {
  font-size: 15px;
  font-weight: bold;
  color: #192566; /* 視認性の高いディープネイビー */
  margin: 0 0 6px 0;
}

.sns__main-note {
  font-size: 18px;
  font-weight: bold;
  color: #192566;
  margin: 0;
  letter-spacing: 0.03em;
}

/* 「または」「まで」をカンプ同様に少しすっきりさせる調整 */
.sns__note-thin {
  font-size: 15px;
  font-weight: normal;
  margin: 0 2px;
}

@media screen and (max-width: 767px) {
  .sns__card .section-heading__title { font-size: 18px; }
}


/* ============================================================
   11. フッター (.site-footer)
   ============================================================ */

.site-footer {
  background-color: #2280B4;
  text-align: center;
  padding: 10px;
}

.site-footer__inner {
}

.site-footer__name {
  font-size: 16px;
  color: #fff;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
               "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Meiryo", sans-serif;
}


/* ============================================================
   12. SPスライドメニュー (.sp-menu)  ※SP専用
   ============================================================ */

/* オーバーレイ */
.sp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 150;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sp-menu-overlay.is-active {
  display: block;
  opacity: 1;
}

/* メニューパネル */
.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 300px;
  height: 100%;
  background-color: #fff;
  z-index: 160;
  padding: 70px 0 30px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.sp-menu.is-open { transform: translateX(0); }

/* メニューリスト */
.sp-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-menu__link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
               "Hiragino Kaku Gothic ProN", "Hiragino Sans",
               "Meiryo", sans-serif;
}

.sp-menu__link:hover {
  background-color: #f9f6ed;
  color: #B8972A;
}

/* PCでは非表示 */
@media screen and (min-width: 767px) {
  .sp-menu,
  .sp-menu-overlay {
    display: none !important;
  }
}
