@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
/* ---------------------------------------------------------
  px → rem 変換（単体使用向け）
--------------------------------------------------------- */
/* ---------------------------------------------------------
  スマホ＆PC 2レンジ対応 :root font-size 可変化
  - スマホは max 制限なし（拡大し放題）
  - PCは max 10px（拡大制限あり）
  - マイナスremも使えるように最小制限なし
--------------------------------------------------------- */
/* ---------------------------------------------------------
  実行：2レンジ切り替え（PC: 1280px, SP: 375px）
  ※ 毎回の変更ポイントをコメントで明示！
--------------------------------------------------------- */
:root {
  font-size: calc(10 * 100vw / 390);
}

@media (min-width: 768px) {
  :root {
    font-size: clamp(5.3333333333px, 10 * 100vw / 1440, 10px);
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media (max-width: 734px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 10px;
  background: #F7F7F7;
}
html body {
  color: #030303;
}
html body section {
  width: 100%;
  padding: 9.2rem 0;
}
html body .contents {
  max-width: 102.5rem;
  width: 100%;
  margin: 0 auto;
}
html body .inner {
  max-width: 88rem;
  width: 100%;
  margin: 0 auto;
}
html body img {
  width: 100%;
  height: auto;
}
html body .m-10 {
  margin-top: 10rem;
}
html body .siro {
  color: #FFFFFF;
}
html body .kuro {
  color: #030303;
}
html body .orange {
  color: #FFA127;
}
html body .aka {
  color: #C2050F;
}
html body .red {
  color: #DD0033;
}
html body .shadow {
  box-shadow: 0 0 1.706rem rgba(0, 0, 0, 0.5);
}
html body .card-shadow {
  box-shadow: 0 0 2.24rem rgba(166, 166, 166, 0.5);
}
html body .bold {
  font-weight: bold;
}
html body .t-center {
  text-align: center;
}
html body .t-left {
  text-align: left;
}
html body .flex_center {
  display: flex;
  align-items: center;
}
html body h1 {
  font-size: 3.609rem;
}
html body h2 {
  font-size: 5.2rem;
  margin-bottom: 6.2rem;
  font-weight: bold;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}
html body h2 .ttl__sub {
  margin-top: 2rem;
  font-size: 2.5rem;
  display: block;
  color: #7A7B7E;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
html body h3 {
  font-size: 2.4rem;
  font-weight: normal;
}
html body h4 {
  font-size: 1.6rem;
}
html body p {
  font-size: 1.6rem;
  line-height: 1.9rem;
  letter-spacing: 0.06rem;
}
html body a {
  color: black;
  text-decoration: none;
}
html body li {
  list-style: none;
}
html body footer {
  width: 100%;
}
@media (max-width: 734px) {
  html body section {
    width: 100%;
    padding: 5.2rem 0;
  }
  html body .contents {
    max-width: 34.5rem;
    width: 100%;
    margin: 0 auto;
  }
  html body h2 {
    font-size: 3.6rem;
    margin-bottom: 4.2rem;
  }
  html body h2 span.ttl__sub {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
  html body h3 {
    font-size: 1.3rem;
  }
  html body p {
    font-size: 1.1rem;
    line-height: 1.3rem;
    font-weight: 400;
  }
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/* =========================================
   全消しリセットCSS（フォームUIは残す）
   ========================================= */
/* すべての要素の余白・枠線・フォントサイズをリセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5要素のデフォルト表示をブロックに */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* ボディ初期化 */
body {
  line-height: 1;
}

/* リストマーカー削除 */
ol, ul {
  list-style: none;
}

/* 引用符削除 */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* テーブル初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== フォームUIは基本残すが最小限調整 ===== */
/* フォント継承（見た目の統一感を出す） */
input, select, textarea, button {
  font: inherit;
  color: inherit;
}

/* iOS Safariのズーム防止（必要な場合） */
input, textarea, select {
  font-size: 16px;
}

/* ボタンはポインター */
button {
  cursor: pointer;
}

/* Webkit系での余計なスタイル防止（外観は保持） */
input[type=search] {
  -webkit-appearance: textfield;
}

/* プレースホルダーの色だけ少し整える */
::-moz-placeholder {
  color: #999;
}
::placeholder {
  color: #999;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
  color: black;
  margin: 0 auto;
  color: black;
}

/* ---------------------------------------------------------
  Google Fonts 定義（使用フォントのみ）
  Fjalla One Regular
  Noto Sans JP Regular / SemiBold / Bold
  Karla Bold
--------------------------------------------------------- */
.font-fjalla {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
}

.font-noto-regular {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.font-noto-semibold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.font-noto-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.font-karla-bold {
  font-family: "Karla", sans-serif;
  font-weight: 700;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.mv_price {
  font-size: 14.604rem;
}

.mv_zeikomi {
  font-size: 4.282rem;
}

.dot {
  font-size: 0.6em;
}

.en {
  font-size: 0.65em;
}

.fit_ttl {
  font-size: 4.8rem;
}
.fit_ttl .fit_orange {
  font-size: 6.1rem;
  color: #FFA127;
}
.fit_ttl .ttl_sub {
  font-size: 3.8rem;
  display: block;
  margin-top: 2rem;
  display: block;
}

.hikari {
  font-size: 4.5rem;
}
.hikari span {
  color: #FFA127;
  font-size: 5.5rem;
  letter-spacing: 3%;
}

.mv__btn-txt {
  font-size: 3.69rem;
}

.fz18 {
  font-size: 1.8rem !important;
  line-height: 2.2rem;
}

.fz24 {
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  line-height: 3.5rem;
}

.fz23 {
  font-size: 2.3rem;
}

.fz20 {
  font-size: 2rem;
  letter-spacing: 0.24rem;
  font-weight: 400;
  line-height: 2.4rem;
}

.fz60 {
  font-size: 6rem;
}
.fz60 .gbps {
  font-size: 4.8rem;
}

.em15 {
  font-size: 1.5em;
}

.em08 {
  font-size: 0.8em;
}

.plan-tab-f {
  font-size: 29rem;
}

.option-tab-f {
  font-size: 24rem;
}

.option-font-bold {
  font-size: 2.455rem;
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.option-font {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 734px) {
  .mv_price {
    font-size: 7.212rem;
  }
  .mv__btn-txt,
  .mv__btn-txt {
    font-size: 2.04rem;
  }
  .mv_zeikomi {
    font-size: 2.242rem;
  }
  .fz60 {
    font-size: 2.4rem;
  }
  .fz24 {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }
  .fz20 {
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: normal;
  }
  .fit_ttl {
    font-size: 1.5rem;
  }
  .fit_ttl .fit_orange {
    font-size: 2.008rem;
  }
  .fit_ttl .ttl_sub {
    font-size: 1.2rem;
    margin-top: 1.2rem;
  }
  .hikari {
    font-size: 1.504rem;
  }
  .hikari span {
    color: #FFA127;
    font-size: 1.839rem;
    letter-spacing: 3%;
  }
  .option-font-bold {
    font-size: 1.6rem;
    margin-bottom: 0.541rem;
  }
  .option-font {
    font-size: 1.3rem;
    line-height: 1.7rem;
    margin-bottom: 2rem;
  }
  .fz18 {
    font-size: 1.3rem !important;
    line-height: 2.2rem;
  }
  .fz23 {
    font-size: 1.7rem;
  }
}
:root {
  --chairo: #443122;
  /* 茶色 */
  --mizuiro: #2db2d3;
  /* 水色 */
  --midori: #057e82;
  /* 深い水色 */
  --siro: #f4f0ea;
  /* 白色系 */
  --orange: #f3870c;
  /* 橙色 */
  --aka: #dd0033;
  /* 赤 */
}

.js-tabbox {
  display: none;
}

.js-tabbox.is-active {
  display: block;
}

.faq__tab-content--q {
  cursor: pointer;
}

.js-aco_openbox {
  display: none;
  background-color: #fff;
}

.faq {
  padding: 1.625rem 0 7rem;
}

@media screen and (min-width: 768px) {
  .faq {
    padding: 5.5rem 0 10.875rem;
  }
}
.faq-contents {
  max-width: 28.125rem;
  margin: 2.625rem auto 0;
}

@media screen and (min-width: 768px) {
  .faq-contents {
    max-width: 62.5rem;
    margin-top: 3.25rem;
  }
}
.faq__tab-btn ul {
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .faq__tab-btn ul {
    gap: 1.0625rem;
  }
}
.faq__tab-btn ul li {
  width: calc((100% - 1rem) / 3);
  background-color: var(--siro);
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .faq__tab-btn ul li {
    width: calc((100% - 2.125rem) / 3);
    border-radius: 8px;
  }
}
.faq__tab-btn ul li a {
  width: 100%;
  height: 3.25rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.1818181818;
}

@media screen and (min-width: 768px) {
  .faq__tab-btn ul li a {
    height: 7rem;
    font-size: 1.5rem;
  }
}
.faq__tab-box {
  margin: 1.75rem auto 0;
}

@media screen and (min-width: 768px) {
  .faq__tab-box {
    margin-top: 2.625rem;
  }
}
.faq__tab-content {
  border-radius: 10px;
  background-color: var(--siro);
  overflow: hidden;
}

.faq__tab-content:nth-child(n+2) {
  margin-top: 1.375rem;
}

@media screen and (min-width: 768px) {
  .faq__tab-content:nth-child(n+2) {
    margin-top: 1rem;
  }
}
.faq__tab-content--q,
.faq__tab-content--a {
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
}

@media screen and (min-width: 768px) {
  .faq__tab-content--q,
  .faq__tab-content--a {
    padding: 1rem 1.5rem;
    gap: 1.5rem;
  }
}
.faq__tab-content--q {
  font-weight: 700;
  font-size: 1rem;
  transition: 0.5s;
}

.faq__tab-content--a {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .faq__tab-content--a {
    line-height: 1.8;
  }
}
.faq__tab-content--q .icon,
.faq__tab-content--a .icon {
  width: 2.25rem;
}

.faq__tab-content--q .icon-white,
.faq__tab-content--a .icon-white {
  display: none;
}

.faq__tab-content--q .text {
  width: 100%;
}

.faq__tab-content--q .plus {
  width: 1rem;
  height: 1rem;
  position: relative;
  margin-left: auto;
}

.faq__tab-content--q .plus span {
  width: 100%;
  height: 0.125rem;
  background-color: #999999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__tab-content--q .plus span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__tab-content--q.close {
  background-color: var(--siro);
  color: var(--chairo);
}

.faq__tab-content--q.close .icon-blue {
  display: none;
}

.faq__tab-content--q.close .icon-white {
  display: block;
}

.faq__tab-content--q.close .plus span {
  background-color: #fff;
}

.faq__tab-content--q.close .plus span:nth-of-type(2) {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .u-mobile_flex {
    display: none;
  }
}
.u-disp-flex {
  display: flex;
}

.u-disp-flex-dt {
  display: block;
}

@media screen and (min-width: 768px) {
  .u-disp-flex-dt {
    display: flex;
  }
}
.u-disp-flex-sp {
  display: flex;
}

@media screen and (min-width: 768px) {
  .u-disp-flex-sp {
    display: block;
  }
}
.banner {
  position: fixed;
  bottom: 0;
  background-color: #fff;
}
.banner .link-area {
  display: flex;
  align-items: center;
  background-color: var(--siro);
  padding: 0.5rem;
}
.banner .link-area .banner__cta {
  width: 65%;
  display: block;
}
.banner .link-area .banner__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1.3rem 0;
}

.fit__icon {
  width: 11.8rem;
}

.recommend__img1 {
  width: 59.51988rem;
  padding-bottom: 7.1rem;
}

.recommend__img2 {
  width: 55.01989rem;
  padding-bottom: 2.7rem;
}

.recommend__img3 {
  width: 61.11738rem;
  padding-bottom: 4.9rem;
}

.plan__icon1 {
  width: 7.4rem;
}

.plan__icon2 {
  width: 4.779rem;
}

.plan__icon3 {
  width: 6.167rem;
}

.plan__icon4 {
  width: 4.7rem;
}

.flow__img {
  width: 23.917rem;
}

.pc__icon {
  width: 9.8rem;
}

.mail__icon {
  width: 9.659rem;
}

.tel__icon1 {
  width: 8.124rem;
}

.tel__icon2 {
  width: 10.233rem;
}

.faq__img {
  width: 3.6rem;
  height: auto;
}

@media (max-width: 734px) {
  .fit__icon {
    width: 5.8rem;
  }
  .recommend__img1 {
    width: 15.3rem;
    padding-bottom: 0;
  }
  .recommend__img2 {
    width: 15.3rem;
    padding-bottom: 0;
  }
  .recommend__img3 {
    width: 15.3rem;
    padding-bottom: 0;
  }
  .plan__icon1 {
    width: 2.812rem;
  }
  .plan__icon2 {
    width: 1.938rem;
    height: 2.438rem;
  }
  .plan__icon3 {
    width: 2.5rem;
    height: 2.5rem;
  }
  .plan__icon4 {
    width: 1.905rem;
    height: 2.108rem;
  }
  .flow__img {
    width: 13.8rem;
  }
  .pc__icon {
    width: 5.494rem;
  }
  .mail__icon {
    width: 5.379rem;
  }
  .tel__icon1 {
    width: 4.149rem;
  }
  .tel__icon2 {
    width: 5.227rem;
  }
  .faq__img {
    width: 3.6rem;
    height: auto;
  }
}
.btn {
  background-color: #C2050F;
  padding: 2.8rem 8.9rem 2.8rem 8.9rem;
  color: #FFFFFF;
  font-size: 3.2rem;
  border-radius: 1rem;
}

.btn-b {
  background-color: #C2050F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.602rem;
  color: #FFFFFF;
  border-radius: 0.813rem;
  width: 36.508rem;
  height: 8.294rem;
  position: absolute;
  bottom: 0;
  text-decoration: none !important;
}

@media (max-width: 734px) {
  .btn {
    background-color: #C2050F;
    padding: 1.7rem 5.7rem;
    color: #FFFFFF;
    font-size: 1.985rem;
    border-radius: 0.62rem;
  }
  .btn-b {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.602rem;
    color: #FFFFFF;
    border-radius: 0.813rem;
    width: 100%;
    height: 6.3rem;
    position: relative;
    text-decoration: none !important;
  }
}
.plan__open {
  display: none;
}

.plan input[type=radio] {
  display: none;
}

.plan__tab-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: -0.3rem;
}

.plan__item {
  width: 49.7%;
}

/* 親 .plan__tab-area が #g2:checked を持っている場合 */
.plan__tab-area:has(#g2:checked) + .plan__open-area .g2-area {
  display: block;
}

.plan__tab-area:has(#g10:checked) + .plan__open-area .g10-area {
  display: block;
}

.plan input:checked ~ label {
  background: #fff;
  border: solid #91A3AF 4px;
  border-bottom: 0;
}

.plan__open-area {
  border: solid #91A3AF 4px;
  border-top: none;
}

.option__open {
  display: none;
}

.option input[type=radio] {
  display: none;
}

.option__tab-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: -0.3rem;
}

/* 親 .option__tab-area が #g2:checked を持っている場合 */
.option__tab-area:has(#op1:checked) + .option__open-area .op1-area {
  display: block;
}

.option__tab-area:has(#op2:checked) + .option__open-area .op2-area {
  display: block;
}

.option__tab-area:has(#op3:checked) + .option__open-area .op3-area {
  display: block;
}

.option__tab-area:has(#op4:checked) + .option__open-area .op4-area {
  display: block;
}

.option__tab-area:has(#op5:checked) + .option__open-area .op5-area {
  display: block;
}

.option__tab-area:has(#op6:checked) + .option__open-area .op6-area {
  display: block;
}

.option input:checked ~ label {
  color: #C2050F;
  border-bottom: solid 4px #C2050F;
  padding-bottom: 2rem;
}

.area__open {
  display: none;
}

.area input[type=radio] {
  display: none;
}

.area__tab-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: -0.3rem;
}

.area__item {
  width: 49.7%;
}

/* 親 .area__tab-area が #g2:checked を持っている場合 */
.area__tab-area:has(#a-g2:checked) + .area__open-area .a-g2-area {
  display: block;
}

.area__tab-area:has(#a-g10:checked) + .area__open-area .a-g10-area {
  display: block;
}

.area input:checked ~ label {
  background: #fff;
  border: solid #92A3AF 4px;
  border-bottom: 0;
}

.area input:checked ~ label.area__lab {
  background: transparent;
  border: none;
  border-bottom: 0;
}

.area__open-area {
  border: solid #92A3AF 4px;
  border-top: none;
}

.area input[type=checkbox] {
  display: none;
}
.area__answer {
  overflow: hidden;
}
.area__list {
  transform: translateY(-100%);
  z-index: 0;
  position: relative;
  transition: all 0.3s;
  max-height: 0;
}
.area__lab {
  position: relative;
  z-index: 1;
}
.area__lab::before, .area__lab::after {
  content: "";
  position: absolute;
  background-color: #030303;
  width: 2rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  right: 0;
  top: 3rem;
}
.area__lab::before {
  transform: rotate(90deg);
}
.area input:checked + .area__lab::before {
  display: none;
}
.area input:checked ~ .area__answer .area__list {
  transform: none;
  max-height: 50rem;
}

.faq input[type=radio] {
  display: none;
}

.faq__tab-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-bottom: -0.3rem;
}

.faq__tab-area:has(#faq1:checked) ~ .faq1-area {
  display: block;
}

.faq__tab-area:has(#faq2:checked) ~ .faq2-area {
  display: block;
}

.faq__tab-area:has(#faq3:checked) ~ .faq3-area {
  display: block;
}

.faq__tab-area:has(#faq4:checked) ~ .faq4-area {
  display: block;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: scroll;
  background: rgba(0, 0, 0, 0.6);
}
.modal b, .modal h4 {
  font-weight: bold;
}

.modal.active {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
}

.modal__content {
  position: relative;
  max-width: 700px;
  margin: 5% auto;
  background: #fff;
  z-index: 10000;
  padding: 40px 30px;
  /* 白い余白 */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  overflow: visible;
}

/* 閉じるボタン */
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 3.2rem;
  border: none;
  background: none;
  color: #333;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}

.modal__close:hover {
  color: #f33;
}

.campaign__box {
  background: #fff;
  border: 2px solid #8ca1b7;
  padding: 4rem 3rem;
  box-sizing: border-box;
}

.campaign__ttl {
  text-align: center;
  background: #8ca1b7;
  color: #fff;
  padding: 1rem 0;
  font-size: 1.9rem;
  margin-bottom: 3rem;
}

.campaign__list {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.campaign__list dt {
  font-weight: bold;
  border-left: 5px solid #557fa6;
  padding-left: 1rem;
  margin-bottom: 0.528rem;
}

.campaign__list dd {
  margin-left: 1.5rem;
  line-height: 1.6;
  color: #333;
}

.plan__campaign {
  margin-top: 8rem;
}

@media (max-width: 748px) {
  .campaign__list {
    font-size: 1.4rem;
  }
  .campaign__list dd {
    font-size: 1rem;
  }
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.mv {
  padding: 0;
  position: relative;
}

.mySwiper {
  width: 100%;
  overflow: visible;
  /* 両脇のスライドが見えるようにする */
}

.mv__txt {
  max-width: 34.4rem;
  margin: 0.8rem auto 0;
  height: 9.5rem;
}
.mv__txt p {
  font-size: 0.8rem;
}

.swiper-pagination {
  opacity: 0;
}

@media (min-width: 748px) {
  .swiper-pagination {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    transition: all 0.3s;
  }
  .swiper-pagination-bullet-active {
    background: #333;
    width: 16px;
    border-radius: 4px;
  }
  .swiper-pagination-bullet-active {
    background: #000 !important;
  }
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -1.5rem !important;
  }
  .area .area-contents {
    justify-content: space-between;
  }
  .swiper-slide {
    background: transparent;
  }
  .mv__txt {
    max-width: 102.4rem;
    margin: 0.8rem auto 0;
    height: 8rem;
  }
  .mv__txt p {
    font-size: 1rem;
  }
  .swiper-pagination {
    opacity: 1;
  }
}
.header {
  /*background-color: #333333;*/
  background-color: #75787b;
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: all 0.3s;
}
.header.active {
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}
.header.active .logo_svg-w {
  display: none;
}
.header.active .logo_svg {
  display: block;
}
.header .logo_svg-w {
  display: block;
}
.header .logo_svg {
  display: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin: 0 0 0 auto;
  height: 7.6rem;
}
.header__logo {
  text-align: center;
  font-size: 3.609rem;
  line-height: 2.5rem;
  color: #FFFFFF;
  width: 12rem;
}
.header__logo--hikari {
  font-size: 2.6rem;
}
.header__logo--hikari-s {
  font-size: 1.661rem;
}
.header__logo--power {
  font-size: 1.772rem;
}
.header__btn {
  display: flex;
  align-items: center;
}
.header__request {
  background-color: #C2050F;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 3.1rem;
  display: flex;
  align-items: center;
  height: 7.6rem;
  box-sizing: border-box;
}
.header__contact {
  background-color: #FFFFFF;
  height: 7.6rem;
  color: #333333;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 3.1rem;
  display: flex;
  align-items: center;
}
@media (max-width: 734px) {
  .header.active {
    background-color: #333333;
  }
  .header.active .logo_svg-w {
    display: block;
  }
  .header.active .logo_svg {
    display: none;
  }
  .header .logo_svg-w {
    display: block;
  }
  .header .logo_svg {
    display: none;
  }
  .header .header-inner {
    height: 4.2rem;
  }
  .header__logo {
    width: 7.5rem;
  }
  .header__logo--hikari {
    font-size: 1.5rem;
  }
  .header__logo--power {
    font-size: 0.807rem;
  }
  .header__logo--hikari-s {
    font-size: 0.756rem;
  }
  .header__request {
    background-color: #C2050F;
    color: #FFFFFF;
    font-size: 0.748rem;
    font-weight: bold;
    padding: 0 1.54rem;
    display: flex;
    align-items: center;
    height: 4.2rem;
    box-sizing: border-box;
  }
  .header__contact {
    height: 4.2rem;
    font-size: 0.748rem;
    font-weight: bold;
    padding: 0 1.19rem;
    display: flex;
    align-items: center;
  }
  .header__btn {
    display: none;
  }
}

@media (max-width: 734px) {
  .banner {
    position: fixed;
    bottom: 0;
    z-index: 1;
    padding: 0;
  }
  .banner .link-area {
    display: flex;
    align-items: center;
    background-color: #F4F0EA;
    padding: 0.8rem;
    font-size: 1.6rem;
  }
  .banner .link-area .banner__cta {
    width: 65%;
    display: block;
  }
  .banner .link-area .banner__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.08rem 1.12rem;
    border: #4A718A solid 2px;
    margin-left: 0.8rem;
  }
  .banner.banner-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .banner.banner-btn.show {
    opacity: 1;
    transform: translateY(0);
    z-index: 1000;
  }
}

@media screen and (min-width: 768px) {
  footer {
    padding: 4.25rem 0;
  }
}
footer {
  /*background-color: #333;*/
  background-color: #75787b;
  padding: 8rem 0;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 120rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}
.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}

.footer-top ul {
  flex-wrap: wrap;
  gap: 0.375rem 3.5rem;
  max-width: 37.5rem;
}

.footer-top ul li {
  width: calc(50% - 1.75rem);
}

@media screen and (min-width: 768px) {
  .footer-top ul {
    max-width: initial;
    justify-content: center;
  }
  .footer-top ul li {
    width: auto;
  }
}
.footer-top ul li {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .footer-btm {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3.875rem;
  }
}
.footer-btm {
  margin-top: 1.625rem;
  padding: 0 0.5rem;
}

@media screen and (min-width: 768px) {
  .footer-btm ul {
    gap: 0.75rem;
    margin-top: 0;
  }
}
.footer-btm ul {
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

.u-disp-flex {
  display: flex;
  font-size: 1.2rem !important;
}

.copyright {
  margin-top: 2.75rem;
  text-align: center;
}

footer a,
footer p {
  font-size: 1.2rem !important;
  color: #fff !important;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

@media (max-width: 734px) {
  footer {
    padding: 1rem 0;
  }
  footer .inner {
    box-sizing: border-box;
    padding: 3rem 2rem 5rem;
  }
  footer .footer-top ul.u-disp-flex {
    flex-flow: wrap;
  }
  footer .copyright {
    margin-top: 8.75rem;
  }
}

@media (max-width: 734px) {
  .inner {
    padding: 0;
  }
}
.footer__fitsworld {
  text-align: center;
  margin-top: 1rem;
}

.footer__fitsworld .outlink img {
  width: 0.8rem;
  display: inline;
}

@media screen and (min-width: 768px) {
  .footer-btm {
    margin-top: 1rem;
  }
}
@media (max-width: 734px) {
  .footer__fitsworld {
    text-align: left;
  }
}
#form {
  background-color: #EDEDED;
}
#form .header {
  background-color: #333333;
}
#form .header__logo {
  color: #FFFFFF;
}
#form main {
  padding: 24.8rem 14.4rem;
}
@media (max-width: 734px) {
  #form main {
    padding: 5.4rem 2.4rem;
  }
}
#form .form__contents {
  max-width: 115.4rem;
}
#form .form__remote {
  margin-top: 1rem;
  display: block;
  line-height: 1.3;
  font-size: 1.3rem;
}
#form .form__remote a {
  text-decoration: underline;
}
#form .form__ttl {
  font-size: 2.2rem;
  display: block;
  background-color: #686868;
  border-radius: 0.5rem;
  color: #fff;
  padding: 2.2rem 2.05rem;
}
#form .form .hisu {
  color: #FFFFFF;
  background-color: #C2050F;
  padding: 0.28rem 0.5em;
  border-radius: 0.575rem;
  margin-right: 1.78rem;
}
#form .form .ninni {
  color: #333333;
  border: #333333 solid 1px;
  padding: 0.28rem 0.5em;
  border-radius: 0.575rem;
  margin-right: 1.78rem;
}
#form .form label,
#form .form p {
  font-size: 1.8rem;
}
#form .form input[type=radio] {
  width: 3.8rem;
  height: 3.8rem;
  accent-color: #C5C5C5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* デフォルトの見た目を消す */
  border: 1px solid #C5C5C5;
  /* 外枠の線の色 */
  border-radius: 50%;
  background-color: #fff;
  /* ← この色が「線と中央の間の色」になる */
  position: relative;
  cursor: pointer;
}
#form .form input[type=radio]:checked::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: #C5C5C5;
  /* 中央の丸の色 */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#form .form input[type=text] {
  padding: 1.6rem 1rem;
  box-sizing: border-box;
  background-color: #C5C5C5;
  border: none;
  border-radius: 0.5rem;
  width: 100%;
}
#form .form input[type=tel] {
  padding: 1.6rem 1rem;
  box-sizing: border-box;
  background-color: #C5C5C5;
  border: none;
  border-radius: 0.5rem;
  width: 100%;
}
#form .form input[type=email] {
  padding: 1.6rem 1rem;
  box-sizing: border-box;
  background-color: #C5C5C5;
  border: none;
  border-radius: 0.5rem;
  width: 100%;
}
#form .form select {
  padding: 1.6rem 0.8rem;
  width: 100%;
  background-color: #C5C5C5;
  border: none;
  border-radius: 0.5rem;
}
#form .form__area {
  background-color: #FFFFFF;
  padding: 12.1rem 13.6rem;
}
#form .form__box {
  display: flex;
  align-items: center;
  margin-top: 1.95rem;
}
#form .form__cate {
  width: 50%;
}
#form .form__input {
  width: 50%;
}
#form .form__input--txt {
  font-size: 1.58rem;
}
#form .form__input--txtarea {
  width: calc(50% - 0.3rem);
}
#form .form__input--year {
  width: 100%;
  align-items: center;
  display: flex;
}
#form .form__input {
  display: flex;
  align-items: center;
}
#form .form__input--txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}
#form .form__input--year {
  display: flex;
  align-items: center;
  width: 50%;
}
#form .form__input--select {
  display: flex;
  align-items: center;
  width: 50%;
}
#form .form__input--city {
  width: 50%;
}
#form .form__radio {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}
#form .form__name {
  padding: 0.3rem;
}
#form .form__tel {
  width: 100%;
}
#form .form__tel.add-form {
  width: 50%;
}
#form .form__add {
  margin-top: 22.7rem;
}
#form .form__subttl {
  font-size: 2rem;
  margin-top: 8rem;
}
#form .form__tabarea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1.95rem;
}
#form .form__tabarea--choice {
  width: calc(50% - 2.03rem);
}
#form .form__tabarea--choice input[type=radio] {
  display: none;
}
#form .form__tabarea--choice input:checked ~ .form__imgarea {
  background-color: #FFF8ED;
  border: 2px #ff900f solid;
}
#form .form__imgarea {
  background-color: #FBFBFB;
  border: #686868 solid 2px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 39.9rem;
}
#form .form__imgarea img {
  width: 21.7rem;
}
#form .form__imgarea--txt {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 2rem;
}
#form .form__option {
  margin-top: 22.7rem;
}
#form .form__option input[type=radio] {
  content: "";
  width: 3rem;
  height: 3rem;
}
#form .form__option input[type=radio]:checked::after {
  content: "";
  background: #C2050F;
  width: 2rem;
  height: 2rem;
}
#form .form__option--box {
  margin-top: 1.95rem;
  margin-bottom: 5.1rem;
}
#form .form__option--txt {
  font-weight: bold;
  padding: 0.5rem 1.6rem;
  background-color: #F1F1F1;
  font-size: 2rem;
  display: inline-block;
}
#form .form__option--input {
  display: flex;
  align-items: center;
  gap: 3.4rem;
  margin-top: 1rem;
}
#form .form__option--radio {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
#form .form__option--comments {
  margin-top: 2.1rem;
  font-size: 1.7rem;
  line-height: 2rem;
}
#form .form__option--comments a {
  text-decoration: underline;
}
#form .form__day {
  margin-top: 12rem;
}
#form .form__day--radio {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
#form .form__day--radio input[type=radio] {
  width: 3.8rem;
  height: 3.8rem;
  border: 1px solid #C5C5C5;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  cursor: pointer;
  position: relative;
}
#form .form__day--radio input[type=radio]:checked::after {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: #C2050F;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#form .form__day--radio label {
  font-size: 1.8rem;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
