@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP";
  font-weight: 500;
}

html, body {
  height: 100%;
  margin: 0;
}

html {
  color: #333;
  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-btn
----------------------------------- */
.c-btn-wrap {
  margin-top: 50px;
  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;
  gap: 20px;
  height: 70px;
}

.c-btn-next {
  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;
  width: 100%;
  height: 100%;
  max-width: 520px;
  min-width: 375px;
  overflow: hidden;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  border-radius: 40px;
  background-color: #2387DC;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-btn-next.yellow {
  background-color: #FFA600;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(255, 166, 0, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(255, 166, 0, 0.5);
}
.c-btn-next::before, .c-btn-next::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -100px;
  width: 60px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btn-next::before {
  width: 10px;
  left: -150px;
}

@-webkit-keyframes shiny-large {
  0% {
    -webkit-transform: translateX(-50px) rotate(45deg);
            transform: translateX(-50px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(700px) rotate(45deg);
            transform: translateX(700px) rotate(45deg);
  }
}

@keyframes shiny-large {
  0% {
    -webkit-transform: translateX(-50px) rotate(45deg);
            transform: translateX(-50px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(700px) rotate(45deg);
            transform: translateX(700px) rotate(45deg);
  }
}
.c-btn-back {
  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;
  width: 30%;
  height: 100%;
  max-width: 350px;
  min-width: 250px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border: solid 1px #CCC;
  border-radius: 40px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(204, 204, 204, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(204, 204, 204, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  padding: 50px 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-color: #333;
}
.c-footer .com-block {
  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;
  font-weight: bold;
}
.c-footer .com-link {
  position: relative;
  padding-right: 15px;
  display: inline-block;
  border-bottom: solid 1px #fff;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-footer .com-link:hover {
  opacity: 0.7;
}
.c-footer .com-link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: 10px;
  background: url("/img/common/ico-external.svg") center/contain no-repeat;
}
.c-footer .link-block {
  margin-top: 20px;
  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;
}
.c-footer .link-block a {
  padding: 0 20px;
  display: block;
  font-weight: 400;
}
.c-footer .link-block a:hover {
  opacity: 0.7;
}
.c-footer .link-block a:not(:last-child) {
  position: relative;
}
.c-footer .link-block a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
}
.c-footer .copyright-txt {
  margin-top: 30px;
  font-family: "Montserrat";
  opacity: 0.6;
}

/* --------------------------------
c-header
----------------------------------- */
.c-header {
  position: relative;
  z-index: 10;
  padding: 12px 40px 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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: solid 2px #CCC;
  background-color: #fff;
}
.c-header .logo-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .tel-wrap-pc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -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 .logo01 {
  width: auto;
  height: 75px;
}
.c-header .logo02 {
  width: auto;
  height: 25px;
}
.c-header .tel-info-block {
  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-size: 14px;
}
.c-header .txt-free {
  padding: 0 20px 2px;
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  background-color: #FFA600;
}

/* --------------------------------
c-input-btn-group
----------------------------------- */
.c-input-btn-group label {
  position: relative;
  padding-left: 50px;
  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;
}
.c-input-btn-group label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-input-btn-group label span {
  padding: 10px 20px;
  display: block;
  width: 100%;
  min-height: 48px;
  color: #2387DC;
  font-weight: bold;
  border: solid 1px #CCC;
  border-radius: 50px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease, padding 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease, padding 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
  transition: color 0.2s ease, border 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-input-btn-group label span.is-multiline {
  border-radius: 25px;
}
.c-input-btn-group label::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 30px;
  height: 30px;
  border: solid 1px #CCC;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-input-btn-group label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.c-input-btn-group label:has(input:checked) span {
  padding-left: 15px;
  color: #fff;
  border: solid 1px #2387DC;
  background-color: #2387DC;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-input-btn-group label:has(input:checked)::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c-input-btn-group label:has(input:checked)::after {
  opacity: 1;
}

.c-input-btn-group.radio label::before {
  border-radius: 30px;
}
.c-input-btn-group.radio label::after {
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background-color: #2387DC;
}

/* --------------------------------
c-input-not-btn
----------------------------------- */
.c-input-not-btn {
  padding: 10px 20px;
  width: 100%;
  min-height: 48px;
  color: #2387DC;
  font-size: 16px;
  font-weight: bold;
  border: solid 1px #CCC;
  border-radius: 30px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.c-input-not-btn:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
          box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #2387DC !important;
}
.c-input-not-btn:-webkit-autofill:focus {
  caret-color: #2387DC !important;
}
.c-input-not-btn[type=date] {
  position: relative;
}
.c-input-not-btn[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.c-input-not-btn[type=date]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.c-input-not-btn[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
}

.c-input-not-btn-wrap + .c-input-not-btn-wrap {
  margin-top: 15px;
}

.c-input-not-btn::-webkit-input-placeholder {
  color: #8EC6F6;
}

.c-input-not-btn::-moz-placeholder {
  color: #8EC6F6;
}

.c-input-not-btn:-ms-input-placeholder {
  color: #8EC6F6;
}

.c-input-not-btn::-ms-input-placeholder {
  color: #8EC6F6;
}

.c-input-not-btn::placeholder {
  color: #8EC6F6;
}

/* --------------------------------
c-bg-block
----------------------------------- */
.c-bg-block {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-bg-block .c-left-deco, .c-bg-block .c-right-deco {
  position: absolute;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
.c-bg-block .c-left-deco span, .c-bg-block .c-right-deco span {
  position: absolute;
}
.c-bg-block .c-left-deco {
  top: 210px;
  left: -130px;
}
.c-bg-block .c-right-deco {
  bottom: 380px;
  right: -100px;
}

.left01,
.left03 {
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(57%, rgb(220, 240, 255)), to(rgba(220, 240, 255, 0)));
  background: linear-gradient(to right, rgb(220, 240, 255) 57%, rgba(220, 240, 255, 0) 100%);
}

.left01 {
  top: 0;
  left: 0;
  width: 630px;
  height: 135px;
}

.left02 {
  top: 120px;
  left: 0;
  width: 480px;
  height: 72px;
  background: -webkit-gradient(linear, left top, right top, color-stop(57%, rgb(255, 224, 166)), to(rgba(255, 224, 166, 0)));
  background: linear-gradient(to right, rgb(255, 224, 166) 57%, rgba(255, 224, 166, 0) 100%);
}

.left03 {
  top: 230px;
  left: 0;
  width: 205px;
  height: 65px;
}

.right01 {
  top: 0;
  right: 0;
  width: 500px;
  height: 95px;
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(220, 240, 255)), to(rgba(220, 240, 255, 0)));
  background: linear-gradient(to left, rgb(220, 240, 255) 57%, rgba(220, 240, 255, 0) 100%);
}

.right02 {
  z-index: 1;
  top: 125px;
  right: 0;
  width: 680px;
  height: 155px;
  background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(255, 224, 166)), to(rgba(255, 224, 166, 0)));
  background: linear-gradient(to left, rgb(255, 224, 166) 57%, rgba(255, 224, 166, 0) 100%);
}

.right03 {
  top: 254px;
  right: 0;
  width: 380px;
  height: 72px;
  background-color: #DCF0FF;
}

/* --------------------------------
c-tel-num
----------------------------------- */
.c-tel-num {
  display: block;
  position: relative;
  padding-left: 55px;
  color: #FFA600;
  font-family: "Montserrat";
  font-size: 40px;
  font-weight: bold;
}
.c-tel-num::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 42px;
  background: url("/img/common/ico-tel.svg") center/contain no-repeat;
}

