@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: #fff;
}
html body {
  color: #030303;
  background-color: #FFFFFF;
}
html body section {
  width: 100%;
  padding: 9.2rem 0;
}
html body .contents {
  max-width: 102.5rem;
  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.8rem;
  font-weight: bold;
}
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: 34rem;
    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__open {
  display: none;
}

.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;
}

.faq input:checked ~ label {
  border: solid 4px #C2050F;
}

.fit {
  /* 閉じるボタン */
}
.fit .modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: scroll;
  background: rgba(0, 0, 0, 0.6);
}
.fit .modal b, .fit .modal h4 {
  font-weight: bold;
}
.fit .modal.active {
  display: block;
}
.fit .modal__overlay {
  position: absolute;
  inset: 0;
}
.fit .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;
}
.fit .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;
}
.fit .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;
  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);
  }
}

@media screen and (min-width: 768px) {
  footer {
    padding: 4.25rem 0;
  }
}
footer {
  background-color: #333;
  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;
  }
}
#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: linear-gradient(to bottom, #FFFFFF 50%, rgba(217, 217, 217, 0) 60%, #E8EDF0 100%);
  height: 53.4rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.net__contents {
  margin: 0 auto;
  background-color: #fff;
  box-sizing: border-box;
  padding: 1.8rem 7.3rem 5rem 7.3rem;
  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;
}
.net__ttl::after {
  margin: 0;
}
.net__fits {
  font-size: 6.37rem;
  font-weight: 600;
  color: #4A718A;
}
.net__hikari {
  font-size: 3.88rem;
  padding: 0 1rem;
  color: #4A718A;
  font-weight: 600;
}
@media (max-width: 734px) {
  .net {
    height: 29.1rem;
    justify-content: start;
  }
  .net__contents {
    padding: 1.5rem;
  }
  .net__contents::after {
    content: "";
    position: absolute;
    background: url(../img/net__icon.webp) no-repeat;
    background-size: contain;
    width: 8.7rem;
    height: 9.9rem;
    top: -3rem;
    right: 2rem;
  }
  .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;
  }
}