#form .form__day--radio label select {
  padding: 1.2rem 0.8rem;
  background-color: #C5C5C5;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  width: 20%;
}
#form .form__day--input {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
}
#form .form__day--input label {
  width: 8rem;
  font-size: 2rem;
}
#form .form__day--input input[type=date] {
  padding: 1.2rem 1rem;
  background-color: #C5C5C5;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
}
#form .form__day--input select {
  padding: 1.2rem 0.8rem;
  background-color: #C5C5C5;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  width: 12rem;
}
#form .form__note {
  font-size: 1.4rem;
  color: #333;
  margin-top: 2rem;
  line-height: 2.2rem;
}
#form .form__send {
  margin-top: 8rem;
  background-color: #F1F1F1;
  padding: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
#form .form__send .form__ttl {
  font-size: 2rem;
  margin: 0;
}
#form .form__send label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
}
#form .form__send label input[type=radio] {
  width: 3rem;
  height: 3rem;
  border: 1px solid #C5C5C5;
  border-radius: 50%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
#form .form__send label input[type=radio]:checked::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: #C2050F;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 734px) {
  #form .form__remote {
    font-size: 1rem;
  }
  #form .form__area {
    background-color: #FFFFFF;
    padding: 4.2rem 1.5rem;
  }
  #form .form__ttl {
    font-size: 1.6rem;
    padding: 1rem 2.2rem;
    margin-bottom: 2.8rem;
  }
  #form .form label,
  #form .form p {
    font-size: 1.3rem;
  }
  #form .form__box {
    flex-flow: column;
    align-items: baseline;
    gap: 1rem;
  }
  #form .form input[type=radio] {
    width: 2rem;
    height: 2rem;
  }
  #form .form input[type=radio]:checked::after {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
  }
  #form .form input[type=text] {
    padding: 1.15rem 0.2rem;
  }
  #form .form__input--txt {
    width: 100%;
  }
  #form .form select {
    padding: 1.15rem 0.2rem;
  }
  #form .form__input--select {
    width: 100%;
  }
  #form .form__add, #form .form__option, #form .form__day {
    margin-top: 9.9rem;
  }
  #form .form__input--city {
    width: 100%;
  }
  #form .form__cate {
    width: 100%;
  }
  #form .form__imgarea {
    height: 14rem;
  }
  #form .form__imgarea img {
    width: 7.6rem;
  }
  #form .form__imgarea--txt {
    font-size: 0.75rem;
  }
  #form .form__tabarea--choice {
    width: calc(50% - 0.5rem);
  }
  #form .form__option--comments a {
    text-decoration: underline;
    font-size: 1.3rem;
  }
  #form .form__option--input {
    gap: 1rem;
  }
  #form .form__option--radio {
    gap: 0.5rem;
    width: auto;
  }
  #form .form__option--radio .w19 {
    width: 19.7rem;
  }
  #form .form__option--radio .w18 {
    width: 18rem;
  }
  #form .form__option__option--box {
    margin-bottom: 2.2rem;
  }
  #form .form__day .w9 {
    width: 9rem;
  }
  #form .form__day--radio label select {
    padding: 0.2rem 0.8rem;
  }
  #form .form__day--input input[type=date] {
    padding: 1rem 1rem;
  }
  #form .form__day select {
    padding: 0.7rem 0.2rem;
  }
  #form .form__day--input {
    gap: 1rem;
  }
  #form .form__send {
    flex-flow: wrap;
  }
  #form .form__send p {
    width: 100%;
    font-size: 1.6rem;
  }
  #form .form__send .form__radio {
    width: 46%;
    gap: 0.5rem;
    margin-right: 0;
  }
  #form .form__send label input[type=radio] {
    width: 2rem;
    height: 2rem;
  }
  #form .form__send label input[type=radio]:checked::after {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.form__confirmation--area {
  text-align: center;
  margin-top: 22.5rem;
}
.form__confirmation--area .form__confirmation--notice {
  font-size: 1.6rem;
  margin-bottom: 3.2rem;
}
.form__confirmation--area .form__confirmation--notice a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__confirmation--area .form__confirmation--notice .plus-icon {
  font-weight: bold;
  margin-right: 0.5rem;
  background: #000;
  color: #fff;
  box-sizing: border-box;
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__confirmation--area .form__confirmation--title {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 3.2rem;
}
.form__confirmation--area .form__confirmation--download {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
.form__confirmation--area .form__confirmation--download .btn--blue {
  background-color: #175176;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  padding: 3.2rem 10rem;
  border-radius: 0.4rem;
  font-weight: 400;
  line-height: 1.4;
  display: inline-block;
}
.form__confirmation--area .form__confirmation--agree {
  font-size: 1.6rem;
  margin: 5.6rem 0 11.8rem 0;
}
.form__confirmation--area .form__confirmation--agree .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  cursor: pointer;
}
.form__confirmation--area .form__confirmation--agree .checkbox input[type=checkbox] {
  display: none;
}
.form__confirmation--area .form__confirmation--agree .checkbox .checkmark {
  width: 2.2rem;
  height: 2.2rem;
  border: 2px solid #C5C5C5;
  border-radius: 0.2rem;
  position: relative;
}
.form__confirmation--area .form__confirmation--agree .checkbox input[type=checkbox]:checked + .checkmark {
  background: #fff;
  border-color: #ff900f;
}
.form__confirmation--area .form__confirmation--agree .checkbox input[type=checkbox]:checked + .checkmark::after {
  content: "?";
  color: #ff0000;
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form__confirmation--area .form__confirmation--buttons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 70%;
  margin: 0 auto;
}
.form__confirmation--area .form__confirmation--buttons .btn {
  font-size: 1.8rem;
  padding: 2.7rem 0;
  border-radius: 0.5rem;
  width: calc(50% - 2.4rem);
  font-weight: 400;
  border: none;
  cursor: pointer;
}
.form__confirmation--area .form__confirmation--buttons .btn--gray {
  background-color: #8E8E8E;
  color: #fff;
}
.form__confirmation--area .form__confirmation--buttons .btn--orange {
  background: #C2050F;
  color: #fff;
}
@media (max-width: 734px) {
  .form__confirmation--area {
    margin-top: 5rem;
  }
  .form__confirmation--area p {
    font-size: 1.5rem !important;
  }
  .form__confirmation--area .form__confirmation--title {
    font-size: 2rem;
    font-weight: 600;
  }
  .form__confirmation--area .form__confirmation--download {
    gap: 2rem;
  }
  .form__confirmation--area .form__confirmation--download .btn--blue {
    width: 50%;
    padding: 4.2rem 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    display: inline-block;
  }
  .form__confirmation--area .form__confirmation--agree p {
    font-size: 1.3rem !important;
    line-height: 2rem;
  }
  .form__confirmation--area .form__confirmation--buttons {
    gap: 1rem;
    width: 100%;
  }
  .form__confirmation--area .form__confirmation--buttons .btn {
    font-size: 1.1rem;
    padding: 1rem 0;
    width: calc(50% - 1.4rem);
  }
  .form__confirmation--area .form__confirmation--agree {
    font-size: 1.6rem;
    margin: 5.6rem 0 5.8rem 0;
  }
}

#confirmation {
  background-color: #EDEDED;
}
#confirmation .header {
  background-color: #333333;
}
#confirmation .header__logo {
  color: #FFFFFF;
}
#confirmation main {
  padding: 24.8rem 14.4rem;
}
@media (max-width: 734px) {
  #confirmation main {
    padding: 5.4rem 2.4rem;
  }
}
#confirmation .confirmation {
  padding: 0;
  margin-bottom: 8.3rem;
}
#confirmation .confirmation__ttl {
  font-size: 2.2rem;
  display: block;
  background-color: #686868;
  border-radius: 0.5rem;
  color: #fff;
  padding: 2.2rem 2.05rem;
}
#confirmation .confirmation__subttl {
  margin-bottom: 3.1rem;
}
#confirmation .confirmation__area {
  background-color: #FFFFFF;
  padding: 12.1rem 13.6rem;
}
#confirmation .confirmation__table {
  width: 100%;
  table-layout: fixed;
  text-align: left;
}
#confirmation .confirmation__table tr {
  border-top: #757575 solid 2px;
}
#confirmation .confirmation__table tr:last-child {
  border-bottom: solid 2px #757575;
}
#confirmation .confirmation__table th,
#confirmation .confirmation__table td {
  font-size: 2rem;
  font-weight: bold;
  padding: 1.3rem 1.7rem;
}
#confirmation .confirmation__table th {
  background-color: #C5C5C5;
}
#confirmation .confirmation__return-area {
  text-align: right;
  margin-top: 10rem;
  color: #DD0033;
  text-decoration: underline;
  font-size: 1.6rem;
}
#confirmation .confirmation__return {
  color: #DD0033;
  text-decoration: underline;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 734px) {
  #confirmation .confirmation__area {
    background-color: #FFFFFF;
    padding: 4.2rem 1.5rem;
  }
  #confirmation .confirmation__ttl {
    font-size: 1.6rem;
    padding: 1rem 2.2rem;
    margin-bottom: 2.8rem;
  }
  #confirmation .confirmation__subttl {
    font-size: 2.2rem;
  }
  #confirmation .confirmation__table tr {
    border: none;
  }
  #confirmation .confirmation__table tr:last-child {
    border-bottom: none;
  }
  #confirmation .confirmation__table th, #confirmation .confirmation__table td {
    font-size: 2rem;
    font-weight: bold;
    padding: 1.3rem 0;
    display: block;
    background-color: transparent;
  }
  #confirmation .confirmation__table th {
    font-size: 1.6rem;
    border-bottom: #C5C5C5 solid 2px;
  }
  #confirmation .confirmation__table td {
    font-size: 1.4rem;
    padding: 1.3rem 0 1.5rem;
    font-weight: 400;
  }
}
#confirmation .form__confirmation--agree {
  font-size: 1.6rem;
  margin: 5.6rem 0 11.8rem 0;
  text-align: center;
}
#confirmation .form__confirmation--agree p {
  font-size: 2.6rem;
  line-height: 3rem;
}
#confirmation .form__confirmation--agree .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  font-size: 2.6rem;
  cursor: pointer;
}
#confirmation .form__confirmation--agree .checkbox input[type=checkbox] {
  display: none;
}
#confirmation .form__confirmation--agree .checkbox .checkmark {
  width: 3rem;
  height: 3rem;
  border: 2px solid #000;
  border-radius: 0.2rem;
  position: relative;
  border-radius: 0.5rem;
}
#confirmation .form__confirmation--agree .checkbox input[type=checkbox]:checked + .checkmark {
  background: #fff;
  border-color: #ff900f;
}
#confirmation .form__confirmation--agree .checkbox input[type=checkbox]:checked + .checkmark::after {
  content: "?";
  color: #ff0000;
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 734px) {
  #confirmation .form__confirmation--agree p {
    font-size: 1.3rem;
    color: #DD0033;
  }
}
#confirmation .form__confirmation--buttons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 70%;
  margin: 0 auto;
}
#confirmation .form__confirmation--buttons .f-btn {
  font-size: 1.8rem;
  padding: 2.7rem 0;
  border-radius: 0.5rem;
  width: calc(50% - 2.4rem);
  font-weight: 400;
  border: none;
  cursor: pointer;
  text-align: center;
}
#confirmation .form__confirmation--buttons .f-btn--gray {
  background-color: #8E8E8E;
  color: #fff;
}
#confirmation .form__confirmation--buttons .f-btn--orange {
  background: linear-gradient(to bottom, #FFC273 0%, #FF9000 100%);
  color: #fff;
}
@media (max-width: 734px) {
  #confirmation .form__confirmation--buttons {
    gap: 1rem;
    width: 100%;
  }
  #confirmation .form__confirmation--buttons .form__confirmation--buttons .f-btn {
    font-size: 1.1rem;
    padding: 1rem 0;
    width: calc(50% - 1.4rem);
  }
  #confirmation .form__confirmation--buttons .form__confirmation--agree {
    font-size: 1.6rem;
    margin: 5.6rem 0 5.8rem 0;
  }
}

