@charset "UTF-8";
/* ===========================================
 * Fontss
 * ===========================================
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* ===========================================
 * 関数
 * ===========================================
*/
/* -------------------------------------------
 * breakpoint
*/
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
/* -------------------------------------------
 * font-size
*/
/* $base-font-sizeを基準に$sizeを%で指定 */
/* $base-font-sizeを基準に$sizeをremで指定 */
/* $base-font-sizeを基準に$sizeをpxで指定 */
/* $base-font-sizeを基準に$sizeをemで指定 */
/* $base-font-sizeを基準に$sizeをvwで指定 */
/* $base-font-sizeを基準に$sizeをvhで指定 */
/* ===========================================
 * 変数
 * ===========================================
*/
/* color */
/* window */
/* =========================
   Design Tokens
==========================*/
:root {
  --bg-image: url("../img/lp-bg.webp");
  /* ←背景画像差し替え */
  --brand: #0ea5e9;
  --ink: #0f172a;
  /* テキスト濃色 */
  --muted-ink: #475569;
  /* テキスト中間 */
  --paper: #ffffff;
  /* カード/面の背景 */
  --soft: #f1f5f9;
  /* セクションの薄い背景 */
  --border: #e2e8f0;
  /* 枠線 */
  --radius: 16px;
  --radius-2xl: 24px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .15);
  --max-phone: 480px;
  /* 右カラム=スマホ幅の最大 */
  --left-w: 50vw;
  /* PC時：固定カラムの幅 */
  --pad: 24px;
}

/* Reset-lite */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

figure {
  margin: 0;
}

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

a {
  color: var(--brand);
  text-decoration: none;
}

