@charset "UTF-8";
/*
  Josh W. Comeau's Custom CSS Reset
  www.joshwcomeau.com
*/
/* 1. ボックスモデルの修正：余白や境界線が幅を壊さないようにする */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 2. デフォルトの余白を削除 */
* {
  margin: 0;
  padding: 0;
}

/* 3. 本文の行間を整え、フォントのレンダリングを滑らかにする */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 4. メディア要素（画像など）がはみ出さないようにし、ブロック要素化する */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 5. フォーム要素が親のフォント設定を無視するのを防ぐ */
input, button, textarea, select {
  font: inherit;
}

/* 6. 長い単語が画面からはみ出して横スクロールが出るのを防ぐ */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 7. ルート（#rootや#__nextなど）にスタック文脈を作成する（Reactなどのフレームワーク用） */
#root, #__next {
  isolation: isolate;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  width: 390px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #1A1A1A;
  line-height: 1.2;
}

p {
  font-size: 18px;
  line-height: 1.2;
}
p.asterisk {
  font-size: 12px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.inner {
  padding: 0 25px;
}

@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
  p {
    font-size: 4.6153846154vw;
  }
  p.asterisk {
    font-size: 3.0769230769vw;
  }
  .inner {
    padding: 0 6.4102564103vw;
  }
}
.ctaBtn {
  background: #fff;
  width: 100%;
  max-width: 390px;
  padding: 12px 25px;
}
.ctaBtn__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.ctaBtn__text p {
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
  color: #F45500;
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
}
.ctaBtn__text p.time {
  font-size: 13px;
  font-style: normal;
  color: #1A1A1A;
}
.ctaBtn__btn {
  text-align: center;
  border-radius: 72px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(13.94%, #FF7022), color-stop(52.4%, #F45500), color-stop(55.77%, #D84C00));
  background: linear-gradient(180deg, #FF7022 13.94%, #F45500 52.4%, #D84C00 55.77%);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.ctaBtn__btn::after {
  position: absolute;
  content: "";
  background: url(../../assets/img/ctaBtn_finger.png) no-repeat;
  background-size: 81px 83px;
  width: 81px;
  height: 83px;
  top: -15px;
  right: -25px;
}
.ctaBtn__btn a {
  display: block;
  padding: 16px 0;
  color: #fff;
  -webkit-font-feature-settings: "pwid" on, "palt" on;
  font-feature-settings: "pwid" on, "palt" on;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ctaBtn__btn a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ctaBtn__btn a .small {
  font-size: 16px;
}
.ctaBtn__btn a .yellow {
  color: #FF0;
}
.ctaBtn.ctaBtn01 {
  background: linear-gradient(99deg, #78B3FF 6.33%, #0068F0 59.5%);
}
.ctaBtn.ctaBtn01 .ctaBtn__text p {
  color: #FF0;
  text-shadow: none;
}
.ctaBtn.ctaBtn01 .ctaBtn__text p.time {
  color: #fff;
}
.ctaBtn.ctaBtn02 {
  background: #F45500;
}
.ctaBtn.ctaBtn02 .ctaBtn__text p {
  color: #FF0;
  text-shadow: none;
}
.ctaBtn.ctaBtn02 .ctaBtn__text p.time {
  color: #fff;
}
.ctaBtn.ctaBtn02 .ctaBtn__btn {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(13.94%, #0068F0), color-stop(52.4%, #338CFF), color-stop(55.77%, #0068F0));
  background: linear-gradient(180deg, #0068F0 13.94%, #338CFF 52.4%, #0068F0 55.77%);
}
.ctaBtn.ctaBtn02 .ctaBtn__btn::after {
  display: none;
}
.ctaBtn.fixedBtn {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  z-index: 9999;
}
.ctaBtn.fixedBtn.is-show {
  opacity: 1;
  visibility: visible;
}
.ctaBtn.fixedBtn .ctaBtn__btn::after {
  position: absolute;
  content: "";
  background: url(../../assets/img/fixedBtn_finger.png) no-repeat;
  background-size: 81px 83px;
  width: 81px;
  height: 83px;
  top: -15px;
  right: -25px;
}

@media screen and (max-width: 768px) {
  .ctaBtn {
    max-width: 100vw;
    padding: 3.0769230769vw 6.4102564103vw;
  }
  .ctaBtn__text {
    gap: 2.0512820513vw;
    margin-bottom: 2.0512820513vw;
  }
  .ctaBtn__text p {
    font-size: 3.8461538462vw;
  }
  .ctaBtn__text p.time {
    font-size: 3.3333333333vw;
  }
  .ctaBtn__btn {
    border-radius: 18.4615384615vw;
  }
  .ctaBtn__btn::after {
    background-size: 20.7692307692vw 21.2820512821vw;
    width: 20.7692307692vw;
    height: 21.2820512821vw;
    top: -3.8461538462vw;
    right: -6.4102564103vw;
  }
  .ctaBtn__btn a {
    padding: 4.1025641026vw 0;
    font-size: 5.1282051282vw;
  }
  .ctaBtn__btn a .small {
    font-size: 4.1025641026vw;
  }
  .ctaBtn.fixedBtn .ctaBtn__btn::after {
    background-size: 20.7692307692vw 21.2820512821vw;
    width: 20.7692307692vw;
    height: 21.2820512821vw;
    top: -3.8461538462vw;
    right: -6.4102564103vw;
  }
}
.cuponArea {
  padding: 48px 25px 0;
}
.cuponArea__telBtn {
  border-radius: 12px;
  background: var(--blue-gradetion, linear-gradient(180deg, #78B3FF 0%, #0068F0 100%));
  margin: 12px auto 16px;
}
.cuponArea__telBtn a {
  color: #0068F0;
  padding: 10px 22px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  height: 71px;
  position: relative;
}
.cuponArea__telBtn a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cuponArea__telBtn a .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10.301px;
  width: 112.877px;
  font-size: 9px;
  font-weight: 900;
  border-radius: 12px;
  background: #fff;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  padding: 2px;
  -webkit-box-shadow: 0 1.288px 2.575px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 1.288px 2.575px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.cuponArea__telBtn a .textFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  text-shadow: 0 2.305px 1.153px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: 3px;
}
.cuponArea__telBtn a .textFlex .telText {
  text-shadow: rgb(255, 255, 255) 5px 0px 0px, rgb(255, 255, 255) 4.90033px 0.993347px 0px, rgb(255, 255, 255) 4.60531px 1.94709px 0px, rgb(255, 255, 255) 4.12668px 2.82321px 0px, rgb(255, 255, 255) 3.48353px 3.58678px 0px, rgb(255, 255, 255) 2.70151px 4.20736px 0px, rgb(255, 255, 255) 1.81179px 4.6602px 0px, rgb(255, 255, 255) 0.849836px 4.92725px 0px, rgb(255, 255, 255) -0.145998px 4.99787px 0px, rgb(255, 255, 255) -1.13601px 4.86924px 0px, rgb(255, 255, 255) -2.08073px 4.54649px 0px, rgb(255, 255, 255) -2.94251px 4.04248px 0px, rgb(255, 255, 255) -3.68697px 3.37732px 0px, rgb(255, 255, 255) -4.28444px 2.57751px 0px, rgb(255, 255, 255) -4.71111px 1.67494px 0px, rgb(255, 255, 255) -4.94996px 0.7056px 0px, rgb(255, 255, 255) -4.99147px -0.291871px 0px, rgb(255, 255, 255) -4.83399px -1.27771px 0px, rgb(255, 255, 255) -4.48379px -2.2126px 0px, rgb(255, 255, 255) -3.95484px -3.05929px 0px, rgb(255, 255, 255) -3.26822px -3.78401px 0px, rgb(255, 255, 255) -2.4513px -4.35788px 0px, rgb(255, 255, 255) -1.53666px -4.75801px 0px, rgb(255, 255, 255) -0.560763px -4.96845px 0px, rgb(255, 255, 255) 0.437495px -4.98082px 0px, rgb(255, 255, 255) 1.41831px -4.79462px 0px, rgb(255, 255, 255) 2.34258px -4.41727px 0px, rgb(255, 255, 255) 3.17346px -3.86382px 0px, rgb(255, 255, 255) 3.87783px -3.15633px 0px, rgb(255, 255, 255) 4.4276px -2.32301px 0px, rgb(255, 255, 255) 4.80085px -1.39708px 0px, rgb(255, 255, 255) 4.98271px -0.415447px 0px;
  -webkit-filter: drop-shadow(0 2.305px 1.153px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0 2.305px 1.153px rgba(0, 0, 0, 0.25));
  font-family: "Afacad Flux";
  font-size: 46px;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .cuponArea {
    padding: 12.3076923077vw 6.4102564103vw 0;
  }
  .cuponArea__telBtn {
    border-radius: 3.0769230769vw;
    margin: 3.0769230769vw auto 4.1025641026vw;
  }
  .cuponArea__telBtn a {
    padding: 2.5641025641vw 5.641025641vw;
    height: 18.2051282051vw;
  }
  .cuponArea__telBtn a .text {
    gap: 2.6412820513vw;
    width: 28.9428205128vw;
    font-size: 2.3076923077vw;
    border-radius: 3.0769230769vw;
    padding: 0.5128205128vw;
  }
  .cuponArea__telBtn a .textFlex {
    gap: 1.5384615385vw;
    bottom: 0.7692307692vw;
  }
  .cuponArea__telBtn a .textFlex .telText {
    font-size: 11.5384615385vw;
  }
}
.topBtn {
  text-align: center;
  border-radius: 72px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(13.94%, #FF7022), color-stop(52.4%, #F45500), color-stop(55.77%, #D84C00));
  background: linear-gradient(180deg, #FF7022 13.94%, #F45500 52.4%, #D84C00 55.77%);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  margin-top: 32px;
}
.topBtn a {
  display: block;
  padding: 16px 0;
  color: #fff;
  -webkit-font-feature-settings: "pwid" on, "palt" on;
  font-feature-settings: "pwid" on, "palt" on;
  font-size: 20px;
  font-style: italic;
  font-weight: 900;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.topBtn a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sec__title {
  padding: 48px 25px 32px;
}
.sec__title h2 img {
  margin: 0 auto 16px;
}
.sec__title p {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  -webkit-font-feature-settings: "palt" on, "vkrn" on;
          font-feature-settings: "palt" on, "vkrn" on;
}

@media screen and (max-width: 768px) {
  .sec__title {
    padding: 12.3076923077vw 6.4102564103vw 8.2051282051vw;
  }
  .sec__title h2 {
    margin: 0 auto;
  }
  .sec__title h2 img {
    margin: 0 auto 4.1025641026vw;
    width: 100%;
  }
  .sec__title p {
    font-size: 4.6153846154vw;
  }
  .sec__title.title01 h2 {
    width: 87.6923076923vw;
  }
  .sec__title.title02 h2 {
    width: 71.6743589744vw;
  }
  .sec__title.title03 h2 {
    width: 87.6923076923vw;
  }
  .sec__title.title04 h2 {
    width: 87.6923076923vw;
  }
  .sec__title.title05 h2 {
    width: 88.9743589744vw;
  }
  .sec__title.title06 h2 {
    width: 87.9487179487vw;
  }
  .sec__title.title07 h2 {
    width: 87.6923076923vw;
  }
  .sec__title.title08 h2 {
    width: 73.6461538462vw;
  }
  .sec__title.title09 h2 {
    width: 87.6717948718vw;
  }
  .sec__title.title10 h2 {
    width: 87.6923076923vw;
  }
  .sec__title.title11 h2 {
    width: 87.6923076923vw;
  }
}
.mainVisual {
  background: url(../../assets/img/fvBg.png) no-repeat;
  background-size: cover;
  padding: 0 24px 8px;
  position: relative;
}
.mainVisual__wrap {
  position: relative;
  z-index: 10;
}
.mainVisual:before, .mainVisual::after {
  position: absolute;
  content: "";
  left: 0;
}
.mainVisual:before {
  background: url(../../assets/img/img_fvKye.png) no-repeat;
  background-size: contain;
  aspect-ratio: 82/69;
  width: 224.495px;
  height: auto;
  top: 175px;
  left: 0;
}
.mainVisual::after {
  background: url(../../assets/img/img_fvHuman.png) no-repeat;
  background-size: contain;
  aspect-ratio: 149/141;
  width: 301.894px;
  height: auto;
  bottom: 0;
  left: 0;
}
.mainVisual__logo {
  width: 122px;
  height: auto;
  margin: 0 0 0 auto;
  padding-top: 24px;
}
.mainVisual__title {
  position: absolute;
  top: 27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.mainVisual__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  color: #fff;
  font-weight: 900;
  padding-top: 190px;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
}
.mainVisual__copy p {
  font-size: 18px;
  -webkit-font-feature-settings: "pwid" on, "palt" on;
          font-feature-settings: "pwid" on, "palt" on;
}
.mainVisual__copy p span {
  font-size: 24px;
}
.mainVisual__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin: 15px 0;
}
.mainVisual__content-ribbon {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  display: inline-block;
  position: relative;
  height: 35px;
  line-height: 105%;
  text-align: center;
  padding: 3px 68px;
  margin-bottom: 5px;
  background: #F45500;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
}
.mainVisual__content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainVisual__content-inner p {
  -webkit-filter: drop-shadow(0 2.305px 1.153px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0 2.305px 1.153px rgba(0, 0, 0, 0.25));
}
.mainVisual__content-inner-vertical {
  font-size: 40px;
  font-weight: 900;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  text-shadow: rgb(244, 85, 0) 4px 0px 0px, rgb(244, 85, 0) 3.87565px 0.989616px 0px, rgb(244, 85, 0) 3.51033px 1.9177px 0px, rgb(244, 85, 0) 2.92676px 2.72656px 0px, rgb(244, 85, 0) 2.16121px 3.36588px 0px, rgb(244, 85, 0) 1.26129px 3.79594px 0px, rgb(244, 85, 0) 0.282949px 3.98998px 0px, rgb(244, 85, 0) -0.712984px 3.93594px 0px, rgb(244, 85, 0) -1.66459px 3.63719px 0px, rgb(244, 85, 0) -2.51269px 3.11229px 0px, rgb(244, 85, 0) -3.20457px 2.39389px 0px, rgb(244, 85, 0) -3.69721px 1.52664px 0px, rgb(244, 85, 0) -3.95997px 0.56448px 0px, rgb(244, 85, 0) -3.97652px -0.432781px 0px, rgb(244, 85, 0) -3.74583px -1.40313px 0px, rgb(244, 85, 0) -3.28224px -2.28625px 0px, rgb(244, 85, 0) -2.61457px -3.02721px 0px, rgb(244, 85, 0) -1.78435px -3.57996px 0px, rgb(244, 85, 0) -0.843183px -3.91012px 0px, rgb(244, 85, 0) 0.150409px -3.99717px 0px, rgb(244, 85, 0) 1.13465px -3.8357px 0px, rgb(244, 85, 0) 2.04834px -3.43574px 0px, rgb(244, 85, 0) 2.83468px -2.82216px 0px, rgb(244, 85, 0) 3.44477px -2.03312px 0px, rgb(244, 85, 0) 3.84068px -1.11766px 0px, rgb(244, 85, 0) 3.9978px -0.132717px 0px;
}
.mainVisual__content-inner-price {
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  color: #F45500;
  text-shadow: rgb(255, 255, 255) 5px 0px 0px, rgb(255, 255, 255) 4.90033px 0.993347px 0px, rgb(255, 255, 255) 4.60531px 1.94709px 0px, rgb(255, 255, 255) 4.12668px 2.82321px 0px, rgb(255, 255, 255) 3.48353px 3.58678px 0px, rgb(255, 255, 255) 2.70151px 4.20736px 0px, rgb(255, 255, 255) 1.81179px 4.6602px 0px, rgb(255, 255, 255) 0.849836px 4.92725px 0px, rgb(255, 255, 255) -0.145998px 4.99787px 0px, rgb(255, 255, 255) -1.13601px 4.86924px 0px, rgb(255, 255, 255) -2.08073px 4.54649px 0px, rgb(255, 255, 255) -2.94251px 4.04248px 0px, rgb(255, 255, 255) -3.68697px 3.37732px 0px, rgb(255, 255, 255) -4.28444px 2.57751px 0px, rgb(255, 255, 255) -4.71111px 1.67494px 0px, rgb(255, 255, 255) -4.94996px 0.7056px 0px, rgb(255, 255, 255) -4.99147px -0.291871px 0px, rgb(255, 255, 255) -4.83399px -1.27771px 0px, rgb(255, 255, 255) -4.48379px -2.2126px 0px, rgb(255, 255, 255) -3.95484px -3.05929px 0px, rgb(255, 255, 255) -3.26822px -3.78401px 0px, rgb(255, 255, 255) -2.4513px -4.35788px 0px, rgb(255, 255, 255) -1.53666px -4.75801px 0px, rgb(255, 255, 255) -0.560763px -4.96845px 0px, rgb(255, 255, 255) 0.437495px -4.98082px 0px, rgb(255, 255, 255) 1.41831px -4.79462px 0px, rgb(255, 255, 255) 2.34258px -4.41727px 0px, rgb(255, 255, 255) 3.17346px -3.86382px 0px, rgb(255, 255, 255) 3.87783px -3.15633px 0px, rgb(255, 255, 255) 4.4276px -2.32301px 0px, rgb(255, 255, 255) 4.80085px -1.39708px 0px, rgb(255, 255, 255) 4.98271px -0.415447px 0px;
  padding-bottom: 10px;
}
.mainVisual__content-inner-price .en {
  font-family: "Afacad Flux";
  font-size: 66px;
}
.mainVisual__content-inner-price .small01 {
  font-size: 22px;
}
.mainVisual__content-inner-price .small02 {
  font-size: 57px;
}
.mainVisual__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
}
.mainVisual__point-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 96px;
  height: 98px;
  background: #FF0;
  border-radius: 50%;
  padding: 25px 8px 16px;
  position: relative;
}
.mainVisual__point-content-icon {
  width: 40px;
  height: auto;
  position: absolute;
  top: -14%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mainVisual__point-content-title {
  width: 48px;
  height: auto;
  padding: 0 0 3px 4px;
}
.mainVisual__point-content p {
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  line-height: 120%;
}
.mainVisual__link {
  text-align: center;
}
.mainVisual__link p {
  font-size: 12px;
  color: #fff;
  text-shadow: rgb(0, 104, 240) 2px 0px 0px, rgb(0, 104, 240) 1.75517px 0.958851px 0px, rgb(0, 104, 240) 1.0806px 1.68294px 0px, rgb(0, 104, 240) 0.141474px 1.99499px 0px, rgb(0, 104, 240) -0.832294px 1.81859px 0px, rgb(0, 104, 240) -1.60229px 1.19694px 0px, rgb(0, 104, 240) -1.97998px 0.28224px 0px, rgb(0, 104, 240) -1.87291px -0.701566px 0px, rgb(0, 104, 240) -1.30729px -1.5136px 0px, rgb(0, 104, 240) -0.421592px -1.95506px 0px, rgb(0, 104, 240) 0.567324px -1.91785px 0px, rgb(0, 104, 240) 1.41734px -1.41108px 0px, rgb(0, 104, 240) 1.92034px -0.558831px 0px;
  margin: 4px auto 0;
}
.mainVisual__link p a {
  color: #FF0;
  border-bottom: 1px solid #FF0;
}

@media screen and (max-width: 768px) {
  .mainVisual {
    padding: 0 6.1538461538vw 2.0512820513vw;
  }
  .mainVisual:before {
    width: 57.5628205128vw;
    top: 44.8717948718vw;
  }
  .mainVisual::after {
    width: 77.4087179487vw;
  }
  .mainVisual__logo {
    width: 31.2820512821vw;
    padding-top: 6.1538461538vw;
  }
  .mainVisual__title {
    top: 6.9230769231vw;
    width: 99.9vw;
  }
  .mainVisual__title img {
    width: 100%;
  }
  .mainVisual__copy {
    padding-top: 48.7179487179vw;
  }
  .mainVisual__copy p {
    font-size: 4.6153846154vw;
  }
  .mainVisual__copy p span {
    font-size: 6.1538461538vw;
  }
  .mainVisual__content {
    margin: 3.8461538462vw 0;
  }
  .mainVisual__content-ribbon {
    font-size: 6.1538461538vw;
    height: 8.9743589744vw;
    padding: 0.7692307692vw 17.4358974359vw;
    margin-bottom: 1.2820512821vw;
  }
  .mainVisual__content-inner-vertical {
    font-size: 10.2564102564vw;
  }
  .mainVisual__content-inner-price {
    font-size: 14.8717948718vw;
    padding-bottom: 2.5641025641vw;
  }
  .mainVisual__content-inner-price .en {
    font-size: 16.9230769231vw;
  }
  .mainVisual__content-inner-price .small01 {
    font-size: 5.641025641vw;
  }
  .mainVisual__content-inner-price .small02 {
    font-size: 14.6153846154vw;
  }
  .mainVisual__point {
    gap: 6.6666666667vw;
  }
  .mainVisual__point-content {
    width: 24.6153846154vw;
    height: 25.1282051282vw;
    padding: 6.4102564103vw 2.0512820513vw 4.1025641026vw;
  }
  .mainVisual__point-content-icon {
    width: 10.2564102564vw;
  }
  .mainVisual__point-content-title {
    width: 12.3076923077vw;
    padding: 0 0 0.7692307692vw 1.0256410256vw;
  }
  .mainVisual__point-content p {
    font-size: 3.3333333333vw;
  }
  .mainVisual__link p {
    font-size: 3.0769230769vw;
  }
}
.section01__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0 25px;
}
.section01__wrap li {
  width: calc(50% - 6px);
}
.section01__wrap li .textArea {
  padding: 8px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}
.section01__wrap li .textArea h4 {
  color: #F45500;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}
.section01__wrap li .textArea p {
  color: #1A1A1A;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-feature-settings: "palt" on, "vkrn" on;
          font-feature-settings: "palt" on, "vkrn" on;
}
.section01__wrap li .textArea p.price {
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 500;
  background: #FF0;
  text-align: center;
  margin: 8px auto;
  padding: 4px 8px 2px;
  border-radius: 72px;
}
.section01__wrap li .textArea p.price span.orange {
  color: #F45500;
  font-family: "Afacad Flux";
  font-size: 16px;
  font-weight: 900;
}
.section01__wrap li .textArea p.price span.orange .en {
  font-size: 12px;
}
.section01 .asterisk {
  -webkit-font-feature-settings: "pwid" on, "palt" on;
          font-feature-settings: "pwid" on, "palt" on;
  font-size: 12px;
  font-weight: 400;
  padding: 0 25px 48px;
}

@media screen and (max-width: 768px) {
  .section01__wrap {
    gap: 3.0769230769vw;
    margin-bottom: 6.1538461538vw;
    padding: 0 6.4102564103vw;
  }
  .section01__wrap li {
    width: calc(50% - 1.5384615385vw);
  }
  .section01__wrap li .textArea {
    padding: 2.0512820513vw;
    border-radius: 0 0 2.0512820513vw 2.0512820513vw;
  }
  .section01__wrap li .textArea h4 {
    font-size: 3.8461538462vw;
  }
  .section01__wrap li .textArea p {
    font-size: 3.8461538462vw;
  }
  .section01__wrap li .textArea p.price {
    font-size: 3.0769230769vw;
    margin: 2.0512820513vw auto;
    padding: 1.0256410256vw 2.0512820513vw 0.5128205128vw;
    border-radius: 18.4615384615vw;
  }
  .section01__wrap li .textArea p.price span.orange {
    font-size: 4.1025641026vw;
  }
  .section01__wrap li .textArea p.price span.orange .en {
    font-size: 3.0769230769vw;
  }
  .section01 .asterisk {
    font-size: 3.0769230769vw;
    padding: 0 6.4102564103vw 12.3076923077vw;
  }
}
.section02__caseWrap {
  text-align: center;
  margin-bottom: 12px;
  -webkit-filter: drop-shadow(0 2.305px 1.153px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 2.305px 1.153px rgba(0, 0, 0, 0.25));
}
.section02__caseWrap-title {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  background: #F45500;
  border-radius: 8px 8px 0 0;
  padding: 16px 8px;
}
.section02__caseWrap-detail {
  background: #fff;
  padding: 16px;
  border-radius: 0 0 8px 8px;
}
.section02__caseWrap-detail-price {
  color: #F45500;
  font-family: "Afacad Flux";
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  -webkit-font-feature-settings: "pwid" on, "palt" on;
          font-feature-settings: "pwid" on, "palt" on;
  text-shadow: rgb(255, 255, 0) 6px 0px 0px, rgb(255, 255, 0) 5.91686px 0.995377px 0px, rgb(255, 255, 0) 5.66974px 1.96317px 0px, rgb(255, 255, 0) 5.2655px 2.87655px 0px, rgb(255, 255, 0) 4.71532px 3.71022px 0px, rgb(255, 255, 0) 4.03447px 4.44106px 0px, rgb(255, 255, 0) 3.24181px 5.04883px 0px, rgb(255, 255, 0) 2.35931px 5.51667px 0px, rgb(255, 255, 0) 1.41143px 5.83163px 0px, rgb(255, 255, 0) 0.424423px 5.98497px 0px, rgb(255, 255, 0) -0.574341px 5.97245px 0px, rgb(255, 255, 0) -1.55719px 5.79441px 0px, rgb(255, 255, 0) -2.49688px 5.45578px 0px, rgb(255, 255, 0) -3.36738px 4.96596px 0px, rgb(255, 255, 0) -4.14455px 4.33852px 0px, rgb(255, 255, 0) -4.80686px 3.59083px 0px, rgb(255, 255, 0) -5.33596px 2.74364px 0px, rgb(255, 255, 0) -5.71718px 1.8204px 0px, rgb(255, 255, 0) -5.93995px 0.84672px 0px, rgb(255, 255, 0) -5.99811px -0.150428px 0px, rgb(255, 255, 0) -5.89004px -1.14341px 0px, rgb(255, 255, 0) -5.61874px -2.1047px 0px, rgb(255, 255, 0) -5.19172px -3.00766px 0px, rgb(255, 255, 0) -4.62082px -3.82727px 0px, rgb(255, 255, 0) -3.92186px -4.54081px 0px, rgb(255, 255, 0) -3.11421px -5.12852px 0px, rgb(255, 255, 0) -2.22026px -5.57409px 0px, rgb(255, 255, 0) -1.26477px -5.86518px 0px, rgb(255, 255, 0) -0.274238px -5.99373px 0px, rgb(255, 255, 0) 0.723898px -5.95617px 0px, rgb(255, 255, 0) 1.70197px -5.75355px 0px, rgb(255, 255, 0) 2.63288px -5.39147px 0px, rgb(255, 255, 0) 3.49082px -4.87998px 0px, rgb(255, 255, 0) 4.25202px -4.23324px 0px, rgb(255, 255, 0) 4.89538px -3.46919px 0px, rgb(255, 255, 0) 5.40307px -2.60899px 0px, rgb(255, 255, 0) 5.76102px -1.67649px 0px, rgb(255, 255, 0) 5.95932px -0.697531px 0px;
  -webkit-filter: drop-shadow(0 2.305px 1.153px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 2.305px 1.153px rgba(0, 0, 0, 0.25));
}
.section02__caseWrap-detail-price span {
  font-size: 37px;
  padding-left: 2px;
}
.section02__caseWrap-detail-text {
  font-size: 12px;
  font-weight: 900;
  -webkit-font-feature-settings: "pwid" on, "palt" on;
          font-feature-settings: "pwid" on, "palt" on;
  padding: 18px 0 20px;
}
.section02__caseWrap-detail-asterisk {
  font-size: 11px;
  font-weight: 400;
  -webkit-font-feature-settings: "pwid" on, "palt" on;
          font-feature-settings: "pwid" on, "palt" on;
}
.section02 .asterisk {
  font-weight: 400;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  margin: 24px auto 12px;
}
.section02 .link a {
  color: #F45500;
  font-size: 12px;
  font-weight: 400;
  border-bottom: 1px solid #F45500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section02 .link a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section02__promise {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 3px 0 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 3px 0 4px 0 rgba(0, 0, 0, 0.25);
  margin: 48px auto;
  padding: 90px 16px 32px;
  position: relative;
}
.section02__promise::before {
  position: absolute;
  content: "";
  background: url(../../assets/img/section02_contentsImg02.png) no-repeat;
  background-size: contain;
  aspect-ratio: 44/73;
  width: 132px;
  height: 219px;
  top: -56px;
  right: -10px;
}
.section02__promise-top {
  padding: 0 8px;
}
.section02__promise-top h2 {
  position: absolute;
  top: 24px;
  left: 0;
}
.section02__promise-line {
  display: inline-block;
  color: #F45500;
  font-size: 13px;
  font-weight: 900;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  position: relative;
  z-index: 1;
}
.section02__promise-line::before {
  position: absolute;
  content: "";
  background: #FF0;
  width: 100%;
  height: 7px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.section02__promise-big {
  color: #F45500;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  margin: 8px 0 16px;
}
.section02__promise-big span {
  font-family: "Afacad Flux";
  font-size: 55px;
}
.section02__promise-copy {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
}
.section02__promise-copy .u-line {
  position: relative;
  z-index: 1;
}
.section02__promise-copy .u-line::before {
  position: absolute;
  content: "";
  background: #FF0;
  width: 100%;
  height: 7px;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.section02__promise-copy .big {
  font-size: 26px;
}
.section02__promise-text {
  font-size: 15px;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  font-weight: 400;
}
.section02__guarantee {
  background: #0068F0;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 16px;
}
.section02__guarantee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.section02__guarantee-inner-text p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  margin-top: 8px;
}
.section02__guarantee .asterisk {
  color: #fff;
  font-weight: 400;
  margin: 8px auto 0;
}

@media screen and (max-width: 768px) {
  .section02__caseWrap {
    margin-bottom: 3.0769230769vw;
  }
  .section02__caseWrap-title {
    font-size: 4.6153846154vw;
    border-radius: 2.0512820513vw 2.0512820513vw 0 0;
    padding: 4.1025641026vw 2.0512820513vw;
  }
  .section02__caseWrap-detail {
    padding: 4.1025641026vw;
    border-radius: 0 0 2.0512820513vw 2.0512820513vw;
  }
  .section02__caseWrap-detail-price {
    font-size: 23.0769230769vw;
  }
  .section02__caseWrap-detail-price span {
    font-size: 9.4871794872vw;
    padding-left: 0.5128205128vw;
  }
  .section02__caseWrap-detail-text {
    font-size: 3.0769230769vw;
    padding: 4.6153846154vw 0 5.1282051282vw;
  }
  .section02__caseWrap-detail-asterisk {
    font-size: 2.8205128205vw;
  }
  .section02 .asterisk {
    margin: 6.1538461538vw auto 3.0769230769vw;
  }
  .section02 .link a {
    font-size: 3.0769230769vw;
  }
  .section02__promise {
    border-radius: 2.0512820513vw;
    margin: 12.3076923077vw auto;
    padding: 23.0769230769vw 4.1025641026vw 8.2051282051vw;
  }
  .section02__promise::before {
    width: 33.8461538462vw;
    height: 56.1538461538vw;
    top: -14.358974359vw;
    right: -2.5641025641vw;
  }
  .section02__promise-top {
    padding: 0 2.0512820513vw;
  }
  .section02__promise-top h2 {
    top: 6.1538461538vw;
    width: 59.6025641026vw;
  }
  .section02__promise-top h2 img {
    width: 100%;
  }
  .section02__promise-line {
    font-size: 3.3333333333vw;
  }
  .section02__promise-line::before {
    height: 1.7948717949vw;
  }
  .section02__promise-big {
    font-size: 8.2051282051vw;
    margin: 2.0512820513vw 0 4.1025641026vw;
  }
  .section02__promise-big span {
    font-size: 14.1025641026vw;
  }
  .section02__promise-copy {
    font-size: 4.6153846154vw;
    margin-bottom: 4.1025641026vw;
  }
  .section02__promise-copy .u-line::before {
    height: 1.7948717949vw;
  }
  .section02__promise-copy .big {
    font-size: 6.6666666667vw;
  }
  .section02__promise-text {
    font-size: 3.8461538462vw;
  }
  .section02__guarantee {
    border-radius: 2.0512820513vw;
    padding: 4.1025641026vw;
  }
  .section02__guarantee-inner {
    gap: 4.1025641026vw;
  }
  .section02__guarantee-inner-text p {
    font-size: 3.8461538462vw;
    margin-top: 2.0512820513vw;
  }
  .section02__guarantee .asterisk {
    margin: 2.0512820513vw auto 0;
  }
}
.section03__content {
  background: #fff;
  padding: 16px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 12px;
}
.section03__content:last-child {
  margin-bottom: 0;
}
.section03__content-title {
  color: #0068F0;
  font-size: 18px;
  font-weight: 900;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
}
.section03__content-price {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  background: #F45500;
  width: 100%;
  border-radius: 24px;
  margin: 8px auto;
}
.section03__content-text {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
}
.section03__content-text-asterisk {
  font-size: 12px;
  text-align: left;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .section03__content {
    padding: 4.1025641026vw;
    border-radius: 2.0512820513vw;
    margin-bottom: 3.0769230769vw;
  }
  .section03__content-title {
    font-size: 4.6153846154vw;
  }
  .section03__content-price {
    font-size: 4.6153846154vw;
    border-radius: 6.1538461538vw;
    margin: 2.0512820513vw auto;
  }
  .section03__content-text {
    font-size: 3.8461538462vw;
  }
  .section03__content-text-asterisk {
    font-size: 3.0769230769vw;
    margin-top: 2.0512820513vw;
  }
}
.section04 {
  padding-bottom: 48px;
}
.section04__content {
  background: #fff;
  width: 100%;
  height: 90px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  position: relative;
}
.section04__content-title {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  background: #F45500;
  border-radius: 18px;
  padding: 0 12px;
  display: inline-block;
  position: absolute;
  top: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section04__content img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section04__content:first-child img {
  width: 76.863px;
}
.section04__content:nth-child(2) img {
  width: 320px;
}
.section04__content:last-child {
  margin-bottom: 0;
}
.section04__content:last-child img {
  width: 324.6px;
}

@media screen and (max-width: 768px) {
  .section04 {
    padding-bottom: 12.3076923077vw;
  }
  .section04__content {
    height: 23.0769230769vw;
    margin-bottom: 6.1538461538vw;
    border-radius: 2.0512820513vw;
  }
  .section04__content-title {
    font-size: 3.8461538462vw;
    border-radius: 4.6153846154vw;
    padding: 0 3.0769230769vw;
    top: -2.8205128205vw;
  }
  .section04__content:first-child img {
    width: 19.7084615385vw;
  }
  .section04__content:nth-child(2) img {
    width: 82.0512820513vw;
  }
  .section04__content:last-child img {
    width: 83.2307692308vw;
  }
}
.section05 {
  margin-bottom: 40px;
}
.section05__reasonList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.section05__reasonList li {
  width: calc(50% - 6px);
  background: #0068F0;
  padding: 12px 8px;
  border-radius: 8px;
}
.section05__reasonList li .title {
  color: #FF0;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
}
.section05__reasonList li .txet {
  color: #fff;
  font-size: 12px;
  -webkit-font-feature-settings: "palt" on, "liga" off;
          font-feature-settings: "palt" on, "liga" off;
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .section05 {
    margin-bottom: 10.2564102564vw;
  }
  .section05__reasonList {
    gap: 3.0769230769vw;
  }
  .section05__reasonList li {
    width: calc(50% - 1.5384615385vw);
    padding: 3.0769230769vw 2.0512820513vw;
    border-radius: 2.0512820513vw;
  }
  .section05__reasonList li .title {
    font-size: 4.6153846154vw;
  }
  .section05__reasonList li .txet {
    font-size: 3.0769230769vw;
    margin-top: 2.0512820513vw;
  }
}
.section06__wrapTitle {
  color: #F45500;
  font-size: 18px;
  font-weight: 900;
  margin-top: 32px;
}
.section06__wrapSubTitle {
  font-size: 18px;
  font-weight: 500;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  margin: 6px auto 12px;
}
.section06__wrapText {
  font-size: 16px;
  font-weight: 400;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .section06__wrapTitle {
    font-size: 4.6153846154vw;
    margin-top: 8.2051282051vw;
  }
  .section06__wrapSubTitle {
    font-size: 4.6153846154vw;
    margin: 1.5384615385vw auto 3.0769230769vw;
  }
  .section06__wrapText {
    font-size: 4.1025641026vw;
    padding-bottom: 10.2564102564vw;
  }
}
.section07__flowWrap {
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.section07__flowWrap-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.section07__flowWrap-inner:last-child {
  border-bottom: none;
}
.section07__flowWrap-inner-textArea {
  width: 240px;
}
.section07__flowWrap-inner-textArea p {
  font-size: 15px;
  font-weight: 700;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "vkrn" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "vkrn" on, "liga" off;
}
.section07__flowWrap-inner-textArea p.asterisk {
  font-size: 12px;
  font-weight: 400;
}
.section07__flowWrap-inner-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.section07__flowWrap-inner-title-num {
  color: #fff;
  text-align: center;
  background: #0068F0;
  width: 27px;
  border-radius: 4px;
}
.section07__flowWrap-inner-title h4 {
  color: #0068F0;
  font-size: 18px;
  font-weight: 700;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
}
.section07__flowWrap-inner-imgArea {
  width: 86px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .section07__flowWrap-inner {
    gap: 4.1025641026vw;
    padding: 4.1025641026vw 0;
  }
  .section07__flowWrap-inner-textArea {
    width: 61.5384615385vw;
  }
  .section07__flowWrap-inner-textArea p {
    font-size: 3.8461538462vw;
  }
  .section07__flowWrap-inner-textArea p.asterisk {
    font-size: 3.0769230769vw;
  }
  .section07__flowWrap-inner-title {
    gap: 2.0512820513vw;
    margin-bottom: 2.0512820513vw;
  }
  .section07__flowWrap-inner-title-num {
    width: 6.9230769231vw;
    border-radius: 1.0256410256vw;
  }
  .section07__flowWrap-inner-title h4 {
    font-size: 4.6153846154vw;
  }
  .section07__flowWrap-inner-imgArea {
    width: 22.0512820513vw;
  }
}
.section08 {
  margin-bottom: 40px;
}
.section08__wrapTitle {
  font-size: 15px;
  font-weight: 900;
  margin-top: 32px;
}
.section08__wrapText {
  font-size: 15px;
  font-weight: 400;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  margin: 8px auto 16px;
}
.section08__wrapText-asterisk {
  font-size: 12px;
  font-weight: 400;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
}

@media screen and (max-width: 768px) {
  .section08 {
    margin-bottom: 10.2564102564vw;
  }
  .section08__wrapTitle {
    font-size: 3.8461538462vw;
    margin-top: 8.2051282051vw;
  }
  .section08__wrapText {
    font-size: 3.8461538462vw;
    margin: 2.0512820513vw auto 4.1025641026vw;
  }
  .section08__wrapText-asterisk {
    font-size: 3.0769230769vw;
  }
}
.section09 {
  padding-bottom: 40px;
}
.section09 .sec__title {
  padding: 40px 25px 15px;
}
.section09__wrap {
  margin-bottom: 15px;
}
.section09__wrap-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
.section09__wrap-slide p {
  font-size: 14px;
  font-weight: 900;
  -webkit-font-feature-settings: "halt" on;
          font-feature-settings: "halt" on;
  background: #fff;
  border-radius: 20px 20px 20px 0;
  padding: 13px 7px;
}
.section09__wrap-prev {
  position: absolute;
  height: 67px;
  background: none;
  border: none;
  cursor: pointer;
  top: 0;
  left: -20px;
}
.section09__wrap-prev::before, .section09__wrap-prev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 5px;
  background-color: #f45500;
  -webkit-transform-origin: 2.5px 50%;
          transform-origin: 2.5px 50%;
}
.section09__wrap-prev::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section09__wrap-prev::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.section09__wrap-next {
  position: absolute;
  height: 67px;
  background: none;
  border: none;
  cursor: pointer;
  top: 0;
  right: -20px;
}
.section09__wrap-next::before, .section09__wrap-next::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 5px;
  background-color: #f45500;
  -webkit-transform-origin: calc(100% - 2.5px) 50%;
          transform-origin: calc(100% - 2.5px) 50%;
}
.section09__wrap-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section09__wrap-next::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .section09 {
    padding-bottom: 10.2564102564vw;
  }
  .section09 .sec__title {
    padding: 10.2564102564vw 6.4102564103vw 3.8461538462vw;
  }
  .section09__wrap {
    margin-bottom: 3.8461538462vw;
  }
  .section09__wrap-slide {
    gap: 3.3333333333vw;
  }
  .section09__wrap-slide p {
    font-size: 3.5897435897vw;
    border-radius: 5.1282051282vw 5.1282051282vw 5.1282051282vw 0;
    padding: 3.3333333333vw 1.7948717949vw;
  }
  .section09__wrap-prev {
    height: 17.1794871795vw;
    left: -5.1282051282vw;
  }
  .section09__wrap-prev::before, .section09__wrap-prev::after {
    width: 3.5897435897vw;
    height: 1.2820512821vw;
    -webkit-transform-origin: 0.641025641vw 50%;
            transform-origin: 0.641025641vw 50%;
  }
  .section09__wrap-next {
    height: 17.1794871795vw;
    right: -5.1282051282vw;
  }
  .section09__wrap-next::before, .section09__wrap-next::after {
    width: 3.5897435897vw;
    height: 1.2820512821vw;
    -webkit-transform-origin: calc(100% - 0.641025641vw) 50%;
            transform-origin: calc(100% - 0.641025641vw) 50%;
  }
}
.section10__accordion {
  margin-bottom: 32px;
}
.section10__accordion-header {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  background-color: #F45500;
  border-radius: 8px;
  padding: 8px 16px;
  margin: 12px auto;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
  position: relative;
}
.section10__accordion-header .q-icon {
  color: #FF0;
  font-size: 15px;
  font-weight: 900;
  margin-right: 8px;
}
.section10__accordion-header.active {
  border-radius: 8px 8px 0 0;
  margin: 0 auto;
}
.section10__accordion-header .plus-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 13px;
}
.section10__accordion-header .plus-icon::before, .section10__accordion-header .plus-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section10__accordion-header .plus-icon::before {
  width: 100%;
  height: 2px;
}
.section10__accordion-header .plus-icon::after {
  width: 2px;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.section10__accordion-header.active .plus-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.section10__accordion-content {
  display: none;
  background-color: #FFF;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 16px;
  position: relative;
  font-size: 16px;
  text-align: justify;
}
.section10__accordion-content span {
  text-justify: inter-character;
  line-break: strict;
  word-break: normal;
}

@media screen and (max-width: 768px) {
  .section10__accordion {
    margin-bottom: 8.2051282051vw;
  }
  .section10__accordion-header {
    font-size: 3.8461538462vw;
    border-radius: 2.0512820513vw;
    padding: 2.0512820513vw 4.1025641026vw;
    margin: 3.0769230769vw auto;
  }
  .section10__accordion-header .q-icon {
    font-size: 3.8461538462vw;
    margin-right: 2.0512820513vw;
  }
  .section10__accordion-header.active {
    border-radius: 2.0512820513vw 2.0512820513vw 0 0;
  }
  .section10__accordion-header .plus-icon {
    right: 4.1025641026vw;
    width: 3.3333333333vw;
    height: 3.3333333333vw;
  }
  .section10__accordion-header .plus-icon::before {
    height: 0.5128205128vw;
  }
  .section10__accordion-header .plus-icon::after {
    width: 0.5128205128vw;
  }
  .section10__accordion-content {
    border-radius: 0 0 2.0512820513vw 2.0512820513vw;
    padding: 4.1025641026vw;
    font-size: 4.1025641026vw;
  }
}
.section11__wrap {
  margin-bottom: 24px;
}
.section11__wrap:last-child {
  margin-bottom: 0;
}
.section11__wrap h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
  text-align: center;
  background: #F45500;
  border-radius: 40px;
  margin-bottom: 12px;
  padding: 4px 16px;
}
.section11__wrap p {
  font-size: 18px;
  font-weight: 400;
  -webkit-font-feature-settings: "pwid" on, "palt" on, "liga" off;
          font-feature-settings: "pwid" on, "palt" on, "liga" off;
}
.section11 img {
  margin-top: -10px;
}

@media screen and (max-width: 768px) {
  .section11__wrap {
    margin-bottom: 6.1538461538vw;
  }
  .section11__wrap h4 {
    font-size: 4.6153846154vw;
    border-radius: 10.2564102564vw;
    margin-bottom: 3.0769230769vw;
    padding: 1.0256410256vw 4.1025641026vw;
  }
  .section11__wrap p {
    font-size: 4.6153846154vw;
  }
  .section11 img {
    margin-top: -2.5641025641vw;
  }
}
.footer {
  padding: 32px 0;
}
.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer ul li {
  font-size: 13px;
  font-weight: 500;
  border-right: 1px solid #C5C5C5;
  padding: 0 8px;
}
.footer ul li a {
  color: #1A1A1A;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer ul li a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer ul li:last-child {
  border-right: none;
}
.footer p {
  text-align: center;
}
.footer p small {
  font-size: 13px;
}

.footer02 {
  margin-top: 32px;
  border-top: 1px solid #C5C5C5;
}
.footer02 .pageSub__link {
  padding: 8px 0 8px 8px;
  border-bottom: 1px solid #C5C5C5;
}
.footer02 .pageSub__link a {
  font-size: 18px;
  font-weight: 900;
  color: #1A1A1A;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer02 .pageSub__link a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 8.2051282051vw 0;
  }
  .footer ul li {
    font-size: 3.3333333333vw;
    padding: 0 2.0512820513vw;
  }
  .footer p small {
    font-size: 3.3333333333vw;
  }
  .footer02 {
    margin-top: 8.2051282051vw;
  }
  .footer02 .pageSub__link {
    padding: 2.0512820513vw 0 2.0512820513vw 2.0512820513vw;
  }
  .footer02 .pageSub__link a {
    font-size: 4.6153846154vw;
    line-height: 1;
  }
}
.section01 {
  background: url(../../assets/img/section01_bg.png) no-repeat;
  background-size: cover;
}

.secBg01,
.section10 {
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFF0), to(#FFFF35));
  background: linear-gradient(0deg, #FFFFF0 0%, #FFFF35 100%);
}

.section06 {
  background: url(../../assets/img/section06_bg.png) no-repeat;
  background-size: cover;
}

.section09 {
  background: url(../../assets/img/section09_bg.png) no-repeat;
  background-size: cover;
}

.pageSub {
  padding: 40px 24px;
}
.pageSub__title {
  margin-bottom: 32px;
}
.pageSub__title h1 img {
  margin: 0 auto;
}
.pageSub__title-copyText {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-top: 16px;
}
.pageSub__title-copyText-small {
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
}
.pageSub__textBlock {
  border-bottom: 1px solid #0068F0;
  margin-bottom: 12px;
  padding-bottom: 8px;
}
.pageSub__textBlock h2 {
  font-size: 15px;
  font-weight: 900;
  padding-left: 12px;
  border-left: 4px solid #0068F0;
  margin-bottom: 8px;
}
.pageSub__textBlock p {
  font-size: 15px;
  padding-bottom: 8px;
}
.pageSub__textBlock p small {
  font-size: 13px;
}
.pageSub__textBlock p a {
  color: #1A1A1A;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pageSub__textBlock p a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pageSub__textBlock:last-child {
  border-bottom: none;
}

.pagePrivacyPolicy .pageSub__textBlock {
  border-bottom: none;
}
.pagePrivacyPolicy .pageSub__textBlock h2 {
  padding-left: 0;
}
.pagePrivacyPolicy .pageSub__textBlock h2 span {
  font-size: 18px;
  padding: 0 16px 0 5px;
}
.pagePrivacyPolicy .pageSub__textBlock p {
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  .pageSub {
    padding: 10.2564102564vw 6.1538461538vw;
  }
  .pageSub__title {
    margin-bottom: 8.2051282051vw;
  }
  .pageSub__title-copyText {
    font-size: 4.6153846154vw;
    margin-top: 4.1025641026vw;
  }
  .pageSub__title-copyText-small {
    font-size: 3.0769230769vw;
    margin-top: 2.0512820513vw;
  }
  .pageSub__textBlock {
    margin-bottom: 3.0769230769vw;
    padding-bottom: 2.0512820513vw;
  }
  .pageSub__textBlock h2 {
    font-size: 3.8461538462vw;
    padding-left: 3.0769230769vw;
    margin-bottom: 2.0512820513vw;
  }
  .pageSub__textBlock p {
    font-size: 3.8461538462vw;
    padding-bottom: 2.0512820513vw;
  }
  .pageSub__textBlock p small {
    font-size: 3.3333333333vw;
  }
  .pagePrivacyPolicy .pageSub__textBlock h2 span {
    font-size: 4.6153846154vw;
    padding: 0 4.1025641026vw 0 1.2820512821vw;
  }
}

/* ===== PC表示の見栄え調整（769px以上）=====
   このLPは body 幅 390px 固定のスマホ専用設計。
   PCでは白背景に細長く表示され不自然なため、
   背景を敷いて中央のコンテンツをカード状に見せる。
   スマホ表示（768px以下）には一切影響しない。 */
@media screen and (min-width: 769px) {
  html {
    background: #1a5fb4;
    background: linear-gradient(160deg, #1a5fb4 0%, #0d3d7a 100%);
    background-attachment: fixed;
    min-height: 100%;
  }

  body {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.35);
    background: #fff;
    min-height: 100vh;
  }
}
