@charset "UTF-8";
.round-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff100;
  border: 2px solid #1d2362;
  border-radius: 50px;
  color: #1d2362;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-break: normal;
}
.round-button:hover {
  background-color: #1d2362;
  color: #fff100;
}
.round-button.primary.invoice {
  background-color: #eb6ea5;
  color: #ffffff;
}
.round-button.primary.invoice:hover {
  background-color: #ffffff;
  color: #eb6ea5;
}
.round-button.secondary {
  background-color: #1d2362;
  color: #fff;
  border: 0;
}
.round-button.secondary:hover {
  background-color: #ffffff;
  color: #1d2362;
  border: 2px solid #1d2362;
}

/* ========== シェル（共通） ========== */
.simulation-dialog--content .simulation-progress {
  max-width: 100%;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 10px 8px;
  background: #fff;
}

.simulation-progress--item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-weight: 700;
}
.simulation-progress--item.is-completed .simulation-progress--circle {
  background-color: #ffffff;
  border-color: #1d2361;
}
.simulation-progress--item.is-completed .simulation-progress--text {
  color: #1d2361;
}
.simulation-progress--item.is-active .simulation-progress--circle {
  border-color: #1d2361;
}
.simulation-progress--item.is-active .simulation-progress--text {
  color: #1f2937;
}
.simulation-progress--item:not(.is-active):not(.is-completed) .simulation-progress--text {
  color: #6b7280;
}

.simulation-progress--sep {
  flex: 1 1 8px;
  height: 2px;
  background: #d1d5db;
  min-width: 12px;
}

.simulation-progress--circle {
  width: 40px;
  height: 40px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-sizing: border-box;
  text-align: center;
}

.simulation-progress--text {
  max-width: 100%;
  line-height: 1.15;
  font-size: 8px;
}

/* ダイアログ・オーバーレイ */
.simulation-dialog {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.simulation-dialog--overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.simulation-dialog--content {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 90vw;
  max-width: 400px;
  padding: 32px 20px 20px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  .simulation-dialog--content {
    max-width: 96vw;
    padding: 24px 8px 16px;
  }
}
@media (max-height: 850px) {
  .simulation-dialog--content {
    max-height: 90vh;
  }
}
.simulation-dialog--close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background: #1f286f;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
}
.simulation-dialog--close:hover {
  background: #3243a0;
}
.simulation-dialog--next {
  padding: 8px 32px;
  font-weight: bold;
  color: #1d2361;
  background: #fff100;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.simulation-dialog--next:hover {
  transform: scale(1.05);
  background: #fff100;
  color: #1d2361;
}

body.simulation-open {
  overflow: hidden;
}

/* 端末フレーム（共通） */
.app-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(300px, 90vw);
  height: 100%;
  overflow: hidden;
  margin: 0 auto 24px;
  color: #333;
  font-size: 24px;
  background: #fff;
  border: 3px solid #5c5c5c;
  border-radius: 36px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
}
.app-screen::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #000;
  border-radius: 12px;
}
.app-screen::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #000;
  border-radius: 3px;
  opacity: 0.8;
}

.dialog-title {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 10;
  width: 80%;
  margin: 0;
  transform: translateX(-50%);
}

@media (min-height: 850px) {
  .app-screen {
    height: min(600px, 80vh);
  }
}
@media (max-height: 850px) {
  .app-screen {
    width: min(210px, 90vh);
    height: 400px;
    margin-bottom: 12px;
  }
  .app-screen::before {
    width: 72px;
    height: 12px;
  }
  .dialog-title {
    top: 32px;
    font-size: 12px;
  }
}
/* 説明ボックス（共通） */
.simulation-dialog--desc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  margin: 12px 0 8px;
  padding: 12px 14px;
  color: #1f286f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  background: #fff;
  border: 2px solid #1f286f;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.simulation-dialog--desc::before {
  content: attr(data-title, "POINT");
  position: absolute;
  top: -22px;
  left: 6px;
  display: inline-block;
  height: 22px;
  padding: 0 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  background: #1f286f;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}
@media (max-height: 640px) {
  .simulation-dialog--desc {
    min-height: 60px;
  }
}
@media (max-width: 374px) {
  .simulation-dialog--desc {
    font-size: 11px;
  }
}

/* コンテンツ領域（共通） */
.app-content {
  min-height: 0;
  margin-top: 88px;
}
@media (max-height: 850px) {
  .app-content {
    margin-top: 48px;
  }
}

/* 共通アニメーション/ボタン基礎 */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.s-welcome__btn,
.account-register-btn,
.account-register-btn2,
.ff-complete-btn,
.answer-btn {
  transition: transform 0.2s ease, opacity 0.3s ease, background 0.2s ease, color 0.2s ease;
}

/* 汎用テキスト */
.text1 {
  margin: 6px 12px 24px;
  text-align: left;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}
@media (max-height: 850px) {
  .text1 {
    margin: 6px 12px 12px;
    font-size: 10px;
  }
}

.text2 {
  margin: 16px 12px;
  text-align: left;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}
@media (max-height: 850px) {
  .text2 {
    margin: 18px 12px;
    font-size: 8px;
  }
}

.text-small-strong {
  margin-bottom: 8px;
  color: #333;
  font-size: 9px;
  font-weight: 600;
}

/* 共通リスト */
.list {
  overflow: hidden;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  border-radius: 12px;
}
.list li {
  padding: 12px 14px;
  line-height: 1.15;
  background: #fff;
  border-bottom: 1px solid #f0f2f5;
}
.list li:last-child {
  border-bottom: none;
}
.list li:hover {
  background: #f8fafc;
}