/* --------------------------------
c-q-num-block
----------------------------------- */
.c-q-num-block {
  position: -webkit-sticky;
  position: sticky;
  margin-top: 40px;
  top: 40%;
  left: 0;
  width: 140px;
  height: 140px;
  max-width: 140px;
  min-width: 140px;
  font-family: "Montserrat";
  text-align: center;
  border: solid 2px #CCC;
  border-radius: 90px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
}
.c-q-num-block::after {
  content: "";
  position: absolute;
  top: 78px;
  left: 26px;
  width: 100px;
  height: 2px;
  background-color: #CCC;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.now-num {
  position: absolute;
  top: 12px;
  left: 20px;
  width: 60px;
  color: #2387DC;
  font-size: 48px;
  font-weight: bold;
}

.total-num {
  position: absolute;
  top: 75px;
  left: 83px;
  width: 25px;
  font-size: 20px;
}

/* --------------------------------
c-section
----------------------------------- */
.c-fv-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.c-fv-section .c-fv-wrap {
  position: relative;
  z-index: 1;
}
.c-fv-section .c-fv-wrap > * + * {
  margin-top: 40px;
}
.c-fv-section .c-bg-block .c-left-deco {
  top: 210px;
  left: -130px;
}
.c-fv-section .c-bg-block .c-right-deco {
  bottom: 380px;
  right: -100px;
}

/* --------------------------------
c-ttl
----------------------------------- */
.c-ttl01 {
  color: #2387DC;
  font-size: 30px;
  font-weight: bold;
}

