@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html {
  color: #333333;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  width: 100%;
  background: #fff;
  z-index: 1000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  padding-top: 5px;
  height: 75px;
}
.c-header .logo > span {
  font-weight: 500;
  font-size: 7px;
  display: block;
}
.c-header .logo img {
  height: 40px;
}
.c-header .header-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.c-header .header-btns .btn {
  font-size: 14px;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-header .header-btns .btn.tel {
  background: #FF8800;
}
.c-header .header-btns .btn.line {
  background: #55CC4F;
}
.c-header .header-btns .btn.menu {
  background: #36A8FF;
}
.c-header .header-btns .btn.menu span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .header-btns .btn.menu span:nth-child(1) {
  top: 14px;
}
.c-header .header-btns .btn.menu span:nth-child(2) {
  top: 23px;
}
.c-header .header-btns .btn.menu span:nth-child(3) {
  top: 32px;
}
.c-header .header-btns .btn.menu.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 24px;
}
.c-header .header-btns .btn.menu.is-open span:nth-child(2) {
  opacity: 0;
}
.c-header .header-btns .btn.menu.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 24px;
}
.c-header {
  /* ドロワー */
}
.c-header .g-nav {
  position: absolute;
  top: 100%;
  right: -200vw;
  width: 100%;
  height: 100vh;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow-y: auto;
}
.c-header .g-nav .nav-list {
  list-style: none;
}
.c-header .g-nav .nav-list li {
  border-bottom: 1px solid #ddd;
}
.c-header .g-nav .nav-list li > a, .c-header .g-nav .nav-list li button {
  padding: 16px 18px 22px;
  display: block;
  position: relative;
  font-size: 14px;
}
.c-header .g-nav .nav-list li > a::after, .c-header .g-nav .nav-list li button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: url("../img/common/ico-arrow01.svg") no-repeat center/contain;
  width: 15px;
  height: 8px;
  display: block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-header .g-nav .nav-list li.ico-b > a::after, .c-header .g-nav .nav-list li.ico-b button::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.c-header .g-nav {
  /* アコーディオン */
}
.c-header .g-nav .has-child:has(.is-open) {
  border-bottom: none;
}
.c-header .g-nav .has-child .acc-btn {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  position: relative;
  cursor: pointer;
}
.c-header .g-nav .has-child .acc-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: url("../img/common/ico-arrow01.svg") no-repeat center/contain;
  width: 15px;
  height: 8px;
  display: block;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.c-header .g-nav .has-child .acc-btn.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-header .g-nav .has-child .acc-btn.is-open {
  border-bottom: 1px solid #ddd;
}
.c-header .g-nav .has-child .acc-content {
  max-height: 0;
  overflow: hidden;
  background: #F4F4F4;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
}
.c-header .g-nav .has-child .acc-content li a {
  display: block;
  padding: 14px 20px;
}
.c-header .g-nav .has-child .acc-content.is-open {
  max-height: 500px;
}
.c-header .cta-area {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 10px;
  z-index: 10;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .cta-area .wrap {
  width: 100%;
}
.c-header .cta-area .tel-btn {
  background: #FF8800;
  border-radius: 5px;
  color: #fff;
  -webkit-box-shadow: inset 0 0 0 2px #D46200, 0 2px 0 #d46200;
          box-shadow: inset 0 0 0 2px #D46200, 0 2px 0 #d46200;
  text-align: center;
  padding: 3px;
  width: 100%;
  max-width: 500px;
}
.c-header .cta-area .tel-btn .inn {
  border-radius: 5px;
  padding: 4px;
  border: 1px solid #fff;
  display: grid;
  grid-template-columns: 64px auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.c-header .cta-area .tel-btn .inn > div {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-header .cta-area .tel-btn .txt {
  font-size: 8px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.4em;
}
.c-header .cta-area .tel-btn .txt .fz12 {
  font-size: 12px;
}
.c-header .cta-area .tel-btn .tag {
  background: #fff;
  color: #FF8800;
  font-size: 6px;
  font-weight: bold;
  border-radius: 10px;
  line-height: 1;
  padding: 2px 4px;
  margin-bottom: 4px;
}
.c-header .cta-area .tel-btn .tag .num {
  font-size: 8px;
  display: inline-block;
  line-height: 1.4em;
}
.c-header .cta-area .tel-btn .num {
  letter-spacing: -0.05em;
  font-weight: bold;
  line-height: 1;
  font-size: 38px;
  display: block;
  white-space: nowrap;
}
.c-header .cta-area .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.c-header .cta-area .mail-btn {
  background: #0791FF;
  -webkit-box-shadow: inset 0 0 0 2px #0D71C3, 0 2px 0 #0d71c3;
          box-shadow: inset 0 0 0 2px #0D71C3, 0 2px 0 #0d71c3;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 5px;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header .cta-area .mail-btn img {
  width: 20px;
}
.c-header .cta-area .mail-btn .txt {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}
.c-header .cta-area .line-btn {
  background: #27AB20;
  -webkit-box-shadow: inset 0 0 0 2px #008F1A, 0 2px 0 #008f1a;
          box-shadow: inset 0 0 0 2px #008F1A, 0 2px 0 #008f1a;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 5px;
  width: 100%;
}
.c-header .cta-area .line-btn img {
  width: 20px;
}
.c-header .cta-area .line-btn .txt {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.c-footer {
  background: #333333;
  color: #fff;
  padding: 50px 0px 98px;
}
.c-footer .catch {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 5px;
}
.c-footer .contact-area {
  margin-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #999999;
}
.c-footer .tel {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.c-footer .tel::before {
  content: "";
  background: url(../img/common/ico-phone.svg) no-repeat center/contain;
  width: 13px;
  height: 13px;
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
}
.c-footer .tel a {
  line-height: 1.5;
}
.c-footer .mail {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  padding-left: 25px;
}
.c-footer .mail::before {
  content: "";
  background: url(../img/common/ico-mail.svg) no-repeat center/contain;
  width: 13px;
  height: 13px;
  display: block;
  position: absolute;
  top: 6px;
  left: 3px;
}
.c-footer .address {
  color: #999999;
  margin-top: 10px;
  font-size: 12px;
  padding-bottom: 30px;
}
.c-footer .copy-right {
  background: #0082E5;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 0;
}

.grecaptcha-badge {
  display: none;
}

.c-ttl01 {
  font-weight: bold;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 22px;
}
.c-ttl01 .tip {
  background-color: #0082E5;
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5px;
  padding-inline: 10px;
  border-radius: 20px;
  font-size: 14px;
}
.c-ttl01 .tip.or {
  background-color: #FF8800;
}
.c-ttl01 .tip.white {
  background: #fff;
  color: #0082E5;
}
.c-ttl01 .tip.blue {
  background: #0082E5;
}
.c-ttl01 .big {
  font-size: 28px;
}
.c-ttl01 .orange {
  color: #FF8800;
}
.c-ttl01 + .desc {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}

.c-ttl02 {
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.c-ttl02 .sub {
  font-size: 14px;
  position: relative;
  display: block;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 4px;
  padding-inline: 30px;
}
.c-ttl02 .sub::before, .c-ttl02 .sub::after {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-ttl02 .sub::before {
  left: 0;
}
.c-ttl02 .sub::after {
  right: 0;
}
.c-ttl02 .main {
  text-align: center;
  font-size: 24px;
  display: block;
  margin: 0 auto 4px;
  line-height: 1.6em;
}
.c-ttl02 .main .yel {
  color: #FEDA00;
  font-size: 30px;
}
.c-ttl02 + .desc {
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 14px;
}

.en {
  font-family: "Oswald", sans-serif;
}

.bold {
  font-weight: bold;
}

.c-sec {
  padding-block: 30px;
}
.c-sec.pb0 {
  padding-bottom: 0;
}

.video {
  max-width: 500px;
  width: 100%;
  margin: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

.c-check-list li {
  padding-left: 1rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-weight: bold;
  font-size: 14px;
}
.c-check-list li::before {
  content: "";
  background: url("../img/common/ico-check.svg") no-repeat center/contain;
  width: 16px;
  height: 16px;
  display: block;
  margin-top: 4px;
}
.c-check-list li .or {
  color: #FF8800;
}
.c-check-list li + li {
  margin-top: 5px;
}
.c-check-list.green li {
  padding-left: 0;
}
.c-check-list.green li::before {
  content: "";
  background: url("../img/common/ico-check-gr.svg") no-repeat center/contain;
}
.c-check-list.or li {
  padding-left: 0;
}
.c-check-list.or li::before {
  content: "";
  background: url("../img/common/ico-check-or.svg") no-repeat center/contain;
}

.c-cta-sec {
  min-height: 500px;
}
.c-cta-sec .cta-top-txt {
  background-color: #fff;
  padding-block: 10px;
}
.c-cta-sec .cta-top-txt img {
  max-width: 500px;
  display: block;
  width: 100%;
  margin: 0 auto;
}
.c-cta-sec .cta-block {
  background-color: #36A8FF;
  padding-block: 13px;
  padding-inline: 10px;
}
.c-cta-sec .cta-block .inn {
  border-radius: 10px;
  background-color: #fff;
  padding: 10px 10px 6px;
}
.c-cta-sec .cta-block .inn .img {
  display: block;
  margin: 0 auto 8px;
  width: 100%;
}
.c-cta-sec .cta-block .inn .img.mb-adj {
  margin-bottom: -15px;
}
.c-cta-sec .cta-block .ttl {
  font-size: 14px;
  background-color: #36A8FF;
  text-align: center;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: #fff;
  padding: 5px 24px;
  margin-top: -2.1em;
  border-radius: 20px;
  margin-bottom: 10px;
}
.c-cta-sec .cta-block .img {
  display: block;
  width: 100%;
  margin: auto;
}
.c-cta-sec .cta-block .tel-wrap {
  position: relative;
  z-index: 2;
  background-color: #FF8800;
  color: #fff;
  padding: 4px;
  border-radius: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  width: 100%;
}
.c-cta-sec .cta-block .tel-wrap .inn {
  border: 1px solid #fff;
  background-color: #FF8800;
  border-radius: 5px;
}
.c-cta-sec .cta-block .tel-wrap .top-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  gap: 5px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-cta-sec .cta-block .tel-wrap .top-txt .tip {
  background-color: #fff;
  color: #FF8800;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px;
  border-radius: 10px;
  padding: 0 5px;
}
.c-cta-sec .cta-block .tel-wrap .top-txt .tip .num {
  font-size: 12px;
}
.c-cta-sec .cta-block .tel-wrap .bottom-wrap {
  margin-top: 2px;
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 60px auto;
  gap: 10px;
  line-height: 1;
  font-size: 45px;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.c-cta-sec .cta-block .tel-wrap + .line-txt {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 12px;
  text-align: center;
  color: #55CC4F;
  font-weight: bold;
}
.c-cta-sec .cta-block .c-btn01 + .desc {
  font-size: 12px;
  margin-top: 8px;
  text-align: center;
}
.c-cta-sec .cta-block .line-wrap {
  background-color: #EEFFE4;
  margin-top: 10px;
  border-radius: 10px;
  padding: 10px;
}
.c-cta-sec .cta-block .line-wrap .line-ttl {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  display: grid;
  grid-template-columns: 110px auto;
  font-size: 15px;
  line-height: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
}
.c-cta-sec .cta-block .line-wrap .line-ttl .gr {
  color: #55CC4F;
  font-size: 16px;
}
.c-cta-sec .cta-block .line-wrap .line-ttl .tip {
  background-color: #55CC4F;
  color: #fff;
  padding: 5px 12px;
  display: grid;
  grid-template-columns: 21px auto;
  gap: 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 20px;
  font-size: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-cta-sec .cta-block .line-wrap .line-ttl .tip img {
  width: 21px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.c-cta-sec .cta-block .line-wrap .c-check-list {
  margin-bottom: 10px;
}
.c-cta-sec .cta-block .line-wrap .desc {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
}
.c-cta-sec .cta-block .payment-wrap {
  border: 1px solid #0082E5;
  border-radius: 5px;
  margin-top: 10px;
  overflow: hidden;
}
.c-cta-sec .cta-block .payment-wrap dt {
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #0082E5;
}
.c-cta-sec .cta-block .payment-wrap dd {
  padding: 10px 18px;
}
.c-cta-sec .cta-block .payment-wrap dd ul {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(8, minmax(auto, 1fr));
}

.c-blue-btn {
  border-radius: 5px;
  background: #0082E5;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  width: 100%;
  text-align: left;
}
.c-blue-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  -webkit-mask-image: url(../img/common/ico-arrow01.svg);
          mask-image: url(../img/common/ico-arrow01.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: #fff;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.js-toggle-btn.is-active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.c-cta-area {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#148EEB), to(#00AAFF));
  background: linear-gradient(#148EEB 0%, #00AAFF 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  z-index: 10;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-cta-area .tel-btn {
  background: #FF8800;
  border-radius: 5px;
  color: #fff;
  -webkit-box-shadow: inset 0 0 0 2px #D46200, 0 2px 0 #d46200;
          box-shadow: inset 0 0 0 2px #D46200, 0 2px 0 #d46200;
  text-align: center;
  padding: 6px 3px;
  margin-right: 10px;
  height: 70px;
}
.c-cta-area .tel-btn .inn {
  border-radius: 5px;
  padding: 3px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.c-cta-area .tel-btn .txt {
  font-size: 8px;
  font-weight: bold;
  display: inline-block;
}
.c-cta-area .tel-btn .tag {
  background: #fff;
  color: #FF8800;
  font-size: 8px;
  font-weight: bold;
  border-radius: 10px;
  padding: 2px 5px;
  line-height: 1;
  margin-right: 2px;
}
.c-cta-area .tel-btn .tag .num {
  font-size: 10px;
  display: inline-block;
  line-height: 1;
}
.c-cta-area .tel-btn .num {
  letter-spacing: -0.05em;
  font-weight: bold;
  line-height: 1;
  font-size: 36px;
  display: block;
}
.c-cta-area .mail-btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#6CACFE), to(#0791FF));
  background: linear-gradient(#6CACFE 0%, #0791FF 100%);
  -webkit-box-shadow: inset 0 0 0 2px #0D71C3, 0 2px 0 #0d71c3;
          box-shadow: inset 0 0 0 2px #0D71C3, 0 2px 0 #0d71c3;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px 11px;
  aspect-ratio: 1/1;
  width: 70px;
  height: 70px;
  margin-right: 5px;
}
.c-cta-area .mail-btn img {
  width: 26px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cta-area .mail-btn .txt {
  font-size: 10px;
  font-weight: bold;
  margin-top: 0;
  white-space: nowrap;
  line-height: 1.4em;
}
.c-cta-area .line-btn {
  background: #27AB20;
  -webkit-box-shadow: inset 0 0 0 2px #008F1A, 0 2px 0 #008f1a;
          box-shadow: inset 0 0 0 2px #008F1A, 0 2px 0 #008f1a;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 7px 11px;
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-cta-area .line-btn img {
  width: 25px;
  height: 24px;
}
.c-cta-area .line-btn .txt {
  font-size: 10px;
  font-weight: bold;
  margin-top: 3px;
  white-space: nowrap;
  line-height: 1.4em;
}

.c-btn01 {
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  max-width: 500px;
  width: 100%;
  border-radius: 5px;
  margin-inline: auto;
}
.c-btn01 .ico {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 30px;
}
.c-btn01.line {
  background-color: #55CC4F;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */

.main-wrap {
  background-color: #fff;
}
.home .area-block {
  background-color: #E4E4E4;
  padding: 7px 10px;
  color: #666;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
}
.home .mv-sec .top {
  position: relative;
}
.home .mv-sec .top .bg-wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.home .mv-sec .top .bg-wrap .bg {
  display: block;
  width: 100%;
}
.home .mv-sec .top .inner-block {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 0;
}
.home .mv-sec .top .inner-block > * {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}
.home .mv-sec .top .inner-block .or {
  font-size: 12px;
  background-color: #FF8800;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 5px 2px;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  margin-bottom: 10px;
}
.home .mv-sec .top .inner-block .main-txt {
  font-size: 25px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 2px;
}
.home .mv-sec .top .inner-block .main-txt .yel {
  display: block;
  color: #FEDA00;
  font-weight: 900;
  font-size: 30px;
}
.home .mv-sec .top .inner-block .sub-txt {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}
.home .mv-sec .feature-block {
  display: grid;
  grid-template-columns: repeat(4, minmax(auto, 1fr));
  background-color: #0082E5;
}
.home .mv-sec .feature-block > * {
  padding: 12px 10px 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}
.home .mv-sec .feature-block > * + * {
  border-left: solid 1px #fff;
}
.home .mv-sec .feature-block .num {
  line-height: 1;
}
.home .mv-sec .feature-block .num .en {
  font-size: 35px;
  color: #FEDA00;
}
.home .mv-sec .feature-block .num span {
  font-size: 16px;
  color: #fff;
}
.home .mv-sec .check-block {
  padding: 20px 5px;
}
.home .video-sec {
  border-radius: 20px;
  background-color: #36A8FF;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
}
.home .video-sec:not(:has(.c-ttl02)) {
  padding-top: 5px;
}
.home .video-sec .video {
  display: block;
  margin-inline: auto;
  border: none;
  margin-block: 20px;
}
.home .video-sec .video + .desc {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
}
.home .video-sec .additional-block {
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 10px;
  margin-top: 30px;
  background-color: #fff;
  padding: 26px 20px 20px;
  color: #333333;
}
.home .video-sec .additional-block .ttl {
  border-radius: 20px;
  padding: 2px 10px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: -2.5em;
  background-color: #FF8800;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
}
.home .video-sec .additional-block .main {
  color: #36A8FF;
  font-weight: 900;
  text-align: center;
  font-size: 18px;
}
.home .video-sec .additional-block .cost-img {
  margin: auto;
  margin-block: 10px;
  max-width: 500px;
  display: block;
  width: 100%;
}
.home .video-sec .additional-block .desc {
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}
.home .video-sec .additional-block .desc span {
  font-size: 14px;
}
.home .video-sec .additional-block .q-wrap {
  background-color: #FFF6DF;
  padding: 10px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  display: grid;
  grid-template-columns: 150px auto;
}
.home .video-sec .additional-block .q-wrap dt {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 3px;
}
.home .video-sec .additional-block .q-wrap dt::before {
  content: "";
  background: url("../img/common/ico-question.svg") no-repeat center/contain;
  width: 22px;
  height: 22px;
  display: block;
}
.home .video-sec .additional-block .q-wrap dd {
  font-size: 10px;
}
.home .check-sec {
  background-color: #FFF6DF;
}
.home .check-sec .inner-block {
  padding-inline: 10px;
}
.home .check-sec .card-list {
  margin-top: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 5px 10px;
}
.home .check-sec .card {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .check-sec .card input {
  display: none;
}
.home .check-sec .card.mt10 {
  margin-top: 10px;
}
.home .check-sec .card:has(.card-img) {
  width: calc(50% - 5px);
}
.home .check-sec .card-img {
  display: block;
  position: relative;
}
.home .check-sec .card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.home .check-sec .card .check-btn {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(200, 200, 200, 0.7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.home .check-sec .card .check-btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.home .check-sec .card-body {
  padding: 10px;
  display: block;
}
.home .check-sec .card-body .card-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
}
.home .check-sec .card-body .card-sub {
  font-size: 12px;
  color: #999;
  font-weight: bold;
  display: block;
}
.home .check-sec .card:has(input:checked) {
  border: 1px solid #FF8800;
}
.home .check-sec .card:has(input:checked) .check-btn {
  background: #FF8800;
}
.home .check-sec .card:not(:has(.card-img)) {
  padding: 5px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .check-sec .card:not(:has(.card-img)) .card-title {
  margin-bottom: 0;
}
.home .check-sec .card:not(:has(.card-img)) .check-btn {
  position: static;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.home .check-sec .card:not(:has(.card-img)) .card-body {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.home .check-sec .answer-wrap {
  background: #FFF8E1;
  border: 2px solid #FFE082;
  padding: 15px;
  display: grid;
  grid-template-columns: 50px auto;
  gap: 15px;
  margin-top: 10px;
  border-radius: 5px;
}
.home .check-sec .answer-wrap.red {
  background-color: #FFE2E2;
  border: 2px solid #FF4C4C;
  color: #FF4C4C;
}
.home .check-sec .answer-wrap.red .r-cont .alert {
  color: #FF4C4C;
}
.home .check-sec .answer-wrap.red + .desc span {
  color: #FF4C4C;
}
.home .check-sec .answer-wrap .l-cont {
  font-weight: bold;
  font-size: 10px;
  width: 50px;
  text-align: center;
  line-height: 1;
}
.home .check-sec .answer-wrap .l-cont .num {
  font-size: 40px;
}
.home .check-sec .answer-wrap .l-cont .num span {
  font-size: 14px;
}
.home .check-sec .answer-wrap .r-cont .main {
  font-size: 14px;
  font-weight: bold;
}
.home .check-sec .answer-wrap .r-cont .txt {
  font-size: 12px;
  font-weight: bold;
  color: #333333;
}
.home .check-sec .answer-wrap .r-cont .alert {
  font-size: 12px;
  color: #E65100;
}
.home .check-sec .answer-wrap + .desc {
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1.2em;
}
.home .check-sec .answer-wrap + .desc .red {
  color: #FF4C4C;
  font-size: 13px;
  font-weight: bold;
}
.home .risk-sec .txt {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
  line-height: 1.4em;
}
.home .risk-sec .txt .or {
  position: relative;
  color: #FF8800;
  z-index: 1;
  font-weight: bold;
}
.home .risk-sec .txt .or::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  z-index: -1;
  width: 100%;
  display: block;
  background-color: #FFF6DF;
}
.home .risk-sec .c-alert-wrap {
  margin-top: 20px;
}
.home .risk-sec .c-alert {
  border-radius: 10px;
  overflow: hidden;
  background: #EDF6FF;
}
.home .risk-sec .c-alert + .c-alert {
  margin-top: 20px;
}
.home .risk-sec .c-alert__toggle {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 10px 0;
  cursor: pointer;
}
.home .risk-sec .c-alert__toggle.is-active .c-alert__btn .ico {
  -webkit-transform: rotate(0deg) translateY(3px);
          transform: rotate(0deg) translateY(3px);
}
.home .risk-sec .c-alert__head {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 8px;
}
.home .risk-sec .c-alert__icon img {
  width: 100%;
  width: 80px;
  height: 80px;
  border-radius: 5px;
}
.home .risk-sec .c-alert__icon .txt {
  display: block;
  margin: 5px auto 0;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 12px;
}
.home .risk-sec .c-alert__title {
  display: grid;
  grid-template-columns: auto;
}
.home .risk-sec .c-alert__title .title {
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.home .risk-sec .c-alert__title .label {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
  padding: 1px 12px;
  font-size: 10px;
  background: #0082E5;
  color: #fff;
  border-radius: 20px;
}
.home .risk-sec .c-alert__title .lead {
  margin-top: 10px;
  border-left: 2px solid #0082E5;
  font-size: 12px;
  padding-left: 4px;
  font-weight: bold;
}
.home .risk-sec .c-alert__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 12px;
  color: #0082E5;
  font-size: 13px;
  position: relative;
  background-color: #EDF6FF;
  margin-bottom: 20px;
}
.home .risk-sec .c-alert__btn > span {
  position: relative;
  z-index: 2;
}
.home .risk-sec .c-alert__btn::before {
  content: "";
  width: 100%;
  z-index: 0;
  height: 2px;
  display: block;
  background-color: #0082E5;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.home .risk-sec .c-alert__btn::after {
  content: "";
  width: 140px;
  z-index: 0;
  height: 100%;
  display: block;
  background-color: #EDF6FF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.home .risk-sec .c-alert__btn .ico {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.home .risk-sec .c-alert.is-open .c-alert__btn .ico {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.home .risk-sec .c-alert__body {
  padding: 10px;
  font-size: 13px;
  line-height: 1.8;
}
.home .risk-sec .c-alert__body .inn {
  border-radius: 5px;
  background-color: #fff;
  padding: 10px;
}
.home .risk-sec .source-block {
  display: grid;
  gap: 9px;
  grid-template-columns: 30px auto;
  padding: 12px 10px 8px;
  margin-top: 20px;
  width: 100%;
  background-color: #EAEAEA;
  font-size: 12px;
  border-radius: 5px;
  line-height: 1.2em;
}
.home .risk-sec .source-block .img-wrap {
  background-color: #fff;
  padding: 6px;
  width: 30px;
  height: 30px;
  border-radius: 2px;
}
.home .risk-sec .source-block .img-wrap img {
  display: block;
  width: 100%;
}
.home .risk-sec .source-block .deco {
  text-decoration: underline;
}
.home .risk-sec .message-block {
  margin-top: 19px;
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #36A8FF;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding-block: 10px;
  font-weight: bold;
}
.home .risk-sec .message-block .yel {
  color: #FEDA00;
}
.home .risk-sec .message-block .desc {
  font-size: 12px;
}
.home .risk-sec .message-block .desc .big {
  font-size: 14px;
}
.home .risk-sec .message-block .small {
  font-size: 10px;
}
.home .reason-sec .point-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  padding-inline: 10px;
}
.home .reason-sec .point-list li {
  position: relative;
}
.home .reason-sec .point-list li + li {
  margin-top: 30px;
}
.home .reason-sec .point-list li .num {
  font-weight: bold;
  position: absolute;
  left: -13px;
  top: -10px;
  background-color: #36A8FF;
  color: #fff;
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
  display: block;
  line-height: 1;
  margin: auto;
  border-radius: 50%;
  text-align: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  font-size: 10px;
}
.home .reason-sec .point-list li .num span {
  display: block;
  font-size: 30px;
}
.home .reason-sec .point-list li .img-wrap {
  overflow: hidden;
  border-radius: 10px;
}
.home .reason-sec .point-list li .img-wrap img {
  display: block;
  width: 100%;
}
.home .reason-sec .point-list li .txt-block {
  padding-top: 15px;
}
.home .reason-sec .point-list li .txt-block .sub {
  font-size: 13px;
  font-weight: bold;
  color: #0082E5;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 10px;
}
.home .reason-sec .point-list li .txt-block h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.home .reason-sec .point-list li .txt-block h3 .or {
  color: #FF8800;
}
.home .reason-sec .point-list li .txt-block .desc-wrap {
  margin-top: 10px;
  border-radius: 5px;
  padding: 10px;
  background-color: #FFF6DF;
  font-size: 11px;
}
.home .reason-sec .point-list li .txt-block .desc {
  padding-left: 1em;
  position: relative;
  font-size: 10px;
  margin-top: 10px;
}
.home .reason-sec .point-list li .txt-block .desc::before {
  content: "※";
  position: absolute;
  left: 0;
}
.home .reason-sec .survey-block {
  padding-top: 20px;
}
.home .reason-sec .survey-block .ttl-img {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.home .reason-sec .survey-block .orange-wrap {
  padding-block: 14px 10px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#FEC300), to(#FF6A00));
  background: linear-gradient(180deg, #FEC300 0%, #FF6A00 100%);
}
.home .reason-sec .survey-block .bl-wrap {
  padding-block: 20px;
  background-color: #DEEFFF;
}
.home .reason-sec .survey-block .bl-wrap .white-box {
  margin-top: -10px;
  background-color: #fff;
  padding: 20px 20px;
  border-radius: 20px;
  z-index: 2;
  position: relative;
}
.home .reason-sec .survey-block .bl-wrap .white-box .ttl {
  background-color: #36A8FF;
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 20px;
  padding: 2px 10px;
  margin: auto;
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
}
.home .reason-sec .survey-block .bl-wrap .white-box .c-check-list li {
  padding-left: 0;
}
.home .risk-sec .graph-wrap {
  max-width: 500px;
  display: block;
  width: 100%;
  margin: 20px auto 10px;
}
.home .risk-sec .graph-wrap img {
  display: block;
  margin-inline: auto;
}
.home .risk-sec .img-ttl {
  display: block;
  width: 100%;
  margin: auto;
  max-width: 800px;
}
.home .type-sec {
  background-color: #DEEFFF;
}
.home .type-sec .swiper-wrapper-outer {
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}
.home .type-sec .swiper {
  overflow: visible;
  padding: 0 10px;
}
.home .type-sec .swiper .swiper-slide {
  max-width: 320px;
  width: 100%;
}
.home .type-sec .card {
  padding: 20px;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
}
.home .type-sec .card-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 14px;
  margin-bottom: 20px;
}
.home .type-sec .slide-counter {
  color: #0082E5;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
}
.home .type-sec .slide-counter .current {
  font-size: 18px;
}
.home .type-sec .slide-hint {
  margin-top: 10px;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
  color: #666;
}
.home .type-sec .card-num {
  position: absolute;
  left: 0;
  top: 0;
  background: #0082E5;
  color: #fff;
  border-radius: 10px 0 10px 0;
  font-size: 16px;
  font-weight: 900;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.home .type-sec .card-header-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home .type-sec .card-tag {
  font-weight: bold;
  margin-bottom: 4px;
  color: #0082E5;
  font-size: 12px;
}
.home .type-sec .card-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.1;
}
.home .type-sec .card-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.home .type-sec .card-img img {
  display: block;
  width: 100%;
}
.home .type-sec .card-desc {
  font-size: 12px;
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 1.4em;
  border-bottom: 1px solid #D9D9D9;
}
.home .type-sec .card-body {
  padding-top: 8px;
}
.home .type-sec .info-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .type-sec .info-row:last-child {
  margin-bottom: 0;
}
.home .type-sec .info-label {
  font-size: 12px;
  font-weight: 700;
  min-width: 37px;
  padding-top: 1px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: #0082E5;
}
.home .type-sec .info-text {
  font-size: 12px;
  line-height: 1.6;
}
.home .type-sec .orange-wrap {
  margin-top: 20px;
  padding-block: 10px 10px;
  font-weight: bold;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#FEC300), to(#FF6A00));
  background: linear-gradient(180deg, #FEC300 0%, #FF6A00 100%);
}
.home .type-sec .orange-wrap .inner-block {
  position: relative;
}
.home .type-sec .orange-wrap .inner-block::before {
  content: "";
  background: url("../img/home/orange-ppl01.png.webp") no-repeat center/contain;
  width: 93px;
  height: auto;
  aspect-ratio: 93/80;
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.home .type-sec .orange-wrap .inner-block::after {
  content: "";
  background: url("../img/home/orange-ppl02.png.webp") no-repeat center/contain;
  width: 93px;
  height: auto;
  aspect-ratio: 93/80;
  display: block;
  position: absolute;
  right: 0;
  bottom: -10px;
}
.home .flow-sec .section-header {
  position: relative;
}
.home .flow-sec .section-header .task {
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 40px;
}
.home .flow-sec .section-header .task p {
  position: relative;
  padding-left: 1.5em;
}
.home .flow-sec .section-header .task p::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  aspect-ratio: 1/1;
  display: block;
  background-color: #FF8800;
  border-radius: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.home .flow-sec .section-header .task p:nth-child(2)::before {
  background-color: #0082E5;
}
.home .flow-sec .swiper-wrapper-outer {
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  margin-top: -80px;
}
.home .flow-sec .swiper-slide.or .card-header {
  background-color: #FF8800;
}
.home .flow-sec .swiper-slide.or .card {
  border: 1px solid #FF8800;
}
.home .flow-sec .swiper-slide.or .card-tag {
  color: #FF8800;
}
.home .flow-sec .swiper-slide.or .card-body .ttl {
  color: #FF8800;
}
.home .flow-sec .swiper-slide.txt {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: auto;
}
.home .flow-sec .swiper-slide.txt .card {
  border: none;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
}
.home .flow-sec .swiper-slide.txt .card-img img {
  display: block;
  width: 20px;
}
.home .flow-sec .swiper {
  position: relative;
  overflow: hidden;
  padding: 65px 0 0;
}
.home .flow-sec .swiper-pagination {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
}
.home .flow-sec .swiper-pagination .swiper-pagination-bullet:nth-child(1) {
  background-color: #FF8800;
}
.home .flow-sec .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  margin-inline: 2px;
}
.home .flow-sec .swiper .swiper-slide {
  width: 85%;
}
.home .flow-sec .card {
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  border: 1px solid #0082E5;
  overflow: hidden;
  height: 100%;
}
.home .flow-sec .card-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 6px 10px 8px;
  background-color: #0082E5;
  line-height: 1;
}
.home .flow-sec .slide-hint {
  margin-top: 10px;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
  color: #666;
}
.home .flow-sec .card-num {
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  width: 50px;
}
.home .flow-sec .card-header-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.home .flow-sec .card-tag {
  font-weight: bold;
  color: #0082E5;
  background-color: #fff;
  font-size: 10px;
  padding: 1px 3px;
  border-radius: 2px;
  width: 30px;
  line-height: 1;
}
.home .flow-sec .card-title {
  color: #fff;
  width: 100%;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.1;
}
.home .flow-sec .card-img {
  width: 100%;
  display: block;
}
.home .flow-sec .card-img img {
  width: 100%;
}
.home .flow-sec .card-desc {
  font-size: 12px;
  font-weight: bold;
  padding-bottom: 10px;
  line-height: 1.4em;
  border-bottom: 1px solid #D9D9D9;
}
.home .flow-sec .card-body {
  height: 100%;
  padding: 10px 14px 15px;
}
.home .flow-sec .card-body .ttl {
  color: #0082E5;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  padding-left: 1.5em;
}
.home .flow-sec .card-body .ttl::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
}
.home .flow-sec .card-body .info-text {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
}
.home .flow-sec .card-body .info-text-small {
  font-size: 10px;
  color: #666;
  margin-top: 10px;
}
.home .flow-sec .desc-block {
  margin-top: 20px;
  background-color: #FFF6DF;
  padding: 10px 15px;
  text-align: center;
  border-radius: 10px;
}
.home .flow-sec .desc-block .ttl {
  font-size: 16px;
  color: #FF8800;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 2px;
  font-weight: bold;
}
.home .flow-sec .desc-block .ttl .bold {
  font-size: 20px;
}
.home .flow-sec .desc-block .txt {
  font-size: 12px;
}
.home .flow-sec .desc-block .txt .bold {
  font-size: 14px;
}
.home .work-sec {
  background-color: #DEEFFF;
}
.home .work-sec .inner-block {
  padding-inline: 10px;
}
.home .work-sec .step-list {
  margin-top: 20px;
}
.home .work-sec .step-list li {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 100px;
}
.home .work-sec .step-list li + li {
  margin-top: 37px;
  position: relative;
}
.home .work-sec .step-list li + li::before {
  content: "";
  background: url("../img/common/ico-arrow04.svg") no-repeat center/contain;
  width: 32px;
  height: 17px;
  aspect-ratio: 32/17;
  display: block;
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.home .work-sec .step-list li img {
  border-radius: 5px;
}
.home .work-sec .step-list li .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
  font-weight: bold;
}
.home .work-sec .step-list li .head .tip {
  font-size: 10px;
  display: block;
  line-height: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  background-color: #0082E5;
  color: #fff;
}
.home .work-sec .step-list li .head .ttl {
  color: #0082E5;
  font-size: 20px;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
}
.home .work-sec .step-list li .body .arrow-txt {
  color: #FF8800;
  font-weight: bold;
  font-size: 12px;
  position: relative;
  padding-left: 1.5em;
}
.home .work-sec .step-list li .body .arrow-txt::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
}
.home .work-sec .step-list li.or {
  background-color: #FFF6DF;
  grid-template-rows: repeat(2, auto);
}
.home .work-sec .step-list li.or .head .tag-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.home .work-sec .step-list li.or .tip {
  background-color: #FF8800;
}
.home .work-sec .step-list li.or .tip.jp {
  background-color: #fff;
  color: #FF8800;
  border: 1px solid #FF8800;
}
.home .work-sec .step-list li.or .ttl {
  color: #FF8800;
}
.home .work-sec .step-list li.or .desc {
  grid-column: span 2/span 2;
  grid-row-start: 2;
}
.home .work-sec .desc-block {
  padding: 10px;
  text-align: center;
  background-color: #36A8FF;
  border-radius: 10px;
  margin-top: 20px;
}
.home .work-sec .desc-block .ttl {
  font-size: 14px;
  color: #FEDA00;
  font-weight: bold;
  margin-bottom: 10px;
}
.home .work-sec .desc-block .txt {
  color: #fff;
  font-size: 12px;
}
.home .work-sec .desc-block.wh {
  background-color: #fff;
}
.home .work-sec .desc-block.wh .ttl {
  font-weight: 400;
  color: #333333;
}
.home .work-sec .desc-block.wh .txt {
  color: #333333;
  font-size: 13px;
}
.home .work-sec .desc-block.wh .txt .or {
  font-size: 14px;
  font-weight: bold;
  color: #FF8800;
}
.home .pricing-sec .price-tbl {
  width: 100%;
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
.home .pricing-sec .price-tbl tr + tr {
  border-top: 1px solid #D9D9D9;
}
.home .pricing-sec .price-tbl th {
  width: 33.3333333333%;
  background-color: #0082E5;
  color: #fff;
  padding: 8px;
  font-size: 13px;
  vertical-align: middle;
  text-align: center;
}
.home .pricing-sec .price-tbl th + th {
  border-left: 1px solid #D9D9D9;
}
.home .pricing-sec .price-tbl td {
  text-align: center;
  vertical-align: middle;
  padding: 10px 5px;
  font-size: 11px;
  font-weight: bold;
}
.home .pricing-sec .price-tbl td.or {
  background-color: #FFF6DF;
  color: #FF8800;
  font-size: 16px;
}
.home .pricing-sec .price-tbl td.or.tar span {
  display: block;
  width: 100%;
  max-width: 100px;
  margin: auto;
  text-align: right;
}
.home .pricing-sec .price-tbl td + td {
  border-left: 1px solid #D9D9D9;
}
.home .pricing-sec .q-wrap {
  margin-top: 10px;
  background-color: #FFF6DF;
  padding: 10px;
  border-radius: 5px;
}
.home .pricing-sec .q-wrap dt {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 3px;
}
.home .pricing-sec .q-wrap dt::before {
  content: "";
  background: url("../img/common/ico-question.svg") no-repeat center/contain;
  width: 22px;
  height: 22px;
  display: block;
}
.home .pricing-sec .q-wrap dd {
  font-size: 10px;
}
.home .pricing-sec .desc-block {
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  background-color: #E4E4E4;
}
.home .pricing-sec .desc-block .desc-txt li {
  position: relative;
  font-size: 10px;
  padding-left: 1.2em;
}
.home .pricing-sec .desc-block .desc-txt li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.home .pricing-sec .attention-block {
  margin-top: 20px;
}
.home .pricing-sec .attention-block .ttl {
  text-align: center;
  color: #FF2525;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.home .pricing-sec .attention-block .attention-tbl {
  width: 100%;
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
.home .pricing-sec .attention-block .attention-tbl th {
  color: #fff;
  padding: 6px 8px 6px;
  padding-left: 25px;
  font-size: 13px;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  width: 50%;
  position: relative;
}
.home .pricing-sec .attention-block .attention-tbl th + th {
  border-left: 1px solid #D9D9D9;
}
.home .pricing-sec .attention-block .attention-tbl th:nth-child(1) {
  background-color: #082E41;
}
.home .pricing-sec .attention-block .attention-tbl th:nth-child(1)::before {
  content: "";
  -webkit-mask-image: url("../img/common/ico-cross.svg");
          mask-image: url("../img/common/ico-cross.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  mask-repeat: no-repeat;
  width: 10px;
  height: 10px;
  display: block;
  background: #FF2525;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  margin: auto;
}
.home .pricing-sec .attention-block .attention-tbl th:nth-child(2) {
  background-color: #0082E5;
  color: #fff;
}
.home .pricing-sec .attention-block .attention-tbl th:nth-child(2)::before {
  content: "";
  background: url("../img/common/ico-check02.svg") no-repeat center/contain;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}
.home .pricing-sec .attention-block .attention-tbl tr + tr {
  border-top: 1px solid #D9D9D9;
}
.home .pricing-sec .attention-block .attention-tbl td:nth-child(1) {
  background-color: #FFEEEE;
}
.home .pricing-sec .attention-block .attention-tbl td:nth-child(2) {
  background-color: #DEEFFF;
}
.home .pricing-sec .attention-block .attention-tbl td {
  text-align: center;
  vertical-align: middle;
  padding: 10px 5px;
  font-size: 11px;
  font-weight: bold;
}
.home .pricing-sec .attention-block .attention-tbl td + td {
  border-left: 1px solid #D9D9D9;
}
.home .pricing-sec .attention-block .desc-block {
  padding: 20px;
  border-radius: 5px;
  background-color: #DEEFFF;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
}
.home .guarantee-sec {
  padding-inline: 20px;
}
.home .guarantee-sec .inner-block {
  background-color: #FFF6DF;
  padding-inline: 10px;
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 20px;
  border-radius: 10px;
}
.home .guarantee-sec .ttl-img {
  position: absolute;
  left: 0;
  right: 0;
  margin: -100px auto 40px;
  width: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  aspect-ratio: 1/1;
  height: auto;
}
.home .guarantee-sec .c-check-list {
  margin-top: 10px;
}
.home .guarantee-sec .c-check-list li {
  background-color: #fff;
  padding: 7px 10px;
  border-radius: 5px;
}
.home .guarantee-sec .desc-txt {
  padding-left: 1em;
  position: relative;
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
  color: #999999;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 0;
}
.home .guarantee-sec .desc-txt::before {
  content: "※";
  position: absolute;
  left: 0;
}
.home .voice-section {
  overflow: hidden;
}
.home .voice-section .orange-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #FFF6DF;
  border-radius: 10px;
  text-align: center;
  padding: 10px 0 5px;
  margin-top: 20px;
  margin-bottom: 16px;
}
.home .voice-section .orange-box .box {
  width: 33.3333333333%;
  position: relative;
}
.home .voice-section .orange-box .box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #ccc;
  width: 1px;
  height: 100%;
}
.home .voice-section .orange-box .box:last-child::after {
  display: none;
}
.home .voice-section .orange-box .top {
  display: block;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.4;
  color: #FF8800;
  margin-top: -2px;
}
.home .voice-section .orange-box .figure {
  line-height: 1.4;
  font-size: 20px;
  font-weight: bold;
}
.home .voice-section .orange-box .figure .strong {
  color: #FF8800;
  line-height: 1.4;
  font-size: 30px;
}
.home .voice-section .orange-box .figure.small {
  letter-spacing: 0;
  font-size: 16px;
}
.home .voice-section .orange-box .figure .slash {
  font-size: 18px;
  line-height: 1.4;
}
.home .voice-section .guide-wrap {
  text-align: center;
}
.home .voice-section .guide-wrap .guide {
  display: inline-block;
  text-align: left;
  color: #999999;
  position: relative;
  font-weight: 500;
  font-size: 12px;
  padding-right: 20px;
}
.home .voice-section .guide-wrap .guide::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-mask: url("../img/common/ico-arrow03.svg");
          mask: url("../img/common/ico-arrow03.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 12px;
  height: 20px;
  display: block;
  background: #999999;
}
.home .voice-section .voice-swiper {
  margin-top: 20px;
  overflow: visible;
}
.home .voice-section .voice-swiper .swiper-wrapper {
  padding-bottom: 30px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.home .voice-section .voice-swiper .swiper-slide {
  border-radius: 10px;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
.home .voice-section .voice-swiper .img-area {
  position: relative;
  border-radius: 10px 10px 0 0;
}
.home .voice-section .voice-swiper .img-area img {
  display: block;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.home .voice-section .voice-swiper .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 10px;
  bottom: 13px;
  gap: 5px;
}
.home .voice-section .voice-swiper .tag-list .tag {
  display: inline-block;
  background: #555555;
  color: #fff;
  border-radius: 2px;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
  font-weight: bold;
  padding: 1px 5px;
}
.home .voice-section .voice-swiper .cont {
  padding: 10px;
}
.home .voice-section .voice-swiper .top-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 9px;
}
.home .voice-section .voice-swiper .name {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 2px;
}
.home .voice-section .voice-swiper .date {
  color: #999999;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
}
.home .voice-section .voice-swiper .rate-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
}
.home .voice-section .voice-swiper .star {
  background: url("../img/common/ico-star.svg") no-repeat center/contain;
  width: 12px;
  height: 11px;
  display: block;
}
.home .voice-section .voice-swiper .worry-cont {
  display: inline-block;
  background: #FFE4E4;
  color: #FF513A;
  border-radius: 2px;
  font-weight: bold;
  line-height: 1.4;
  font-size: 12px;
  padding: 2px 5px;
}
.home .voice-section .voice-swiper .main-ttl {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 10px;
}
.home .voice-section .voice-swiper .toggle-btn {
  text-align: center;
  width: 100%;
  position: relative;
}
.home .voice-section .voice-swiper .toggle-btn.is-active::after {
  -webkit-transform: inherit;
          transform: inherit;
}
.home .voice-section .voice-swiper .toggle-btn.is-active .txt::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.home .voice-section .voice-swiper .toggle-btn::before {
  content: "";
  background: #0082E5;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30%;
  height: 1px;
}
.home .voice-section .voice-swiper .toggle-btn::after {
  content: "";
  background: #0082E5;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 30%;
  height: 1px;
}
.home .voice-section .voice-swiper .toggle-btn .txt {
  display: inline-block;
  font-size: 13px;
  line-height: 1.8;
  font-weight: bold;
  color: #0082E5;
  position: relative;
  padding-right: 28px;
}
.home .voice-section .voice-swiper .toggle-btn .txt::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -9px;
  margin: auto;
  background: url(../img/common/ico-arrow02.svg) no-repeat center/contain;
  width: 36px;
  height: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .voice-section .voice-swiper .desc {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.8;
  margin-top: 10px;
}
.home .voice-section .voice-swiper .blue-box {
  background: #DEEFFF;
  border-radius: 5px;
  margin-top: 10px;
  padding: 10px 10px;
}
.home .voice-section .voice-swiper .blue-box .box-ttl {
  color: #0082E5;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.home .voice-section .voice-swiper .blue-box .box-desc {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}
.home .voice-section .voice-swiper .swiper-pagination {
  bottom: 0px;
}
.home .voice-section .voice-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 2.5px;
}
.home .voice-section .voice-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0082E5;
}
.home .faq-section {
  background: #DEEFFF;
}
.home .faq-section .desc {
  margin-bottom: 16px;
}
.home .faq-section .faq-cat {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}
.home .faq-section .faq-box + .faq-box {
  margin-top: 10px;
}
.home .faq-section .faq-box + .faq-cat {
  margin-top: 20px;
}
.home .faq-section .q-area {
  font-size: 13px;
  padding: 9px 20px 9px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 10px;
}
.home .faq-section .q-area .ico {
  background: #fff;
  color: #0082E5;
}
.home .faq-section .q-area .txt {
  line-height: 1.4;
}
.home .faq-section .ico {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.home .faq-section .txt {
  text-align: left;
}
.home .faq-section .a-area {
  background: #fff;
  border-radius: 5px;
  margin-top: 5px;
  padding: 10px;
}
.home .faq-section .a-area .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.home .faq-section .a-area .ico {
  background: #0082E5;
  color: #fff;
}
.home .faq-section .a-area .txt {
  font-size: 12px;
  line-height: 1.6;
}
.home .faq-section .bottom-desc {
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 20px;
}
.home .faq-section .bottom-desc .link {
  color: #0082E5;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.home .area-section {
  background: url("../img/home/bg.svg") repeat 9px;
}
.home .area-section .pref-cont {
  margin: 17px auto 16px;
  display: block;
  text-align: center;
}
.home .area-section .pref-box + .pref-box {
  margin-top: 10px;
}
.home .area-section .c-blue-btn {
  padding: 20px 30px 20px 20px;
  font-size: 12px;
}
.home .area-section .c-blue-btn::after {
  right: 20px;
}
.home .area-section .area-cont {
  font-size: 12px;
  border: 1px solid #0082E5;
  border-radius: 5px;
  padding: 8px 10px;
  margin-top: 10px;
  line-height: 1.6;
}
.home .area-section .contact-box {
  background: #DEEFFF;
  border-radius: 5px;
  padding: 15px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
}
.home .area-section .contact-box .contact-box-ttl {
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 8px;
}
.home .area-section .contact-box .box-desc {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.home .area-section .contact-box .box-desc .link {
  color: #0082E5;
  font-weight: bold;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  font-size: 14px;
}
.home .contact-section {
  background: #36A8FF;
  color: #fff;
}
.home .contact-section .c-ttl01 + .desc {
  margin-top: 25px;
}
.home .contact-section .top-attention {
  position: relative;
  font-size: 10px;
  font-weight: 500;
  padding-left: 10px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.home .contact-section .top-attention:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.home .contact-section .white-box {
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  color: #333333;
}
.home .contact-section .box-attention {
  position: relative;
  color: #999999;
  font-size: 12px;
  font-weight: 500;
  padding-left: 15px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.home .contact-section .box-attention:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.home .contact-section .label-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}
.home .contact-section .q-tag {
  border-radius: 10px;
  background: #0082E5;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  font-size: 10px;
  padding: 3px 5px;
  line-height: 1;
}
.home .contact-section .q-tag.optional {
  background: #999999;
}
.home .contact-section .q-label {
  font-weight: 500;
  font-size: 16px;
}
.home .contact-section .input-area {
  margin-bottom: 20px;
}
.home .contact-section .input-area .box-attention {
  margin-top: 10px;
}
.home .contact-section .input-area .txt {
  color: #999999;
  font-size: 12px;
  font-weight: 500;
  margin: 7px 0;
}
.home .contact-section input[type=text], .home .contact-section input[type=email], .home .contact-section input[type=tel], .home .contact-section textarea {
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 16px;
  padding: 13px 13px;
}
.home .contact-section textarea {
  min-height: 150px;
}
.home .contact-section .select-wrap {
  position: relative;
  padding: 13px 13px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.home .contact-section .select-wrap::after {
  content: "";
  background-image: url("../img/common/ico-arrow01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12px;
  height: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  margin: auto;
}
.home .contact-section .select-wrap select {
  width: 100%;
}
.home .contact-section .checkbox-group.situation .wpcf7-checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .contact-section .checkbox-group.situation label {
  width: 100%;
  background: #9ED5FF;
  display: block;
  border-radius: 40px;
  padding: 7px 10px;
  border: 1px solid #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .contact-section .checkbox-group.situation label.is-active {
  background: #36A8FF;
}
.home .contact-section .checkbox-group.situation label input {
  height: 0;
  width: 0;
  position: absolute;
}
.home .contact-section .error-txt {
  color: red;
}
.home .contact-section .policy-ttl {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 7px;
}
.home .contact-section .desc-wrap {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.home .contact-section .inn {
  overflow: auto;
  max-height: 176px;
}
.home .contact-section .policy-item {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}
.home .contact-section .policy-item + * {
  margin-top: 8px;
}
.home .contact-section .policy-desc {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}
.home .contact-section .policy-desc + * {
  margin-top: 8px;
}
.home .contact-section .dot-list li {
  position: relative;
  padding-left: 1em;
  font-size: 10px;
}
.home .contact-section .dot-list li::before {
  content: "";
  top: 0.5em;
  left: 0;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #333333;
}
.home .contact-section .dot-list + * {
  margin-top: 8px;
}
.home .contact-section .privacy-block .input-area {
  margin-bottom: 0;
}
.home .contact-section .privacy-block .checkbox-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7px;
}
.home .contact-section .privacy-block .checkbox-group .wpcf7-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid #E4E4E4;
  font-size: 0 !important;
  position: absolute;
  top: -2px;
  left: 0;
  bottom: 0;
  margin: auto;
}
.home .contact-section .privacy-block .checkbox-group label {
  position: relative;
  display: block;
  padding-left: 30px;
  font-weight: 500;
  cursor: pointer;
}
.home .contact-section .privacy-block .checkbox-group input {
  position: absolute;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
}
.home .contact-section .privacy-block .checkbox-group input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.home .contact-section .privacy-block .checkbox-group .wpcf7-list-item {
  display: inline !important;
  margin: 0 !important;
}
.home .contact-section .privacy-block .checkbox-group .wpcf7-list-item-label {
  display: inline !important;
  margin: 0 !important;
  font-size: 0 !important;
}
.home .contact-section .privacy-block .checkbox-group .wpcf7-list-item-label::after {
  content: "";
  background: url(../img/common/ico-check.svg) no-repeat center/cover;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .contact-section .privacy-block .checkbox-txt {
  font-weight: 500;
}
.home .contact-section .small-txt {
  text-align: center;
  color: #999999;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 500;
}
.home .contact-section .contact-btn {
  color: #fff;
  text-align: center;
  background: #00AAFF;
  display: block;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 0;
  width: 100%;
  margin-top: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border: 1px solid #fff;
}
.home .contact-section .contact-btn.back-btn {
  background: #999999;
}
.home .contact-section .confirm-block {
  display: none;
}
.home .contact-section .complete-block .main-txt {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.home .contact-section .complete-block .desc {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
}
.home .contact-section .complete-block .desc + .desc {
  margin-top: 10px;
}
.home .contact-section .complete-block .attention-wrap {
  margin: auto;
  text-align: center;
}
.home .contact-section .complete-block .box-attention {
  margin-top: 20px;
  display: inline-block;
}
@media screen and (width < 768px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-inline: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header .g-nav.is-open {
    right: 0;
  }
  .home {
    margin-top: 73px;
  }
}
@media screen and (768px <= width) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-inline: 30px;
    max-width: 1280px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-header {
    max-width: 600px;
  }
  .c-header .header-inner {
    height: 120px;
    padding: 8px 16px;
  }
  .c-header .logo {
    margin: auto;
    text-align: center;
  }
  .c-header .logo > span {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .c-header .logo img {
    height: 60px;
  }
  .c-header .g-nav {
    position: fixed;
    top: 5%;
    right: 6vw;
    width: 340px;
    padding: 10px;
    font-weight: bold;
    border-radius: 20px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: calc(100vh - 100px - 80px);
    z-index: 9999;
  }
  .c-header .g-nav .has-child .acc-btn {
    font-weight: bold;
  }
  .c-footer {
    padding-bottom: 100px;
  }
  .c-footer .catch {
    font-size: 14px;
  }
  .c-footer .tel {
    font-size: 16px;
  }
  .c-footer .mail {
    font-size: 16px;
  }
  .c-footer .address {
    font-size: 14px;
  }
  .c-footer .copy-right {
    font-size: 14px;
  }
  .c-ttl01 {
    font-size: 30px;
  }
  .c-ttl01 .big {
    font-size: 36px;
  }
  .c-ttl01 + .desc {
    font-size: 16px;
    margin-top: 20px;
  }
  .c-ttl02 {
    margin-bottom: 18px;
  }
  .c-ttl02 .sub {
    width: 100%;
    font-size: 16px;
    text-align: center;
    margin-bottom: 24px;
  }
  .c-ttl02 .sub::before, .c-ttl02 .sub::after {
    width: 28%;
  }
  .c-ttl02 .main {
    font-size: 30px;
  }
  .c-ttl02 .main .yel {
    font-size: 36px;
  }
  .c-ttl02 + .desc {
    font-size: 16px;
  }
  .video {
    border-radius: 20px;
    max-width: 800px;
  }
  .c-check-list li {
    gap: 10px;
    font-size: 20px;
  }
  .c-check-list li::before {
    width: 20px;
    height: 20px;
  }
  .c-check-list li + li {
    margin-top: 4px;
  }
  .c-cta-sec {
    background-color: #36A8FF;
    min-height: 400px;
  }
  .c-cta-sec {
    background-color: #36A8FF;
  }
  .c-cta-sec .cta-top-txt {
    padding-block: 16px 8px;
    padding-inline: 20px;
  }
  .c-cta-sec .cta-block {
    padding: 24px 30px 30px;
  }
  .c-cta-sec .cta-block .inn {
    padding: 20px;
  }
  .c-cta-sec .cta-block .inn .img {
    max-width: 600px;
  }
  .c-cta-sec .cta-block .ttl {
    font-size: 18px;
    margin-top: -3em;
  }
  .c-cta-sec .cta-block .tel-wrap .inn {
    padding: 4px;
  }
  .c-cta-sec .cta-block .tel-wrap .top-txt {
    gap: 24px;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
  }
  .c-cta-sec .cta-block .tel-wrap .top-txt .tip {
    line-height: 1.2em;
    font-size: 14px;
    padding: 2px 8px;
    margin-bottom: 0;
    border-radius: 20px;
  }
  .c-cta-sec .cta-block .tel-wrap .top-txt .tip .num {
    font-size: 18px;
  }
  .c-cta-sec .cta-block .tel-wrap .bottom-wrap {
    grid-template-columns: 80px auto;
    font-size: 57px;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1;
  }
  .c-cta-sec .cta-block .tel-wrap .bottom-wrap img {
    display: block;
    width: 100%;
  }
  .c-cta-sec .cta-block .tel-wrap + .line-txt {
    font-size: 20px;
  }
  .c-cta-sec .cta-block .c-btn01 + .desc {
    font-size: 18px;
    margin-top: 16px;
  }
  .c-cta-sec .cta-block .line-wrap {
    padding: 20px;
    margin-top: 24px;
    border-radius: 20px;
  }
  .c-cta-sec .cta-block .line-wrap .line-ttl {
    line-height: 1.4em;
    gap: 11px;
    font-size: 16px;
    margin-bottom: 24px;
  }
  .c-cta-sec .cta-block .line-wrap .line-ttl .gr {
    font-size: 16px;
  }
  .c-cta-sec .cta-block .line-wrap .line-ttl .tip {
    gap: 5px;
    padding: 4px 12px;
    font-size: 14px;
  }
  .c-cta-sec .cta-block .line-wrap .c-check-list {
    margin-bottom: 24px;
  }
  .c-cta-sec .cta-block .line-wrap .desc {
    margin-top: 16px;
    font-size: 16px;
  }
  .c-cta-sec .cta-block .payment-wrap {
    max-width: 800px;
    margin: 24px auto 0;
  }
  .c-cta-sec .cta-block .payment-wrap dt {
    font-size: 18px;
    padding: 8px 16px;
  }
  .c-cta-sec .cta-block .payment-wrap dd {
    padding: 16px 24px;
  }
  .c-cta-sec .cta-block .payment-wrap dd ul {
    gap: 8px;
  }
  .c-blue-btn {
    border-radius: 10px;
  }
  .c-blue-btn::after {
    right: 24px;
    width: 16px;
    height: 16px;
  }
  .c-btn01 {
    max-width: 800px;
    margin: auto;
    border-radius: 10px;
  }
  .c-btn01.line {
    font-size: 24px;
  }
  .bg-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #DEEFFF;
  }
  .main-wrap {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    position: relative;
    z-index: 1;
    -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);
  }
  .home .area-block {
    font-size: 16px;
    padding: 8px;
  }
  .home .mv-sec .top .bg-wrap {
    height: 512px;
    position: relative;
  }
  .home .mv-sec .top .bg-wrap .bg {
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
  }
  .home .mv-sec .top .inner-block {
    bottom: 30px;
  }
  .home .mv-sec .top .inner-block .or {
    padding: 5px 14px;
    font-size: 18px;
  }
  .home .mv-sec .top .inner-block .main-txt {
    font-size: 30px;
  }
  .home .mv-sec .top .inner-block .main-txt .yel {
    font-size: 40px;
  }
  .home .mv-sec .top .inner-block .sub-txt {
    margin-top: 8px;
    font-size: 20px;
  }
  .home .mv-sec .feature-block > * {
    padding: 8px 8px 16px;
    font-size: 16px;
  }
  .home .mv-sec .feature-block .num .en {
    font-size: 50px;
  }
  .home .mv-sec .feature-block .num span {
    font-size: 16px;
  }
  .home .mv-sec .check-block {
    padding-block: 22px;
  }
  .home .video-sec .video + .desc {
    font-size: 14px;
  }
  .home .video-sec .additional-block {
    border-radius: 20px;
    margin-top: 40px;
    padding: 15px 20px 20px;
  }
  .home .video-sec .additional-block .ttl {
    line-height: 1;
    padding: 3px 16px;
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: -1.5em;
  }
  .home .video-sec .additional-block .main {
    font-size: 30px;
  }
  .home .video-sec .additional-block .desc {
    font-size: 16px;
  }
  .home .video-sec .additional-block .desc span {
    font-size: 18px;
  }
  .home .video-sec .additional-block .q-wrap dd {
    font-size: 12px;
  }
  .home .check-sec .inner-block {
    padding-inline: 50px;
  }
  .home .check-sec .card .check-btn::before {
    height: 5px;
  }
  .home .risk-sec .txt {
    font-size: 16px;
  }
  .home .risk-sec .c-alert__title .title {
    font-size: 18px;
  }
  .home .risk-sec .c-alert__title .label {
    font-size: 14px;
  }
  .home .risk-sec .c-alert__title .lead {
    font-size: 14px;
    margin-top: 16px;
    padding-left: 1em;
    border-width: 4px;
  }
  .home .risk-sec .message-block .desc {
    font-size: 18px;
  }
  .home .risk-sec .message-block .desc .big {
    font-size: 20px;
  }
  .home .risk-sec .message-block .small {
    font-size: 16px;
  }
  .home .reason-sec .point-list li .txt-block .sub {
    font-size: 16px;
  }
  .home .reason-sec .point-list li .txt-block h3 {
    font-size: 20px;
  }
  .home .reason-sec .point-list li .txt-block .desc {
    font-size: 16px;
    margin-top: 16px;
  }
  .home .reason-sec .survey-block .ttl-img {
    max-width: 800px;
  }
  .home .reason-sec .survey-block .orange-wrap {
    font-size: 24px;
    padding-block: 24px;
  }
  .home .reason-sec .survey-block .bl-wrap .white-box .ttl {
    font-size: 16px;
  }
  .home .type-sec .swiper-wrapper-outer {
    margin-left: -30px;
    margin-right: -30px;
  }
  .home .type-sec .card {
    height: 100%;
  }
  .home .type-sec .slide-counter .current {
    font-size: 24px;
  }
  .home .type-sec .card-desc {
    font-size: 16px;
  }
  .home .type-sec .info-label {
    padding-top: 0;
    font-size: 16px;
  }
  .home .type-sec .info-text {
    font-size: 16px;
  }
  .home .type-sec .orange-wrap {
    font-size: 18px;
  }
  .home .flow-sec .swiper-slide.txt .card-img img {
    width: 30px;
  }
  .home .flow-sec .card-num {
    font-size: 18px;
    width: 80px;
  }
  .home .flow-sec .card-tag {
    padding: 3px;
    font-size: 14px;
    width: 50px;
    text-align: center;
  }
  .home .flow-sec .card-title {
    font-size: 18px;
  }
  .home .flow-sec .card-desc {
    font-size: 18px;
  }
  .home .flow-sec .card-body {
    padding: 16px;
  }
  .home .flow-sec .card-body .ttl {
    font-size: 18px;
  }
  .home .flow-sec .card-body .info-text {
    font-size: 16px;
  }
  .home .flow-sec .card-body .info-text-small {
    font-size: 14px;
  }
  .home .work-sec .step-list li.or .head {
    display: block;
  }
  .home .work-sec .step-list li.or .head .tag-wrap {
    margin-bottom: 8px;
  }
  .home .work-sec .desc-block .ttl {
    font-size: 18px;
  }
  .home .work-sec .desc-block .txt {
    font-size: 16px;
  }
  .home .work-sec .desc-block.wh .txt {
    font-size: 16px;
  }
  .home .work-sec .desc-block.wh .txt .or {
    font-size: 18px;
  }
  .home .pricing-sec .price-tbl th {
    font-size: 14px;
  }
  .home .pricing-sec .price-tbl td {
    font-size: 14px;
  }
  .home .pricing-sec .q-wrap dt {
    font-size: 16px;
  }
  .home .pricing-sec .q-wrap dd {
    font-size: 14px;
  }
  .home .pricing-sec .desc-block .desc-txt li {
    font-size: 12px;
  }
  .home .pricing-sec .attention-block .attention-tbl th {
    font-size: 16px;
  }
  .home .pricing-sec .attention-block .attention-tbl th:nth-child(1)::before {
    width: 16px;
    height: 16px;
  }
  .home .pricing-sec .attention-block .attention-tbl th:nth-child(2)::before {
    width: 16px;
    height: 16px;
  }
  .home .pricing-sec .attention-block .attention-tbl td {
    font-size: 14px;
  }
  .home .guarantee-sec .desc-txt {
    font-size: 14px;
  }
  .home .voice-section .orange-box .figure .strong {
    font-size: 32px;
  }
  .home .voice-section .voice-swiper .tag-list .tag {
    font-size: 14px;
    padding: 4px 8px;
  }
  .home .voice-section .voice-swiper .cont {
    padding: 16px;
  }
  .home .voice-section .voice-swiper .name {
    font-size: 18px;
  }
  .home .voice-section .voice-swiper .date {
    font-size: 14px;
  }
  .home .voice-section .voice-swiper .star {
    width: 18px;
    height: 18px;
  }
  .home .voice-section .voice-swiper .worry-cont {
    font-size: 14px;
  }
  .home .voice-section .voice-swiper .main-ttl {
    font-size: 16px;
  }
  .home .voice-section .voice-swiper .toggle-btn .txt {
    font-size: 14px;
  }
  .home .voice-section .voice-swiper .desc {
    font-size: 16px;
  }
  .home .voice-section .voice-swiper .blue-box {
    margin-top: 16px;
    padding: 16px;
  }
  .home .voice-section .voice-swiper .blue-box .box-ttl {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .home .voice-section .voice-swiper .blue-box .box-desc {
    font-size: 16px;
  }
  .home .faq-section .faq-cat {
    font-size: 18px;
  }
  .home .faq-section .q-area {
    font-size: 14px;
  }
  .home .faq-section .a-area .txt {
    font-size: 14px;
  }
  .home .faq-section .bottom-desc {
    margin-top: 24px;
  }
  .home .area-section .c-blue-btn {
    font-size: 14px;
  }
  .home .area-section .area-cont {
    font-size: 14px;
  }
  .home .contact-section .top-attention {
    font-size: 14px;
    padding-left: 1em;
  }
  .home .contact-section .box-attention {
    font-size: 14px;
    padding-left: 1em;
  }
  .home .contact-section .q-tag {
    padding: 4px 8px;
    font-size: 14px;
  }
  .home .contact-section .input-area .txt {
    font-size: 14px;
  }
  .home .contact-section .checkbox-group.situation .wpcf7-checkbox {
    font-size: 14px;
  }
  .home .contact-section .policy-item {
    font-size: 14px;
  }
  .home .contact-section .policy-desc {
    font-size: 12px;
  }
  .home .contact-section .dot-list li {
    font-size: 12px;
  }
  .home .contact-section .dot-list li::before {
    top: 0.7em;
  }
  .home .contact-section .small-txt {
    font-size: 14px;
  }
  .home .contact-section .contact-btn {
    margin-block: 16px;
  }
  .home .contact-section .complete-block .desc {
    font-size: 16px;
  }
  .home .contact-section .complete-block .box-attention {
    text-align: center;
    display: inline-block;
  }
}
@media screen and (width < 1400px) {
  .c-header {
    position: fixed;
    top: 0;
  }
  .c-header.is-hide {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .c-header .logo.pc-cont {
    display: none;
  }
}
@media (any-hover: hover) {
  .c-header .header-btns .btn.menu:hover {
    background-color: #0D71C3;
  }
  .c-header .cta-area .mail-btn:hover {
    background: #0D71C3;
    -webkit-box-shadow: inset 0 0 0 2px #0791FF, 0 2px 0 #0791ff;
            box-shadow: inset 0 0 0 2px #0791FF, 0 2px 0 #0791ff;
  }
  .c-header .cta-area .line-btn:hover {
    -webkit-box-shadow: inset 0 0 0 2px #27AB20, 0 2px 0 #27ab20;
            box-shadow: inset 0 0 0 2px #27AB20, 0 2px 0 #27ab20;
    background: #008F1A;
  }
  .c-cta-area .mail-btn:hover {
    background: #0D71C3;
    -webkit-box-shadow: inset 0 0 0 2px #0D71C3, 0 0 0 #0d71c3;
            box-shadow: inset 0 0 0 2px #0D71C3, 0 0 0 #0d71c3;
  }
  .c-cta-area .line-btn:hover {
    background: #008F1A;
    -webkit-box-shadow: inset 0 0 0 2px #27AB20, 0 2px 0 #27ab20;
            box-shadow: inset 0 0 0 2px #27AB20, 0 2px 0 #27ab20;
  }
  .c-btn01.line:hover {
    background-color: #3BA136;
  }
  .home .check-sec .card:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
  .home .risk-sec .source-block:hover .deco {
    text-decoration: none;
  }
  .home .faq-section .bottom-desc .link:hover {
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .home .area-section .contact-box .box-desc .link:hover {
    -webkit-text-decoration-color: currentColor;
            text-decoration-color: currentColor;
  }
  .home .contact-section .checkbox-group.situation label:hover {
    background-color: #fff;
    color: #0082E5;
    border: 1px solid #0082E5;
  }
  .home .contact-section .contact-btn:hover {
    background: #fff;
    color: #0082E5;
    border: 1px solid #0082E5;
  }
}
@media screen and (1400px <= width) {
  .c-header .header-btns .btn.menu {
    display: none;
  }
}
@media screen and (768px <= width) and (width < 1700px) {
  .c-header .g-nav {
    right: 4vw;
  }
}
@media screen and (768px <= width) and (width < 1700px) and (width < 1500px) {
  .c-header .g-nav {
    right: 2vw;
  }
}
@media screen and (768px <= width) and (width < 1700px) and (width < 1400px) {
  .c-header .g-nav {
    right: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    top: 120px;
    width: 100%;
    max-width: 600px;
    border-radius: 0;
    pointer-events: none;
  }
  .c-header .g-nav.is-open {
    pointer-events: inherit;
    opacity: 1;
  }
}
@media screen and (width < 768px) and (width < 360px) {
  .c-cta-area .tel-btn .num {
    font-size: 22px;
  }
}
@media screen and (768px <= width) and (width < 1400px) {
  .home {
    margin-top: 120px;
  }
}
/*# sourceMappingURL=style.css.map */