/* 画像ユーティリティ */
.img2,
.img2-1,
.img3,
.img4 {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.img2 {
  border-radius: 4px;
}

.img2-1 {
  border-radius: 4px;
  width: 82%;
  margin: 0 auto;
}

.img3 {
  margin-bottom: 16px;
}

.img4 {
  border-radius: 4px;
  margin-top: 54px;
}

@media (max-height: 850px) {
  .img2 {
    max-width: 90%;
    margin: 32px auto 0;
  }
  .img2-1 {
    width: 75%;
    margin: 0px auto 32px;
  }
  .img3 {
    max-width: 80%;
    margin-top: 60px;
  }
  .img4 {
    max-width: 90%;
    margin: 48px auto 16px;
  }
}
/* ========== 1　Welcome 画面 ========== */
.s-welcome {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(16px, 6vw, 40px) 0 32px;
  text-align: center;
  color: #0b0b0b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.s-welcome__icon {
  margin: 0 auto;
}
.s-welcome__icon img {
  display: block;
  width: 72%;
  height: auto;
  margin: 0 auto;
}
@media (max-height: 850px) {
  .s-welcome__icon img {
    width: 45%;
    margin: 24px auto;
  }
}
.s-welcome__headline {
  margin: 10px auto 5px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.s-welcome__btn {
  margin: 24px 0 0 12px;
  color: #1d2361;
  font-weight: bold;
  background: #fff100;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  animation: bounce 2s 1;
}
.s-welcome__btn:hover {
  background: #fff100;
  color: #1d2361;
  opacity: 0.6;
}
@media (max-height: 850px) {
  .s-welcome__btn {
    margin: 0 auto;
    font-size: 12px;
  }
}

/* ========== 2 銀行・クレジット一覧 ========== */
.account-register-area {
  text-align: center;
  margin: 48px 8px 0;
  padding: 32px;
  border-radius: 12px;
}
@media (max-height: 850px) {
  .account-register-area {
    margin: 0;
  }
}

.account-register-btn {
  margin-top: 40px;
  color: #1f286f;
  font-size: 16px;
  background: #fff100;
  border: none;
  border-radius: 24px;
  cursor: pointer;
}
.account-register-btn:hover {
  background: #fff100;
  color: #1d2361;
  opacity: 0.6;
}
@media (max-height: 850px) {
  .account-register-btn {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 12px;
  }
}

/* ========== 3 銀行・クレジットカード ========== */
.subhead {
  margin: 12px 0 6px;
  color: #666;
  font-size: 13px;
  font-weight: 600;
}
@media (max-height: 850px) {
  .subhead {
    margin: 0;
    font-size: 10px;
  }
}

.card-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-item-top {
  margin-top: 48px;
}
@media (max-height: 850px) {
  .card-item-top {
    margin: 0;
  }
}

.bank-list,
.card-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
@media (max-height: 850px) {
  .bank-list,
  .card-list {
    margin: 12px 0;
  }
}
.bank-list li,
.card-list li {
  padding: 8px 18px;
  text-align: left;
  font-size: 12px;
  border-bottom: 1px solid #ccc;
}
@media (max-height: 850px) {
  .bank-list li,
  .card-list li {
    font-size: 8px;
  }
}

/* ========== ５ 申告に関する質問への回答 ========== */
.question-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 340px;
  margin: 72px auto 0;
}
@media (max-height: 850px) {
  .question-cards {
    margin-top: 48px;
    margin-bottom: 16px;
    gap: 16px;
  }
}

.question-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 96%;
  margin: 0 auto;
  padding: 16px 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-height: 850px) {
  .question-card {
    padding: 6px 12px;
  }
}
.question-card--main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 3;
}

.question-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 2;
}
@media (max-height: 850px) {
  .question-actions {
    gap: 0;
  }
}

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

.question-title {
  margin-bottom: 6px;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
}
@media (max-height: 850px) {
  .question-title {
    font-size: 7px;
  }
}

.question-desc {
  text-align: left;
  color: #666;
  font-size: 10px;
}
@media (max-height: 850px) {
  .question-desc {
    font-size: 7px;
  }
}

.answer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: inherit;
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  animation: bounce 2s 1;
}
.answer-btn:hover {
  background: #fff;
  color: #d1d1d1;
}
@media (max-height: 850px) {
  .answer-btn {
    font-size: 20px;
  }
}
.answer-btn.answer-yes {
  color: #e53935;
}
.answer-btn.answer-no {
  color: #1976d2;
}
.answer-btn.answer-yes:not(.active), .answer-btn.answer-no:not(.active) {
  color: #d1d1d1;
}

.answer-label {
  font-size: 13px;
  font-weight: bold;
}
@media (max-height: 850px) {
  .answer-label {
    font-size: 10px;
  }
}

.answer-label-yes.active {
  color: #e53935;
}

.answer-label-no.active {
  color: #1976d2;
}

.answer-label-yes:not(.active),
.answer-label-no:not(.active) {
  color: #d1d1d1;
}

/* ========== ６ 最終確認画面 ========== */
.card3 {
  max-width: 300px;
  margin: 80px 24px 56px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
@media (max-height: 850px) {
  .card3 {
    max-width: 180px;
    margin: 80px auto 0;
  }
}

.card3-header {
  padding: 4px 0 4px 12px;
  text-align: left;
  color: #1f286f;
  font-size: 10px;
  background-color: #aab6ce;
}

.card3-body {
  padding: 24px 0;
  text-align: center;
  color: red;
  font-size: 32px;
  font-weight: bold;
}
@media (max-height: 850px) {
  .card3-body {
    font-size: 24px;
    padding: 14px 0;
  }
}

.account-register-btn2 {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  padding: 14px 12px;
  color: #1f286f;
  font-size: 12px;
  background: #fff100;
  border: none;
  border-radius: 24px;
  cursor: pointer;
}
.account-register-btn2:hover {
  background: #fff100;
  color: #1d2361;
  opacity: 0.6;
}
@media (max-height: 850px) {
  .account-register-btn2 {
    padding: 8px 12px;
    font-size: 9px;
    margin-bottom: 32px;
  }
}

/* ========== ７ マイナンバー読み取り ========== */
.ff-scan-card {
  padding: 24px 16px;
  border-radius: 16px;
}
@media (max-height: 850px) {
  .ff-scan-card {
    padding: 48px 16px;
  }
}

.ff-scan-title {
  margin: 0 0 16px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
}
@media (max-height: 850px) {
  .ff-scan-title {
    font-size: 13px;
  }
}

.ff-scan-icon img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-height: 850px) {
  .ff-scan-icon img {
    width: 64%;
    height: 90%;
  }
}

.ff-scan-desc {
  margin: 0 0 20px;
  color: #555;
  font-size: 12px;
}