.c-ttl02 {
  font-size: 20px;
  font-weight: 400;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* confirm Module
* confirmページ用
-------------------------------------------------- */
.confirm .inner-block {
  max-width: 1090px;
  z-index: 1;
}
.confirm .c-fv-section {
  padding-top: 190px;
  padding-bottom: 110px;
  overflow: initial;
  overflow-x: visible;
}
.confirm .c-fv-section .ttl {
  position: relative;
  padding: 50px 20px;
  width: 100%;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  background-color: #2387DC;
  -webkit-box-shadow: 8px 8px 0px 0px #DCF0FF;
          box-shadow: 8px 8px 0px 0px #DCF0FF;
}
.confirm .c-fv-section .ttl::before, .confirm .c-fv-section .ttl::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 20px 0 20px;
  border-color: #2387DC transparent transparent transparent;
  z-index: 2;
}
.confirm .c-fv-section .ttl::before {
  bottom: -38px;
  left: 8px;
  border-color: #DCF0FF transparent transparent transparent;
  z-index: 1;
}
.confirm .confirm-section {
  position: relative;
  overflow: hidden;
}
.confirm .confirm-section .inner-block {
  padding-bottom: 100px;
}
.confirm .confirm-section .confirm-cont {
  padding: 15px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: solid 1px #CCC;
}
.confirm .confirm-section .q {
  width: 380px;
  min-width: 380px;
  font-weight: bold;
}
.confirm .confirm-section .ans {
  width: 100%;
  font-weight: 400;
}
.confirm .confirm-section .c-right-deco {
  bottom: 380px;
  right: -100px;
  z-index: 0;
}

