@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Contrail+One&display=swap");
/* ==========================================================================
   - モバイルファースト（min-width: 768px を境にPC用スタイルを追加）
   - SP基準：コンテンツ幅380px（左右20pxパディング）
   - PC基準：コンテンツ幅980px
   ========================================================================== */ :root {
  /* Brand colors */
  --c-black: #0a0a0a;
  --c-white: #ffffff;
  --c-orange: #ff8d28;
  --c-orange-dark: #f2701a;
  --c-yellow: #ffe500;
  --c-pink: #fe90c5;
  --c-green: #39b54a;
  --c-gold-bg: #ffeeca;
  --c-cream-rgb: 255, 253, 243;
  --c-text: #222222;
  --c-gray: #9a9a9a;
  --font-base: 'Noto Sans JP', sans-serif;
  --wrap-pc: 980px;
  --bp-pc: 768px;
}
/* ---------- reset ---------- */
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
figure {
  margin: 0;
}
body {
  font-family: var(--font-base);
  color: var(--c-text);
  background: var(--c-white);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
main, header, footer {
  display: block;
}
/* ==========================================================================
   共通：SP/PC 出し分け
   ========================================================================== */
.sp {
  display: block;
}
.pc {
  display: none;
}
img.sp {
  display: block;
}
img.pc {
  display: none;
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  img.sp {
    display: none;
  }
  img.pc {
    display: block;
  }
}
/* ==========================================================================
   共通：コンテナ
   ========================================================================== */
.wrapper {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .wrapper {
    max-width: var(--wrap-pc);
    margin: 0 auto;
    padding: 0 30px;
  }
}
/* ==========================================================================
   共通：ボタン
   ========================================================================== */
.btns {
  text-align: center;
}
.btn {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  transition: transform .15s ease;
}
.btn:active {
  transform: translateY(4px);
  background: var(--c-orange-dark);
}
.btn-gold {
  width: 70%;
  max-width: 300px;
  padding: 8px 10px;
  background: var(--c-gold-bg);
  color: #6C5656;
  font-size: 15px;
  font-weight: 400;
  border: solid #A18F8F 1px;
  transition: transform .15s ease;
}
.btn-gold:active {
  transform: translateY(4px);
  background: var(--c-cream);
}
@media (min-width: 768px) {
  .btn {
    font-size: 20px;
    padding: 15px 20px;
    max-width: 400px;
  }
  .btn:hover {
    transform: translateY(4px);
    background: var(--c-orange-dark);
  }
  .btn-gold {
    max-width: 200px;
    padding: 5px 10px;
    font-size: 13px;
  }
  .btn-gold:hover {
    transform: translateY(4px);
    background: var(--c-cream);
  }
}
/* 応募締切テキスト（〈応募締切〉2026 9.30［WED］まで） */
.deadline, p.deadline {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}
.deadline .num, p .num {
  font-size: 20px;
  font-weight: 700;
  margin: 0 2px;
}
.deadline .wed, p .wed {
  font-weight: 700;
}
@media (min-width: 768px) {
  .deadline, p.deadline {
    font-size: 16px;
  }
  .deadline .num, p .num {
    font-size: 40px;
  }
  p .wed {
    font-size: 22px;
  }
}
/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  background: var(--c-black);
  padding: 18px 20px 0px;
  text-align: center;
}
header h1 {
  width: 75%;
  max-width: 320px;
  margin: 0 auto 10px;
}
header h2 {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 0px;
}
header p {
  color: var(--c-white);
}
header .num, header .wed {
  color: var(--c-white);
}
@media (min-width: 768px) {
  header {
    padding: 30px 20px 0px;
  }
  header h1 {
    max-width: 360px;
  }
  header h2 {
    max-width: 700px;
    margin: 15px auto 5px;
  }
}
/* ==========================================================================
   HERO（メインビジュアル）
   ========================================================================== */
