@charset "utf-8";
/* ==========================================================================
   MAO × TSUKAMOTO ICHIDA コラボキャンペーン用スタイル
   掲載終了時はこのファイルの読み込みを外すだけで元の表示に戻ります
   ========================================================================== */

:root {
  --mao-ink: #1c1c22;      /* 墨色：告知バー背景 */
  --mao-enji: #9b2743;     /* 臙脂：アクセント／CTA */
  --mao-enji-dark: #7d1f36;
  --mao-paper: #f7f5f1;    /* 生成り：セクション背景 */
  --mao-line: #d8d2c8;
}

/* --------------------------------------------------------------------------
   A. ヘッダー直下 告知バー
   -------------------------------------------------------------------------- */
.mao-noticebar {
  position: relative;
  display: block;
  width: 100%;
  background: var(--mao-ink);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}
.mao-noticebar:hover,
.mao-noticebar:focus {
  background: #2b2b34;
  color: #fff;
  text-decoration: none;
}
.mao-noticebar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px 48px;
  text-align: center;
}
.mao-noticebar__label {
  display: inline-block;
  margin-right: 12px;
  padding: 2px 10px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.mao-noticebar__text {
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.mao-noticebar__arrow {
  margin-left: 14px;
  font-size: 12px;
  opacity: 0.8;
}
.mao-noticebar__close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  opacity: 0.65;
  cursor: pointer;
}
.mao-noticebar__close:hover { opacity: 1; }

@media screen and (max-width: 767px) {
  .mao-noticebar__inner { min-height: 48px; padding: 8px 40px; }
  .mao-noticebar__label { margin-right: 8px; font-size: 10px; padding: 1px 7px; }
  .mao-noticebar__text  { font-size: 12px; }
  .mao-noticebar__arrow { margin-left: 8px; }
}

/* --------------------------------------------------------------------------
   B. ファーストビュー直下 大型バナー
   -------------------------------------------------------------------------- */
.mao-hero {
  padding: 72px 0 80px;
  background: var(--mao-paper);
}
.mao-hero__head {
  margin-bottom: 32px;
  text-align: center;
}
.mao-hero__eyebrow {
  display: inline-block;
  position: relative;
  padding: 0 22px;
  color: var(--mao-enji);
  font-size: 12px;
  letter-spacing: 0.24em;
}
.mao-hero__eyebrow::before,
.mao-hero__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--mao-enji);
}
.mao-hero__eyebrow::before { left: 0; }
.mao-hero__eyebrow::after  { right: 0; }

.mao-hero__figure {
  display: block;
  margin: 0 auto;
  max-width: 900px;
  line-height: 0;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}
.mao-hero__figure img {
  width: 100%;
  height: auto;      /* トリミングなし・アスペクト比そのまま */
  display: block;
}
.mao-hero__body {
  margin: 36px auto 0;
  max-width: 720px;
  text-align: center;
}
.mao-hero__title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #1c1c22;
}
.mao-hero__lead {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 2;
  color: #4a4a52;
}
.mao-hero__note {
  margin: 16px 0 0;
  font-size: 11px;
  color: #8a857d;
  letter-spacing: 0.04em;
}

/* CTAボタン：既存 .button の形状に合わせた別系統 */
.mao-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 320px;
  padding: 18px 24px 18px 32px;
  background: var(--mao-enji);
  border: none;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.3s ease;
}
.mao-cta:hover,
.mao-cta:focus {
  background: var(--mao-enji-dark);
  color: #fff;
  text-decoration: none;
}
.mao-cta__arrow { margin-left: 20px; font-size: 12px; }

@media screen and (max-width: 767px) {
  .mao-hero { padding: 48px 0 56px; }
  .mao-hero__figure { max-width: 100%; }
  .mao-hero__body { margin-top: 28px; padding: 0 8px; }
  .mao-hero__title { font-size: 17px; }
  .mao-hero__lead  { font-size: 13px; line-height: 1.9; margin-bottom: 26px; }
  .mao-cta { min-width: 0; width: 100%; padding: 16px 20px; font-size: 14px; }
}

/* --------------------------------------------------------------------------
   C-1. 最新情報リストの強調
   -------------------------------------------------------------------------- */
.list-news .mao-news-badge {
  display: inline-block;
  margin-right: 8px;
  padding: 1px 8px;
  background: var(--mao-enji);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
.list-news .mao-news-item a { font-weight: bold; }
.list-news .mao-news-item a::after {
  content: "\2197";          /* 外部リンク矢印 */
  margin-left: 6px;
  font-size: 11px;
  color: var(--mao-enji);
}

/* --------------------------------------------------------------------------
   C-2. スマホ追従CTA
   -------------------------------------------------------------------------- */
.mao-fixed-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  padding: 15px 16px;
  background: var(--mao-enji);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.mao-fixed-cta.is-visible { transform: translateY(0); }
.mao-fixed-cta:hover,
.mao-fixed-cta:focus { color: #fff; text-decoration: none; }
.mao-fixed-cta__arrow { margin-left: 10px; font-size: 11px; }

@media screen and (max-width: 767px) {
  .mao-fixed-cta { display: block; }
}