.ff-scan-btn {
  width: 100%;
  max-width: 260px;
  padding: 12px 24px;
  color: #1f286f;
  font-size: 14px;
  background: #fff;
  border: 1.5px solid #1f286f;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}
.ff-scan-btn:hover {
  background: #1f286f;
  color: #fff;
}

/* ========== ８ 完了画面 ========== */
.ff-complete-wrap {
  max-width: 420px;
  padding: 28px 20px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.ff-complete-icon {
  display: grid;
  place-items: center;
  width: 160px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
}
.ff-complete-icon img {
  display: block;
  width: 72%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-height: 850px) {
  .ff-complete-icon img {
    width: 50%;
  }
}
@media (max-height: 850px) {
  .ff-complete-icon {
    height: 100px;
  }
}

.ff-complete-title-en {
  color: #1f286f;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
@media (max-height: 850px) {
  .ff-complete-title-en {
    font-size: 16px;
  }
}

.ff-complete-h {
  margin: 10px 0 4px;
  font-size: 12px;
  font-weight: 700;
}

.ff-complete-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 4px 0;
  color: #605f5f;
  font-size: 13px;
  text-align: left;
}
.ff-complete-row .label {
  min-width: 84px;
}
.ff-complete-row .value {
  word-break: break-all;
}
@media (max-height: 850px) {
  .ff-complete-row {
    font-size: 8px;
  }
}

.ff-complete-p {
  max-width: 360px;
  margin: 14px auto 8px;
  color: #595959;
  font-size: 11px;
  text-align: left;
}
@media (max-height: 850px) {
  .ff-complete-p {
    margin: 14px auto 8px;
    font-size: 10px;
  }
}

.ff-complete-link {
  margin: 10px 0 2px;
  color: #2a4bd8;
  font-size: 12px;
  text-decoration: none;
}

.ff-complete-note {
  margin: 0 0 24px;
  color: #9aa0a6;
  font-size: 12px;
}
@media (max-height: 850px) {
  .ff-complete-note {
    margin: 0;
    font-size: 8px;
  }
}

.ff-complete-btn {
  width: 100%;
  max-width: 420px;
  margin: 8px auto 0;
  padding: 16px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  background: #1f286f;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  animation: scaleAndBounce 1.5s ease forwards;
}
.ff-complete-btn:hover {
  background: #fff;
  color: #1f286f;
  outline: 1px solid #1f286f;
}
@media (max-height: 850px) {
  .ff-complete-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}

/* スケールアップ → バウンド */
@keyframes scaleAndBounce {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  40% {
    transform: scale(1.1);
    opacity: 1;
  }
  60% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.08);
  }
  90% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
/* ========== 9 ダウンロード画面 ========== */
.ff-dl--icon {
  width: 70%;
  margin: 0 auto;
}

.ff-dl--container {
  text-align: center;
  padding: 24px 16px;
}

.ff-dl--lead {
  margin: clamp(10px, 3vw, 20px) 0;
  color: #1f286f;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

.dllink-dialog {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dllink-dialog li a img {
  width: 180px;
  height: auto;
  transition: transform 0.2s ease;
}
.dllink-dialog li a img:hover {
  transform: scale(1.05);
}

.kaikei-usage-flow {
  background-color: #f8fcff;
}
.kaikei-usage-flow__area {
  margin-top: 80px;
  margin-bottom: 0;
  width: 730px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__area {
    margin-top: 40px;
    max-width: 350px;
  }
}
.kaikei-usage-flow__header {
  font-size: 38px;
  font-weight: 600;
  color: #1d2362;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
  position: static;
  width: auto;
  line-height: normal;
  overflow: unset;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__header {
    font-size: 30px;
    line-height: 1.5;
  }
}
.kaikei-usage-flow__header--important {
  color: #fff200;
  -webkit-text-stroke: 4px #1d2362;
  text-stroke: 4px #1d2362;
  paint-order: stroke fill;
  text-shadow: 2px 3px 1px #1d2362, 2px 4px 1px #1d2362;
}
.kaikei-usage-flow__header--step {
  font-size: 33px;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__header--step {
    font-size: 25px;
  }
}
.kaikei-usage-flow__header--step-number {
  font-size: 41px;
  color: #fff200;
  -webkit-text-stroke: 4px #1d2362;
  text-stroke: 4px #1d2362;
  paint-order: stroke fill;
  text-shadow: 2px 3px 1px #1d2362, 2px 4px 1px #1d2362;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__header--step-number {
    font-size: 32px;
  }
}
.kaikei-usage-flow__header--line-break {
  display: none;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__header--line-break {
    display: inline;
  }
}
.kaikei-usage-flow__body {
  gap: 38px;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body {
    gap: 25px;
    padding: 16px 0px 40px 0px;
    margin-bottom: 0;
  }
}
.kaikei-usage-flow__body__stepper {
  display: flex;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__stepper {
    height: 55px;
  }
}
.kaikei-usage-flow__body__stepper__step {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff302;
  font-size: 14px;
  font-weight: bold;
  padding: 16px 15px 16px 13px;
  gap: 4px;
  background-color: #1d2361;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__stepper__step {
    padding: 0 13px 0 20px;
    flex-direction: column;
    gap: 0;
  }
}
.kaikei-usage-flow__body__stepper__step--num {
  width: 30px;
  height: 30px;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  background: #fff302;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3px;
  border-radius: 9999px;
  color: #1d2362;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__stepper__step--num {
    width: 18px;
    height: 18px;
    font-size: 14px;
    margin-top: 0px;
  }
}
.kaikei-usage-flow__body__stepper__title {
  flex: 1;
  color: #1d2361;
  font-size: 24px;
  font-weight: bold;
  background-color: #fff302;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  text-align: start;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 0;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__stepper__title {
    font-size: 18px;
  }
}
.kaikei-usage-flow__body__contents {
  display: flex;
  margin: 0 15px;
}
.kaikei-usage-flow__body__contents--arrow {
  position: relative;
  width: 3px;
  margin-top: -10px;
  background: #1d2362;
  flex-shrink: 0;
}
@media screen and (min-width: 767px) {
  .kaikei-usage-flow__body__contents--arrow {
    margin-left: 30px;
  }
}
.kaikei-usage-flow__body__contents--arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(99%) scaleY(-1);
  background: #1d2362;
  height: 14px;
  width: 12px;
  z-index: 1;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.kaikei-usage-flow__body__contents__description {
  padding: 24px 0px 16px 34px;
  display: flex;
  flex-direction: column;
  align-items: start;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description {
    padding: 16px 0px 24px 16px;
  }
}
.kaikei-usage-flow__body__contents__description--text {
  color: #1d2362;
  text-align: start;
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description--text {
    font-size: 15px;
    font-weight: 450;
  }
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description--text.pc-only {
    display: none;
  }
}
.kaikei-usage-flow__body__contents__description--text--important {
  font-weight: 700;
}
.kaikei-usage-flow__body__contents__description--step1--images {
  margin-top: 8px;
  margin-bottom: 40px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description--step1--images {
    margin-bottom: 30px;
    gap: 32px;
  }
}
.kaikei-usage-flow__body__contents__description--step1--images__content {
  width: 116px;
  padding: 4px 8px 8px 8px;
  border: 1px solid #1d2361;
  border-radius: 20px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kaikei-usage-flow__body__contents__description--step1--images__content--text {
  font-size: 16px;
  color: #1d2361;
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description--step1--images__content--text {
    font-size: 14px;
  }
}
.kaikei-usage-flow__body__contents__description--step1--images__content--image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 70px;
}
.kaikei-usage-flow__body__contents__description--step1--banner {
  width: 100%;
  max-width: 360px;
  margin-left: 0;
}
.kaikei-usage-flow__body__contents__description--step2--images {
  padding: 24px;
  border-radius: 10px;
  background-color: #fffcce;
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 600px;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description--step2--images {
    padding: 16px;
  }
}
.kaikei-usage-flow__body__contents__description--step2--images__content--image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-width: 235px;
  box-shadow: 5px 9px 8px 0 rgba(24, 39, 75, 0.08);
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description--step2--images__content--image.only-pc {
    display: none;
  }
}
.kaikei-usage-flow__body__contents__description--step3__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description--step3__content {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
}
.kaikei-usage-flow__body__contents__description--step3__content--image {
  -o-object-fit: contain;
     object-fit: contain;
  width: 70px;
  margin-left: 40px;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__body__contents__description--step3__content--image {
    margin-left: auto;
    margin-right: auto;
  }
}
.kaikei-usage-flow__application-experience {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__application-experience {
    padding: 0 32px;
  }
}
.kaikei-usage-flow__application-experience--text {
  color: #1d2362;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__application-experience--text {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
  }
}
.kaikei-usage-flow__application-experience--text--line-break {
  display: none;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__application-experience--text--line-break {
    display: inline;
  }
}
.kaikei-usage-flow__application-experience--note {
  font-size: 16px;
  color: #1d2362;
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__application-experience--note {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.2;
  }
}
.kaikei-usage-flow__application-experience--button {
  margin-top: 24px;
  min-width: 300px;
  height: 56px;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .kaikei-usage-flow__application-experience--button {
    margin-top: 16px;
    box-sizing: border-box;
    max-width: calc(100% - 32px);
    margin: 16px 32px;
    height: 48px;
  }
}