#thanks {
  background-color: #EDEDED;
}
#thanks .header {
  background-color: #333333;
}
#thanks .header__logo {
  color: #FFFFFF;
}
#thanks main {
  padding: 24.8rem 14.4rem;
}
@media (max-width: 734px) {
  #thanks main {
    padding: 5.4rem 2.4rem;
  }
}
#thanks .thanks {
  padding: 0;
  margin-bottom: 8.3rem;
}
#thanks .thanks__contents {
  max-width: 880px;
}
#thanks .thanks__ttl {
  font-size: 4rem;
  display: block;
  border-bottom: solid #FFA127 2px;
  margin-bottom: 6.1rem;
  padding-bottom: 1rem;
}
#thanks .thanks__subttl {
  margin-bottom: 3.1rem;
  line-height: 3.8rem;
}
#thanks .thanks__area {
  background-color: #FFFFFF;
  text-align: center;
}
#thanks .thanks__fubuki {
  background: url(../img/thanks-bg_pc.webp) no-repeat;
  background-size: contain;
  padding: 12.1rem 13.6rem 2rem;
  height: 59.1rem;
}
#thanks .thanks__img {
  width: 18rem;
  margin: 7.3rem auto;
}
#thanks .thanks__txt {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: bold;
}
#thanks .thanks__return-area {
  text-align: right;
  margin-top: 5rem;
  color: #DD0033;
  text-decoration: underline;
  font-size: 1.6rem;
  padding: 0.5rem 13.6rem 4.8rem 13.6rem;
}
#thanks .thanks__return {
  color: #DD0033;
  text-decoration: underline;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 734px) {
  #thanks .thanks__area {
    background-color: #FFFFFF;
  }
  #thanks .thanks__ttl {
    font-size: 2.4rem;
    margin: 4.8rem auto 2.8rem auto;
  }
  #thanks .thanks__subttl {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  #thanks .thanks__fubuki {
    background: url(../img/thanks-bg_sp.webp) no-repeat;
    background-size: contain;
    padding: 0;
    height: auto;
    padding: 3rem 2.2rem 1rem;
  }
  #thanks .thanks__img {
    width: 10rem;
    margin: 1.8rem auto;
  }
  #thanks .thanks__txt {
    font-size: 1.2rem;
    line-height: 2.4rem;
    font-weight: bold;
  }
  #thanks .thanks__return-area {
    text-align: right;
    margin-top: 3rem;
    color: #DD0033;
    text-decoration: underline;
    font-size: 1.6rem;
    padding: 1rem 2.2rem;
  }
  #thanks .thanks__return {
    color: #DD0033;
    text-decoration: underline;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
