/* -----------------------------
  基本設定
----------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  color: #111;
  background-color: #fdfdfd; /* 少し温かみのある白 */
  line-height: 1.6;
}


a {
  color: #111;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}



/* -----------------------------
  ヘッダー専用コンテナ
----------------------------- */
.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-right{
  display:flex;
  align-items:center;
}

/* -----------------------------
  ヘッダー
----------------------------- */
.site-header {
  width: 100%;
  padding: 20px 0;
  position: relative;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* サイトタイトルのスタイリング */
.site-title a {
  color: #333;                /* 文字色：濃いグレー */
  text-shadow: 
     1px 1px 0 #979797,         /* 上下左右に薄いグレーの影で外枠を表現 */
    -1px -1px 0 #979797,
     1px -1px 0 #979797,
    -1px 1px 0 #979797;
  font-weight: bold;          /* 好みで太字に */
  text-decoration: none;      /* 下線を消す */
}

.menu-toggle .menu-icon {
  display: inline-block;
}
.menu-toggle .menu-text {
  display: none;
}
/* シェアボタン */
.share-menu{
  position: relative;
  margin-right: 14px;
}

/* 矢印ボタン */
.share-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.share-toggle svg {
  width: 24px;
  height: 24px;
}

/* ドロップダウン */
.share-dropdown{
  position: absolute;
  top: 30px;
  right: 0;

  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 6px;

  flex-direction: column;
  min-width: 150px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;

  /* フェード用 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease; /* フェード時間0.5秒 */
  display: flex; /* 常に存在させる */
  flex-direction: column;
}

/* 開いた状態 */
.share-menu.open .share-dropdown{
  opacity: 1;
  pointer-events: auto;
}

/* メニュー項目 */
.share-dropdown a,
.share-dropdown button{
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #333;
}

/* hover */
.share-dropdown a:hover,
.share-dropdown button:hover{
  background: #f5f5f5;
}

/* ===============================================
  言語スイッチャー
=============================================== */

.lang-switcher {
  display: inline-flex;       /* 横並び */
  align-items: center;        /* 縦中央揃え */
  gap: 8px;                   /* 言語間のスペース */
  margin-left: 15px;          /* サイトタイトルとの距離 */
  font-size: 0.9rem;
}

.lang-switcher a {
  color: #000;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
  transition: background 0.2s;
}

.lang-switcher a:hover {
  background: rgba(128,0,128,0.1);  /* 軽く背景色 */
}
/* -----------------------------
  セクション
----------------------------- */
.site-main {
  max-width: 1200px;
  margin: auto;
}
.section {
  padding: 60px 0;
  text-align: center;   /* 中央寄せ */
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.container {
  max-width: 1200px;    /* コンテンツの最大幅 */
  margin: 0 auto;        /* 横中央揃え */
  padding-left: 20px;    /* 左右の余白 */
  padding-right: 20px;
  box-sizing: border-box; /* パディング込みで幅を計算 */
}




/* -----------------------------
  帯掲示板
----------------------------- */
/* Info Band */
.info-band {
  background-color: #f8f8f8; /* 白っぽいグレー */
  border-top: 2px solid #ffdd33; /* 上ラインをアクセントカラー */
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}

.info-band-inner {
  display: flex;
  white-space: nowrap;
  animation: scrollBand 80s linear infinite; /* 遅めに */
  will-change: transform;
}

.info-band-inner p {
  margin: 0;
  padding-right: 300px;
  font-weight: bold;
  font-size: 1rem;
}

/* アニメーション */
@keyframes scrollBand {
  0% {
    transform: translateX(70vw); /* 画面右外からスタート */
  }
  100% {
    transform: translateX(calc(-100% - 50px)); /* コンテンツ幅分左にスクロール */
  }
}

/* -----------------------------
  スライダーバナー
----------------------------- */


.campaign-badge {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 140px;
  height: 140px;
  border-radius: 50%; /* ←丸にする */
  border: 5px solid #fe5697; /* 桜色 */
  box-sizing: border-box; /* 枠でレイアウト崩れないように */
  box-shadow: 0 0 0 2px #ffdd33; /* 外側に黒の細線 */
  background: #000; /* 黒背景 */
  

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;

  animation: popBadge 3s ease-in-out infinite; /* ←ボヨン */
}

/* テキスト */
.campaign-badge span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  transform: rotate(20deg);
  text-align: center;
  line-height: 1.3;
}

/* ボヨンアニメーション */
@keyframes popBadge {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  30% {
    transform: scale(1.2); /* ボヨン！ */
    opacity: 1;
  }
  50% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
}



/* -----------------------------
  コンタクトボタン（共通）
----------------------------- */
.contact-btn {
  margin-top: 30px;
  display: inline-flex;           /* inline-block → inline-flex */
  align-items: center;            /* 垂直中央 */
  justify-content: center;        /* 水平中央 */
  background: linear-gradient(135deg, #2c3e50, #4b0082); /* ネイビーパープル */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  line-height: normal;            /* flex なので不要 */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.contact-btn:hover {
  text-decoration: none;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #ffd700, #ffea50); /* イエロー系グラデ */
  color: #333; /* コントラスト調整 */
}


/* -----------------------------
  フッター
----------------------------- */
.site-footer {
  padding: 40px 0;
  background: #f8f8f8;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
}

.footer-sns {
  display: flex;
  gap: 16px;
}

.footer-sns a {
  color: #111;
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover {
  opacity: 0.6;
}


@media (max-width: 600px) {
  body {
    font-size: 0.9rem; /* PCより小さくする */
  }

  .share-toggle {
    padding: 10px 14px;
  }
  

  

 
  .campaign-badge {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 400px;
  left: 20px;
  }

  
  

  /* ---------- フッター ---------- */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-sns {
    gap: 10px;
  }
  .footer-sns a {
    font-size: 0.7rem;
  }

  

}






  

  