.hero {
  background: var(--c-black);
  padding: 3px 0 30px;
}
.hero .wrapper {
  padding: 0 20px;
}
.hero-visual {
  margin-bottom: 0;
}
.hero .fukidashi {
  max-width: 260px;
  margin: 10px auto 10px;
}
.hero .btns {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .hero {
    padding: 10px 0 60px;
  }
  .hero .wrapper {
    padding: 0 0px;
  }
  .hero .fukidashi {
    max-width: 320px;
    margin: 10px auto 24px;
  }
}
/* ==========================================================================
   プレゼント一覧セクション
   ========================================================================== */
.bg_present {
  position: relative;
  padding: 20px 0 20px;
  background-color: #fff8e9;
  background-image: url("../img/tiedye_rasta.jpg");
  background-repeat: repeat;
  background-position: top center;
}
.bg_present .card {
  background: rgba(var(--c-cream-rgb), 0.8);
  padding: 30px 25px;
  margin: 0 20px;
  border: solid 1px #fff;
}
.bg_present h2 {
  text-align: center;
  margin-bottom: 6px;
}
.bg_present h2 img, .bg_present h2 figure img {
  max-width: 220px;
  margin: 0 auto;
}
.bg_present p {
  text-align: center;
}
/* ---- 賞品リスト（SP：縦積み／PC：2×2グリッド） ---- */
.presentlist {
  margin-top: 10px;
}
.presentlist > li {
  margin-bottom: 50px;
}
.presentlist > li:last-child {
  margin-bottom: 0;
}
.colbox h3 {
  background: var(--c-black);
  color: var(--c-orange);
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  padding: 2px 10px;
  letter-spacing: .06em;
}
.colbox p {
  text-align: center;
  font-size: 14px;
  margin-top: 14px;
}
.colbox p.lead {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}
.colbox p.note {
  font-size: 12px;
  color: var(--c-gray);
  margin-top: 8px;
}
.colbox figure {
  max-width: 300px;
  margin: 15px auto 0;
}
.colbox .btns {
  margin-top: 20px;
}
/* 賞ごとのラベル色分け */
.present1 .colbox h3 {
  color: var(--c-orange);
}
.present2 .colbox h3 {
  color: var(--c-yellow);
}
.present3 .colbox h3 {
  color: var(--c-pink);
}
.present4 .colbox h3 {
  color: var(--c-green);
}
.txc {
  text-align: center;
  margin: 40px 0 0
}
@media (min-width: 768px) {
  .bg_present {
    padding: 70px 0 70px;
  }
  .bg_present .card {
    padding: 50px 40px 56px;
    margin: 0 auto;
  }
  .bg_present h2 figure img {
    max-width: 400px;
  }
  .presentlist {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
  }
  .presentlist > li {
    width: calc(50% - 15px);
    margin-bottom: 0;
  }
  /* PC用カード背景 */
  .colbox {
    height: 100%;
    padding: 30px 30px 30px;
    background: #FFFCF8;
    border-radius: 5px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
    border: solid #F3F3F3 1px;
  }
  .colbox figure {
    max-width: 400px;
    margin: 20px auto 0;
  }
  .colbox p {
    font-size: 16px;
  }
  .colbox p.lead {
    font-size: 18px;
  }
  .colbox h3 {
    font-size: 20px;
  }
}
/* ==========================================================================
   コラボ紹介セクション
   ========================================================================== */
