/* =========================
  Base
========================= */
:root{
  --container: 1100px;

  --blue: #2f74a8;        /* メイン青（heroやフッター系） */
  --blue-dark: #1f5f8f;   /* ボタン hover 用 */
  --bg: #ffffff;
  --text: #243447;
  --muted: #6b7a8a;

  --card-bg: #eaf2f9;     /* 会員特典カード背景（薄青） */
  --card-border: #cfe2f3;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html, body{
  height: 100%;
}
.wrap{
  padding-top: 0 !important;
}

body{
  margin: 0;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a{
  color: inherit;
  text-decoration: none;
}

.container{
  width: min(var(--container), calc(100% - 20px));
  margin-inline: auto;
}

body:not(.page--home) .wrap .container {
    margin: 0px auto 1vw;
}


/* =========================
  Header（仮）
========================= */
.siteHeader{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.siteHeader .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.siteHeader__logo img{
  height: 40px;
  width: auto;
}

.siteHeader__menuBtn{
  border: 0;
  background: transparent;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
}

.siteHeader__menuBtn:hover{
  background: rgba(0,0,0,.05);
}

/* =========================
  Sections
========================= */
.section{
  padding: 44px 0;
}

.section--center{
  text-align: center;
}

.sectionTitle{
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(16px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: .04em;
  color:#1950CD;
}

/* =========================
  Hero（トップ / 青背景）
========================= */
.hero{
  background: var(--blue);
  color: #fff;
  padding: 60px 0 54px;
  width: 100%;
}

.hero__container{
  width: 100%;
  padding-inline: 20px; /* 端ギリ防止 */
  text-align: center;
}

.hero__inner{
  text-align: center;
}

.hero__brand{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-direction: column; /* 縦並び */
}

.hero__icon{
  width: 46px;
  height: 120px;
  object-fit: contain;
}

.hero__title{
  margin: 0;
  font-size: clamp(26px, 4.2vw, 46px);
  font-weight: 900;
  letter-spacing: .08em;
  width: 60%;
}

.hero__lead{
  margin: 25px 0 18px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  opacity: .95;
  position: relative;
  display: inline-block;
  padding: 0 42px;
  color:#f2eab6;
}

/* 左アイコン */
.hero__lead::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/feature/newmembership/img/BpiXX6hV9YJi_left_right-logo.png") center / contain no-repeat;
}

/* 右アイコン */
.hero__lead::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/feature/newmembership/img/BpiXX6hV9YJi_left_right-logo.png") center / contain no-repeat;
}

@media (max-width:480px){
  .hero__lead{
    padding: 0 30px;
  }
  .hero__lead::before,
  .hero__lead::after{
    width:22px;
    height:22px;
  }
  .hero__desc{
  margin: 25px 0 15px;
}
}


.hero__desc{
  margin: 25px 0 0px;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #f2eab6;
  line-height: 1.9;
  max-width: 620px;
  margin-inline: auto;
}

/* =========================
  Buttons
========================= */
.btn{
  display: inline-grid;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 18px 38px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;

  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  font-size: clamp(15px, 1.3vw, 24px);
  
  min-width: 340px;
}

.btn:active{
  transform: translateY(1px);
}

.btn--primary{
  background: #004DA0;
  color: #fff !important;
}

.btn--primary:hover{
  background: #cc0000;
}

.btn--white{
  background: #fff;
  color: var(--text);
  border: 1px solid #000;
}

.btn--white:hover{
  background: #f2eab6;
}

.btn--outlineLight{
  background: #004DA0;
  color: #f2eab6 !important;
  border: 1px solid #f2eab6; /* 添付の点線っぽいノリ */
  box-shadow: none;
}

.btn--outlineLight:hover{
  background: #f2eab6;
  color: #004DA0 !important;
}

.btn--softRadius{
  border-radius: 999px;
}


/* =========================
  Media Embed（動画）
========================= */
.section--media{
  padding-top: 34px;
}

.mediaEmbed{
  width: min(720px, 100%);
  margin-inline: auto;
  overflow: hidden;
  background: #000;
  margin-top: 4vw;

}

.mediaEmbed__iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

/* =========================
  Figure（コース比較画像）
========================= */
.figure{
  margin: 0;
  text-align: center;
}

.figure__img{
  width:50%;
  max-width:600px; /* PCで大きくなりすぎ防止（任意） */
  display:block;
  margin-inline:auto;
}

@media (max-width: 600px){
  .figure__img{
    width: 92%;
  }
}

.noteText{
  margin: 18px auto 0;
  text-align: center;
  color: #d13b3b; /* 添付の注意書きっぽく赤 */
  font-size: 12px;
  width: min(860px, 100%);
}

/* =========================
  Cards
========================= */
.cardGrid{
  display: grid;
  gap: 18px;
  justify-content: center;
}

.cardGrid--2{
  grid-template-columns: repeat(2, minmax(0, 380px));
}

.cardGrid--1{
  grid-template-columns: minmax(0, 860px);
  margin-bottom: 10px;
}

.card {
  background: var(--blue);
  padding: 18px 18px 16px;
  text-align: center;
}

.card__title{
  margin: 0 0 14px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 900;
  color: #f2eab6;
  position: relative;
  display: inline-block; /* 中央寄せのまま左右に飾りを足す */
  padding: 0 42px;
}

/* 左 */
.card__title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/feature/newmembership/img/BpiXX6hV9YJi_left_right-logo.png") center/contain no-repeat;
}