.kaikei-feature-description {
  background-color: #ffffff;
}
.kaikei-feature-description__area {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}
.kaikei-feature-description__header {
  display: flex;
  align-items: end;
  justify-content: start;
  width: 730px;
  margin-left: auto;
  margin-right: auto;
  /* 背景を3本の黄色棒線にする */
  background-image: linear-gradient(#fff799, #fff799), linear-gradient(#fff799, #fff799), linear-gradient(#fff799, #fff799);
  background-repeat: no-repeat;
  background-size: 87% 1em, 93% 1em, 100% 1em; /* 長さを変える */
  background-position: left 10px top 2.5em, left 10px top 3.2em, left 10px top 4em; /* 縦の位置調整 */
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__header {
    flex-direction: column;
    align-items: start;
    justify-self: start;
    width: 350px;
    /* 背景を3本の黄色棒線にする */
    background-image: linear-gradient(#fff799, #fff799), linear-gradient(#fff799, #fff799), linear-gradient(#fff799, #fff799);
    background-repeat: no-repeat;
    background-size: 60% 0.8em, 65% 0.8em, 70% 0.8em; /* 長さを変える */
    background-position: left 10px top 2.2em, left 10px top 2.7em, left 10px top 3.2em; /* 縦の位置調整 */
  }
}
.kaikei-feature-description__header__wrap {
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__header__wrap {
    gap: 6px;
  }
}
.kaikei-feature-description__header--image {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__header--image {
    width: 180px;
  }
}
.kaikei-feature-description__header--text {
  font-size: 46px;
  font-weight: 600;
  color: #1d2362;
  -webkit-text-stroke: 12px #fff;
  text-stroke: 12px #fff;
  paint-order: stroke fill;
  margin-top: auto;
  line-height: 1.4;
  position: static;
  width: auto;
  overflow: unset;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__header--text {
    -webkit-text-stroke: 8px #fff;
    text-stroke: 8px #fff;
    font-size: 36px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__header--text.sp-text {
    align-self: end;
    /* 背景を3本の黄色棒線にする */
    background-image: linear-gradient(#fff799, #fff799), linear-gradient(#fff799, #fff799), linear-gradient(#fff799, #fff799);
    background-repeat: no-repeat;
    background-size: 100% 0.8em, 100% 0.8em, 100% 1em;
    background-position: right 0px top 0.8em, right 0px top 1.5em, right 0px top 2em;
    -webkit-text-stroke: 6px #fff;
    text-stroke: 6px #fff;
  }
}
.kaikei-feature-description__contents {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5vw, 64px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__contents {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0px;
  }
}
.kaikei-feature-description__content {
  min-width: 350px;
  width: calc(50vw - 31px);
  max-width: 440px;
}
.kaikei-feature-description__content--header-label {
  background-color: #1d2362;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.5;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--header-label {
    font-size: 26px;
    border-radius: 0px;
    color: #1d2362;
    background-color: transparent;
    border: 0;
    text-align: left;
    padding: 24px 0 8px 0;
  }
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--header-label--line-break {
    display: none;
  }
}
.kaikei-feature-description__content--body {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #ffffff;
  border: 2px solid #1d2362;
  box-sizing: border-box;
  box-shadow: 0 6px 4px rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 532px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body {
    border-radius: 0px;
    height: auto;
    border: 0;
    box-shadow: none;
    height: auto;
    margin-bottom: 0;
    background-color: transparent;
  }
}
.kaikei-feature-description__content--body__label {
  margin: 16px 16px 0px 16px;
  font-size: 24px;
  font-weight: 600;
  color: #1d2362;
  padding: 6px 0 6px 6px;
  border-bottom: 1px solid #1d2362;
  background-color: #fdfbc0;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__label {
    display: flex;
    justify-content: space-between;
    margin: 0 8px 8px 24px;
    font-size: 20px;
    margin: 0 16px;
    font-weight: 450;
    background-color: rgba(255, 247, 153, 0.4705882353);
  }
}
.kaikei-feature-description__content--body__label--arrow-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__label--arrow-icon {
    display: block;
    margin-left: 0;
    margin-right: 8px;
    width: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .kaikei-feature-description__content--body__label--arrow-icon.is-open {
    transform: rotate(180deg);
  }
}
.kaikei-feature-description__content--body__description {
  padding: 16px 16px 0px 24px;
  display: flex;
  justify-content: start;
  gap: clamp(4px, 1vw, 32px);
}
.kaikei-feature-description__content--body__description.no-1-3 {
  justify-content: space-between;
}
.kaikei-feature-description__content--body__description.no-2-1 {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__description {
    padding: 4px 8px 16px 24px;
    font-size: 22px;
    justify-content: space-between;
    align-items: center;
    display: none;
  }
}
.kaikei-feature-description__content--body__description--text {
  white-space: nowrap;
  color: #1d2362;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.5;
  margin-bottom: 0;
}
.kaikei-feature-description__content--body__description--text.no-1-2 {
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__description--text.no-1-2 {
    padding: 0;
  }
}
.kaikei-feature-description__content--body__description--text.no-2-2 {
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__description--text.no-2-2 {
    padding: 0;
  }
}
.kaikei-feature-description__content--body__description--image-wrapper-2-1 {
  padding: 0 16px 24px 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__description--image-wrapper-2-1 {
    padding: 0 16px;
  }
}
.kaikei-feature-description__content--body__description--image {
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.kaikei-feature-description__content--body__description--image.no-1-1 {
  padding-right: 10px;
  min-width: 60px;
  width: 12vw;
  max-width: 110px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__description--image.no-1-1 {
    padding-right: 8px;
    min-width: 72px;
    width: 72px;
  }
}
.kaikei-feature-description__content--body__description--image.no-1-2 {
  margin-left: clamp(0px, 2vw, 32px);
  min-width: 30px;
  width: 7vw;
  max-width: 52px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__description--image.no-1-2 {
    min-width: 38px;
    width: 38px;
  }
}
.kaikei-feature-description__content--body__description--image.no-1-3 {
  flex: 1;
  margin-right: 10px;
  min-width: 60px;
  width: 13vw;
  max-width: 130px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__content--body__description--image.no-1-3 {
    min-width: 110px;
    width: 110px;
  }
}
.kaikei-feature-description__content--body__description--image.no-2-1-1 {
  min-width: 55px;
  width: 12vw;
  max-width: 110px;
}
.kaikei-feature-description__content--body__description--image.no-2-1-2 {
  min-width: 28px;
  width: 6vw;
  max-width: 55px;
}
.kaikei-feature-description__content--body__description--image.no-2-1-3 {
  min-width: 55px;
  width: 11vw;
  max-width: 110px;
}
.kaikei-feature-description__content--body__description--image.no-2-2 {
  min-width: 55px;
  width: 8.5vw;
  max-width: 90px;
}
.kaikei-feature-description__application-experience {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 48px;
}
.kaikei-feature-description__application-experience--text {
  color: #1d2362;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 3px solid #fff000;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__application-experience--text {
    font-size: 20px;
    font-weight: 700;
  }
}
.kaikei-feature-description__application-experience--note {
  font-size: 16px;
  color: #1d2362;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__application-experience--note {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.2;
  }
}
.kaikei-feature-description__application-experience--button {
  margin-top: 24px;
  min-width: 300px;
  height: 56px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__application-experience--button {
    box-sizing: border-box;
    max-width: calc(100% - 32px);
    width: 350px;
    margin: 16px 32px;
    height: 48px;
  }
}
.kaikei-feature-description__download {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__download {
    margin-top: 24px;
  }
}
.kaikei-feature-description__download--text {
  color: #1d2362;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__download--text {
    font-size: clamp(18px, 4vw, 20px);
    font-weight: 700;
  }
}
.kaikei-feature-description__download--button-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .kaikei-feature-description__download--button-area {
    gap: 8px;
  }
}