.bg_collabo {
  position: relative;
  padding: 20px 0 20px;
  background-color: #fbeef7;
  background-image: url("../img/tiedye_cm.jpg");
  background-repeat: repeat;
  background-position: top center;
}
.column.card, .bg_collabo .column {
  background-color: #ffffffcc;
  padding: 25px 24px 30px;
  border: solid 1px #fff;
}
h3.mds {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--c-green);
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--c-text);
  line-height: 1.2;
}
.row.w2, .row.full {
  margin-bottom: 34px;
}
.row.w2:last-child, .row.full:last-child {
  margin-bottom: 0;
}
.row.w2 h4, .row.full h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
  color: var(--c-green);
}
.row.w2 p, .row.full p {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  padding-top: 10px;
}
/* w2：画像を右に回り込ませる */
.row.w2::after {
  content: "";
  display: table;
  clear: both;
}
.row.w2 figure {
  float: right;
  width: 45%;
  max-width: 200px;
  margin: 0 0 10px 15px;
}
/* full：画像を回り込みなしで全幅表示 */
.row.full figure {
  max-width: 200px;
  margin: 30px auto 20px;
}
.row.full > div a {
  display: block;
  text-align: center;
  margin: 16px 0 10px;
  font-weight: 700;
  text-decoration: underline;
  color: var(--c-green);
}
@media (min-width: 768px) {
  .bg_collabo {
    padding: 70px 0 70px;
  }
  .column.card, .bg_collabo .column {
    padding: 50px 160px 70px;
  }
  h3.mds {
    font-size: 34px;
  }
  .row.w2 figure {
    float: right;
    width: 65%;
    max-width: 320px;
    margin: 0 30px 30px 50px;
  }
  .row.w2 figure {
    max-width: 220px;
  }
  .row.full figure {
    max-width: 360px;
  }
  .row.w2 p, .row.full p {
    font-size: 17px;
    line-height: 2.5;
    margin-top: 20px;
  }
  .row.w2 h4, .row.full h4 {
    font-size: 22px;
  }
  .row.full > div a {
    font-size: 20px;
  }
}
/* ==========================================================================
   『7つの習慣』とはセクション（altcont：SP縦積み／PC左右2カラム）
   ========================================================================== */
.bg_bestseller {
  background: var(--c-black);
  color: var(--c-white);
  padding: 50px 0 50px;
}
.altcont {}
.altcont .txtcol h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 18px;
  text-align: center;
}
.altcont .txtcol p {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}
.altcont .imgcol {
  margin: 30px 30px 20px;
}
.altcont .books {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.altcont .books figure {
  width: 35%;
  max-width: 150px;
}
.altcont .anniv-badge {
  width: 80px;
  margin: 0px auto 0px;
}
@media (min-width: 768px) {
  .bg_bestseller {
    padding: 70px 0 80px;
  }
  .altcont .txtcol h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .altcont .txtcol p {
    font-size: 16px;
  }
  .altcont .imgcol {
    flex: 0 0 340px;
    margin-top: 0;
  }
  .altcont .books figure {
    width: 50%;
    max-width: 200px;
  }
  .altcont .anniv-badge {
    width: 100px;
    margin: 24px auto 0;
  }
}
/* ==========================================================================
   応募フォームセクション
   ========================================================================== */
.bg_form {
  background: var(--c-white);
  padding: 40px 0 30px;
}
.bg_form .wrapper {
  padding: 0 20px;
}
.bg_form iframe {
  display: block;
  width: 100%;
  border: 0;
  height: 1090px
}
@media (min-width: 768px) {
  .bg_form {
    padding: 60px 0 50px;
  }
  .bg_form .wrapper {
    max-width: var(--wrap-pc);
    padding: 0 24px;
  }
  .bg_form iframe {
    height: 850px
  }
}
/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--c-white);
  padding: 40px 20px 90px; /* 下部：追従CTA分の余白（SP） */
  text-align: center;
}
footer .fcelogo {
  width: 80px;
  margin: 0 auto 20px;
}
footer p {
  font-size: 12.5px;
  line-height: 1.9;
  color: #444;
}
footer copyright, footer .copyright {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  color: var(--c-gray);
}
@media (min-width: 768px) {
  footer {
    padding: 60px 20px 60px;
  }
  footer .fcelogo {
    width: 110px;
  }
}
/* ==========================================================================
   追従CTA（SPのみ／JSで is-show を切り替え）
   ========================================================================== */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #ffffff;
  padding: 10px 20px calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 14px rgba(0, 0, 0, .14);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.fixed-cta.is-show {
  transform: translateY(0);
}
.fixed-cta .btn {
  padding: 10px 20px;
  font-size: 20px;
}
/* PC幅では常に非表示（.sp の display:none も対応済） */
@media (min-width: 768px) {
  .fixed-cta {
    display: none !important;
  }
}
/* ==========================================================================
   小さいSPでの微調整
   ========================================================================== */
@media (max-width: 360px) {
  .colbox h3 {
    font-size: 17px;
  }
  .altcont .txtcol h3 {
    font-size: 18px;
  }
}