

@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;
}

.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: 40px;
  left: 6%;
  top: 7%; 
}

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

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

/* 白い角丸カード */
.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: 18px;
  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: 20px;
  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: 22px;
  line-height: 1.8;
}

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

.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: 15px;
  color: #34251D;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-top: 25px;
}

.intro .description-text p {
  margin: 0 0 24px 0;
    color: #34251D;
  font-weight: bold;
}

.intro .description-text p:last-child {
  margin-bottom: 0;
    color: #34251D;
  font-weight: bold;
}



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

/* ベーススタイル（SP表示前提・最大幅550px制限） */
.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 16px;
  margin-bottom: 24px;
  box-sizing: border-box;
}
.events .event-card:last-child {
  margin-bottom: 0;
}

.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: 14px;
  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;
}

/* 右カラム：横並び（スマホ時は％、PC時は固定幅に変化） */
.events .event-main-visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin-left: -5%; 
}
.events .event-main-visual img {
  height: auto;
  display: block;
}

/* 大抽選会のSwitch画像サイズ */
.event-card--pink .event-main-visual img{
  width: 140px; 
}
.event-card--pink .event-main-visual {

}

@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;
}

}

/* ガラポン画像サイズ */
.event-card--pink-light .event-main-visual img{
  width: 150px;   
}

.event-card--pink-light .event-main-visual {
margin-top: -20px;
margin-right: -10px;
}

@media screen and (min-width: 768px) {
.event-card--pink-light .event-main-visual img{
  width: 180px;   
}
.event-card--pink-light .event-main-visual {
margin-top: -40px;
margin-right: 10px;
}
}
/* にゃんこ画像サイズ */
.event-card--orange .event-main-visual img{
  width: 115px; 
}

.event-card--orange .event-main-visual {
  margin-top: -65px;
}

@media screen and (min-width: 768px) {
.event-card--orange .event-main-visual img{
  width: 135px; 
}
.event-card--orange .event-main-visual {
  margin-top: -70px;
  margin-right: 20px;
}
}
 /* 駄菓子画像サイズ */
.event-card--blue .event-main-visual img{
  width: 160px; 
}

.event-card--blue .event-main-visual {
 margin-top: -10px;
 margin-right: -15px;
}

@media screen and (min-width: 768px) {
.event-card--blue .event-main-visual img{
  width: 200px; 
}
.event-card--blue .event-main-visual {
 margin-top: -30px;
 margin-right: 0;
}
}

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

/* リボン見出し */
.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: 16px;
  border-bottom: 1px dashed #ffccd5;
  margin-top: 15px;
  padding-bottom: 16px;
}
.prize-day-box {
width: 50%;
  text-align: center;
  padding: 0 8px; 
  box-sizing: border-box;
}

.prize-day-box:last-child {
  border-left: 1px dashed #ffccd5; /* 下の破線と同じ色で、可愛いピンクの縦線になります */
}
.prize-day-box .day-badge {
  display: inline-block;
  background-color: #F13C5E;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.prize-item-text {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5;
  color: #333333;
  text-align: left;
  display: inline-block; /* 中央寄せの中の左寄せ用 */
}

/* 大抽選会フッター補足（プレゼント箱とテキスト） */
.prize-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

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

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

/* --- 3. イベント詳細リスト・補足テキスト（構造・文字） --- */
.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: 13px;
  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;
}

.events .event-notice-text,
.events .event-description-p {
  font-weight: bold;
  color: #333333;
  margin-top: 8px;
  white-space: nowrap; 
}
.events .event-notice-text {
  font-size: 13px;
  line-height: 1.4;
}
.events .event-description-p {
  font-size: 14px;
  line-height: 1.5;
}

/* --- 4. カラーバリエーション設定 --- */
.event-card--pink,
.event-card--pink-light {
  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,
.event-card--pink-light .event-title {
  color: #EE5261;
}
.event-card--pink .event-date-label,
.event-card--pink-light .event-date-label {
  color: #EE5261;
  border: 1px solid #EE5261;
}

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

.event-card--orange {
  background-color: rgba(255, 248, 235, 0.93);
  border: 2px solid #ffe0b3;
  box-shadow: 0 4px 12px rgba(230, 190, 150, 0.15);
}
.event-card--orange .event-title {
  color: #703F23;
}
.event-card--orange .event-date-label {
  color: #ff9900;
  border: 1px solid #ff9900;
}
.events .text-orange-highlight {
  color: #ff9900;
}

.event-card--blue {
  background-color: rgba(240, 253, 244, 0.93);
  border: 2px solid #bbf7d0;
  box-shadow: 0 4px 12px rgba(150, 210, 170, 0.15);
}
.event-card--blue .event-title {
  color: #16a34a;
}
.event-card--blue .event-date-label {
  color: #16a34a;
  border: 1px solid #16a34a;
}

/* --- 5. レレスポンシブ対応 (768px以上のPC表示) --- */
@media screen and (min-width: 768px) {
  .events {
    /* 必要に応じてPC表示での最大横幅やレイアウト調整をここに記述してください */
  }
}

/* ============================================================
    ステッカープレゼント
   ============================================================ */
.sticker_present {
    width: 90%;
    margin: 0 auto 30px;
    text-align: center;
}


/* ============================================================
   8. アンバサダーセクション (.ambassador)
      ※ ふくふくにゃんこ就任・4コマ
   ============================================================ */

.ambassador { padding-bottom: 40px; }

.ambassador .section-heading {
  position: relative; 
  padding: 20px 15px;
}

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



/* 就任メイン画像 */
.ambassador__visual {
  width: 90%;
  margin: 0 auto 30px;
  text-align: center;
  margin-top: 30px;
}

.ambassador__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.ambassador__caption {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 800;
  color: #333;
}

/* 4コマ劇場 */
.ambassador__comic { 
  margin: 0 auto;
  margin-right: 20px;
  margin-left: 20px;
}

.ambassador__comic-heading {
  background-color: #006fba;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.ambassador__comic-body {
  padding: 0 10px;
  text-align: center;
}

.ambassador__comic-title {
  font-size: 20px;
  font-weight: 800;
  color: #7D5B44;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.ambassador__comic-img {
  background: #fff;
  padding: 5px;
  line-height: 0;
}

.ambassador__comic-img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .ambassador__comic-title { font-size: 18px; }
  .ambassador__caption     { font-size: 14px; }
}


/* ============================================================
   9. 店舗情報 (.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;
  }
}