/* 右 */
.card__title::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/feature/newmembership/img/BpiXX6hV9YJi_left_right-logo.png") center/contain no-repeat;
}

/* SP調整（hero__leadと同じノリ） */
@media (max-width:480px){
  .card__title{ padding: 0 30px; }
  .card__title::before,
  .card__title::after{ width:22px; height:22px; }
}

.card__media {
  border-radius: 12px;
  padding: 10px;
  margin: 0 0 12px;
  color: #f2eab6;
  transform: rotate(20deg);
}

.card__media-2 {
  border-radius: 12px;
  padding: 10px;
  margin: 0 0 12px;
  color: #f2eab6;
  display: flex;
    justify-content: center;
    align-items: flex-end;  
    flex-wrap: wrap;
gap: 50px;
}



.card__media img{
  width: 100%;
  border-radius: 10px;
}

.card__text{
  margin: 0;
  color: #f2eab6;
  font-size: 12px;
}

.payGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(980px, 100%);
  margin-inline: auto;
}

.payCard{
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
      border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.payCard__head{
  margin:0;
  padding: 18px 16px;
  text-align:center;
  font-weight: 900;
  letter-spacing: .06em;
  color:#f2eab6;
  font-size: clamp(16px, 1.3vw, 22px);
}

.payCard--annual .payCard__head{ background:#2f74a8; } /* 青 */
.payCard--monthly .payCard__head{ background:#53b65b; } /* 緑 */

.payCard__body{
  display:flex;
  flex-direction:column;
  flex:1;
  background:#f3f3f3; /* グレー */
  padding: 18px 22px 20px;
}

.payList{
  margin:0;
  padding-left: 1.2em;
  color:#222;
  line-height:1.9;
}

.payList small{
  font-size: .9em;
  color:#666;
  margin-left: 6px;
}

.payNote{
  margin: 14px 0 0;
  font-size: 12px;
  color:#444;
  margin-top:auto
}

/* SP */
@media (max-width: 820px){
  .payGrid{ grid-template-columns: 1fr; }
}


/* =========================
  Link Grid（デジタルコンテンツ：2列）
========================= */
.linkGrid{
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
  margin-inline: auto;
}

.linkGrid--2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.linkItem{
  background: var(--blue);
    grid-template-columns: 1fr !important;
    grid-auto-flow: row;
    justify-items: center;
    text-align: center;
    gap: 16px;
    padding: 0 0px 10px;
}

.linkItem:hover{
  transform: translateY(-1px);
}

.linkItem__icon{
      width: 200px;
    height: 170px;
  background: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.linkItem__title{
  margin: 40px 0 10px;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 900;
  color: #f2eab6;
  position: relative;
  display: inline-block;
  padding: 0 42px;
}

/* 左アイコン */
.linkItem__title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/feature/newmembership/img/BpiXX6hV9YJi_left_right-logo.png")
              center / contain no-repeat;
}

/* 右アイコン */
.linkItem__title::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/feature/newmembership/img/BpiXX6hV9YJi_left_right-logo.png")
              center / contain no-repeat;
}

/* SP調整（cardと同じ） */
@media (max-width:480px){
  .linkItem__title{
    padding: 0 30px;
  }
  .linkItem__title::before,
  .linkItem__title::after{
    width:22px;
    height:22px;
  }
}

/* linkItem専用アイコン */
.linkIcon{
      width: 200px !important;
    height: 115px;
  object-fit: contain;
}


.linkItem__text{
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(13px, 1vw, 16px);
  text-align: center;
      margin: 10px 0px 20px;
      color: #f2eab6;
}

/* FAQボタン文字サイズコントロール */
.btn--faq{
  flex-direction: column;  /* 2行を綺麗に中央揃え */
  line-height: 1.2;
  padding: 18px 22px;
}

.btnFaq__sub{
  font-size: 13px;
  font-weight: 700;
}

.btnFaq__main{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .02em;
}


/* =========================
  Footer（仮）
========================= */
.siteFooter{
  background: var(--blue);
  color: rgba(255,255,255,.9);
  padding: 34px 0 28px;
  margin-top: 50px;
}

.siteFooter__nav{
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.siteFooter__nav a{
  padding: 8px 10px;
  border-radius: 999px;
}

.siteFooter__nav a:hover{
  background: rgba(255,255,255,.12);
}

.siteFooter__copy{
  margin: 0;
  text-align: center;
  font-size: 12px;
  opacity: .85;
  
}
/* ===== 下部CTA：新規入会 ===== */
.section--ctaJoin{
  padding: 30px 0 12px;
}

/* ===== 下部CTA：初回ログイン ===== */
.section--ctaLogin{
  padding: 16px 0 120px;
}


/* =========================
  Responsive
========================= */
@media (max-width: 820px){
    .hero__title {
    width: 70%;
  }
  .section{ padding: 38px 0; }

  .cardGrid--2{
    grid-template-columns: minmax(0, 520px);
  }

  .linkGrid--2{
    grid-template-columns: 1fr;
  }

  .hero{
    padding: 52px 0 46px;
  }

  .hero__desc{
    font-size: 13px;
  }
}

@media (max-width: 480px){
  .hero__title {
    width: 100%;
  }
  .siteHeader__logo img{ height: 34px; }

  .btn{
    min-width: unset;
    width: 100%;
    max-width: 360px;
    font-size: 15px;
    gap: 0;
  }

  .hero__brand{
    gap: 10px;
  }

  .hero__icon{
    width: 40px;
    height: 40px;
  }
  .btnFaq__sub{
  font-size: 12px;
}
.wrap .header {
    position: absolute !important;
}
/* ===== 下部CTA：新規入会 ===== */
.section--ctaJoin{
  padding: 30px 0 12px !important;
}

/* ===== 下部CTA：初回ログイン ===== */
.section--ctaLogin{
  padding: 16px 0 120px !important;
}

}


/* heroだけコンテナの檻から脱獄させる */
.siteMain .hero{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* フル幅化で横スクロールが出た時の保険 */
html, body{
  overflow-x: clip; /* 古い環境なら hidden に */
}

/* heroの中身は中央寄せ＋左右余白 */
.siteMain .hero__container{
  margin-inline: auto;
}


.sp-br{
  display:none;
}

@media (max-width: 480px){
  .sp-br{
    display:block;
    height:0;
    margin-top:6px;
  }
}

/* ===== card内の画像共通（今後拡張できるように） ===== */
.cardMedia__img{
  display:block!important;
  margin-inline:auto!important;
}

/* ===== ticket画像だけサイズ変更 ===== */
.cardMedia__img--ticket {
  width: 50% !important;        /* 好きなサイズに調整 */
  max-width: 162px !important;  /* PCで巨大化防止 */
}

.cardMedia__img--ticket-2 {
width: 70% !important;
    max-width: 200px !important;
    margin-top: 2vh;
    margin-bottom: 3vh;
  border: 1px solid #fff !important; /* 白い枠（任意） */
  border-radius: 10px !important;
}
.cardMedia__img--ticket-3 {
width: 70% !important;
    max-width: 200px !important;
    margin-top: 2vh;
    margin-bottom: 3vh;
}



/* ===== Scroll Fade Up ===== */

.js-fadeUp{
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity .8s ease,
    transform .8s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.js-fadeUp.is-show{
  opacity: 1;
  transform: translateY(0);
}


/* =========================
  FAQ Box（角丸の四角で囲む）
========================= */
.faqBox{
  width: min(820px, 100%);
  margin-inline: auto;
  padding: 28px 22px 24px;
  background: #2f74a8;
  text-align: center;
}

.faqBox__title{
  margin: 0 0 10px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: .06em;
  color: #f2eab6; /* 既存のセクションタイトルと合わせる */
}

.faqBox__sub{
  margin: 0 0 10px;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 900;
  color: #f2eab6;
}

.faqBox__desc{
  margin: 0 0 18px;
  font-size: 13px;
  color: #f2eab6;
  line-height: 1.9;
}

/* FAQボタン：箱の中でサイズ感を整える */
.faqBox .btn{
  min-width: min(340px, 100%);
}

/* SP微調整 */
@media (max-width:480px){
  .faqBox{
    padding: 22px 16px 18px;
  }
  .faqBox__desc{
    font-size: 12px;
  }
}
/* =========================
   FAQ buttons size normalize
   ========================= */

/* FAQ内のボタンは同じ寸法で統一 */
.faqBox .btn--primary,
.faqBox .btn--faq{
  width: 100%;
  max-width: 360px;
  min-width: unset;              /* でかくなる原因を潰す */
  padding: 18px 38px;            /* .btn基準に揃える :contentReference[oaicite:6]{index=6} */
      font-size: clamp(15px, 1.3vw, 20px);
  border-radius: 999px;
  margin-bottom: 2vh;
}

/* btn--faq の中の2段テキストも整える（行間とサイズ） */
.btn--faq .btnFaq__sub{
  display:block;
  font-size: .7em;
  line-height: 1.3;
}
.btn--faq .btnFaq__main{
  display:block;
     font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.25;
}


/* ===== FAQタイトル左右に歯アイコン ===== */
.faqBox__title{
  position: relative;
  display: inline-block;   /* 中央寄せのまま左右に飾りを出す */
  padding: 0 44px;         /* アイコン分の余白 */
}

/* 左 */
.faqBox__title::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/feature/newmembership/img/BpiXX6hV9YJi_left_right-logo.png")
              center / contain no-repeat;
}

/* 右 */
.faqBox__title::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url("/static/fcopen/fanplakit/artist/ano_r7UxLjgH/feature/newmembership/img/BpiXX6hV9YJi_left_right-logo.png")
              center / contain no-repeat;
}

/* SP微調整 */
@media (max-width:480px){
  .faqBox__title{
    padding: 0 32px;
  }
  .faqBox__title::before,
  .faqBox__title::after{
    width: 22px;
    height: 22px;
  }
}

/* デフォルト：PC表示 */
.courseImage--pc{
  display:block;
}

.courseImage--sp{
  display:none;
}

/* SP時切り替え */
@media (max-width:768px){
  .courseImage--pc{
    display:none;
  }

  .courseImage--sp{
    display:block;
  }

  .courseImage--sp img{
    width:100%;
    margin-bottom:16px;
  }
}


/* =========================
   Header override（共通CSSに勝つ用）
   ========================= */

/* まずは“浮かす”ために前面へ */
#header-nav.header,
.drawer__btn{
  position: fixed;
  top: 0;
  z-index: 9999;
}

/* PC：背景を消して、heroの上にロゴ＆ボタンが乗る感じ */
@media (min-width: 821px){
  #header-nav.header{
    left: 0;
    right: 0;
    background: transparent !important; /* 背景殺す */
    box-shadow: none !important;
  }

  /* ロゴ位置（PCロゴは header内にいる）:contentReference[oaicite:1]{index=1} */
  #header-nav.header .logo.pc{
    margin: 0;
  }

  /* drawerボタン（header外にいる）:contentReference[oaicite:2]{index=2} */
  .drawer__btn{
    right: 16px;
    top: 16px;
  }
}

/* SP：heroと同色で“上から下まで”青が続くようにして白チラつき回避 */
@media (max-width: 480px){
  :root{
    /* heroと同じ青にしたいなら、あなたの var(--blue) を使う */
    --header-sp-bg: var(--blue);
  }

  #header-nav.header{
    left: 0;
    right: 0;
    background: var(--header-sp-bg) !important;
    box-shadow: none !important;
  }

  /* headerの背景が短くて白が見切れる時の保険：疑似要素で“延長” */
  #header-nav.header::before{
    content:"";
    position:absolute;
    inset: -40px 0 0 0; /* 上に少し伸ばす */
    background: var(--header-sp-bg);
    z-index: -1;
  }

  .drawer__btn{
    right: 12px;
    top: 12px;
  }

  /* hero側に“ヘッダー分の余白”を足して、被りを防ぐ */
  .siteMain .hero{
    padding-top: calc(55px + 52px); /* 元のhero padding(ざっくり) + header分 */
  }
}


