/* Reset CSS */

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

html {
  font-size: 100%;
}

body {
  font-family:
  "Montserrat",
  "Noto Sans JP",
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  Meiryo,
  sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

body{
  padding-bottom: 90px; /* ボタン高さ分 */
}

/* ======================================
   FV
====================================== */

.fv{
  position: relative;
  padding: 20px 16px 24px;

  /* 背景（用意したブルーグラデ画像） */
  background: url("../images/background_bluegradation.png") no-repeat center / cover;
}

/* 上キャッチ */
.fv__top{
  display: block;
  text-align: center;
  margin-inline: auto;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,1.0);
  color: #7988F5;
  
}

.fv__zero{
  color: #ff4d4d;   /* 好きな赤に調整 */
  font-weight: 800;
  font-size: 16px;
}

/* タイトル */
.fv__title{
  margin-top: 14px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  display: block;
}

/* 設計の帯：中央の箱の中で左寄せ */
.fv__title-tiles{
  display: flex;
  flex-direction: row;          /* 横並び固定 */
  justify-content: flex-start;  /* 左寄せ */
  align-items: center;
  gap: 8px;                     /* 設と計の間 */

  width: 100%;
  max-width: 360px;             /* “中央の箱”の幅 */
  margin: 6px 8px 0;           /* 箱自体は中央へ */
}

/* 1文字タイル（白い四角） */
.fv__title-tile{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 86px;              /* ← タイル文字サイズはここ */
  width: 1.2em;
  height: 1.2em;

  background: #fff;
  color: #6b5cff;

  font-weight: 800;
  line-height: 1;
  transform: translateY(-2px); 
}

/* 文字だけ動かす */
.fv__title-char{
  display: inline-block;
  transform: translateY(-3px);
}

.fv__title-tile:last-child{
  margin-right: 0;
}

/* サブ */
.fv__subtitle{
  margin-top: 6px;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
}

/* 参加無料バッジ（CSS円） */
.fv__supplement{
  position: absolute;
  top: 133px;
  right: 30px;

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

  width: 84px;
  height: 84px;

  border-radius: 50%;
  text-align: center;

  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;

  color: #fff;

  border: 2px solid #fff;
  background: rgba(255,255,255,0.08);

  backdrop-filter: blur(4px);
}