#thanks .form__confirmation--agree {
  font-size: 1.6rem;
  margin: 5.6rem 0 11.8rem 0;
  text-align: center;
}
#thanks .form__confirmation--agree p {
  font-size: 2.6rem;
  line-height: 3rem;
}
#thanks .form__confirmation--agree .checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
  font-size: 2.6rem;
  cursor: pointer;
}
#thanks .form__confirmation--agree .checkbox input[type=checkbox] {
  display: none;
}
#thanks .form__confirmation--agree .checkbox .checkmark {
  width: 3rem;
  height: 3rem;
  border: 2px solid #000;
  border-radius: 0.2rem;
  position: relative;
  border-radius: 0.5rem;
}
#thanks .form__confirmation--agree .checkbox input[type=checkbox]:checked + .checkmark {
  background: #fff;
  border-color: #ff900f;
}
#thanks .form__confirmation--agree .checkbox input[type=checkbox]:checked + .checkmark::after {
  content: "?";
  color: #ff0000;
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 734px) {
  #thanks .form__confirmation--agree p {
    font-size: 1.3rem;
    color: #DD0033;
  }
}
#thanks .form__confirmation--buttons {
  display: flex;
  justify-content: center;
  gap: 3rem;
  width: 70%;
  margin: 0 auto;
}
#thanks .form__confirmation--buttons .f-btn {
  font-size: 1.8rem;
  padding: 2.7rem 0;
  border-radius: 0.5rem;
  width: calc(50% - 2.4rem);
  font-weight: 400;
  border: none;
  cursor: pointer;
  text-align: center;
}
#thanks .form__confirmation--buttons .f-btn--gray {
  background-color: #8E8E8E;
  color: #fff;
}
#thanks .form__confirmation--buttons .f-btn--orange {
  background: linear-gradient(to bottom, #FFC273 0%, #FF9000 100%);
  color: #fff;
}
@media (max-width: 734px) {
  #thanks .form__confirmation--buttons {
    gap: 1rem;
    width: 100%;
  }
  #thanks .form__confirmation--buttons .form__confirmation--buttons .f-btn {
    font-size: 1.1rem;
    padding: 1rem 0;
    width: calc(50% - 1.4rem);
  }
  #thanks .form__confirmation--buttons .form__confirmation--agree {
    font-size: 1.6rem;
    margin: 5.6rem 0 5.8rem 0;
  }
}