.fit {
  background-color: #D6D6D6;
}
.fit__crad {
  padding: 4.1rem 5.2rem 4.2rem 5.2rem;
  background-color: #FFFFFF;
  margin-bottom: 4.9rem;
}
.fit__ttl {
  margin-bottom: 6.2rem;
  font-size: 3.2rem;
}
.fit__ttl .ttl_sub {
  font-size: 2.4rem;
  color: #333333;
  font-weight: 400;
  margin-top: 2.2rem;
  display: block;
}
.fit__icon--area {
  display: flex;
  justify-content: space-between;
}
.fit__icon--imgarea {
  height: 10.3rem;
}
.fit__icon--box {
  text-align: center;
}
.fit__icon--box span {
  margin-top: 1.7rem;
  font-size: 1.8rem;
  display: block;
}
@media (max-width: 734px) {
  .fit__crad {
    padding: 3.8rem 1.4rem;
  }
  .fit__ttl {
    margin-bottom: 3.4rem;
  }
  .fit__ttl::after {
    margin: 0 auto;
    right: 0;
    bottom: -2.4rem;
  }
  .fit .fit_ttl {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .fit .fit_ttl .fit_orange {
    font-size: 2.008rem;
  }
  .fit .fit_ttl .ttl_sub {
    font-size: 1.4rem;
    margin-top: 1.5rem;
  }
  .fit__icon--area {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
    margin-bottom: 2.3rem;
  }
  .fit__icon--box {
    width: 25%;
  }
  .fit__icon--box span {
    font-size: 1.1rem;
  }
  .fit__icon--box:nth-of-type(n+5) {
    margin-top: 3rem;
  }
  .fit__icon--imgarea {
    height: 4.3rem;
  }
}

.recommend__subttl {
  margin-bottom: 0.8rem;
}
.recommend__txt-area {
  position: relative;
  z-index: 1;
}
.recommend__txt-area::after {
  z-index: -1;
  position: absolute;
  right: -5rem;
  top: -7rem;
  font-family: Fjalla One;
  font-size: 16.6rem;
  color: #D6D6D6;
}
.recommend .flex_center {
  justify-content: center;
}
.recommend .flex_center:nth-of-type(1) {
  gap: 4rem;
  padding-left: 8rem;
}
.recommend .flex_center:nth-of-type(2) {
  gap: 12.6rem;
  padding-right: 9rem;
}
.recommend .flex_center:nth-of-type(3) {
  gap: 7.6rem;
  padding-left: 8rem;
}
.recommend .recommend__l-contents {
  height: 35.4rem;
}
.recommend .recommend__l-contents:nth-of-type(1) .recommend__txt-area::after {
  position: absolute;
  content: "01";
}
.recommend .recommend__l-contents:nth-of-type(3) .recommend__txt-area::after {
  position: absolute;
  content: "03";
}
.recommend .recommend__r-contents .recommend__txt-area::after {
  position: absolute;
  content: "02";
}
.recommend .recommend__r-contents {
  margin: 6rem 0 6rem auto;
  height: 35.4rem;
}
@media (max-width: 734px) {
  .recommend {
    overflow-X: hidden;
  }
  .recommend .flex_center:nth-of-type(1),
  .recommend .flex_center:nth-of-type(3) {
    gap: 3rem;
    padding-left: 3.3rem;
  }
  .recommend .flex_center:nth-of-type(2) {
    gap: 3rem;
    padding-right: 2rem;
    margin: 3rem 0 3rem auto;
  }
  .recommend .recommend__l-contents {
    height: 13.2rem;
    background: linear-gradient(to right, #F3F3F3 0, #F3F3F3 35.2rem, transparent 35.2rem, transparent 100%);
  }
  .recommend .recommend__r-contents {
    height: 13.2rem;
    background: linear-gradient(to left, #F3F3F3 0, #F3F3F3 35.2rem, transparent 35.2rem, transparent 100%);
  }
  .recommend__subttl {
    margin-bottom: 1.3rem;
    line-height: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .recommend .recommend__txt-area::after {
    position: absolute;
    right: -3rem;
    top: -2rem;
    font-size: 5.4rem;
  }
  .recommend .recommend__r-contents .recommend__txt-area::after {
    position: absolute;
    content: "02";
    right: 2rem;
  }
  .recommend .recommend__l-contents:nth-of-type(3) .recommend__txt-area::after {
    position: absolute;
    right: 0rem;
    content: "03";
  }
}

.plan {
  background: #F7F7F7;
}
.plan label {
  font-size: 2.9rem;
  padding: 2rem 0 2.6rem 0;
  background: #D9D9D9;
  display: block;
}
.plan__open {
  padding: 5.5rem 6.5rem;
}
.plan__merit-area {
  background-color: #F2F2F1;
  display: flex;
  justify-content: space-between;
  padding: 4rem 4.7rem;
  border-radius: 1.1rem;
  gap: 4.6rem;
  margin-top: 3.3rem;
}
.plan__price {
  font-size: 7.6rem;
  margin-top: 1rem;
  display: block;
}
.plan__price__area {
  width: 34%;
}
.plan__zeikomi {
  display: block;
  font-size: 2.26rem;
  text-align: right;
}
.plan__txt {
  width: 85.4rem;
  margin: 0 auto;
  font-size: 1.7rem;
}
.plan__txt--chusyaku {
  font-size: 1.4rem;
}
.plan__picup {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 2rem;
  width: 65.9rem;
}
.plan__picup--box {
  width: 25.4rem;
}
.plan__picup--flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12.7rem;
  background-color: #FFFFFF;
  border-radius: 0.7rem;
  padding: 0 3rem;
}
.plan__picup--imgarea {
  width: 35%;
}
.plan__picup--txtarea {
  position: relative;
}
.plan__chusyaku {
  position: absolute;
  right: -1.4rem;
  top: 2rem;
  font-size: 1.2rem;
}
.plan__muryou {
  font-size: 5.26rem;
}
.plan__zimute {
  font-size: 4rem;
  display: block;
  margin: 1rem 0 0.5rem;
}
.plan__kikan {
  font-size: 2.29rem;
  display: block;
  margin: 1rem 0 0.5rem;
}
.plan__kousin {
  display: block;
  font-size: 1.5rem;
}
@media (max-width: 734px) {
  .plan label {
    font-size: 2rem;
  }
  .plan__price__area {
    width: 100%;
  }
  .plan__subttl {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .plan__open {
    padding: 2rem 1.5rem;
  }
  .plan__txt {
    width: 100%;
    line-height: 1.4rem;
    font-size: 1.2rem;
  }
  .plan__merit-area {
    flex-flow: column;
  }
  .plan__picup {
    flex-flow: column;
    width: 100%;
    gap: 1rem;
  }
  .plan__merit-area {
    margin-top: 2.2rem;
    padding: 4rem 1.5rem;
    text-align: center;
  }
  .plan__picup--flex {
    height: 5.5rem;
  }
  .plan__muryou {
    font-size: 3.2rem;
  }
  .plan__kikan {
    margin-top: 0;
    font-size: 1.47rem;
  }
  .plan__kousin {
    font-size: 0.962rem;
  }
  .plan__zimute {
    font-size: 2.5267em;
  }
  .plan__picup--imgarea {
    width: 51%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .plan__picup--imgarea::after {
    content: "";
    background-color: #686868;
    width: 1px;
    height: 4.2rem;
    position: absolute;
    display: flex;
    align-items: center;
    right: -1.5rem;
  }
  .plan__picup--txtarea {
    width: 40%;
    margin-left: 4rem;
  }
  .plan__subttling {
    font-size: 1.2rem;
  }
  .plan__picup--box {
    width: 100%;
  }
  .plan__picup--box:nth-of-type(3) {
    order: 2;
  }
  .plan__picup--box:nth-of-type(2) {
    order: 3;
  }
  .plan__picup--box:nth-of-type(1) {
    order: 1;
  }
  .plan__picup--box:nth-of-type(4) {
    order: 4;
  }
  .plan__zimukaiyaku {
    font-size: 0.913rem;
  }
  .plan__zeikomi {
    display: block;
    font-size: 1.53rem;
    text-align: center;
  }
  .plan__txt--chusyaku {
    font-size: 1rem;
    line-height: 2rem;
  }
}

.option {
  background: #F7F7F7;
}
.option .option-font {
  font-size: 1.2rem;
}
.option .option-font-bold {
  font-size: 2rem;
}
.option .option-font-bold.fz18 {
  font-size: 1.3rem !important;
}
.option label {
  font-size: 2rem;
  color: #686868;
}
.option__tabcontents-area {
  border: solid 4px #92A3AF;
  padding: 3rem 6.2rem;
}
.option__open-area {
  margin-top: 4.2rem;
}
.option__tab-area {
  border-bottom: 1px solid #9C9C9C;
  padding-bottom: 2.5rem;
}
.option__flex {
  display: flex;
  gap: 3.3rem;
}
.option__img-area {
  width: 58.5rem;
  height: 54.5rem;
  position: relative;
}
.option__img {
  width: 95%;
  -o-object-fit: cover;
     object-fit: cover;
}
.option__img.option-h {
  -o-object-fit: cover;
     object-fit: cover;
  height: 54.5rem;
}
.option__txt-area {
  width: 40.47rem;
  height: 54.5rem;
  position: relative;
}
.option__onimg-area {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 2rem 3.7rem;
}
.option__img-card, .option__img-card-b {
  padding: 2.6rem 1rem;
  border-radius: 0.8rem;
  background-color: rgba(255, 255, 255, 0.95);
}
.option__img-card-b {
  margin-top: 2rem;
}
.option__subttl {
  font-size: 2.1rem;
  margin-bottom: 2.2rem;
}
.option__onimg--flex {
  display: flex;
  justify-content: space-between;
}
.option__ken {
  font-size: 1.647rem;
  display: block;
  background-color: #D9D9D9;
  padding: 0.3rem 0;
  margin-bottom: 3rem;
}
.option__ken2 {
  height: 6.7rem;
  display: block;
  background-color: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.option__flex--area {
  border-right: solid #030303 1px;
  width: 20.4rem;
  padding-right: 2.4rem;
}
.option__flex--area:last-child {
  border: none;
  padding-right: 0;
}
.option__flex--price {
  font-size: 5.52rem;
}
.option__flex--price2 {
  font-size: 2.424rem;
}
.option__subttling {
  font-size: 2rem;
  line-height: 3.5rem;
  margin-bottom: 1.2rem;
  font-weight: bold;
}
.option__ontxt {
  line-height: 2.5rem;
}
.option__txt-area a {
  text-decoration: underline;
}
@media (max-width: 734px) {
  .option__tabcontents-area {
    padding: 4.7rem 1.5rem 0.7rem 1.5rem;
  }
  .option__flex {
    flex-flow: column;
  }
  .option__img-area {
    width: 100%;
    height: auto;
  }
  .option__img {
    width: 100%;
  }
  .option__txt-area {
    width: 100%;
    height: auto;
  }
  .option label {
    font-size: 1.2rem;
    display: block;
  }
  .option__tab-area {
    flex-flow: wrap;
    border-bottom: none;
    justify-content: center;
  }
  .option__item {
    width: 25%;
    border-bottom: 1px solid #9C9C9C;
    padding-bottom: 1.5rem;
  }
  .option input:checked ~ label {
    padding-bottom: 0;
    border: none;
    position: relative;
  }
  .option input:checked ~ label::after {
    position: absolute;
    content: "";
    background-color: #C2050F;
    right: 0;
    left: 0;
    width: 100%;
    height: 3px;
    bottom: -1.7rem;
  }
  .option__open-area {
    margin-top: 1.2rem;
  }
  .option__onimg-area {
    padding: 2.8rem 2.6rem;
  }
  .option__img-card, .option__img-card-b {
    padding: 1.2rem;
  }
  .option__subttl {
    font-size: 1.634rem;
    margin-bottom: 1.2rem;
  }
  .option__flex--price {
    font-size: 2.8rem;
  }
  .option__ken {
    font-size: 0.841rem;
    margin-bottom: 1.5rem;
  }
  .option__flex--area {
    border-right: solid #030303 1px;
    width: 10.42rem;
    padding-right: 0.8rem;
  }
  .option__subttling {
    font-size: 1.29rem;
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
  }
  .option__ken2 {
    height: 3.4rem;
    margin-bottom: 1rem;
  }
  .option__ontxt {
    font-size: 0.817rem;
    line-height: 1.5rem;
  }
  .option__flex--price2 {
    font-size: 1.322rem;
  }
  .option__img-card-b {
    margin-top: 2rem;
  }
}
.option__link {
  margin-top: 3.6rem;
}
.option__img.option-h {
  height: auto;
}
.option .option-font-bold {
  font-size: 1.6rem;
}

.flow {
  background: #92A4B0;
}
.flow__contents.contents {
  max-width: 114.8rem;
}
.flow__ttl {
  color: #FFFFFF;
}
.flow__ttl .ttl__sub {
  color: #FFFFFF;
}
.flow__area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flow__box {
  width: calc(25% - 4.2rem);
  background-color: #FFFFFF;
  padding: 0.7rem 0.85rem 0 0.85rem;
  height: 41.4rem;
}
.flow__subttl {
  margin: 4.7rem 0 2rem 0;
}
.flow__txtarea {
  width: 20.7rem;
  margin: 0 auto;
  text-align: left;
}
.flow__dis {
  margin: 3.1rem 0 10rem 0;
  color: #FFFFFF;
}
.flow__link-area {
  text-align: center;
}
@media (max-width: 734px) {
  .flow__contents.contents {
    max-width: 34.2rem;
  }
  .flow .flow__txtarea {
    width: 15.4rem;
    margin: 0 auto;
    text-align: center;
  }
  .flow__area {
    flex-flow: column;
  }
  .flow__box {
    width: 95%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 1.6rem;
    margin-bottom: 3rem;
    position: relative;
  }
  .flow__box::after {
    position: absolute;
    content: "";
    background: url(../img/u-arro.png) no-repeat;
    background-size: contain;
    width: 2.395rem;
    height: 3.4rem;
    right: 0;
    left: 0;
    bottom: -4.4rem;
    margin: 0 auto;
  }
  .flow__box:last-child::after {
    display: none;
  }
  .flow__subttl {
    margin: -0.3rem 0 2rem 0;
  }
  .flow__txt {
    text-align: left;
  }
  .flow__dis {
    margin: 0 0 5rem 0;
  }
}

.area {
  background: #F7F7F7;
}
.area__contents.contents {
  max-width: 114.8rem;
}
.area label {
  font-size: 2.9rem;
  padding: 2rem 0 2.6rem 0;
  background: #D9D9D9;
  display: block;
}
.area label.area__lab {
  background: transparent;
  border: none;
  font-size: 2rem;
}
.area__open {
  padding: 5.5rem 6.5rem;
  background-color: #fff;
}
.area__items, .area__items--hokkai {
  border-bottom: solid 1px #686868;
}
.area__items:first-child, .area__items--hokkai:first-child {
  border-top: 1px solid #686868;
}
.area__items .hokkai, .area__items--hokkai .hokkai {
  background: transparent;
  border: none;
  font-size: 2rem;
  padding: 2rem 0 2.6rem 0;
  display: block;
}
.area__l-open {
  display: block;
  width: 47.7rem;
}
.area__flex {
  display: flex;
  gap: 7.6rem;
}
.area__list {
  width: 100%;
}
.area__list--item {
  font-size: 2rem;
  padding: 2rem 0 2.6rem 0;
  border-top: #F0F1F3 solid 1px;
  display: block;
}
@media (max-width: 734px) {
  .area__contents.contents {
    max-width: 34.2rem;
  }
  .area label {
    font-size: 2rem;
  }
  .area__open {
    padding: 4.6rem 1.6rem;
  }
  .area__flex {
    gap: 0;
    flex-flow: column;
  }
  .area__l-open {
    display: block;
    width: 100%;
  }
  .area__l-open:last-child .area__items:first-child {
    border-top: none;
  }
  .area label.area__lab,
  .area .hokkai {
    font-size: 1.4rem;
  }
  .area__list--item {
    font-size: 1.4rem;
  }
  .area__lab::before, .area__lab::after {
    content: "";
    position: absolute;
    background-color: #030303;
    width: 2rem;
    height: 0.1rem;
    display: flex;
    align-items: center;
    right: 0;
    top: 3rem;
  }
}

.faq {
  background: #EEEEEE;
}
.faq__contents.contents {
  max-width: 114.8rem;
}
.faq__subttl {
  font-size: 3.2rem;
  margin: 10rem 0 7.1rem 0;
  background-color: #D9D9D9;
  padding: 0.7rem 1.8rem 1rem 1.8rem;
  display: inline-block;
}
.faq__subttling {
  margin-bottom: 2.5rem;
  font-size: 2.4rem;
}
.faq__txt {
  font-size: 1.6rem;
  line-height: 180%;
}
.faq input[type=checkbox] {
  display: none;
}
.faq__items {
  width: calc(25% - 2rem);
}
.faq__items label {
  display: block;
  height: 7.3rem;
  background-color: #fff;
  border-radius: 0.9rem;
  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;
  margin: 0 auto 0.8rem auto;
  background-color: #fff;
  padding: 2rem 2rem;
  border-radius: 1rem;
}
.faq__answer {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  padding: 0.5rem 2rem;
}
.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;
  margin-top: 1.5rem;
  padding: 2rem;
}
@media (max-width: 734px) {
  .faq {
    padding: 5.2rem 0;
  }
  .faq__contents.contents {
    max-width: 34.2rem;
  }
  .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__ques {
    width: 71%;
    font-size: 1.5rem;
    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;
  }
}

.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 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: 1.5;
}
.attention__dropdown input:checked ~ .attention__content {
  padding: 4.5rem;
  max-height: 1500px;
}
@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;
  }
}