.kaikei-recommendations {
  padding: 0;
  background-color: #f8fcff;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations {
    padding: 0 8vw 30px;
  }
}
.kaikei-recommendations__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations__header {
    margin-top: 24px;
    margin-bottom: 0;
  }
}
.kaikei-recommendations__title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: bold;
  color: #1d2362;
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations__title {
    font-size: 41px;
  }
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations__title--line-break {
    display: none;
  }
}
.kaikei-recommendations__image {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations__image {
    max-width: 300px;
    width: 20vw;
  }
}
.kaikei-recommendations__pc-contents {
  display: none;
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations__pc-contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.kaikei-recommendations__sp-contents {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations__sp-contents {
    display: none;
  }
}
.kaikei-recommendations__store-links {
  display: flex;
  padding: 16px;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations__store-links {
    gap: 20px;
  }
  .kaikei-recommendations__store-links--left {
    flex: 1;
    text-align: end;
  }
  .kaikei-recommendations__store-links--right {
    flex: 1;
    text-align: start;
  }
}
.kaikei-recommendations__store-link {
  max-height: 60px;
}
@media screen and (min-width: 768px) {
  .kaikei-recommendations__store-link {
    max-height: 60px;
  }
}
.kaikei-recommendations__button-area {
  width: 80vw;
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
}
.kaikei-recommendations__button {
  font-size: clamp(15px, 1vw, 25px);
}
.kaikei-recommendations--pc-content {
  border: 3px solid #1d2361;
  border-radius: 10rem 10rem 1.1rem 1.1rem;
  background: #fff;
  min-height: 100%;
  flex: 1;
  margin-top: 32px;
  padding-bottom: 32px;
  max-width: 425px;
}
.kaikei-recommendations--pc-content__inner {
  background-color: #fff200;
  border: 6px solid #fff;
  border-radius: 9.7rem 9.7rem 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 11px;
}
.kaikei-recommendations--pc-content__comment {
  margin-top: 28px;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  -webkit-text-stroke: 4px #1d2362;
  text-stroke: 4px #1d2362;
  paint-order: stroke fill;
  text-shadow: 2px 3px 1px #1d2362, 2px 4px 1px #1d2362;
  margin-bottom: 16px;
  margin-top: 20px;
}
.kaikei-recommendations--pc-content__figure {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kaikei-recommendations--pc-content__image {
  margin-top: 24px;
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.kaikei-recommendations--pc-content__name-area {
  margin-top: 12px;
  font-weight: bold;
  font-size: 18px;
  color: #1d2362;
}
.kaikei-recommendations--pc-content__name {
  margin-top: 12px;
  font-weight: bold;
  font-size: 24px;
}
.kaikei-recommendations--pc-content__description {
  padding: 0 16px;
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: bold;
  line-height: 170%;
  color: #1d2361;
  margin-bottom: 0;
  text-align: start;
}
.kaikei-recommendations--pc-content__description--important {
  background-color: #fff200;
}
.kaikei-recommendations--sp-content--01 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0 16px;
  justify-content: start;
}
.kaikei-recommendations--sp-content--01__left {
  justify-self: start;
}
.kaikei-recommendations--sp-content--01__right {
  position: relative;
  background-color: #fff;
  margin-left: 18px;
  margin-bottom: 0;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #1d2362;
}
.kaikei-recommendations--sp-content--01__right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #fff;
  z-index: 2;
}
.kaikei-recommendations--sp-content--01__right:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -26px;
  margin-top: -13px;
  border: 13px solid transparent;
  border-right: 13px solid #1d2362;
  z-index: 1;
}
.kaikei-recommendations--sp-content--02 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0 16px;
  justify-content: end;
}
.kaikei-recommendations--sp-content--02__right {
  justify-self: end;
}
.kaikei-recommendations--sp-content--02__left {
  position: relative;
  background-color: #fff;
  margin-right: 18px;
  margin-bottom: 0;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #1d2362;
}
.kaikei-recommendations--sp-content--02__left:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #fff;
  z-index: 2;
}
.kaikei-recommendations--sp-content--02__left:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -13px;
  border: 13px solid transparent;
  border-left: 13px solid #1d2362;
  z-index: 1;
}
.kaikei-recommendations--sp-content__image {
  margin-top: 15px;
  min-width: 50px;
  max-width: 80px;
}
.kaikei-recommendations--sp-content__name-area {
  margin-top: 8px;
  font-weight: bold;
  font-size: 10px;
  color: #1d2362;
  white-space: nowrap;
}
.kaikei-recommendations--sp-content__name {
  font-size: 14px;
}
.kaikei-recommendations--sp-content__description {
  color: #1d2362;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.2;
  text-align: start;
  width: 65vw;
  max-width: 300px;
  margin-top: auto;
  margin-bottom: auto;
}
.kaikei-recommendations--sp-content__description--important {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #1d2361;
  background-color: #fffaa1;
}