@media screen and (min-width: 768px) {
  #contact .tokushoho-top,
  #contact .contact-top {
    padding: 1.75rem;
  }
}
#contact .tokushoho-top,
#contact .contact-top {
  background-color: #09153b;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  #contact .tokushoho-top__text,
  #contact .contact-top__text {
    font-size: 1.375rem;
  }
}
#contact .tokushoho-top__text,
#contact .contact-top__text {
  text-align: center;
  color: #9a9a9a;
  font-size: 0.8125rem;
}
#contact .section-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #contact .tokushoho .section-title__title,
  #contact .contact .section-title__title {
    font-size: 2.75rem;
  }
}
#contact .tokushoho .section-title__title,
#contact .contact .section-title__title {
  color: #fff;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  #contact .section-title__title {
    font-size: 2.5rem;
  }
}
#contact .section-title__title {
  display: inline-block;
  font-weight: 600;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  #contact .tokushoho-main,
  #contact .contact-main {
    padding: 3rem 0 6.25rem;
  }
}
#contact .tokushoho-main,
#contact .contact-main {
  padding: 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  #contact .inner {
    max-width: 75rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}
#contact .inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  #contact .tokushoho-main__top,
  #contact .contact-main__top {
    font-size: 1.5rem;
  }
}
#contact .tokushoho-main__top,
#contact .contact-main__top {
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  #contact .contact-form {
    padding: 2rem 2.25rem;
    max-width: 61.5625rem;
    margin-top: 3.625rem;
  }
}
#contact .contact-form {
  background-color: #fafafa;
  padding: 1.5rem 0.75rem;
  width: 100%;
  max-width: 26.25rem;
  margin: 1.5rem auto 0;
}
@media screen and (min-width: 768px) {
  #contact .form-block {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  #contact .form-block__label {
    font-size: 1.25rem;
    width: 15.1875rem;
  }
}
#contact .form-block__label {
  font-size: 1rem;
  line-height: 1;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  #contact .form-block__label .hissu {
    font-size: 0.75rem;
    padding: 0.21875rem 0.5rem 0.1875rem;
  }
}
#contact .form-block__label .hissu {
  background-color: #0178d8;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1;
  padding: 0.1875rem 0.4375rem 0.125rem;
}
@media screen and (min-width: 768px) {
  #contact .form-block__input {
    width: calc(100% - 15.1875rem);
    margin-top: 0;
  }
}
#contact .form-block__input {
  margin-top: 0.5rem;
  width: 100%;
}
#contact .doui-area {
  margin-top: 3rem 48px;
}
@media screen and (min-width: 768px) {
  #contact .doui-area__text {
    font-size: 1rem;
  }
}
#contact .doui-area__text {
  text-align: center;
  font-weight: 500;
  font-size: 0.75rem;
}
#contact .tokushoho-main__top a,
#contact .contact-main__top a,
#contact .doui-area__text a {
  color: #0178d8;
}
@media screen and (min-width: 768px) {
  #contact a {
    transition: 0.3s;
  }
}
#contact a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
#contact .doui-area .form-block__radio {
  width: 100% 913px;
  justify-content: center;
  margin-top: 0.625rem;
}
#contact .u-disp-flex {
  display: flex;
}
#contact .form-block__radio {
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  #contact .form-block__input {
    width: calc(100% - 15.1875rem);
    margin-top: 0;
  }
}
#contact .form-block__input {
  margin-top: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #contact .form-block__radio .radio {
    font-size: 1.25rem;
  }
}
#contact .form-block__radio .radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}
#contact .form-block__radio .radio input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #757575;
  border-radius: 50%;
  padding: 0;
}
#contact .form-block__input input,
#contact .form-block__input textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid #dddddd;
  padding: 0.75rem 1.125rem 0.625rem;
  font-size: 1rem;
}
#contact input[type=checkbox],
#contact input[type=radio],
#contact input[type=submit],
#contact input[type=button],
#contact label,
#contact button,
#contact select {
  cursor: pointer;
}
#contact input,
#contact button,
#contact select,
#contact textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}
#contact input[type=checkbox],
#contact input[type=radio],
#contact input[type=submit],
#contact input[type=button],
#contact label,
#contact button,
#contact select {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #contact .form-btn {
    width: 23.25rem;
  }
}
#contact .form-btn {
  display: block;
  text-align: center;
  font-weight: 500;
  color: #fff;
  background-color: #0178d8;
  border-radius: 36px;
  width: 20rem;
  padding: 1rem;
  font-size: 1rem;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  #contact footer {
    padding: 4.25rem 0;
  }
}
#contact footer {
  background-color: #333;
  padding: 1.75rem 0 2rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  #contact .inner {
    max-width: 75rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}