/* 実績3つ */
.fv__evaluation{
  /* margin-top: 6px; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* 麦フレーム */
.fv__badge{
  height: 96px;                 /* ←まず固定（ここ調整ポイント） */
  padding: 10px 8px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* 中央じゃなく上から積む */
  padding-top: 14px;          /* 上の余白で見た目調整 */
  /* justify-content: center;      ←縦方向も中央 */

  background: url("../images/barley_frame.png") no-repeat center / contain;
}

/* ★、ラベル、数値の余計なズレを消す */
.fv__stars{
  margin: 0;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #F9E587;
}

.fv__evaluation-label{
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  color: #F9E587;
}

.fv__evaluation-value{
  margin-top: 4px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  color: #F9E587;
}

/* 3つ目だけ：名以上を小さく添える（同じ行で制御） */
.fv__evaluation-value--unit{
  display: flex;
  flex-direction: column;   /* ← 縦並びにする */
  align-items: center;      /*← 中央揃え*/
  gap: 4px;
}

.fv__evaluation-unit{
  font-size: 10px;
  line-height: 1;
  transform: translateY(-1px);  /* ちょい上げて見た目調整 */
}

/* CTA */
.fv__cta{
  margin-top: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 800;
  background: #22c55e;
  color: #fff;

  transition: all .25s ease;
}

.fv__cta:hover{
  background: #16a34a; /* 少し濃く */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

/* CTA内無料バッジ */
.fv__cta-free{
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: #22c55e;
  background: rgba(255,255,255,1);
}

/* CTAテキスト */
.fv__cta-text{
  font-size: 18px;
  line-height: 1.2;
}

/* 注釈 */
.fv__note{
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

.fv__bonus{
    display: none;
  }

/* fv_pc版 */

@media screen and (min-width: 900px){

  /* ======================
     FV 全体（高さ固定しない）
  ====================== */
  .fv{
    padding: 40px 0 28px;  /* ← ここで縦の密度を作る */
  }

  .fv__inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 40px;     /* ← 36→28で“キュッ” */
    border-radius: 14px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;

    /* カンプの枠線っぽさ（必要なら） */
    /* border: 1px solid rgba(255,255,255,0.35); */
  }

  /* ======================
     左カラム（コピー）
  ====================== */
  /* 左は左寄せに統一 */
.fv__left{
  text-align: left;
  }

/* 上キャッチ（ pill 自体も左に寄せる） */
.fv__top{
  text-align: left;
  margin: 0;              /* 中央寄せの名残があれば消す */
  width: fit-content;
}

/* タイトル全体を左寄せ */
.fv__title{
  text-align: left;
  font-size: 58px;        
  line-height: 1.12;
  position: relative;
}

/* 設計タイルの帯も左に */
.fv__title-tiles{
  justify-content: flex-start;
  max-width: none;        /* 変な制限があるなら解除 */
  margin-top: 26px;
  gap: 10px;
}

/* タイルをさらにデカく */
.fv__title-tile{
  font-size: 146px;
  width: 1.25em;   /* 1.2 → 1.25 */
  height: 1.25em;      
}

.fv__title-char{
    transform: translateY(-2px); /* -1〜-3pxで微調整 */
  }

/* サブもデカく */
.fv__subtitle{
  text-align: left;
  font-size: 50px;        /* 32→36 */
  margin-top: 14px;
}

  /* 参加無料バッジ（位置調整ツマミ） */
  .fv__supplement{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: clamp(-0.8em, -3vw, -2.2em); /* ←ここが調整ツマミ */
      }

  /* ======================
     右カラム（実績＋特典）
  ====================== */
  .fv__right{
    width: 360px; 
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    /* padding-top: 8px; */
  }

  .fv__evaluation{
    margin-top: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }

  .fv__badge{
    width: 120px;
    height: 96px;
  }

  .fv__bonus{
    display: block;
    width: 100%;
    margin-top: -18px;
  }

  .fv__bonus img{
    width: 88%;
    margin-left: auto;
    transform: translateY(-8px);
  }

  /* ======================
     下（CTA）
  ====================== */
  .fv__bottom{
    margin: 14px auto 0;  /* ← 10でもOK。好みで詰めるツマミ */
    text-align: center;
  }

  .fv__cta{
    max-width: 420px;
    width: 100%;
    margin: 24px auto 0;
  }
}

/* 固定CTAボタン */
.cta-sticky{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 16px;
  background: rgba(255,255,255,0.95); /* 下地（任意） */
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);

  transition: all .25s ease;
}

.cta-sticky__btn:hover{
  background: #16a34a; /* 少し濃く */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.cta-sticky__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  max-width: 680px;
  margin: 0 auto;
  padding: 14px 18px;

  border-radius: 999px;
  background: #22c55e; /* ボタン色は既存に合わせて */
  color: #fff;
  font-weight: 700;
}

.cta-sticky__free{
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: #22c55e;
  background: rgba(255,255,255,1);
}

/*PCでは出さない  */
@media screen and (min-width: 900px){
  .cta-sticky{
    display: none;
  }
}

/* 特典 */

.bonus{
  background-color: #0B1C3F;
  padding: 0 16px 64px;
}

.bonus__title{
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.bonus__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
}

.bonus__item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.bonus__thumbs li{
  flex: 0 0 calc(18% - 6px);
}

.bonus__cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.bonus__card{
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 10px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.bonus__text{
  min-height: 4.5em;
  line-height: 1.5;
}

.bonus__label{
  white-space: nowrap;
  display: inline-block;
  background: url(../images/ribbon.png)no-repeat center / 100% 100%;
  color: #6A4700;
  padding: 6px 18px;
  text-shadow:
    1px 0 #F5E7C1,
   -1px 0 #F5E7C1,
    0 1px #F5E7C1,
    0 -1px #F5E7C1;
}

@media (min-width: 1024px){

   .bonus__title{
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;
  }

  .bonus__img{
    width: 100%;
    height: auto;
    display: block;
  }

  .bonus__list{
    grid-template-columns: repeat(3, 1fr);
  }

  .bonus__item{
    display: flex;          /* or block */
    flex-direction: column;
    align-items: center;
  }

  .bonus__thumbs{
    flex-wrap: nowrap;
    gap: 20px;
  }
  .bonus__thumbs li{
    flex: 0 0 72px;
  }

}

/* お悩み共感 */

.empathy{
 background: linear-gradient(
    180deg,
    #bebebd 0%,
    #e6e6e5 40%,
    #ffffff 80%
  );
  padding: 16px 16px 64px;
}

.empathy__title{
  text-align: center;
  font-size: 36px;
  padding-bottom: 24px;
}

.empathy__accent{
  color: #ff4d4d;
  font-weight: 600;
}

.empathy__box {
  border: 2px solid #2F80ED;
  border-radius: 14px;
  padding: 18px 16px;
}

.empathy__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.empathy__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.empathy__list li:last-child{
  margin-bottom: 0;
}

/* □ 背景ボックス */
.empathy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #EAF3FF;
  border: 1px solid #BFD7FF;
}

/* ✔ チェック */
.empathy__list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 8px;
  height: 4px;
  border-left: 2px solid #7AA7FF;
  border-bottom: 2px solid #7AA7FF;
  transform: rotate(-45deg);
}