/* =========================
   LinkItem hover shake
   ========================= */

@keyframes iconWiggle {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(-6deg); }
  40%  { transform: rotate(6deg); }
  60%  { transform: rotate(-4deg); }
  80%  { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}

/* hover時にアイコンだけ揺らす（親のhoverで発火） */
.linkItem:hover .linkItem__icon{
  animation: iconWiggle .45s ease-in-out;
  transform-origin: 50% 60%;
}

/* =========================
   SP：アイコン下にテキスト（縦積み）
   ========================= */
@media (max-width: 820px){
  .linkItem{
    grid-template-columns: 1fr !important;
    grid-auto-flow: row;
    justify-items: center;
    text-align: center;
    gap: 10px;
    padding: 14px 14px 18px;
  }

  /* 今 linkIcon を共通クラスで当ててる前提 :contentReference[oaicite:4]{index=4} */
  .linkIcon{
    width: min(220px, 72vw) !important;
    height: auto !important;
  }

  /* 下線（::after）の位置を少し下げて見た目整える */
  .linkItem::after{
    bottom: 8px;
  }
}
/* ===== MOVIE / PHOTO だけ小さくする ===== */
.linkIcon--movie,
.linkIcon--photo{
  width: 70% !important;
  height: auto !important;
}


/* ===== FAQボタンをPC/SPで完全統一 ===== */
.faqBox .btn--faq{
  width: 100%;
  max-width: 360px;
  min-width: unset;
  padding: 18px 38px;
  font-size: clamp(15px, 1.3vw, 20px);
}