/* =========================
   Layout
==========================*/
.lp {
  min-height: 100dvh;
  position: relative;
  z-index: 0;
}
.lp::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--bg-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
}
.lp::after {
  content: "";
  position: fixed;
  inset: 0;
  top: 0;
  left: 93vw;
  height: 100vh;
  width: 10%;
  transform: translateX(-100%);
  background-image: url("../img/deco-phone-side.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  z-index: 0;
}
@media screen and (max-width: 680px) {
  .lp::after {
    display: none;
  }
}

/* 左：固定カラム（PCのみ表示） */
.lp__fixed {
  position: fixed;
  inset: 0 auto 0 0;
  /* left側に固定 */
  width: var(--left-w);
  display: none;
  /* モバイルでは非表示 */
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.lp__fixed .__logo_container {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}
.lp__fixed .__logo_container .__img {
  margin: 0;
}
.lp__fixed .__link {
  width: 100%;
  max-width: 300px;
  line-height: 1;
  padding: 1rem;
  position: relative;
  background-color: #EC572E;
  border-radius: 999px;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.lp__fixed .__link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .lp__fixed {
    display: block;
  }
}

/* 左：コンテンツ（ロゴ、キャッチなど） */
.fixed__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.2vw, 40px);
  gap: clamp(16px, 2vw, 24px);
  justify-content: center;
  align-items: center;
}
.fixed__inner .__img {
  width: auto;
  height: 600px;
  width: auto;
  overflow: hidden;
}
.fixed__inner .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* 右：スクロールカラム（全端末で使う） */
.lp__scroll {
  margin-left: 0;
  padding: min(28px, 4vw) 16px 80px;
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 680px) {
  .lp__scroll {
    padding: 0;
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  .lp__scroll {
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .lp__scroll {
    margin-left: var(--left-w);
    padding: 40px 24px 120px;
  }
}

/* “スマホ画面”っぽく見せるフレーム */
.phone {
  width: 100%;
  max-width: var(--max-phone);
  background: var(--paper);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .phone:not(.__no-top)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background-image: url("../img/logo-header-sp.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 2;
  }
}
@media screen and (max-width: 680px) {
  .phone {
    margin: 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
    border-radius: unset;
  }
}

/* モバイル上部バーを再現（sticky） */
/* -------------------------------------------
 * animation
*/
/* セクション共通 */
.section {
  margin: 0;
  padding: 0;
}

/* Hero */
.hero {
  padding: clamp(24px, 6vw, 40px) 0 0;
}

/* onayami */
.onayami {
  margin-top: -70%;
}
.onayami .__btn_cta {
  display: block;
  text-decoration: none;
  width: 92%;
  margin: 1rem auto 3rem;
  position: relative;
  z-index: 2;
}

/* service */
.service {
  margin-top: clamp(32px, 5.5vw, 40px);
}
.service .__img.__02 {
  margin-top: clamp(24px, 5vw, 32px);
}

/* cta */
.cta .__btn_cta {
  display: block;
  text-decoration: none;
  width: 92%;
  margin: 1rem auto 3rem;
  position: relative;
  z-index: 2;
}
.cta .__03 {
  position: relative;
  z-index: 1;
  margin-top: -6rem;
}

/* point */
.point .__img {
  margin-bottom: 3rem;
}

/* flow */
.flow .__img {
  margin-bottom: 3rem;
}

/* tokuten */
.tokuten {
  padding: clamp(24px, 6vw, 40px) 0;
  background-color: #09436C;
}

/* review */
.review {
  background-image: url("../img/bg-review.webp");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center top;
}
.review .__img:nth-child(2), .review .__img:nth-child(3) {
  margin-top: -4rem;
}
.review .__img:nth-child(4), .review .__img:nth-child(5) {
  margin-top: -6rem;
}

/* faq */
.faq .__img:nth-child(1), .faq .__img:nth-child(2), .faq .__img:nth-child(3), .faq .__img:nth-child(4) {
  margin-bottom: 3rem;
}
.faq .__img:nth-child(5) {
  margin-bottom: 6rem;
}

/* profile */
.profile .__img:nth-child(1) {
  margin-bottom: 1rem;
}
.profile .__img:nth-child(2) {
  margin-bottom: 1rem;
}
.profile .__img:nth-child(3) {
  margin-bottom: 3rem;
}

/* message */
.message {
  background-image: url("../img/bg-message.webp");
  background-repeat: repeat-y;
  background-size: contain;
  background-position: center 3%;
}

/* form */
.form {
  margin-top: clamp(32px, 5.5vw, 40px);
  /* 入力欄とテキストの間隔を画像に合わせて少し広めに */
  /* エラーハイライト（任意で追加使用可能） */
  /* 角丸や縁を画像に寄せる */
}
.form .c-form {
  background: #fff;
  border-radius: 18px;
  width: 92%;
  border: 10px solid #25C3D4;
  border-radius: 10px;
  margin: 3rem auto 1rem;
  position: relative;
  z-index: 1;
}
.form .c-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translate(-50%, -80%);
  background-image: url("../img/icon-form-deco.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 120px;
  height: 70px;
}
@media screen and (max-width: 680px) {
  .form .c-form {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    max-width: 96%;
    width: 96%;
  }
}
.form .bz-contact__form-body {
  padding: 40px 12px 48px;
  color: #184F76;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .form .bz-contact__form-body {
    padding: 40px 24px 48px;
  }
}
.form .c-form-item,
.form .bz-contact__form-item {
  margin-bottom: 21.6px;
}
.form .c-form-item__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.form .c-form-item__ttl p {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: #184F76;
  letter-spacing: 0.02em;
}
.form .c-form-item__ttl--02 {
  margin-bottom: 10px;
}
.form .c-form-item__ttl .required {
  color: #ff5a5a;
  font-weight: 700;
  line-height: 1;
}
.form .c-input {
  width: 100%;
  height: 56px;
  border-radius: 10px;
  border: 2px solid #d9e7f0;
  background: #eef6f9;
  padding: 0 18px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  color: #184F76;
  font-size: 16px;
}
.form .c-input::-moz-placeholder {
  color: #8aa6b5;
  opacity: 1;
}
.form .c-input::placeholder {
  color: #8aa6b5;
  opacity: 1;
}
.form .c-input:hover {
  background: #e8f2f6;
}
.form .c-input:focus {
  border-color: #2cc3d0;
  box-shadow: 0 0 0 3px rgba(44, 195, 208, 0.15);
  background: #fff;
}
.form .c-message {
  height: 260px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}
.form .c-select {
  position: relative;
}
.form .c-select select.c-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image: linear-gradient(45deg, transparent 50%, #8aa6b5 50%), linear-gradient(135deg, #8aa6b5 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
  background-position: calc(100% - 26px) 22px, calc(100% - 18px) 22px, 0 0;
  background-size: 8px 8px, 8px 8px, 100% 100%;
  background-repeat: no-repeat;
}
.form .c-select select.c-input:invalid {
  color: #8aa6b5;
}
.form .c-select select.c-input option[disabled][selected] {
  display: none;
}
@media screen and (max-width: 680px) {
  .form .c-select select.c-input.__sm {
    padding-left: 8px;
    padding-right: 32px;
    background-position: calc(100% - 18px) 22px, calc(100% - 10px) 22px, 0 0;
    font-size: 16px;
  }
}
.form .bz-contact__form-item--02 .c-form-item__label-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form .bz-contact__form-item--02 .c-form-item__label-wrap-inner {
  width: 100%;
}
.form .c-form-item__sub {
  margin-top: 10px;
}
.form input[type=tel],
.form input[type=email],
.form input[type=text],
.form input[type=date],
.form select,
.form textarea {
  font-family: inherit;
}
.form input[type=date]::-webkit-date-and-time-value {
  text-align: left;
}
.form input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0.7;
}
.form .bz-contact__form-btn {
  margin-top: 28px;
}
.form .bz-contact__form-btn .__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 68px;
  padding: 18px 22px;
  border: none;
  border-radius: 9999px;
  background: #f0643a;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 0 0 #c94f2f, 0 20px 24px rgba(201, 79, 47, 0.25);
}
.form .bz-contact__form-btn .__link:after {
  content: "→";
  font-weight: 800;
  transform: translateX(0);
  transition: transform 0.15s ease;
}
.form .bz-contact__form-btn .__link:hover {
  filter: brightness(1.02);
  box-shadow: 0 7px 0 0 #c94f2f, 0 18px 22px rgba(201, 79, 47, 0.25);
}
.form .bz-contact__form-btn .__link:hover:after {
  transform: translateX(2px);
}
.form .bz-contact__form-btn .__link:active {
  transform: translateY(1px);
  box-shadow: 0 6px 0 0 #c94f2f, 0 14px 18px rgba(201, 79, 47, 0.25);
}
.form .c-form-item .c-input,
.form .c-form-item .c-select select,
.form .c-form-item .c-message {
  margin-top: 6px;
}
.form .is-error .c-input,
.form .is-error select,
.form .is-error textarea {
  border-color: #ff5a5a;
  box-shadow: 0 0 0 3px rgba(255, 90, 90, 0.12);
}
.form .c-form .c-input,
.form .c-form select,
.form .c-form textarea {
  border-radius: 10px;
}
.form .c-form {
  word-break: break-word;
}
.form input[type=date] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  height: auto;
  min-height: 56px;
  line-height: normal;
  padding: 0 18px;
  border-radius: 10px;
  background-clip: padding-box;
  position: relative;
  padding-right: 44px;
}
.form input[type=date]::-webkit-datetime-edit {
  padding: 0;
}
.form input[type=date]::-webkit-date-and-time-value {
  min-height: 1.4em;
}
.form input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  padding: 0;
}
.form .bz-contact__form-item--02 .c-form-item__label-wrap {
  align-items: stretch;
}
.form .bz-contact__form-item--02 .c-form-item__label-wrap-inner .c-input {
  min-height: 56px;
}
@supports (-webkit-touch-callout: none) {
  .form input[type=date] {
    font-size: 16px;
    box-shadow: none;
  }
}