/* 参加後、こうなります */

.result{
 background: linear-gradient(
    180deg,
    #5edde7 0%,
    #749af3 40%,
    #8b56ff 80%
  );
  padding: 16px 16px 64px;
}

.result__title{
  color: #fff;
  text-align: center;
  font-size: 34px;
  margin: 0 0 16px; /* タイトル下に余白 */
}

.result__list{
  display: grid;
  gap: 12px;
}

/* カード本体 */
.result__card{
  background: #fff;
  border-radius: 12px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* ← うっすら影 */
}

/* 番号バッジ */
.result__num{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: #6a5cff; /* とりあえず */
  flex: 0 0 34px;
}

/* テキスト */
.result__text{
  margin: 0;
  line-height: 1.5;
}

/* reframe */

.reframe{
 background: #0B1C3F;
 padding: 16px 16px 64px;
}

.reframe__title{
  font-size: 36px;
  color: #fff;
  text-align: center;
  margin: 0 0 20px;
}

.reframe__box{
  background: #fff;
  border-radius: 12px;
  padding: 14px 14px;
}

.reframe__text{
  margin: 0 0 12px;
  line-height: 1.8;
}

.reframe__text:last-child{
  margin-bottom: 0;
}

.reframe__accent{
  color: #ff4d4d;
  font-weight: 600;
}

/* セミナーの内容 */

.seminar{
  background: #D4F4FE;
  padding: 16px 16px 64px;
}

.section-head__title{
  font-size: 36px;
  text-align: center;
  color: #334155;
}

.section-head__subtitle{
  font-size: 24px;
  text-align: center;
  color: #5892FE;
  font-weight: 500;
}

.seminar-card{
  background-color: #fff;
  border-radius: 13px;
  display: block;
  margin: 18px auto;
  padding: 14px 12px ;
}

.seminar-card__badge{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: #6a5cff; /* とりあえず */
  margin: 0 auto; /* これで中央寄せ */
}

.seminar-card__title{
  text-align: center;
  font-size: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.seminar-card__media{
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;   /* 好きな比率に */
  overflow: hidden;
  border-radius: 13px;
}

.seminar-card__img{
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 12px auto;
  border-radius: 13px;
  object-fit: cover;  /* はみ出た部分だけカット */
}

.seminar-card__lead{
  text-align: center;
  max-width: 320px;
  margin: 18px auto;
}

.seminar-card__kicker{
  text-align: center;
  /* max-width: 280px; */
  margin: 18px auto;
  font-size: 20px;
  font-weight: 600;
}

.seminar-card__points{

  max-width: 280px;
  margin: 18px auto;
  padding-left: 20px;
}

/* 各行（li）をレイアウト */
.seminar-card__points li{
  position: relative;
  padding-left: 14px;   /* 点の分だけ左に余白 */
  line-height: 1.7;
  margin-bottom: 6px;
}

/* 点は “li” の before に出す */
.seminar-card__points li::before{
  content: "";
  width: 6px;
  height: 6px;
  background-color: #5892FE;
  border-radius: 50%;
  position:  absolute;
  left: 0;
  top: 0.65em;  
}

.seminar__closing{
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.seminar__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

/* PCだけ3カラム */
@media (min-width: 1024px){
  .seminar__list{
    grid-template-columns: repeat(3, 1fr);
  }
  .seminar__item{
    display: flex;
  }
  .seminar-card{
    width: 100%;
    padding: 24px 20px;
  }
}

/* review */

.review{
  background-color: #E8EBFE;
  padding: 16px 16px 64px;
}

/* ★ここが重要：gridの土台をSPから作る */
.review__list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.review-card{
  background-color: #fff;
  border-radius: 13px;
  display: block;
  margin: 18px auto;
  padding: 14px 12px ;
}

.review-card__header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.review-card__avatar{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__title{
  font-weight: 600;
  margin-left: 6px;
}

.review-card__star{
  color: #FABB03;
  margin-left: 6px;
}

.review-card__score{
  color: #334155;
}

.review-card__text{
  margin-top: 16px;
  padding: 4px 8px;
}

/* PCだけ3カラム */
@media (min-width: 1024px){
  .review__list{
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .review-card{
    padding: 24px 20px;
    min-height: 280px;
  }
  
}

/* FAQ */

.faq{
  padding: 16px 16px 64px;
}

.faq__list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq-card{
  background-color: #fff;
  display: block;
  margin: 18px auto;
  padding: 14px 12px ;
  overflow: hidden; /* ← 中身を切り抜くため */
  width: 100%;
}

.faq-q{
  background: linear-gradient(90deg, #5b8cff, #6a6ff2);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  display: flex;
  padding: 10px 12px;
}

.faq-a {
  background: #fff;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border: 1px solid #707070;
  display: flex;
  padding: 10px 12px;
}

.faq-q .faq-icon{
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #5892FE;
  font-size: 20px;
  font-weight: 600;

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

  flex: 0 0 50px;
  margin-right: 14px;
  line-height: 1;
}

.faq-q{
  font-weight: 600;
  color: #fff;
}

.faq-a .faq-icon{
  background-color: #5892FE;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 600;

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

  flex: 0 0 50px;
  margin-right: 14px;
  line-height: 1;
}

/* PCだけ3カラム */
@media (min-width: 768px){
  .faq__list{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .faq-card{
    margin: 0;              /* gridのgapと二重にしない */
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .faq-q{
    min-height: 72px;       /* ←ここが本命。数値は調整 */
    align-items: center;    /* アイコンとテキストを縦中央へ */
  }

  .faq-a{
    flex: 1;                /* Aを伸ばして底を揃える */
  }
}

/* detail */

.detail{
  background-color: #D4F4FE;
  padding: 16px 16px 64px;
}

.detail-card{
  background-color: #fff;
  border-radius: 13px;
  display: block;
  margin: 18px auto;
  padding: 14px 12px ;
}

.detail-card__label{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background-color: #5892FE;
  border-radius: 8px;
  margin-bottom: 18px;
}

.detail-list{
  max-width: 400px;
  margin: 0 auto;
  padding: 20px 24px;
}

.detail-list li{
  position: relative;
  padding-left: 14px;   /* 点の分だけ左に余白 */
  line-height: 1.7;
  margin-bottom: 6px;
}

.detail-list li::before{
  content: "";
  width: 6px;
  height: 6px;
  background-color: #5892FE;
  border-radius: 50%;
  position:  absolute;
  left: 0;
  top: 0.65em;
}

.detail-text{
  text-align: center;
  font-weight: 600;
  margin: 18px auto;
}

.detail-note{
  text-align: center;
}

.schedule__row{
  text-align: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.schedule__row:last-child{
  margin-bottom: 0;
}

.schedule__status{
  margin-left: 8px;
}

.is-deadline{
  color: #FF6467
}
.is-available{
  color: #18CC61;
}

.detail__cta{
  margin-top: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 800;
  background: #22c55e;
  color: #fff;

  transition: all .25s ease;
}

.detail__cta:hover{
  background: #16a34a; /* 少し濃く */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.detail__cta-free{
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: #22c55e;
  background: rgba(255,255,255,1);
}

.detail__cta-note{
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #334155;
}

.detail__last{
  margin-top: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: #334155;
}

/* PCだけ */
@media (min-width: 768px){
  .detail__cta{
    max-width: 420px;
    width: 100%;
    margin: 24px auto 0;
  }
}

/* 最後のcta */

.last{
  background-color: #0B1C3F;
  padding: 16px 16px 64px;
}

.last__text{
  font-size: 20px;
  font-weight: 600;
  color: #F5E7C1;
  text-align: center;
  margin-top: 24px;
}

.last__cta{
  margin-top: 18px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-weight: 800;
  background: #22c55e;
  color: #fff;

  transition: all .25s ease;
}

.last__cta:hover{
  background: #16a34a; /* 少し濃く */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

.last__cta-free{
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  color: #22c55e;
  background: rgba(255,255,255,1);
}

.last__cta-text{
  font-size: 18px;
  line-height: 1.2;
}

.last__cta-note{
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

/* PCだけ */
@media (min-width: 768px){
  .last__cta{
    max-width: 420px;
    width: 100%;
    margin: 24px auto 0;
  }
}

/* footer */

.footer{
  background-color: #0B1C3F;
  padding: 28px 16px 24px;
  border-top: 1px solid rgba(245,231,193,.5);
}

.footer__inner{
  text-align: center;
}

.footer__brand{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: none;
  color: #F5E7C1;
}

.footer__nav{
  display: grid;
  gap: 10px;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 10px;
}

.footer__copy{
  color: #fff;
  font-size: 8px;
}