.plan-table-label--compare-table {
  line-height: 1.8;
  font-weight: bold;
  font-size: 18px;
  justify-content: center;
  display: flex;
  border-top: 1px solid #1f286f;
  border-bottom: 1px solid #1f286f;
  border-right: 2px solid #1f286f;
  border-left: 2px solid #1f286f;
  background: #f4f4f4;
  background: #e0e8ff;
}
.plan-table-label--price-table {
  line-height: 1.8;
  font-weight: bold;
  font-size: 18px;
  justify-content: center;
  display: flex;
  border-top: 1px solid #1f286f;
  border-bottom: 1px solid #1f286f;
  border-right: 2px solid #1f286f;
  border-left: 2px solid #1f286f;
  background: #f4f4f4;
}
.plan-table-label--first-row-price-table {
  line-height: 1.8;
  font-weight: bold;
  font-size: 18px;
  justify-content: center;
  display: flex;
  border-top: 1px solid #1f286f;
  border-bottom: 1px solid #1f286f;
  border-right: 2px solid #1f286f;
  border-left: 2px solid #1f286f;
  background: #f4f4f4;
  border-top: 2px solid #1f286f;
}

.compare-price-table__row {
  display: flex;
}
.compare-price-table__price-box {
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 50%;
  border-right: 1px solid #1f286f;
}
.compare-price-table__price-box.is-end-col {
  border-right: 2px solid #1f286f;
}
.compare-price-table__price-box--not-finfin {
  background-color: #f4f4f4;
}
.compare-price-table__price-box--first-col {
  border-left: 2px solid #1f286f;
}
.compare-price-table__price-text {
  font-size: 27px;
  font-weight: bold;
}
.compare-price-table__price-text--finfin {
  color: #ff0482;
}
.compare-price-table__price-suffix {
  font-size: 10px;
}
.compare-price-table__price-suffix--finfin {
  color: #ff0482;
}
.compare-price-table__other-company-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: end;
}
.compare-price-table__other-company-box--empty-area {
  height: 12px;
}
.compare-price-table__other-company-box--text-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 29px;
  border-top: 2px solid #1f286f;
  border-right: 1px solid #1f286f;
  position: relative;
  overflow: visible;
  background-color: #f4f4f4;
  font-size: 16px;
  font-weight: bold;
}
.compare-price-table__other-company-box--text-area.is-end-col {
  border-right: 2px solid #1f286f;
}
.compare-price-table__finfin-company-box {
  height: 41px;
  background-color: #1f286f;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.compare-price-table__finfin-company-box--image {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 6px;
  max-height: 100%;
  max-width: 100%;
}

.plan-table-cell__box {
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  border: 1px solid #1f286f;
  border-left: none;
}
.plan-table-cell__box--first-col {
  border-top: 1px solid #1f286f;
  border-bottom: 1px solid #1f286f;
  border-right: 1px solid #1f286f;
  border-left: 2px solid #1f286f;
}
.plan-table-cell__box.is-end-col {
  border-right: 2px solid #1f286f;
}
.plan-table-cell__box.is-end-row {
  border-bottom: 2px solid #1f286f;
}
.plan-table-cell__box--background-color-gray {
  background-color: #f4f4f4;
}
.plan-table-cell__img {
  width: 35px;
  padding: 5px;
}
.plan-table-cell__text {
  font-size: 10px;
}
.plan-table-cell__text--color-pink {
  color: #ff0482;
}