#contact .inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  #contact .footer-top ul li {
    width: auto;
  }
}
#contact .footer-top ul li {
  width: calc(50% - 1.75rem);
}
@media screen and (min-width: 768px) {
  #contact .footer-top ul li a {
    transition: 0.3s;
  }
}
#contact .footer-top ul li a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
@media screen and (min-width: 768px) {
  #contact .footer-btm {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3.875rem;
  }
}
#contact .footer-btm {
  margin-top: 1.625rem;
  padding: 0 0.5rem;
}

.mv {
  padding: 7.6rem 0 0 0;
  position: relative;
}
.mv__link {
  text-decoration: underline;
}
.mv__wrap img.pc {
  height: 50vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__contents {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.mv__txt {
  font-size: 3.6rem;
  margin-bottom: 2.5rem;
}
.mv__cta-area {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.372rem;
  z-index: 100;
}
.mv__cta--mail, .mv__cta--web {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.137rem;
  box-sizing: border-box;
  width: 55.628rem;
  height: 13.2rem;
}
.mv__cta--mail {
  background-color: #FFFFFF;
}
.mv__cta--web {
  background-color: #209B59;
}
.mv__web-img {
  display: block;
  margin-right: 5.554rem;
}
.mv__mail-img {
  display: block;
  margin-right: 1.7rem;
}
@media (max-width: 734px) {
  .mv {
    padding: 4.2rem 0 0 0;
  }
  .mv .mv__cta-area {
    flex-flow: column;
    gap: 2.42rem;
  }
  .mv .mv__cta--mail,
  .mv .mv__cta--web {
    width: 75%;
    height: 7.38rem;
  }
  .mv__txt {
    font-size: 1.671rem;
    margin-bottom: 1rem;
  }
  .mv__contents {
    text-align: center;
    bottom: -35.2rem;
  }
  .mv__web-img {
    margin-right: 2.554rem;
  }
}

.net {
  padding: 5rem 0;
  background: url(../img/net_bg_pc.webp) no-repeat;
  background-size: cover;
  background-position: bottom;
  height: 53.4rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
}
.net__contents {
  margin: 0 auto;
  background-color: #fff;
  box-sizing: border-box;
  padding: 6rem 6.5rem;
  position: relative;
}
.net__contents::after {
  content: "";
  position: absolute;
  background: url(../img/net__icon.webp) no-repeat;
  background-size: contain;
  width: 17rem;
  height: 19.4rem;
  top: -6rem;
  right: 0;
}
.net__ttl {
  font-size: 3.2rem;
  font-weight: 600;
}
.net__ttl::after {
  margin: 0;
}
.net__logo img {
  width: 16.7rem;
  margin-right: 2.9rem;
}
.net__txt {
  margin-bottom: 1.5rem;
}
.net__hikari {
  font-size: 3.88rem;
  padding: 0 1rem;
  color: #4A718A;
  font-weight: 600;
}
.net__hosoku {
  font-size: 1.2rem;
  line-height: 2rem;
}
@media (max-width: 734px) {
  .net {
    height: 27.1rem;
    justify-content: start;
    background: url(../img/net_bg_sp.webp) no-repeat;
    background-size: cover;
    padding: 3rem 0 7rem;
  }
  .net__contents {
    padding: 2.5rem 1.5rem;
  }
  .net .net__logo {
    display: block;
  }
  .net .net__logo img {
    width: 10.2rem;
    margin-right: 2.9rem;
    margin-bottom: 0.8rem;
  }
  .net__fits {
    font-size: 2.974rem;
  }
  .net__hikari {
    font-size: 1.827rem;
    padding: 0;
  }
  .net__ttl {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .net__txt {
    font-weight: 400;
  }
  .net__hosoku {
    font-size: 1rem;
    line-height: 2rem;
  }
}

.campaign__txt {
  font-size: 1.6rem;
}
@media (max-width: 734px) {
  .campaign__txt {
    font-size: 1.1rem;
    line-height: 2rem;
  }
}

.plan__contents {
  background-color: #fff;
  padding: 8rem 0;
}
.plan__subttl {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}
.plan__subttl::before {
  content: "";
  position: absolute;
  background-color: #4A718A;
  width: 5px;
  height: 100%;
  left: 0;
  top: 0;
  vertical-align: auto;
}
.plan table {
  width: 100%;
  font-size: 1.6rem;
}
.plan table tr {
  height: 6rem;
}
.plan table th {
  background-color: #d9d9d9;
}
.plan table th,
.plan table td {
  border: solid 2px #c2c2c2;
  vertical-align: middle;
  text-align: center;
}
.plan__table--tll {
  font-size: 2rem;
}
.plan__table--num {
  font-size: 2.7rem;
  font-weight: 300;
}
.plan__table--contents {
  margin-bottom: 7rem;
}
.plan__table--contents:last-child {
  margin-bottom: 0;
}
.plan__table--changecost th {
  width: 20.8rem;
}
.plan__price {
  font-size: 3.7rem;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.plan__price.red {
  font-size: 4.4rem;
}
.plan__txt {
  margin-top: 1.7rem;
}
@media (max-width: 734px) {
  .plan .plan__contents {
    background-color: transparent;
    padding: 0rem 0;
  }
  .plan .plan__subttl {
    font-size: 1.8rem;
  }
  .plan table {
    font-size: 1rem;
  }
  .plan .plan__price {
    font-size: 1.4rem;
  }
  .plan .plan__price.red {
    font-size: 1.7rem;
  }
  .plan .plan__table--num {
    font-size: 1.2rem;
    font-weight: 300;
  }
  .plan table tr {
    height: 4rem;
  }
  .plan .plan__table--changecost th {
    width: 11.8rem;
  }
}

.option {
  background-color: #fff;
}
.option__contents {
  background-color: #91a3af;
  padding: 7rem 0;
}
.option__ttl {
  color: #fff;
}
.option__ttl .ttl__sub {
  color: #fff;
}
.option__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
}
.option__grid--box {
  background-color: #fff;
  height: 18.1rem;
  width: 43rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option__grid--item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
}
.option__icon img {
  width: 5.6rem;
}
.option__txt-area h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.option__txt-area b {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}
.option__price {
  font-size: 2.4rem;
}
.option__txt {
  font-size: 1.4rem;
}
@media (max-width: 734px) {
  .option .option__contents {
    padding: 3rem 0;
  }
  .option .inner {
    max-width: 27.4rem;
  }
  .option .option__grid {
    grid-template-columns: 1fr;
    gap: 1rem 1rem;
  }
  .option .option__grid--box {
    height: 8.1rem;
    width: auto;
    justify-content: space-between;
    padding: 0 1.9rem;
  }
  .option .option__icon img {
    width: 4rem;
  }
  .option .option__txt-area h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  .option .option__txt {
    font-size: 1rem;
  }
  .option .option__price {
    font-size: 1.2rem;
  }
  .option .option__txt-area b {
    margin-bottom: 0.6rem;
    font-size: 1rem;
  }
}

.recom {
  background-color: #fff;
}
.recom__inner {
  width: 102.4rem;
  margin: 0 auto;
}
.recom__subttl {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 5rem;
}
.recom__num {
  vertical-align: middle;
  margin-right: 2rem;
}
.recom__num img {
  width: 6.1rem;
}
.recom__sirabe {
  font-size: 0.5em;
}
.recom__box {
  height: 57.7rem;
  margin-bottom: 7.2rem;
  position: relative;
}
.recom__box.left {
  background: linear-gradient(90deg, #d9d9d9 0%, #d9d9d9 85.1rem, transparent 85.1rem, transparent 100%);
}
.recom__box.left:first-child img.recom__img-r {
  position: absolute;
  width: 65.774rem;
  height: 50.7rem;
  right: -4.2rem;
  top: 2.5rem;
}
.recom__box.left img.recom__img-r {
  position: absolute;
  width: 65.3rem;
  height: 49.6rem;
  right: -4.2rem;
  top: 4.7rem;
}
.recom__box.left .recom__txt-area {
  left: 7.2rem;
}
.recom__box.right {
  background: linear-gradient(90deg, transparent 0%, transparent 17.3rem, #d9d9d9 17.3rem, #d9d9d9 100%);
}
.recom__box.right img.recom__img-l.right_img {
  position: absolute;
  width: 63.7rem;
  height: 55.6rem;
  left: -2.2rem;
}
.recom__box.right img.recom__img-l.left_img {
  position: absolute;
  width: 76.6rem;
  height: 57rem;
  left: -8.6rem;
  top: 1.6rem;
}
.recom__box.right .recom__txt-area {
  right: 7.2rem;
}
.recom__txt-area {
  position: absolute;
  width: 55.7rem;
  height: 38.3rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-flow: column;
  z-index: 100;
  top: 10.6rem;
  padding: 6rem;
  box-sizing: border-box;
}
.recom__txt {
  font-size: 2.4rem;
  line-height: 3rem;
}
@media (max-width: 734px) {
  .recom .recom__box.left {
    background: linear-gradient(90deg, #d9d9d9 0%, #d9d9d9 27.2rem, transparent 27.2rem, transparent 100%);
  }
  .recom .recom__box.right {
    background: linear-gradient(90deg, transparent 0%, transparent 6.9rem, #d9d9d9 6.9rem, #d9d9d9 100%);
  }
  .recom .recom__box {
    height: 22.2rem;
    margin-bottom: 1.5rem;
  }
  .recom .recom__txt-area {
    width: 22.1rem;
    height: 15.2rem;
    top: 3.5rem;
    padding: 1.8rem;
  }
  .recom .recom__num img {
    width: 2.6rem;
  }
  .recom .recom__subttl {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }
  .recom .recom__txt {
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: normal;
  }
  .recom .recom__box.left:first-child img.recom__img-r {
    position: absolute;
    width: 25.626rem;
    height: 19.527rem;
    right: -1.7rem;
    top: 0.9rem;
  }
  .recom .recom__box.left img.recom__img-r {
    position: absolute;
    width: 25.6rem;
    height: 18.8rem;
    right: -1.7rem;
    top: 1.7rem;
  }
  .recom .recom__box.right img.recom__img-l.right_img {
    position: absolute;
    width: 24.7rem;
    height: 21.416rem;
    left: -0.7rem;
  }
  .recom .recom__box.right img.recom__img-l.left_img {
    position: absolute;
    width: 25rem;
    height: 21.416rem;
    left: -2.8rem;
    top: 0.6rem;
  }
  .recom .recom__inner {
    width: 34.2rem;
    margin: 0 auto;
  }
  .recom .recom__box.left .recom__txt-area {
    left: 1.6rem;
  }
  .recom .recom__box.right .recom__txt-area {
    right: 1.6rem;
  }
  .recom .recom__num {
    vertical-align: middle;
    margin-right: 0.3rem;
  }
}

.flow {
  background-color: #fff;
}
.flow__contents {
  width: 102.4rem;
}
.flow .inner {
  padding: 6.9rem 0;
}
.flow__radio {
  width: 88rem;
  margin: 0 auto;
  display: flex;
}
.flow__radio label {
  width: 44rem;
  height: 8.6rem;
  background-color: #d9d9d9;
  font-size: 2.5rem;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  border-radius: 1rem 1rem 0 0;
  text-align: center;
}
.flow__radio label span {
  margin-top: 1rem;
  display: block;
  font-size: 1.5rem;
}
.flow__box {
  border: solid 3px #91a3af;
}
.flow {
  /* 両方非表示 */
}
.flow .flow__box {
  display: none;
}
.flow {
  /* ラジオを非表示 */
}
.flow input[type=radio] {
  display: none;
}
.flow {
  /* プラン1 */
}
.flow .flow__radio:has(#flow1:checked) ~ .flow__area .flow__box.new {
  display: block;
}
.flow {
  /* プラン2 */
}
.flow .flow__radio:has(#flow2:checked) ~ .flow__area .flow__box.change {
  display: block;
}
.flow {
  /* プラン1が選ばれているとき、1つ目のlabelを着色 */
}
.flow .flow__radio:has(#flow1:checked) label:first-child {
  background-color: #91a3af;
}
.flow {
  /* プラン2が選ばれているとき、2つ目のlabelを着色 */
}
.flow .flow__radio:has(#flow2:checked) label:last-child {
  background-color: #91a3af;
}
.flow {
  /* 見出し */
}
.flow__subttl {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  padding-left: 1.4rem;
  width: 75.7rem;
  margin: 0 auto;
}
.flow__subttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #4A718A;
}
.flow__subttl--sub {
  display: block;
  font-size: 1.8rem;
  color: #555;
  margin-top: 0.4rem;
  margin-bottom: 3.4rem;
}
.flow {
  /* 数字ライン */
}
.flow__stepline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 68.1rem;
  margin: 0 auto;
  margin-bottom: 4.6rem;
}
.flow__stepline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #91a3af;
  z-index: 0;
}
.flow__stepline span {
  width: 4.8rem;
  height: 4.8rem;
  font-size: 2.4rem;
  background: #91a3af;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.flow {
  /* フロー本体 */
}
.flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 82.7rem;
  margin: 0 auto 5rem auto;
}
.flow__item {
  text-align: center;
}
.flow__icon {
  width: 6.18rem;
  margin: 0 auto;
  margin-bottom: 1.2rem;
}
.flow__item--ttl {
  font-size: 2rem;
}
.flow__item--ttl span {
  display: block;
  margin-bottom: 4px;
}
.flow__txt {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #555;
  display: block;
}
.flow__area--wrap {
  background-color: #f7f7f7;
}
.flow__area--inner {
  width: 81.4rem;
  margin: 0 auto;
  padding: 5rem 0;
}
.flow__area--inner.change {
  padding: 2rem 0;
  margin-bottom: 5rem;
}
.flow__area--ttl {
  font-size: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5rem;
}
.flow__area--pin {
  vertical-align: middle;
  padding-right: 1.4rem;
}
.flow__area--number {
  background-color: #fff;
  height: 17.8rem;
  width: 34.5rem;
  box-sizing: border-box;
  padding: 0 1.9rem;
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: left;
  align-items: baseline;
}
.flow__area--subttl {
  font-size: 2rem;
  margin-bottom: 0;
  margin-bottom: 0.3rem;
}
.flow__area--tel {
  font-size: 2.4rem;
  font-family: "Fjalla One", sans-serif;
  display: block;
  margin-bottom: 1rem;
}
.flow__area--info {
  font-size: 1.4rem;
  line-height: 2rem;
  margin-bottom: 0.3rem;
}
.flow__area--url {
  font-size: 1.4rem;
  text-decoration: underline;
}
.flow__pin {
  width: 3.3rem;
}
.flow__btn--area {
  display: flex;
  justify-content: space-between;
}
.flow__btn--area.change {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.flow__btn {
  background-color: #91a3af;
  width: 39.1rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.8rem;
  position: relative;
}
.flow__btn::after {
  content: "";
  position: absolute;
  right: 0.3rem;
  bottom: 0.3rem;
  background: url(../img/sankaku.svg) no-repeat;
  width: 2.21rem;
  height: 2.31rem;
  display: inline-block;
}
.flow__chusyaku {
  width: 82.7rem;
  margin: 0 auto;
}
.flow__chui {
  font-size: 1.6rem;
  line-height: 3rem;
}
@media (max-width: 734px) {
  .flow .inner {
    max-width: 30.9rem;
    padding: 2.9rem 0;
  }
  .flow .flow__radio {
    width: 32rem;
  }
  .flow .flow__radio label {
    width: 16rem;
    height: 4.5rem;
    font-size: 1.2rem;
    border-radius: 0.3rem 0.3rem 0 0;
  }
  .flow .flow__radio label span {
    margin-top: 0.5rem;
    display: block;
    font-size: 0.8rem;
  }
  .flow .flow__subttl {
    font-size: 1.2rem;
    padding-left: 1rem;
    width: 30.9rem;
  }
  .flow .flow__subttl--sub {
    font-size: 1rem;
    margin-bottom: 2.4rem;
  }
  .flow .flow__stepline {
    width: 1.9rem;
    flex-flow: column;
    height: 16.69rem;
    transform: translateY(0.8rem);
    margin-left: 1rem;
  }
  .flow .flow__stepline span {
    width: 2.85rem;
    height: 2.85rem;
    font-size: 1.4rem;
  }
  .flow .flow__icon {
    margin: auto 0;
  }
  .flow .flow__icon img {
    width: 2.3rem;
  }
  .flow .flow__item--ttl {
    margin-bottom: 0;
    font-size: 1.1rem;
    text-align: left;
    font-weight: bold;
    height: 4rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    font-size: 1.4rem;
  }
  .flow .flow__item--ttl span {
    font-weight: normal;
  }
  .flow .flow__txt {
    font-size: 1.2rem;
    color: #555;
  }
  .flow .flow__steps {
    width: 31rem;
    margin: 0px auto 3rem auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .flow .flow__item {
    display: flex;
    align-items: center;
  }
  .flow .flow__area--inner {
    width: 28.5rem;
    margin: 0 auto 2rem auto;
    padding: 2rem 0;
  }
  .flow .flow__btn {
    width: 100%;
    height: 4.2rem;
    font-size: 1.6rem;
  }
  .flow .flow__pin {
    width: 1.15rem;
  }
  .flow .flow__area--ttl {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
  }
  .flow .flow__chusyaku {
    width: 30.2rem;
    margin: 0 auto;
    font-size: 1rem;
  }
  .flow__chui {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .flow .flow__btn--area.change {
    display: flex;
    justify-content: center;
    flex-flow: column;
    gap: 1rem;
  }
  .flow .flow__area--number {
    background-color: #fff;
    height: 12.2rem;
    width: 29rem;
    padding: 0 1.5rem;
  }
  .flow .flow__area--subttl {
    font-size: 1.4rem;
  }
  .flow .flow__area--tel {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .flow .flow__area--info {
    font-size: 1.2rem;
    line-height: 1.7rem;
  }
  .flow .flow__area--url {
    font-size: 1.2rem;
  }
  .flow__sp--flow {
    display: flex;
  }
  .flow .flow__stepline::before {
    content: "";
    position: absolute;
    left: 50%;
    right: 0;
    top: 0;
    height: 16.69rem;
    background: #91a3af;
    z-index: 0;
    width: 2px;
  }
  .flow .flow__btn--area {
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    gap: 1.1rem;
  }
}

.faq {
  background: #f7f7f7;
}
.faq__contents.contents {
  max-width: 114.8rem;
}
.faq__subttl {
  font-size: 3.2rem;
  margin: 5rem 0 1.5rem 0;
  padding-left: 1.6rem;
  position: relative;
}
.faq__subttl::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 100%;
  left: 0;
  top: 0.2rem;
  bottom: 0;
  background-color: #4A718A;
}
.faq__subttling {
  margin: 3rem 0 1rem 0;
  font-size: 2.4rem;
  color: #4b728b;
  display: block;
}
.faq__border {
  border: #000 solid 1px;
  padding: 1rem;
  display: inline-block;
  margin: 1rem 0;
}
.faq__txt {
  font-size: 1.6rem;
  line-height: 180%;
}
.faq__flex {
  display: flex;
  border-bottom: 1px solid #000;
}
.faq__flex.top {
  border-top: 1px solid #000;
}
.faq__flex--ttl {
  width: 40%;
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
}
.faq__flex--txt {
  width: 60%;
}
.faq__box--gray {
  text-align: center;
  background-color: #d9d9d9;
  padding: 1.7rem 0;
  margin-top: 1rem;
}
.faq__s-flex {
  display: flex;
}
.faq__s-flex--ttl {
  width: 13rem;
}
.faq__s-flex--txt {
  padding-left: 1.3rem;
  position: relative;
}
.faq__s-flex--txt::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 70%;
  top: 0.6rem;
  bottom: 0;
  left: 0;
  background-color: #000;
}
.faq__bold {
  margin: 3rem 0 1rem 0;
  font-size: 1.6rem;
  display: block;
  font-weight: bold;
}
.faq__f-flex {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: center;
}
.faq__f-flex--ttl {
  width: 20rem;
}
.faq__f-flex--txt {
  padding-left: 1.3rem;
  position: relative;
}
.faq__f-flex--txt::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 90%;
  top: 0.6rem;
  bottom: 0;
  left: 0;
  background-color: #000;
}
.faq__iptxt {
  line-height: 3rem;
  margin-top: 2rem;
}
.faq__contact {
  margin-top: 2rem;
  text-align: center;
  font-weight: bold;
}
.faq__contact a {
  text-decoration: underline;
}
.faq input[type=checkbox] {
  display: none;
}
.faq__items {
  width: calc(25% - 2rem);
}
.faq__items label {
  display: block;
  height: 7.3rem;
  background-color: #fff;
  border: #d9d9d9 solid 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.faq__lab {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #d6d6d6;
  padding: 2rem 2rem;
}
.faq__answer {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  padding: 0.5rem 2rem;
  background-color: #fff;
}
.faq__answer {
  height: 0;
  opacity: 0;
  transition: all 0.3s;
}
.faq__answer span {
  transition: all 0.3s;
}
.faq .m-q,
.faq .m-a {
  margin-top: 0.5rem;
  display: block;
}
.faq .faq__lab {
  position: relative;
}
.faq .faq__lab::before, .faq .faq__lab::after {
  content: "";
  position: absolute;
  background-color: #030303;
  width: 2rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  right: 2.7rem;
  top: 4rem;
}
.faq .faq__lab::before {
  transform: rotate(90deg);
}
.faq input:checked + .faq__lab::before {
  display: none;
}
.faq input:checked ~ .faq__answer {
  height: auto;
  opacity: 1;
  display: flex;
  padding: 2rem;
}
@media (max-width: 734px) {
  .faq__contents.contents {
    max-width: 34.2rem;
  }
  .faq {
    padding: 5.2rem 0;
  }
  .faq__subttl {
    font-size: 1.6rem;
    margin: 5rem 0px 4.1rem 0;
  }
  .faq__subttling {
    font-size: 1.2rem;
  }
  .faq .faq__lab::before,
  .faq .faq__lab::after {
    content: "";
    position: absolute;
    background-color: #030303;
    width: 2rem;
    height: 0.1rem;
    display: flex;
    align-items: center;
    right: 2.7rem;
    top: 4.7rem;
  }
  .faq .faq__ques {
    width: 71%;
    font-size: 1.2rem;
    line-height: 170%;
  }
  .faq .faq__tab-area {
    flex-flow: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: -0.3rem;
    gap: 0.9rem;
  }
  .faq .faq__items {
    width: calc(50% - 0.9rem);
  }
  .faq .faq__items label {
    font-size: 1.2rem;
    height: 4.6rem;
  }
  .faq .faq__txt {
    font-size: 1.2rem;
    line-height: 148%;
  }
  .faq .faq__box--gray {
    padding: 1.7rem 1rem;
    margin-top: 1rem;
    font-size: 1rem;
  }
  .faq .faq__border {
    padding: 0.5rem 1rem;
  }
  .faq .faq__f-flex {
    margin-bottom: 1.5rem;
    flex-flow: column;
    align-items: baseline;
  }
  .faq .faq__f-flex--txt {
    padding-left: 0;
    position: relative;
    font-size: 1rem;
  }
  .faq .faq__f-flex--ttl {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .faq .faq__f-flex--txt::after {
    content: "";
    position: absolute;
    width: 11rem;
    height: 1px;
    top: -0.9rem;
    bottom: 0;
    left: 0;
    background-color: #000;
  }
  .faq .faq__s-flex--ttl {
    width: 10rem;
  }
  .faq .faq__bold {
    font-size: 1rem;
  }
  .faq .faq__iptxt {
    line-height: 1.5rem;
    margin-top: 2rem;
  }
  .faq .faq__contact {
    margin-top: 2rem;
    font-size: 1rem;
  }
  .faq .faq__flex {
    display: flex;
    border-bottom: 1px solid #000;
    flex-flow: column;
  }
  .faq .faq__flex.top {
    border-top: transparent;
  }
  .faq .faq__flex--ttl {
    width: 100%;
    align-items: center;
    padding-left: 0rem;
    text-align: center;
    font-size: 1rem;
    justify-content: center;
    margin: 1rem 0;
  }
  .faq .faq__flex--txt {
    width: 100%;
    font-size: 1rem;
    padding-bottom: 1rem;
  }
}

/* 初期状態：faq__flexを非表示 */
.faq__answer .faq__txt {
  display: none;
}

/* チェックが入ったら表示 */
.faq__item input[type=checkbox]:checked ~ .faq__answer .faq__txt {
  display: block;
}

.attention__wrap {
  width: 100%;
  margin: 0 auto;
  font-family: sans-serif;
}
.attention__dropdown {
  margin-bottom: 2rem;
}
.attention__dropdown input {
  display: none;
}
.attention__dropdown .attention__ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d9d9d9;
  padding: 1.4rem 1.5rem;
  font-size: 3rem;
  font-weight: 400;
  cursor: pointer;
  position: relative;
}
.attention__dropdown .attention__ttl::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #444;
  border-bottom: 2px solid #444;
  transform: rotate(45deg);
  transition: 0.3s;
  position: absolute;
  right: 1.5rem;
}
.attention__dropdown {
  /* 矢印回転 */
}
.attention__dropdown input:checked + .attention__ttl::after {
  transform: rotate(-135deg);
}
.attention__dropdown .attention__content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  padding: 0 1.5rem;
  transition: max-height 0.3s ease;
}
.attention__dropdown .attention__content p {
  line-height: 3rem;
}
.attention__dropdown .attention__content a {
  color: blue;
}
.attention__dropdown {
  /* 開閉 */
}
.attention__dropdown input:checked ~ .attention__content {
  padding: 4.5rem;
  max-height: 200rem;
}
@media (max-width: 734px) {
  .attention .attention__ttl {
    font-size: 1.6rem;
    padding: 1rem 0.7rem;
  }
  .attention .attention__dropdown .attention__ttl::after {
    content: "";
    width: 5px;
    height: 5px;
    border-right: 2px solid #444;
    border-bottom: 2px solid #444;
    transform: rotate(45deg);
    transition: 0.3s;
    position: absolute;
    right: 1.5rem;
  }
  .attention .attention__dropdown input:checked ~ .attention__content {
    padding: 1.5rem;
  }
  .attention .attention__dropdown .attention__content p {
    line-height: 2rem;
  }
  .attention .attention__dropdown input:checked ~ .attention__content {
    max-height: 220rem;
  }
}