/* Footer */
.footer {
  width: 100%;
}
.footer .footer__link {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 0;
  font-size: 14px;
}
.footer .footer__link a {
  color: #3A3F40;
}
.footer .__copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: #25C3D4;
  margin-bottom: 0.5rem;
}
.footer .footer-nav__container {
  width: 100%;
  padding: 1rem 0;
  background-color: rgba(35, 78, 109, 0.8);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
}
.footer .footer-nav__container .__link {
  width: 92%;
  margin: 0 auto;
  line-height: 1;
  padding: 1.5rem 1rem;
  background-color: #EC572E;
  border-radius: 999px;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer .footer-nav__container .__link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
}

/* ===========================================
 * Privacy policy
 * ===========================================
*/
.pp {
  padding: 0 4%;
}
.pp .__h1_header {
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.pp .__h1_header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #184F76;
  width: 100vw;
  height: 100%;
}
.pp .__h1_header .__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pp h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.pp h3 {
  margin-top: 2rem;
  margin-bottom: 0;
  color: #184F76;
}
.pp dl dd {
  margin-left: 1rem;
}

.cm {
  padding: 0 4%;
  /* そのまま <table> に付けたい場合は
    セレクタ `.c-table` を `table` に置換して使ってください。*/
}
.cm .__h1_header {
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.cm .__h1_header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #184F76;
  width: 100vw;
  height: 100%;
}
.cm .__h1_header .__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cm h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.cm .c-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #d9e7f0;
  border-radius: 16px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.7;
  color: #1f2a37;
}
.cm .c-table tr + tr th,
.cm .c-table tr + tr td {
  border-top: 1px solid #d9e7f0;
}
.cm .c-table th,
.cm .c-table td {
  padding: 14px 16px;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.cm .c-table th {
  width: 34%;
  min-width: 160px;
  text-align: left;
  font-weight: 700;
  background: #eef6f9;
  border-right: 1px solid #d9e7f0;
  color: #1f2a37;
  white-space: nowrap;
}
.cm .c-table td {
  background: #fff;
}
.cm .c-table tr:nth-child(even) td {
  background: #f7fbfd;
}
.cm .c-table a {
  color: #2cc3d0;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.cm .c-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 1px) {
  .cm .c-table {
    border: none;
    border-radius: 0;
    background: transparent;
  }
  .cm .c-table tr {
    display: block;
    margin: 10px 0;
    border: 1px solid #d9e7f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }
  .cm .c-table th,
  .cm .c-table td {
    display: block;
    width: 100%;
    border: none !important;
  }
  .cm .c-table th {
    background: #eef6f9;
    padding: 12px 14px;
    border-bottom: 1px solid #d9e7f0 !important;
    white-space: normal;
  }
  .cm .c-table td {
    padding: 12px 14px 14px;
    background: #fff !important;
  }
  .cm .c-table tr + tr th,
  .cm .c-table tr + tr td {
    border-top: none;
  }
}

.thanks {
  padding: 0 4%;
}
.thanks .__h1_header {
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.thanks .__h1_header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #184F76;
  width: 100vw;
  height: 100%;
}
.thanks .__h1_header .__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.thanks h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.thanks p {
  text-align: center;
  margin: 2rem 0;
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}/*# sourceMappingURL=style.css.map */