.plan-table-row__feature {
  line-height: 1.8;
  background: #fffdd3;
  color: #1f286f;
  text-align: center;
  font-weight: bold;
  padding: 1px;
  font-size: 13px;
  border-right: 2px solid #1f286f;
  border-left: 2px solid #1f286f;
}
.plan-table-row__feature-invoice {
  background: #fed0dd;
}
.plan-table-row--is-end-row {
  border-bottom: 2px solid #1f286f;
}
.plan-table-row__row {
  display: flex;
}

.plan-table {
  width: 100%;
}
.plan-table__scroll {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.plan-table__scroll::-webkit-scrollbar {
  display: none;
}

.price-table {
  display: flex;
}
.price-table-box {
  line-height: 1.8;
  width: 50%;
  height: 140px;
  border-right: 1px solid #1f286f;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-table-box-first-col {
  border-left: 2px solid #1f286f;
}
.price-table-box-end-col {
  border-right: 2px solid #1f286f;
}
.price-table-plan {
  font-weight: 500;
  padding: 15px;
  border-radius: 12px;
  height: 30px;
  font-size: 15px;
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.price-table-free {
  color: #ffffff;
  background: #1d2362;
}
.price-table-paid-kaikei {
  color: #1d2362;
  background: #fff302;
}
.price-table-paid-invoice {
  color: #ffffff;
  background: #ea6da3;
}
.price-table__description-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.price-table__description-group {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.price-table__description-yen {
  font-size: 11px;
  font-weight: 500;
}
.price-table__description-text {
  font-size: 10px;
  font-weight: 500;
}
.price-table__description-bold {
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
}
.price-table__description-bold.zero {
  font-size: 49px;
}
.price-table__description-note {
  color: #ff0000;
  font-size: 10px;
  padding-top: 5px;
  font-weight: 500;
}
.price-table__description-note.important {
  font-size: 12px;
  font-weight: 700;
}

.price-plan {
  margin-top: 40px;
  margin-bottom: 20px !important;
  padding: 0;
}
.price-plan__title {
  font-size: 16px;
  font-weight: 600;
  color: #1e2362;
  margin-bottom: 16px;
  padding-top: 0;
  position: static;
  text-align: center;
  width: auto;
  line-height: unset;
}
.price-plan__price {
  font-size: 41px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  color: #1e2362;
}
@media screen and (min-width: 768px) {
  .price-plan__price {
    font-size: 46px;
  }
}
.price-plan__text {
  position: static;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #1e2362;
  text-align: center;
  margin-bottom: 16px;
  display: block;
  background-color: unset;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .price-plan__text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .price-plan__line-break {
    display: none;
  }
}
.price-plan__buttons {
  display: flex;
  gap: 0px;
  justify-content: center;
  margin-top: 32px;
}
.price-plan__button--left {
  width: 270px;
  max-width: initial;
  height: 50px;
  border-radius: 10px 0 0 10px;
  padding-inline: 0 !important;
  border: 2px solid #1d2362;
  background-color: #ffffff;
  color: #1d2362;
}
.price-plan__button--left.is-active {
  background-color: #1d2362;
  color: #ffffff;
  border: none;
}
.price-plan__button--left.is-active:hover {
  background-color: rgba(29, 35, 98, 0.7019607843);
  color: #fff;
}
.price-plan__button--left:hover {
  background-color: #ffffff;
  color: rgba(29, 35, 98, 0.7019607843);
}
.price-plan__button--right {
  width: 270px;
  max-width: initial;
  height: 50px;
  border-radius: 0 10px 10px 0;
  padding-inline: 0 !important;
  border: 2px solid #1d2362;
  background-color: #ffffff;
  color: #1d2362;
}
.price-plan__button--right.is-active {
  background-color: #1d2362;
  color: #ffffff;
  border: none;
}
.price-plan__button--right.is-active:hover {
  background-color: rgba(29, 35, 98, 0.7019607843);
  color: #fff;
}
.price-plan__button--right:hover {
  background-color: #ffffff;
  color: rgba(29, 35, 98, 0.7019607843);
}
.price-plan__pc-contents {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .price-plan__pc-contents {
    display: none;
  }
}
.price-plan__pc-contents__content--free {
  width: 40vw;
  max-width: 300px;
  margin-bottom: 0;
}
.price-plan__pc-contents__content--billing {
  width: 40vw;
  max-width: 350px;
  margin-bottom: 0;
}
.price-plan__pc-contents--header {
  font-weight: bold;
  border-bottom: none;
  border: 2px solid #1d2362;
  border-bottom: none;
  text-align: center;
  border-radius: 8px 8px 0 0;
  font-size: 24px;
  padding: 10px 30px;
}
.price-plan__pc-contents--header.free-price {
  color: #ffffff;
  background-color: #1d2362;
}
.price-plan__pc-contents--header.billing-price {
  color: #1d2362;
  background-color: #fff200;
}
.price-plan__pc-contents--header.billing-price.invoice {
  background-color: #eb6ea5;
  color: #ffffff;
}
.price-plan__pc-contents--body {
  background-color: #ffffff;
  color: #1d2362;
  text-align: center;
  border: 2px solid #1d2362;
  display: block;
  height: 250px;
  padding: 0;
  border-radius: 0 0 8px 8px;
}
.price-plan__pc-contents--body__text {
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
}
.price-plan__pc-contents--body__red-notification {
  font-size: 16px;
  color: #e84444;
  font-weight: bold;
  padding: 8px 16px;
}
.price-plan__pc-contents--body__free-price-area {
  margin: 0;
  line-height: 1;
  margin: 16px 0 0 0;
}
.price-plan__pc-contents--body__free-price {
  font-size: 90px;
  font-weight: 600;
  margin-bottom: 18px;
}
.price-plan__pc-contents--body__billing-price-area {
  display: flex;
  padding: 0 16px;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0;
  line-height: 1;
}
.price-plan__pc-contents--body__billing-price {
  font-size: 48px;
  font-weight: 600;
  color: #1f286f;
}
.price-plan__pc-contents--body__payment-method {
  color: #1f286f;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.price-plan__pc-contents--body__yen {
  color: #1f286f;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
}
.price-plan__sp-contents {
  min-width: 330px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 8px;
  border-bottom: 2px solid #1d2362;
}
@media screen and (min-width: 768px) {
  .price-plan__sp-contents {
    display: none;
  }
}
.price-plan__note {
  font-size: 13px;
  font-weight: 500;
  color: #1f286f;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .price-plan__note {
    margin-bottom: 28px;
    text-align: center;
  }
}
.price-plan__button {
  margin-top: 16px;
  margin-bottom: 8px;
  min-height: 40px;
  min-width: 300px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .price-plan__button {
    margin-top: 0;
    margin-bottom: 8px;
    min-height: 54px;
    min-width: 400px;
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .price-plan--break-line-only-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .price-plan--break-line-only-sp {
    display: none;
  }
}

.kaikei-price-plan__figure {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .kaikei-price-plan__figure {
    max-width: auto;
    margin-left: 15px;
    margin-right: 15px;
  }
}
.kaikei-price-plan__figure--pc-contents {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .kaikei-price-plan__figure--pc-contents {
    display: none;
  }
}
.kaikei-price-plan__figure--sp-contents {
  margin: 30px 0;
}
@media screen and (min-width: 768px) {
  .kaikei-price-plan__figure--sp-contents {
    display: none;
  }
}

.user-voice {
  padding: 90px 0 !important;
  background-color: #e8e9f0;
}
@media screen and (max-width: 767px) {
  .user-voice {
    padding: 60px 0 !important;
  }
}
.user-voice__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.user-voice__title {
  color: #1d2362;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .user-voice__title {
    font-size: 46px;
  }
}
.user-voice__subtitle {
  color: #1d2362;
  font-size: 16px;
  font-weight: bold;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .user-voice__subtitle {
    font-size: 18px;
  }
}
.user-voice__contents {
  overflow: visible !important;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .user-voice__contents {
    padding-left: 78px;
  }
}
.user-voice__contents * .slick-track {
  -moz-column-gap: 30px;
       column-gap: 30px;
  position: relative;
  overflow: visible;
}
.user-voice__contents * .slick-slide {
  width: 270px !important;
}
@media screen and (min-width: 768px) {
  .user-voice__contents * .slick-slide {
    width: 300px !important;
  }
}
.user-voice__contents__arrow-button {
  width: 54px !important;
  height: 54px !important;
  background-color: #1f286f !important;
  border: 1px solid transparent !important;
  cursor: pointer;
  z-index: 2;
  border: 1px solid transparent !important;
}
@media screen and (max-width: 767px) {
  .user-voice__contents__arrow-button {
    width: 50px !important;
    height: 50px !important;
  }
}
.user-voice__contents__arrow-button::after {
  color: #ffffff;
  font-size: 20px;
}
.user-voice__contents__arrow-button.slick-prev {
  left: 5px;
}
@media screen and (max-width: 767px) {
  .user-voice__contents__arrow-button.slick-prev {
    top: 156px;
  }
}
.user-voice__contents__arrow-button.slick-next {
  left: 970px;
}
@media screen and (min-width: 768px) and (max-width: 1037px) {
  .user-voice__contents__arrow-button.slick-next {
    left: 646px;
  }
}
@media screen and (max-width: 767px) {
  .user-voice__contents__arrow-button.slick-next {
    top: 156px;
    left: 333px;
  }
}
.user-voice__content {
  -moz-column-gap: 30px;
       column-gap: 30px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 0 16px;
  width: 270px !important;
}
.user-voice__content--name {
  padding-top: 16px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  line-height: 1.1;
}
.user-voice__content--image {
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 15px;
  width: 150px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.user-voice__content--summary {
  line-height: 1.4;
  font-size: 17px;
  font-weight: bold;
  color: #1d2362;
  margin-bottom: 5px;
  text-align: left;
  min-height: 70px;
}
.user-voice__content--text {
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .user-voice__content--text {
    display: block !important;
  }
}
.user-voice__content--js-accordion {
  margin-bottom: 10px;
  align-self: self-end;
  width: auto;
  font-size: 14px;
  padding: 8px 10px;
  text-decoration: underline;
  text-align: right;
}
.user-voice__content--js-accordion :hover {
  background-color: #1f286f;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .user-voice__content--js-accordion {
    display: none !important;
  }
}

.first_view {
  background-color: #fefaa1;
  padding: 0;
  padding-top: 60px;
}
.first_view__h1 {
  position: absolute;
  top: 0;
  left: 120%;
}
.first_view__header-sp {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  min-height: 100px;
}
@media screen and (min-width: 768px) {
  .first_view__header-sp {
    display: none;
  }
}
.first_view__header-sp__image {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 400px;
}
.first_view__image {
  -o-object-fit: contain;
     object-fit: contain;
}
.first_view__main-button {
  height: 80px;
  border-bottom: 10px solid #1d2362;
  font-size: clamp(18px, 2.5vw, 80px);
}
.first_view__main-pc {
  display: flex;
  flex-direction: row;
  padding: 0 8vw;
  max-width: unset;
}
.first_view__main-pc--left {
  width: 53%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .first_view__main-pc--left {
    display: none;
  }
}
.first_view__main-pc--right {
  width: 47%;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .first_view__main-pc--right {
    display: none;
  }
}
.first_view__main-pc__button {
  width: 100%;
  box-sizing: border-box;
  padding: 50px 30px 50px 30px;
}
@media screen and (max-width: 767px) {
  .first_view__main-pc {
    display: none;
  }
}
.first_view__main-pc__store-links {
  display: flex;
  padding: 16px;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .first_view__main-pc__store-links {
    width: 40vw;
    max-width: 500px;
    margin-bottom: 0;
  }
}
.first_view__main-sp {
  display: block;
  min-height: 460px;
}
.first_view__main-sp__button {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 30px;
}
@media screen and (min-width: 768px) {
  .first_view__main-sp {
    display: none;
  }
}
.first_view__main-sp__store-links {
  display: flex;
  padding: 16px;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  width: 80vw;
  max-width: 300px;
  margin-bottom: 0;
}/*# sourceMappingURL=sp-kaikei.css.map */