/* SP時も上書き固定 */
@media (max-width:480px){
  .faqBox .btn--faq{
    width: 100%;
    max-width: 360px;
    padding: 18px 38px;
    font-size: 16px;
  }
}

/* newmembershipページ内だけ、共通containerの下マージンを無効化 */

@media screen and (max-width: 960px) {
    body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header h1.logo, [class^=page--] .wrap .header h1.logo {
        display: block;
        width: 13vw;
    }
}

@media screen and (max-width: 480px) {
    body:not([class^=page--], [class*=" page--"]):has(> .wrap) .wrap .header h1.logo, [class^=page--] .wrap .header h1.logo {
        display: block;
        width: 24vw;
    }
}

@media (max-width: 480px) {
    .hero__title {
        width: 100%;
    }
    .siteMain .hero{
    padding-top: calc(85px + 52px) !important; /* 元のhero padding(ざっくり) + header分 */
  }
}

/* =========================
   FAQ 重要注意ボックス
========================= */
.faqBox__notice{
  margin: 30px 0 34px;
  padding: 22px 20px;
  background: #ffffff;
  color: #243447;
  border: 3px solid #f2eab6; /* 既存カラーとリンク */
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.faqBox__notice p{
  margin: 0 0 16px;
  font-size: 13px; /* 既存descと同じ */
  line-height: 1.9;
}

.faqBox__notice strong{
  color: #cc0000; /* 重要ワードだけ赤 */
  font-weight: 900;
}

.faqBox__noticeTarget{
  margin-top: 10px;
  font-weight: 900;
}

.faqBox__noticeList{
  margin: 10px 0 0;
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.8;
}

.faqBox__noticeList li{
  margin-bottom: 6px;
}

/* SP微調整 */
@media (max-width:480px){
  .faqBox__notice{
    padding: 18px 14px;
  }
}


.pc-br{
  display:block;
}

@media (max-width:480px){
  .pc-br{
    display:none;
  }
}