/* -----------------------------------------------
* form Module
* formページ用
-------------------------------------------------- */
.form .c-fv-section {
  padding-top: 190px;
  padding-bottom: 75px;
}
.form .c-fv-section .c-bg-block .c-right-deco .left03 {
  width: 400px;
}
.form .banner-deco {
  width: 100%;
  height: 30px;
  background-color: #2387DC;
}
.form .form-section .inner-block {
  padding-top: 48px;
  padding-bottom: 100px;
}
.form .form-section .form-num-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.form .form-section .form02 {
  width: 100%;
}
.form .form-section .question + .question {
  margin-top: 50px;
}
.form .form-section .q-ttl-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: 20px;
  font-weight: bold;
}
.form .form-section .required {
  padding: 3px 10px 5px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 5px;
  background-color: #E94163;
}
.form .form-section .q-ttl {
  font-size: 20px;
}
.form .form-section .q-note {
  margin-top: 10px;
  color: #777;
  font-weight: 400;
}
.form .form-section .prev-input-area {
  margin-top: 10px;
  font-weight: bold;
}
.form .form-section .prev-input {
  color: #2387DC;
}
.form .form-section .input-area {
  margin-top: 16px;
  padding: 30px 30px 32px;
  border-radius: 10px;
  background-color: #DCF0FF;
}
.form .form-section label {
  display: block;
}
.form .form-section label + label {
  margin-top: 17px;
}
.form .form-section .date-detail .c-input-not-btn {
  border-radius: 10px;
  height: 120px;
}
.form .form-section .error-txt {
  margin-top: 5px;
  color: #E94163;
  font-weight: bold;
}
.form .form-section .c-q-num-block {
  margin-top: 45px;
  margin-bottom: 100px;
}
.form .form-section .btn-ok {
  position: relative;
  display: block;
  margin: 34px auto 0;
  padding: 10px;
  width: 80%;
  max-width: 270px;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  background-color: #FFA600;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.form .form-section .btn-ok::before, .form .form-section .btn-ok::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -100px;
  width: 60px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form .form-section .btn-ok::before {
  width: 10px;
  left: -150px;
}

/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
.home .mv-section {
  position: relative;
  padding-top: 162px;
  padding-bottom: 50px;
  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;
  gap: 70px;
  overflow: hidden;
  text-align: center;
}
.home .mv-section .copy-wrap {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.home .mv-section .logo-img {
  margin-top: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 510px;
  height: auto;
}
.home .mv-section .copy-txt {
  position: relative;
  padding: 0 45px;
  color: #2387DC;
  font-size: 24px;
  font-weight: bold;
}
.home .mv-section .copy-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 90px;
  border-radius: 20px;
  background-color: #2387DC;
  -webkit-transform: rotate(152deg);
          transform: rotate(152deg);
}
.home .mv-section .copy-txt::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4px;
  height: 90px;
  border-radius: 20px;
  background-color: #2387DC;
  -webkit-transform: rotate(-152deg);
          transform: rotate(-152deg);
}
.home .mv-section .copy-txt-l {
  font-size: 30px;
}
.home .mv-section .br-custom01 {
  display: none;
}
.home .mv-section .br-custom02 {
  display: none;
}
.home .mv-section .br-tab {
  display: none;
}
.home .mv-section .mv-point {
  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;
  padding: 20px 20px 24px 40px;
  width: auto;
  text-align: center;
  color: #fff;
  font-family: "M PLUS Rounded 1c";
  font-weight: bold;
  line-height: 1.5;
  border-radius: 20px;
  -webkit-box-shadow: 8px 8px 0px 0px #DCF0FF;
          box-shadow: 8px 8px 0px 0px #DCF0FF;
  background-color: #2387DC;
}
.home .mv-section .mv-point::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30px;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 30px 20px 0;
  border-color: transparent #2387DC transparent transparent;
}
.home .mv-section .mv-point + .mv-point {
  margin-top: 30px;
}
.home .mv-section .img-wrap {
  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;
  width: 100px;
  height: 90px;
}
.home .mv-section .img-wrap img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.home .mv-section .txt-point {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 24px;
}
.home .mv-section .txt-point-l {
  font-size: 38px;
}
.home .mv-section .txt-note {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 400;
}
.home .mv-section .left-block,
.home .mv-section .right-block {
  z-index: 1;
}
.home .banner-section {
  padding: 15px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.8;
  background-color: #2387DC;
}
.home .chat-section {
  position: relative;
}
.home .chat-section .inner-block {
  padding-top: 48px;
  padding-bottom: 100px;
}
.home .chat-section .form-num-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.home .chat-section .form01 {
  padding-left: 90px;
  width: 100%;
}
.home .chat-section .question > * + * {
  margin-top: 15px;
}
.home .chat-section .question + .question {
  margin-top: 60px;
}
.home .chat-section .question.m-thin {
  margin-top: 15px;
}
.home .chat-section .chat {
  position: relative;
  padding: 16px 20px 18px;
  min-height: 10px;
  max-width: 687px;
  font-weight: 400;
  border-radius: 10px;
  background-color: #FFE6EF;
}
.home .chat-section .chat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -90px;
  width: 60px;
  height: 60px;
  background: url("/img/home/pal-nyan.png.webp") center/cover no-repeat;
}
.home .chat-section .chat::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 10px 0;
  border-color: transparent #FFE6EF transparent transparent;
}
.home .chat-section .chat .input-text {
  color: #2387DC;
  font-weight: bold;
}
.home .chat-section .input-area {
  position: relative;
  margin-left: auto;
  padding: 30px 30px 32px;
  max-width: 750px;
  border-radius: 10px;
  background-color: #DCF0FF;
}
.home .chat-section .input-area::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14.5px 0 14.5px 20px;
  border-color: transparent transparent transparent #DCF0FF;
}
.home .chat-section .input-area .error-txt {
  display: none;
  margin-top: 25px;
  color: #E94163;
  font-weight: bold;
}
.home .chat-section label {
  display: block;
}
.home .chat-section label + label {
  margin-top: 17px;
}
.home .chat-section .c-input-btn-group.check label::before {
  border-radius: 5px;
}
.home .chat-section .c-input-btn-group.check label::after {
  left: 0px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-image: url("/img/home/ico-check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #2387DC;
}
.home .chat-section select {
  padding: 10px 20px;
  width: 100%;
  color: #2387DC;
  font-size: 16px;
  font-weight: bold;
  border: solid 1px #CCC;
  border-radius: 30px;
  background-color: #fff;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.home .chat-section .select-group {
  position: relative;
}
.home .chat-section .select-group::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 20px;
  height: 12px;
  background: url("/img/home/ico-pulldown.svg") center/contain no-repeat;
}
.home .chat-section input[type=date] {
  -moz-appearance: textfield;
}
.home .chat-section input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
.home .chat-section .date .c-input-not-btn-wrap {
  position: relative;
}
.home .chat-section .date .c-input-not-btn-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 20px;
  height: 20px;
  background: url("/img/home/ico-calendar.svg") center/contain no-repeat;
  pointer-events: none;
}
.home .chat-section .sub-group {
  margin-top: 18px;
  padding-left: 55px;
}
.home .chat-section .q-group + .q-group {
  margin-top: 32px;
}
.home .chat-section .contact .q-group + .q-group {
  margin-top: 15px;
}
.home .chat-section .q-group-ttl {
  margin-bottom: 10px;
  color: #2387DC;
  font-size: 20px;
  font-weight: bold;
}
.home .chat-section .btn-ok {
  position: relative;
  display: block;
  margin: 34px auto 0;
  padding: 10px;
  width: 80%;
  max-width: 270px;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  background-color: #FFA600;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(35, 135, 220, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.home .chat-section .btn-ok::before, .home .chat-section .btn-ok::after {
  content: "";
  position: absolute;
  top: -50px;
  left: -100px;
  width: 60px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.home .chat-section .btn-ok::before {
  width: 10px;
  left: -150px;
}
@-webkit-keyframes shiny {
  0% {
    -webkit-transform: translateX(-50px) rotate(45deg);
            transform: translateX(-50px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(450px) rotate(45deg);
            transform: translateX(450px) rotate(45deg);
  }
}
@keyframes shiny {
  0% {
    -webkit-transform: translateX(-50px) rotate(45deg);
            transform: translateX(-50px) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(450px) rotate(45deg);
            transform: translateX(450px) rotate(45deg);
  }
}
.home .chat-section .btn-txt {
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.home .chat-section .modal {
  z-index: 15;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: none;
  -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;
  background-color: rgba(0, 0, 0, 0.25);
  margin-top: 0;
  cursor: pointer;
}
.home .chat-section .modal-content {
  position: relative;
  padding: 30px 50px;
  max-height: 90vh;
  max-width: 100%;
  width: 1200px;
  border-radius: 30px;
  background-color: #f0f0f0;
  cursor: default;
}
.home .chat-section .modal-ttl {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.home .chat-section .privacy-block {
  margin-top: 30px;
  padding-right: 20px;
  max-width: 1200px;
  max-height: 50vh;
  height: 500px;
  overflow-y: scroll;
}
.home .chat-section .privacy-block::-webkit-scrollbar {
  width: 20px;
}
.home .chat-section .privacy-block::-webkit-scrollbar-track {
  border-radius: 15px;
  background-color: #fff;
}
.home .chat-section .privacy-block::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background-color: #999;
}
.home .chat-section .privacy-cont {
  padding: 30px;
  font-weight: 400;
  background-color: #fff;
}
.home .chat-section .privacy-cont .ttl01 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: bold;
}
.home .chat-section .privacy-cont .ttl01:first-child {
  margin-top: 0;
}
.home .chat-section .privacy-cont p + .ttl01 {
  margin-top: 20px;
}
.home .chat-section .privacy-cont .ttl02 {
  border-bottom: solid 1px #CCC;
}
.home .chat-section .privacy-cont .ttl02.not-list {
  display: inline-block;
  margin: 5px 0;
}
.home .chat-section .privacy-cont .link-txt {
  text-decoration: underline;
}
.home .chat-section .privacy-cont ol, .home .chat-section .privacy-cont ul {
  margin: 5px 0;
  padding-left: 20px;
  list-style-type: decimal;
}
.home .chat-section .privacy-cont ul {
  list-style-type: disc;
}
.home .chat-section .btn-close {
  position: absolute;
  top: 0;
  right: -70px;
  width: 45px;
  height: 45px;
  background: url("/img/home/ico-close.svg") center/cover no-repeat;
  cursor: pointer;
}
.home .chat-section .modal-privacy .btn-ok {
  -webkit-box-shadow: 4px 4px 0px 0px rgba(204, 204, 204, 0.5);
          box-shadow: 4px 4px 0px 0px rgba(204, 204, 204, 0.5);
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

@-moz-document url-prefix() {
  .date .c-input-not-btn-wrap::after {
    display: none;
  }
}
/* -----------------------------------------------
* thank-you Module
* thank-youページ用
-------------------------------------------------- */
.thank-you #wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}
.thank-you main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.thank-you .c-fv-section {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 190px;
  padding-bottom: 100px;
  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;
}
.thank-you .c-fv-section .tel-num-block {
  display: block;
  margin: 40px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.thank-you .c-fv-section .c-btn-back {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  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-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-btn-wrap {
    margin-top: 30px;
    height: 50px;
  }
  .c-btn-next {
    width: 60%;
    min-width: auto;
    font-size: 14px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-btn-next.yellow {
    -webkit-box-shadow: 0px 2px 0px 0px rgba(255, 166, 0, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(255, 166, 0, 0.5);
  }
  .c-btn-back {
    width: 35%;
    min-width: auto;
    font-size: 14px;
  }
  .c-footer .copyright-txt {
    font-size: 12px;
  }
  .c-header {
    padding: 20px;
  }
  .c-header .logo-wrap {
    gap: 8px;
  }
  .c-header .logo01 {
    height: 40px;
  }
  .c-header .logo02 {
    height: 15px;
  }
  .c-header .ico-tel {
    width: auto;
    height: 31px;
  }
  .c-header .tel-info-block {
    font-size: 12px;
  }
  .c-header .txt-free {
    padding: 0 15px 2px;
  }
  .c-input-btn-group label {
    padding-left: 30px;
  }
  .c-input-btn-group label span {
    padding: 8px 15px;
    min-height: 43.5px;
    font-size: 16px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-input-btn-group label::before {
    width: 20px;
    height: 20px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-input-btn-group label:has(input:checked) span {
    padding-left: 12px;
  }
  .c-input-btn-group.radio label::after {
    left: 4px;
    width: 12px;
    height: 12px;
  }
  .c-input-not-btn {
    padding: 8px 15px;
    min-height: 43.5px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-input-not-btn-wrap + .c-input-not-btn-wrap {
    margin-top: 10px;
  }
  .c-bg-block .c-left-deco {
    top: 120px;
  }
  .c-bg-block .c-right-deco {
    bottom: 320px;
  }
  .left01 {
    width: 462px;
    height: 50px;
  }
  .left02 {
    top: 48px;
    width: 352px;
    height: 35px;
  }
  .left03 {
    top: 120px;
    width: 150px;
    height: 32px;
  }
  .right01 {
    width: 422px;
    height: 63px;
  }
  .right02 {
    top: 80px;
    width: 452px;
    height: 100px;
  }
  .right03 {
    top: 180px;
    width: 302px;
    height: 50px;
    background-color: none;
    background: -webkit-gradient(linear, right top, left top, color-stop(57%, rgb(220, 240, 255)), to(rgba(220, 240, 255, 0)));
    background: linear-gradient(to left, rgb(220, 240, 255) 57%, rgba(220, 240, 255, 0) 100%);
  }
  .c-tel-num {
    padding-left: 42px;
    font-size: 30px;
  }
  .c-tel-num::before {
    width: 30px;
    height: 31px;
  }
  .c-q-num-block {
    position: relative;
    margin-bottom: 0;
    margin-left: auto;
    width: 78px;
    height: 78px;
    max-width: 78px;
    min-width: 78px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .c-q-num-block::after {
    width: 50px;
    top: 38px;
    left: 15px;
  }
  .now-num {
    left: 15px;
    width: 25px;
    font-size: 18px;
  }
  .total-num {
    top: 40px;
    left: 42px;
    width: 16px;
    font-size: 12px;
  }
  .c-fv-section .c-fv-wrap > * + * {
    margin-top: 20px;
  }
  .c-fv-section .c-bg-block .c-left-deco {
    top: 200px;
    left: -300px;
  }
  .c-fv-section .c-bg-block .c-right-deco {
    bottom: 180px;
    right: -220px;
  }
  .c-fv-section .c-bg-block .c-right-deco .right01 {
    width: 350px;
  }
  .c-ttl01 {
    font-size: 20px;
  }
  .c-ttl02 {
    font-size: 16px;
  }
  .confirm .c-fv-section {
    padding-top: 110px;
    padding-bottom: 30px;
  }
  .confirm .c-fv-section .ttl {
    padding: 30px 15px;
    font-size: 20px;
    -webkit-box-shadow: 0px 5px 0px 0px #DCF0FF;
            box-shadow: 0px 5px 0px 0px #DCF0FF;
  }
  .confirm .c-fv-section .ttl::before, .confirm .c-fv-section .ttl::after {
    bottom: -20px;
    border-width: 20px 15px 0 15px;
  }
  .confirm .c-fv-section .ttl::before {
    left: 0;
    bottom: -28px;
    border-width: 23px 17px 0 17px;
  }
  .confirm .confirm-section .inner-block {
    padding-bottom: 50px;
  }
  .confirm .confirm-section .confirm-cont {
    padding: 10px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .confirm .confirm-section .q {
    width: 100%;
    min-width: auto;
  }
  .confirm .confirm-section .c-right-deco {
    bottom: 250px;
    right: -200px;
  }
  .form .c-fv-section {
    padding-top: 110px;
    padding-bottom: 30px;
  }
  .form .c-fv-section .c-bg-block .c-right-deco .left03 {
    width: 320px;
  }
  .form .banner-deco {
    height: 15px;
  }
  .form .form-section .inner-block {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .form .form-section .question + .question {
    margin-top: 30px;
  }
  .form .form-section .q-ttl-area {
    gap: 10px;
  }
  .form .form-section .required {
    padding: 1px 10px 3px;
    font-size: 12px;
  }
  .form .form-section .q-ttl {
    font-size: 14px;
  }
  .form .form-section .q-note {
    margin-top: 5px;
    font-size: 12px;
  }
  .form .form-section .prev-input-area {
    margin-top: 5px;
  }
  .form .form-section .input-area {
    margin-top: 10px;
    padding: 15px;
  }
  .form .form-section label + label {
    margin-top: 10px;
  }
  .form .form-section .error-txt {
    font-size: 14px;
  }
  .form .form-section .btn-ok {
    margin-top: 10px;
    font-size: 14px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .home .mv-section {
    padding-top: 110px;
    padding-bottom: 55px;
  }
  .home .mv-section .copy-wrap {
    gap: 5px;
  }
  .home .mv-section .logo-img {
    width: 224px;
  }
  .home .mv-section .copy-txt {
    padding: 0 30px;
    font-size: 16px;
  }
  .home .mv-section .copy-txt-l {
    font-size: 20px;
  }
  .home .mv-section .img-wrap {
    width: auto;
    height: 50px;
  }
  .home .mv-section .txt-point {
    font-size: 12px;
  }
  .home .mv-section .txt-point-l {
    font-size: 20px;
  }
  .home .mv-section .txt-note {
    font-size: 10px;
  }
  .home .banner-section {
    font-size: 18px;
  }
  .home .chat-section .inner-block {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .home .chat-section .form01 {
    padding-left: 0;
  }
  .home .chat-section .question > * + * {
    margin-top: 18px;
  }
  .home .chat-section .question + .question {
    margin-top: 30px;
  }
  .home .chat-section .chat {
    margin-left: 55px;
    padding: 10px;
  }
  .home .chat-section .chat::before {
    left: -55px;
    width: 40px;
    height: 40px;
  }
  .home .chat-section .chat::after {
    top: 14px;
    left: -10px;
    border-width: 7.5px 10px 7.5px 0;
    border-color: transparent #FFE6EF transparent transparent;
  }
  .home .chat-section .input-area {
    margin-left: 0;
    padding: 15px;
  }
  .home .chat-section .input-area::after {
    top: auto;
    bottom: -10px;
    right: 30px;
    border-width: 10px 7.5px 0 7.5px;
    border-color: #DCF0FF transparent transparent transparent;
  }
  .home .chat-section .input-area .error-txt {
    font-size: 14px;
  }
  .home .chat-section label + label {
    margin-top: 10px;
  }
  .home .chat-section .c-input-btn-group.check label::after {
    width: 20px;
    height: 20px;
    background-size: 14px 10px;
  }
  .home .chat-section select {
    padding: 8px 15px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .home .chat-section textarea.auto-expand {
    min-height: 70px;
    border-radius: 15px;
  }
  .home .chat-section .sub-group {
    margin-top: 10px;
    padding-left: 30px;
  }
  .home .chat-section .q-group + .q-group {
    margin-top: 20px;
  }
  .home .chat-section .contact .q-group + .q-group {
    margin-top: 10px;
  }
  .home .chat-section .q-group-ttl {
    margin-bottom: 5px;
    font-size: 14px;
  }
  .home .chat-section .btn-ok {
    margin-top: 10px;
    font-size: 14px;
    -webkit-box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(35, 135, 220, 0.5);
  }
  .home .chat-section .modal {
    padding: 20px;
  }
  .home .chat-section .modal-content {
    padding: 20px 10px;
    border-radius: 10px;
  }
  .home .chat-section .modal-ttl {
    font-size: 18px;
  }
  .home .chat-section .privacy-block {
    margin-top: 10px;
    padding-right: 10px;
  }
  .home .chat-section .privacy-cont {
    padding: 20px;
  }
  .home .chat-section .privacy-cont .ttl01 {
    font-size: 14px;
  }
  .home .chat-section .privacy-cont p {
    font-size: 12px;
  }
  .home .chat-section .btn-close {
    width: 30px;
    height: 30px;
    top: -40px;
  }
  .home .chat-section .modal-privacy .btn-ok {
    -webkit-box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
            box-shadow: 0px 2px 0px 0px rgba(204, 204, 204, 0.5);
  }
  .home .chat-section .c-btn-next {
    width: 100%;
    max-width: 400px;
  }
  .thank-you .c-fv-section {
    padding-top: 110px;
    padding-bottom: 30px;
  }
  .thank-you .c-fv-section .tel-num-block {
    margin-top: 20px;
  }
  .thank-you .c-fv-section .c-btn-wrap {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1440px;
  }
  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-input-btn-group label:hover span {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .c-input-btn-group label:hover::before {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .c-input-not-btn-wrap:hover .c-input-not-btn, .c-input-not-btn-wrap:focus-within .c-input-not-btn {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .home .mv-section .left-block {
    margin-bottom: 20px;
  }
  .home .chat-section .select-group:hover select {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .home .chat-section .btn-txt:hover {
    color: rgba(51, 51, 51, 0.6);
  }
  .home .chat-section .c-btn-wrap {
    margin-top: 100px;
  }
}
@media (any-hover: hover) {
  .c-btn-next:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .c-btn-next:hover::before, .c-btn-next:hover::after {
    -webkit-animation: shiny-large 0.6s ease-in-out forwards;
            animation: shiny-large 0.6s ease-in-out forwards;
  }
  .c-btn-back:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .form .form-section .btn-ok:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .form .form-section .btn-ok:hover::before, .form .form-section .btn-ok:hover::after {
    -webkit-animation: shiny 0.6s ease-in-out forwards;
            animation: shiny 0.6s ease-in-out forwards;
  }
  .home .chat-section .btn-ok:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .home .chat-section .btn-ok:hover::before, .home .chat-section .btn-ok:hover::after {
    -webkit-animation: shiny 0.6s ease-in-out forwards;
            animation: shiny 0.6s ease-in-out forwards;
  }
  .home .chat-section .modal-privacy .btn-ok:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media only screen and (max-width: 425px) {
  .c-footer .link-block {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .c-footer .link-block a:not(:last-child)::after {
    display: none;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .c-header {
    padding: 12px 20px 16px;
  }
  .c-q-num-block {
    width: 100px;
    height: 100px;
    max-width: 100px;
    min-width: 100px;
  }
  .c-q-num-block::after {
    width: 70px;
    top: 50px;
    left: 18px;
  }
  .now-num {
    top: 8px;
    left: 5px;
    font-size: 32px;
  }
  .total-num {
    top: 50px;
    left: 56px;
  }
  .c-ttl01 {
    font-size: 24px;
  }
  .c-ttl02 {
    font-size: 18px;
  }
  .confirm .c-fv-section .ttl {
    padding: 40px 20px;
    font-size: 24px;
  }
  .confirm .confirm-section .q {
    width: 300px;
    min-width: 300px;
  }
  .home .mv-section .logo-img {
    width: 400px;
  }
  .home .mv-section .copy-txt {
    font-size: 20px;
  }
  .home .mv-section .copy-txt-l {
    font-size: 24px;
  }
  .home .mv-section .br-tab {
    display: inline;
  }
  .home .mv-section .mv-point {
    padding: 10px 20px 14px;
  }
  .home .mv-section .txt-point {
    font-size: 16px;
  }
  .home .mv-section .txt-point-l {
    font-size: 24px;
  }
  .home .banner-section {
    font-size: 24px;
  }
  .home .chat-section .modal-content {
    padding: 30px;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 768px) {
  .c-fv-section .c-bg-block .c-left-deco {
    left: -300px;
  }
  .c-fv-section .c-bg-block .c-right-deco {
    right: -250px;
  }
}
@media only screen and (max-width: 390px) {
  .confirm .c-fv-section .ttl {
    padding: 20px 10px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1500px) and (min-width: 768px) {
  .confirm .confirm-section .c-right-deco {
    bottom: 320px;
    right: -200px;
  }
}
@media only screen and (max-width: 1340px) {
  .home .mv-section {
    gap: 20px;
  }
  .home .mv-section .br-custom01 {
    display: inline;
  }
}
@media only screen and (max-width: 840px) {
  .home .mv-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .mv-section .mv-point {
    padding: 15px 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 0px 0px #DCF0FF;
            box-shadow: 0px 5px 0px 0px #DCF0FF;
  }
  .home .mv-section .mv-point:first-child::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 20px;
    border-color: transparent transparent #2387DC transparent;
  }
  .home .mv-section .mv-point::after {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .home .mv-section .br-custom02 {
    display: inline;
  }
  .home .mv-section .mv-point + .mv-point {
    margin-top: 10px;
  }
  .home .mv-section .img-wrap {
    width: 70px;
  }
  .home .chat-section .privacy-block::-webkit-scrollbar {
    width: 10px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .home .mv-section .mv-point {
    padding-left: 20px;
  }
  .home .mv-section .txt-note {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1025px) {
  .home .mv-section .txt-point {
    font-size: 20px;
  }
  .home .mv-section .txt-point-l {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1130px) and (min-width: 768px) {
  .home .chat-section .chat {
    margin-right: 30px;
  }
  .home .chat-section .input-area {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 1420px) {
  .home .chat-section .btn-close {
    right: 0;
  }
}
@media only screen and (max-width: 1420px) and (min-width: 768px) {
  .home .chat-section .btn-close {
    top: -70px;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */