@charset "UTF-8";
/* 
  ================================================
  サイト全体のスタイル (SCSS変換版)
  - SCSS変数($)を使用 -
  ================================================
*/
/*------------------------------------
  SCSS変数：フォントと基本設定
  (CSSの:rootから変換)
------------------------------------*/
/* 日本語本文用 */
/* 英文見出し・リンク用 */
/* 基本文字間・行間 */
/*------------------------------------
  フォント読み込み UX 向上
------------------------------------*/
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  /* src は Google Fonts 側で自動定義 */
}
/*ーーーーーーーーーーーーー
　　　全体
ーーーーーーーーーーーーー*/
/*------------------------------------
  全体本文（日本語）
------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #333;
  overflow-x: hidden; /* 横スクロール防止 */
}

/*------------------------------------
  見出し（英文）共通設定
------------------------------------*/
h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  margin: 0 0 1em;
  letter-spacing: -0.01em;
  color: #222;
}

/* H1：最重ウェイト・タイト字間 */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* H2：セミボールド */
h2 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* H3：ミドルサイズ */
h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

/* 本文段落 */
p {
  margin: 0 0 1em;
}

/* 強調テキスト */
strong,
b {
  font-weight: 700;
}

/* ボタン・リンク */
button,
a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* 画像 */
img {
  width: 100%;
  height: auto;
}

/* utils */
.mw800 {
  max-width: 800px;
  margin: auto;
}

@media (min-width: 1280px) {
  .pc_only {
    display: none;
  }
}

@media (min-width: 796px) {
  .tab_only {
    display: none;
  }
}

@media (min-width: 480px) {
  .sp_only {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media (max-width: 600px) {
  .br-sp {
    /* スマホ用ブレイクポイント例 */
    display: inline;
  }
}

.c-pink {
  color: #ff0074;
}

.bg-gray {
  background-color: #e3e3e3;
}

.bg-yellow {
  background-color: #ffdd00;
}

/*------------------------------------
  画像をフルワイド
------------------------------------*/
.full-width-img {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.full-width-img img {
  width: 100vw;
  max-width: none;
  height: auto;
  display: block;
}

/*------------------------------------
  ボックスををフルワイド
------------------------------------*/
.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 必要に応じてpadding: 0;も指定 */
}

/*ーーーーーーーーーーーーー
　　　　　header
ーーーーーーーーーーーーー*/
header {
  position: relative;
}

/* ヘッダーナビ（例） */
#header {
  margin: 0;
}

.header-links {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  background: transparent;
  border-bottom: 0px solid transparent;
}
.header-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .header-links {
    top: 0;
    font-size: 10px;
    width: 100%;
    height: 9.5vw;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header-links a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff !important;
    font-weight: bold;
  }
}
@media screen and (min-width: 768px) {
  .header-links {
    top: min(20px, 2vw);
    right: min(20px, 2vw);
    font-size: min(20px, 2vw);
    gap: 12px;
  }
}

.header-link {
  padding: 16px 24px;
}
@media screen and (max-width: 767px) {
  .header-link {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 100%;
    background-color: #ff0074;
    padding: 12px 16px;
  }
}

/*ーーーーーーーーーーーーー
　　　　　footer
ーーーーーーーーーーーーー*/
.footer {
  background: #ffec3e;
  color: #222;
  width: 100vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  /* 左カラム：ロゴ＋法務（縦並び） */
  /* コピーライト */
  /* フッターリンク（例） */
  /* ===== スマホ対応 ===== */
}
.footer-logo {
  width: 200px;
  margin: 0 0 20px 0;
}
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1svw;
  padding: 32px 36px 16px 36px;
}
.footer-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /* 右カラム：カスタマーサポート */
}
.footer-col-support {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.9rem;
}
.footer-legal-links {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  /* ===== スマホ対応 ===== */
}
.footer-legal-links li {
  margin: 0 0 4px 0;
}
.footer-legal-links a {
  color: #222;
  text-decoration: underline;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: #ff0074;
}
@media (max-width: 767px) {
  .footer-legal-links {
    font-size: 1.05rem;
    text-align: center;
  }
  .footer-legal-links li {
    text-align: center;
  }
}
.footer-support-title {
  font-weight: bold;
  margin-bottom: 6px;
}
.footer-support-tel {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.footer-support-tel-label {
  color: #ff0074;
  font-size: 1.1rem;
  margin-right: 2px;
}
.footer-support-tel-number {
  color: #ff0074;
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.footer-support-hours {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 300;
}
.footer-support-desc {
  font-size: 12px;
  color: #222;
  margin-top: 6px;
}
.footer-copyright {
  background: #231f20;
  color: #fff;
  text-align: center;
  font-size: 0.98rem;
  padding: 8px 0;
  margin-top: 0;
  letter-spacing: 0.03em;
}
.footer-inner-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5svw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-inner-links a {
  color: #333;
  text-decoration: none;
  font-size: min(1.5svw, 16px);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer-inner-links {
    gap: 8px;
  }
  .footer-inner-links a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer .footer-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 24px 4vw 50px 4vw;
  }
  .footer .footer-col-logo,
  .footer .footer-col-links,
  .footer .footer-col-support {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .footer .footer-logo {
    width: 200px;
  }
  .footer .footer-legal-links,
  .footer .footer-inner-links {
    grid-template-columns: 1fr;
    gap: 6px 0;
    font-size: 1.05rem;
    text-align: center;
  }
  .footer .footer-legal-links li,
  .footer .footer-inner-links li {
    text-align: center;
  }
  .footer .footer-support-tel {
    font-size: 1.2rem;
  }
  .footer .footer-support-tel-number {
    font-size: 1.5rem;
  }
  .footer .footer-support-title,
  .footer .footer-support-hours,
  .footer .footer-support-desc {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer .footer-logo {
    width: 200px;
  }
  .footer .footer-legal-links,
  .footer .footer-inner-links {
    font-size: 1rem;
  }
  .footer .footer-support-tel {
    font-size: 1rem;
  }
  .footer .footer-support-tel-number {
    font-size: 1.1rem;
  }
  .footer .footer-copyright {
    font-size: 0.8rem;
    padding: 6px 0;
  }
}

/*ーーーーーーーーーーーーー
　　　Section管理
ーーーーーーーーーーーーー*/
/* セクション共通スタイル */
.section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.section-inner {
  max-width: 1280px; /* デザインに合わせて調整 */
  margin: 0 auto;
  padding: 0px 0px; /* 上下余白はセクションごとに調整可 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .section-inner {
    padding: 0px 0px;
  }
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  /*ーーーーーーーーーーーーー
  　  スマホ上下余白
  ーーーーーーーーーーーーー*/
  .section-reason,
  .section-plan,
  .section-flow,
  .section-howto,
  .section-faq,
  .section-detail {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
/*ーーーーーーーーーーーーー
フッター
ーーーーーーーーーーーーー*/
.section-footer {
  background-color: #ffdd00;
  min-height: 300px;
  color: #333;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

/* 電話番号エリア（例） */
.tel-block {
  text-align: center;
  margin: 24px 0;
}

.tel-wrap {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  display: inline-block;
}

.tel-title {
  margin: 0 0 8px;
  font-weight: bold;
}

.tel-prev {
  font-weight: bold;
}

.tel {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff0074;
}

.tel-description {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

/* コピーライト */
.copyright {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
}

/* ピンク文字 */
.highlight-ff0074 {
  color: #ff0074;
}

/*------------------------------------
  TOPへ戻るボタン本体（四角）
------------------------------------*/
.page-top-button {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #000; /* ここで四角にする */
  border-radius: 0; /* 丸→四角にする */
  text-align: center;
  color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
  /* スクロールで表示 */
}
.page-top-button.is-visible {
  opacity: 1;
  visibility: visible;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  color: #333;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.pagetop:hover {
  background: #eee;
}

/*------------------------------------
  ファーストビュー
------------------------------------*/
.section-fv {
  background-color: #ffdd00;
  min-height: 500px;
}
@media screen and (max-width: 480px) {
  .section-fv {
    min-height: 300px;
  }
}
.section-fv .fv-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/*------------------------------------
  4つの理由
------------------------------------*/
.section-reason {
  background-color: #fff;
  min-height: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.miramo-reason {
  padding: 0 0 60px 0;
}

.miramo-reason-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  padding: 0 0 36px 0;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  -webkit-box-shadow: 0 0 0 0 #fff;
          box-shadow: 0 0 0 0 #fff;
}

.miramo-reason-radius-bg {
  background-color: #ffdd00;
}
.miramo-reason-radius-bg .miramo-reason-title {
  border-radius: 40px 40px 0 0;
  background: #ff0074;
  padding: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(40px, 3.125vw, 80px);
  font-weight: bolder;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .miramo-reason-radius-bg .miramo-reason-title {
    font-size: clamp(28px, 5.8333333333vw, 40px);
    padding: 24px;
  }
}
.miramo-reason-radius-bg .miramo-reason-title::before, .miramo-reason-radius-bg .miramo-reason-title::after {
  content: "・・・・・・・・・";
  padding-inline: 24px;
  font-size: 24px;
  letter-spacing: clamp(8px, 1.0050251256vw, 16px);
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .miramo-reason-radius-bg .miramo-reason-title::before, .miramo-reason-radius-bg .miramo-reason-title::after {
    content: none;
  }
}
.miramo-reason-radius-bg .miramo-reason-title p {
  margin-bottom: 0;
}
.miramo-reason-radius-bg .miramo-reason-title img {
  width: min(340px, 26.5625vw);
  height: min(62px, 4.84375vw);
  min-width: 200px;
  min-height: 39px;
}

.miramo-reason-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 480px) {
  .miramo-reason-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.miramo-reason-box p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.miramo-reason-bar {
  background: #ff0074;
  border-radius: 32px 32px 0 0;
  padding: 18px 0 14px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

.miramo-dot {
  color: #fff;
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.miramo-bar-title {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.miramo-bar-yellow {
  color: #ffe600;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 900;
}

.miramo-bar-white {
  color: #fff;
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-weight: 900;
}

/*-　キラ星画像調整　-*/
.miramo-reason-main {
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  margin: 34px 0 30px 0;
  position: relative;
}

.miramo-main-4 {
  font-family: "Reddit Sans Condensed", sans-serif;
  font-size: 15rem;
  font-weight: 900;
  color: #ff0074;
  line-height: 1;
  margin-right: 2px;
}
@media (max-width: 767px) {
  .miramo-main-4 {
    font-size: 3.5rem;
  }
}

.miramo-main-riyu {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #ff0074;
  font-weight: 700;
  margin-bottom: 8px;
}

.miramo-star {
  width: 8vw; /* 星画像の幅（画像に合わせて調整） */
  height: auto;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .miramo-star {
    width: 24px;
    width: 32px;
  }
}

.star-left {
  margin-right: -10px;
  margin-bottom: 24px;
}

.star-right {
  margin-left: -10px;
  margin-bottom: 18px;
}

.miramo-main-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .miramo-main-center {
    font-size: 2.5rem;
  }
}
.miramo-main-center .miramo-main-4 {
  font-size: 2em;
}
@media (max-width: 767px) {
  .miramo-main-center .miramo-main-4 {
    font-size: 2em;
  }
}
.miramo-main-center .miramo-main-tsuno {
  font-family: "Zen Maru Gothic";
  color: #222;
  font-weight: 700;
  margin-bottom: 8px;
}

.miramo-reason-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 45px;
  margin: 0 36px;
}
@media (max-width: 767px) {
  .miramo-reason-points {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.miramo-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ff0074;
  border-radius: 20px;
  min-height: 110px;
  position: relative;
  -webkit-box-shadow: 0 2px 8px rgba(255, 0, 116, 0.04);
          box-shadow: 0 2px 8px rgba(255, 0, 116, 0.04);
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .miramo-point {
    min-height: 90px;
  }
}

.miramo-point-badge {
  position: absolute;
  left: -32px;
  top: 20%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ffe600;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
@media (max-width: 767px) {
  .miramo-point-badge {
    width: 48px;
    height: 48px;
    left: -18px;
  }
}

.miramo-point-label {
  font-size: 0.85rem;
  color: #ff0074;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .miramo-point-label {
    font-size: 0.5rem;
  }
}

.miramo-point-num {
  font-size: 1.6rem;
  color: #ff0074;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  .miramo-point-num {
    font-size: 1.2rem;
  }
}

.miramo-point-content {
  margin-left: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 18px 0 18px 38px;
}
@media (max-width: 767px) {
  .miramo-point-content {
    margin-left: 28px;
    padding-left: 18px;
  }
}

.miramo-point-caption {
  font-size: 1.05rem;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.miramo-point-value {
  font-size: 2rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .miramo-point-value {
    font-size: 1.5rem;
  }
}

/*------------------------------------
  料金プラン
------------------------------------*/
.section-plan {
  background-color: #ffdd00;
  padding: min(5svw, 40px);
}
@media screen and (max-width: 796px) {
  .section-plan {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-plan h2 {
  font-size: 4rem;
  text-align: center;
}
@media screen and (max-width: 796px) {
  .section-plan h2 {
    font-size: 2.5rem;
  }
}

.plan-count-text {
  font-family: "Reddit Sans Condensed", sans-serif;
  color: #ff0074;
  font-size: 2em;
  font-weight: bold;
}

.plan-count-tsuno {
  font-family: "Zen Maru Gothic";
  color: #222;
  font-weight: bold;
}

.plan-text {
  font-family: "Zen Maru Gothic";
  color: #ff0074;
  font-weight: bold;
}

.plan-description {
  width: min(70svw, 560px);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: min(3svw, 24px);
  font-weight: bold;
  background-color: #000;
  color: #fff;
  margin: 16px auto 0;
  padding: 4px;
}
@media (max-width: 767px) {
  .plan-description {
    font-size: 3.5svw;
  }
}

.pricing-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  font-size: min(2svw, 16px);
}
@media (max-width: 767px) {
  .pricing-table {
    font-size: 3svw;
  }
}

.pricing-header-grid,
.plans-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 30% 50%;
  gap: 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.pricing-header-grid > div {
  padding: 8px;
  font-weight: bold;
  background-color: #ff0074;
  color: #fff;
}

.tax-text {
  font-size: 0.8em;
}

.recommend-plan {
  width: 100%;
  margin-top: 4px;
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: min(2svw, 16px);
}

.recommend-text {
  background-color: #ff8800;
  color: #fff;
  font-size: min(2svw, 16px);
  font-weight: bold;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  line-height: 1.2;
  width: min(12svw, 96px);
  height: min(12svw, 96px);
}

.amount-text {
  font-family: "Reddit Sans Condensed", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: min(5svw, 40px);
  font-weight: bold;
  color: #ff0074;
}

.gb-text {
  font-size: 0.7em;
  margin-top: 0.4em;
}

.price-text {
  font-family: "Reddit Sans Condensed", sans-serif;
  -webkit-box-flex: 16;
      -ms-flex-positive: 16;
          flex-grow: 16;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: min(5svw, 40px);
  font-weight: bold;
  color: #ff0074;
}

.yen-text {
  font-size: 0.7em;
  margin-top: 0.4em;
}

.plans-grid {
  width: 80%;
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 4px 0;
}
.plans-grid > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.plans-grid > .amount-col {
  font-family: "Reddit Sans Condensed", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  background-color: #ddd;
  border: 1px solid #333;
}
.plans-grid > .price-col {
  font-family: "Reddit Sans Condensed", sans-serif;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 1px solid #333;
}

.pricing-caution {
  margin-top: 30px;
  font-weight: bold;
  text-align: center;
}

/*ーーーーーーーーーーーーー
　  お申し込みの流れ(FLOW)
ーーーーーーーーーーーーー*/
.section-flow {
  display: block;
  background-color: #fff;
  padding: min(3svw, 24px) 0;
  margin: auto;
}

.flow-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flow-h2 {
  font-size: 96px;
  color: #ffdd00;
  font-weight: bold;
  text-align: center;
  width: 100%;
  min-width: 200px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}
@media screen and (max-width: 796px) {
  .flow-h2 {
    font-size: clamp(48px, 12.0603015075vw, 96px);
  }
}

.flow-h3 {
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 2.5vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: min(0.25svw, 2px);
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 796px) {
  .flow-h3 {
    font-size: clamp(20px, 3.5175879397vw, 28px);
  }
}
.flow-h3 img {
  width: min(140px, 10.9375vw);
  height: min(240px, 18.75vw);
}
.flow-h3 .flow-circle {
  display: inline-block;
  width: 180px;
  height: 180px;
  background-color: #ff0074;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 796px) {
  .flow-h3 .flow-circle {
    width: min(160px, 20.1005025126vw);
    height: min(160px, 20.1005025126vw);
    min-width: 110px;
    min-height: 110px;
  }
}

.flow-need {
  text-align: center;
  font-weight: bold;
}
.flow-need .title {
  font-size: 24px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #000;
  font-weight: bold;
  display: inline-block;
  padding-inline: 24px;
}
@media screen and (max-width: 796px) {
  .flow-need .title {
    font-size: clamp(20px, 3.0150753769vw, 24px);
  }
}
.flow-need .lead {
  font-size: 14px;
}
@media screen and (max-width: 796px) {
  .flow-need .lead {
    font-size: clamp(10px, 1.7587939698vw, 14px);
  }
}
.flow-need .text {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media screen and (max-width: 796px) {
  .flow-need .text {
    font-size: clamp(12px, 2.2613065327vw, 18px);
  }
}

.flow-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 800px;
  padding-inline: 64px;
  padding-top: 40px;
  gap: 16px;
}
@media screen and (max-width: 796px) {
  .flow-steps {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 480px) {
  .flow-steps {
    padding-inline: 24px;
  }
}
.flow-steps .flow-steps-h3 {
  background-color: #ff0074;
  font-size: 28px;
  padding: 12px 16px;
  width: 100%;
  color: #fff;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-h3 {
    font-size: clamp(18px, 3.5175879397vw, 28px);
  }
}
.flow-steps .flow-steps-box {
  width: 100%;
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .flow-steps .flow-steps-box {
    margin-top: 16px;
  }
}
.flow-steps .flow-steps-box .flow-steps-inner {
  padding: 16px 0 24px;
  position: relative;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner {
    padding: 8px 0 16px;
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-left {
  text-align: center;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: min(96px, 12.0603015075vw);
  height: min(96px, 12.0603015075vw);
  min-width: 56px;
  min-height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -64px;
  margin-right: 8px;
  margin-bottom: 0;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-left {
    margin-left: -40px;
  }
}
@media screen and (max-width: 480px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-left {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: -24px;
    margin-top: -24px;
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-left .en {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-left .en {
    font-size: clamp(8px, 3.0150753769vw, 24px);
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-left .num {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-left .num {
    font-size: clamp(16px, 4.0201005025vw, 32px);
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center {
  width: 65%;
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .title {
  font-size: 40px;
  font-weight: 900;
  color: #ff0074;
  margin-bottom: 8px;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .title {
    font-size: clamp(20px, 5.0251256281vw, 40px);
    margin-bottom: 8px;
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .sub-title {
  background-color: #ff0074;
  color: #fff;
  padding: 4px 8px;
  margin-bottom: 4px;
  font-size: 20px;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .sub-title {
    font-size: clamp(16px, 2.5125628141vw, 20px);
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .text {
    font-size: clamp(12px, 2.0100502513vw, 16px);
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .note {
  font-size: 12px;
  position: relative;
  margin-left: 12px;
  margin-bottom: 0;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .note {
    font-size: clamp(8px, 1.5075376884vw, 12px);
    margin-left: clamp(8px, 1.5075376884vw, 12px);
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .note::before {
  content: "※";
  margin-left: -12px;
}
@media screen and (max-width: 796px) {
  .flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-center .note::before {
    margin-left: clamp(-8px, -1.5075376884vw, -12px);
  }
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-right {
  margin-bottom: 0;
  margin-right: 8px;
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-right img {
  width: min(80px, 10.0502512563vw);
  min-width: 40px;
  height: auto;
}
.flow-steps .flow-steps-box .flow-steps-inner .flow-steps-card .card-right .vertical {
  padding: 8%;
}

/*ーーーーーーーーーーーーー
　  HOW TO（支払い方法など）
ーーーーーーーーーーーーー*/
.section-howto {
  display: block;
  background-color: #ffdd00;
  padding-top: 40px;
  padding-bottom: 80px;
  border-radius: 40px 40px 0 0;
  margin-top: 40px;
}

.howto-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.howto-h2 {
  font-size: 96px;
  color: #000;
  font-weight: bold;
  text-align: center;
  width: 100%;
  min-width: 200px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}
@media screen and (max-width: 796px) {
  .howto-h2 {
    font-size: clamp(48px, 12.0603015075vw, 96px);
  }
}

.howto-h3 {
  margin: 0;
  text-align: center; /* テキストを中央揃え */
  font-size: clamp(32px, 2.5vw, 40px);
  font-weight: 900;
  color: #000;
  letter-spacing: min(0.25svw, 2px);
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* Flexboxを使う */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 横方向で中央揃え */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向で中央揃え */
  gap: 16px; /* アイテム間の間隔を指定 */
  position: relative; /* 疑似要素の位置を親に基づかせる */
}
@media screen and (max-width: 796px) {
  .howto-h3 {
    font-size: clamp(20px, 3.5175879397vw, 28px);
  }
}
.howto-h3 .howto-circle {
  display: inline-block;
  width: 180px;
  height: 180px;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 796px) {
  .howto-h3 .howto-circle {
    width: min(160px, 20.1005025126vw);
    height: min(160px, 20.1005025126vw);
    min-width: 110px;
    min-height: 110px;
  }
}
.howto-h3 .howto-circle sup::before {
  content: "※";
  width: 4px;
  height: 4px;
  font-size: 16px;
  display: block;
  position: absolute;
  right: 0%;
  top: 16%;
}
@media screen and (max-width: 480px) {
  .howto-h3 .howto-circle sup::before {
    font-size: 12px;
  }
}
.howto-h3 img {
  width: min(120px, 10.9375vw);
  height: min(200px, 19.53125vw);
  position: absolute;
  right: 110%;
  top: 50%; /* 親要素の垂直中央に配置 */
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%); /* 垂直方向で真ん中に揃える */
}

.howto-read {
  margin-bottom: 24px;
  max-width: 920px;
  padding-inline: 40px;
}
@media screen and (max-width: 480px) {
  .howto-read {
    margin-bottom: 8px;
  }
}
.howto-read .read {
  font-size: 28px;
  padding: 12px 40px;
  width: 100%;
  color: #000;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 0;
  font-weight: bold;
}
@media screen and (max-width: 796px) {
  .howto-read .read {
    font-size: clamp(18px, 3.5175879397vw, 28px);
  }
}
.howto-read .read .num {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: bold;
  color: #ff0074;
}
.howto-read .note {
  font-size: 12px;
  position: relative;
  margin-left: 12px;
  margin-bottom: 0;
  color: #000;
  text-align: right;
  font-weight: bold;
}
@media screen and (max-width: 796px) {
  .howto-read .note {
    font-size: clamp(8px, 1.5075376884vw, 12px);
    margin-left: clamp(8px, 1.5075376884vw, 12px);
  }
}
.howto-read .note::before {
  content: "※";
  margin-left: -12px;
}
@media screen and (max-width: 796px) {
  .howto-read .note::before {
    margin-left: clamp(-8px, -1.5075376884vw, -12px);
  }
}
@media screen and (max-width: 480px) {
  .howto-read .note {
    text-align: center;
  }
}

.howto-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 800px;
  padding-inline: 64px;
  gap: 16px;
}
@media screen and (max-width: 796px) {
  .howto-steps {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 480px) {
  .howto-steps {
    padding-inline: 24px;
  }
}
.howto-steps .howto-steps-box {
  width: 100%;
  display: grid;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .howto-steps .howto-steps-box {
    margin-top: 16px;
  }
}
.howto-steps .howto-steps-box .howto-steps-inner {
  padding: 16px 0 24px;
  position: relative;
  background-color: #fff;
  border-radius: 40px;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner {
    padding: 8px 0 16px;
    border-radius: 20px;
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-left {
  text-align: center;
  background-color: #ff0074;
  color: #fff;
  border-radius: 50%;
  width: min(96px, 12.0603015075vw);
  height: min(96px, 12.0603015075vw);
  min-width: 56px;
  min-height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -64px;
  margin-right: 8px;
  margin-bottom: 0;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-left {
    margin-left: -40px;
  }
}
@media screen and (max-width: 480px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-left {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-left: -24px;
    margin-top: -24px;
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-left .en {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-left .en {
    font-size: clamp(8px, 3.0150753769vw, 24px);
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-left .num {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-left .num {
    font-size: clamp(16px, 4.0201005025vw, 32px);
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center {
  width: 65%;
  padding-inline: 5%;
}
@media screen and (max-width: 480px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center {
    padding-left: 3%;
    padding-right: 0;
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .title {
  font-size: 40px;
  font-weight: 900;
  color: #ff0074;
  margin-bottom: 8px;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .title {
    font-size: clamp(20px, 5.0251256281vw, 40px);
    margin-bottom: 8px;
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .sub-title {
  background-color: #ff0074;
  color: #fff;
  padding: 4px 8px;
  margin-bottom: 4px;
  font-size: 20px;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .sub-title {
    font-size: clamp(16px, 2.5125628141vw, 20px);
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .text {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .text {
    font-size: clamp(12px, 2.0100502513vw, 16px);
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .note {
  font-size: 12px;
  position: relative;
  margin-left: 12px;
  margin-bottom: 0;
  font-weight: bold;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .note {
    font-size: clamp(8px, 1.5075376884vw, 12px);
    margin-left: clamp(8px, 1.5075376884vw, 12px);
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .note::before {
  content: "※";
  margin-left: -12px;
}
@media screen and (max-width: 796px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-center .note::before {
    margin-left: clamp(-8px, -1.5075376884vw, -12px);
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-right {
  margin-bottom: 0;
  margin-right: 8px;
  margin-left: -32px;
}
@media screen and (max-width: 480px) {
  .howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-right {
    margin-left: 0;
  }
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-right img {
  width: min(96px, 12.0603015075vw);
  min-width: 64px;
  height: auto;
}
.howto-steps .howto-steps-box .howto-steps-inner .howto-steps-card .card-right .vertical {
  padding: 8%;
}

/*ーーーーーーーーーーーーー
　  FAQ
ーーーーーーーーーーーーー*/
.section-faq {
  background-color: #ffdd00;
  min-height: 0px;
  padding-top: 0px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.faq-desc {
  display: block;
  color: #222;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.faq-q-label {
  font-size: 1.8em;
  font-weight: bold;
  color: #ffcc00;
  margin-right: 8px;
  letter-spacing: 0.05em;
  display: inline-block;
}

.faq-a-label {
  font-size: 1.8em;
  font-weight: bold;
  color: #ff0074;
  margin-right: 8px;
  letter-spacing: 0.05em;
  display: inline-block;
}

.faq-list {
  max-width: 767px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* flexboxの場合は以下を追加 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.faq-item {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* ← これが重要 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.faq-item.active .faq-toggle {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq-item.active .faq-answer {
  max-height: 500px !important;
}

.faq-question {
  width: 100%;
  background: #ffffff;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 44px;
}
.faq-question:hover {
  background: #f8f8f8;
}

.faq-q-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: #ff0074;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8f8f8;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 20px 24px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.apply-method-label {
  display: inline-block;
  background: #e6007e;
  color: #fff;
  font-weight: bold;
  font-size: min(2svw, 16px);
  padding: min(0.5svw, 4px) min(1svw, 8px);
  margin-bottom: min(0.5svw, 4px);
  letter-spacing: 0.06em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .apply-method-label {
    font-size: 4svw;
    padding: 2svw;
    margin: 2svw 0;
  }
}

.apply-method-desc {
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  padding: 0 0 0 0;
  margin-top: 4px;
  line-height: 1.7;
}

/*ーーーーーーーーーーーーー
　  サービス詳細
ーーーーーーーーーーーーー*/
.section-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2svw;
  margin-top: 2svw;
  margin-bottom: 2svw;
  padding-inline: 4svw;
}

.syousai-box {
  margin: auto;
  max-width: 800px;
  width: 100%;
  background: #f0f0f0;
  border-radius: 8px;
}

.syousai-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2svw;
}
@media screen and (max-width: 767px) {
  .syousai-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.syousai-label {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #ff0074;
  color: #fff;
  font-size: min(2svw, 16px);
  font-weight: bold;
  margin: min(2svw, 16px) 0 min(2svw, 16px) min(2svw, 16px);
  padding: min(1svw, 8px);
  border-radius: min(0.5svw, 4px);
  letter-spacing: 0.04em;
  height: min(8svw, 64px);
}
@media screen and (max-width: 767px) {
  .syousai-label {
    font-size: 4svw;
    margin: 4svw 4svw 0;
    padding: 3svw;
    border-radius: 2svw;
    height: auto;
  }
}

.syousai-desc {
  -webkit-box-flex: 4;
      -ms-flex: 4 0 0px;
          flex: 4 0 0;
  display: block;
  margin: 2svw 1svw 2svw 0;
  color: #222;
  font-weight: bold;
  line-height: 1.2;
  word-break: break-word;
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .syousai-desc {
    margin: 0 4svw 4svw;
  }
}

.syousai-desc-small {
  display: block;
  font-size: 16px !important;
  font-weight: normal;
  color: #000;
  margin-top: 5px;
  line-height: 1.2em;
}

/* 三角アイコン（CSSで作成） */
.arrow-up {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid #fff;
  margin-top: 10px;
}