

@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;        /* absoluteを解除 */
  transform: none;         /* 以前のtranslateYを解除 */
  flex-shrink: 1;          /* スマホ等で収まるように縮小を許可 */
}

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

/* ============================================================
   6. .intro .feature-card
   ============================================================ */

.intro {
  background-color: #FDF5D0;
  padding-bottom: 40px;
}

  @media screen and (max-width: 767px) {
.intro .section-heading {
        padding: 40px 10px 20px;
}
}

.intro .section-heading__title {
  letter-spacing: 0.1em;
}
.feature-card {
background-color: #fff;
  margin: 0 auto 25px; 
  width: 85%; 
  max-width: 500px; 
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* 動画埋め込み（16:9） */
.feature-card__media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.feature-card__media iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 画像のみのメディア領域 */
.feature-card__media--img {
  padding-top: 0;
  position: static;
}

.feature-card__media--img img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキストエリア */
.feature-card__body { 
  padding: 30px 20px 35px; 
}

  @media screen and (max-width: 767px) {
  .feature-card__body { 
  padding: 30px 10px 35px; 
  }
}

.feature-card__title {
  color: #1F7F9F;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-card__num  { font-size: 28px; }

.feature-card__text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.1em;

}

@media screen and (max-width: 767px) {
  .feature-card__title { font-size: 18px; }
}



/* ============================================================
   7. イベントセクション (.events)
   ============================================================ */

.events {
  width: 100%;
  box-sizing: border-box;
}

.events .section-heading {
  padding: 30px 15px 20px;

}

/* --- イベントカード共通（PC/SP 335px固定） --- */
.event-card {
  width: 335px;               
  margin: 0 auto 25px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block; /* flexの子要素としてではなく、単体での挙動を安定させる */       
  padding: 30px 10px 15px;
  border-radius: 25px;
  position: relative;
  overflow: visible;          /* 画像がはみ出るのを許可 */
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}



.event-card__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* 背景カラー */
.event-card--yellow { background-color: #FDF18C; }
.event-card--pink   { background-color: #F8B5D3; }
.event-card--orange { background-color: #F6BC7A; padding-bottom: 35px;}
.event-card--blue   { background-color: #92D3F5; padding-bottom: 30px;}


.event-card__note      { font-size: 14px; font-weight: 700; }
.event-card__time { 
  font-size: 14px; 
  font-weight: 700;
  margin-bottom: 8px; 
}
.event-card__time-bold { font-weight: 800; margin-bottom: 5px; }
.event-card__text_fukunyan {
  font-size: 14px;
  font-weight: 500;
}
.event-card__text      { font-size: 14px; }

/* バッジ */
.badge {
  display: inline-block;
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.badge--red   { background-color: #C13341; }
.badge--pink  { background-color: #D34C6F; }
.badge--blue-dark { background-color: #3C83D0; font-size: 14px;}

.event-card__title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;

}

.event-card__date {
  display: inline-block;
  background: #fff;
  padding: 2px 15px 3px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}

.event-card__limit {
  display: inline-block;
  background: #fff;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 700;
    margin-top: 5px;
}
/* サブブロック（同日開催など） */
.event-card__sub { margin-top: 12px; }

.event-card__sub-title {
  font-weight: 700;
  margin-bottom: 8px;
}

/* スケジュール表示（アナウンス大抽選会） */
.event-card__schedule {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

/* 当選景品ブロック */
.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: #E26A74;
  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;
}



/* --- カード内の画像（絶対配置） --- */
.event-card__img {
  position: absolute;
  z-index: 5;
  height: auto;
}

.event-card__img--sato {
  width: 130px;
  top: 0px;
  right: -5px;
}

.event-card__img--seal {
  width: 120px;
  top: 5px;
  right: -10px;
}

.event-card__img--nyan {
  width: 85px;
  top: 30px;
  right: 20px;
}

.event-card__img--toilet {
  width: 110px;
  top: 40px;
  right: 5px;
  transform: rotate(8deg); 
  transform-origin: center;
}

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


/* ============================================================
   PC表示時のスタイル調整 (画面幅 768px以上)
   ============================================================ */
@media screen and (min-width: 768px) {
  
  /* カード本体の幅を460pxに変更 */
  .event-card {
    width: 460px;
    padding: 35px 25px 25px; 
  }

  .event-card--orange {
    padding-bottom: 35px;
  }



  /* --- カード内画像の調整 --- */
  
  /* さとちんさん画像 */
  .event-card__img--sato {
    width: 155px; 
    top: -35px;
    right: 20px;
  }

  /* シール画像 */
  .event-card__img--seal {
    width: 140px;
    top: -20px;
    right: 5px;
  }

  /* ふくふくにゃんこ画像 */
  .event-card__img--nyan {
    width: 100px;
    top: 0;
    right: 15px;
  }

  /* おしりセレブ画像 */
  .event-card__img--toilet {
    width: 140px;
    top: 0;
    right: 10px;
  }

  /* 当選景品の小さな画像（Switch2など） */
  .prize-img {
    width: 100px;
    top: -55px;
    right: 0px;
  }

  /* PCではリストを横並びやグリッドにしたい場合は以下を有効にしてください */
  /*
  .events__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  */
}

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

.ambassador { padding-bottom: 40px; }

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

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

.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 { 
  padding: 45px 16px; 
  background-color: #FDF5D0;}

.store-info__card {
  width: 85%;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 767px) {
.store-info__card {
  max-width: 335px;
}
}

.store-info__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.store-info__divider {
  width: 40px;
  height: 4px;
  background-color: #00AEEF;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.store-info__table {
  width: 100%;
  margin-bottom: 25px;
  border-collapse: collapse;
}

.store-info__table tr {
  display: flex;
  align-items: flex-start;
}

.store-info__table th {
  width: 80px;
  background-color: #999;
  color: #fff;
  font-size: 13px;
  padding: 6px 0;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.store-info__table td {
  text-align: left;
  padding: 0 0 10px 15px;
  font-size: 15px;
  font-weight: 700;
  vertical-align: top;
}

/* GoogleMAPボタン */
.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00AEEF;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  margin: 0 20px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  transition: opacity 0.3s;
}

.map-btn:hover { opacity: 0.85; }

.map-btn__icon {
  width: 20px;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .store-info__table td { font-size: 14px; }
}


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

.sns {
  background-color: #D3EEF9;
  padding: 40px 16px 60px;
}

.sns__card {
  width: 85%;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 0 20px 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sns__card .section-heading {
  padding: 20px 15px;
}

@media screen and (max-width: 767px) {
.sns__card {
  max-width: 335px;
}
}
/* SNSリンク一覧 */
.sns__links {
  display: flex;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sns__link {
  flex: 1;
  padding: 15px 0;
  text-decoration: none;
  color: #333;
  transition: background 0.3s;
}

.sns__link p {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sns__link img {
  width: 35px;
  height: 35px;
}

.sns__link--x         { border-right: 1px solid #ddd; background: #F1F4F8; }
.sns__link--instagram { background: #FFF0F5; }

.sns__note {
  font-size: 14px;
  font-weight: 700;
  color: #666;
  line-height: 1.5;
}

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