html,
body,
section,
div,
span,
object,
iframe,
img,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a dl,
dt,
dd,
ol,
ul,
li,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
menu,
nav,
aside,
summary,
details,
footer,
header {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media (min-width: 681px) {
  body {
    min-width: 1440px;
  }
}
@media (max-width: 680px) {
  body {
    min-width: 402px;
  }
}

a {
  color: initial;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  cursor: pointer;
  opacity: 0.7;
}

ul {
  list-style: none;
}

button {
  border: none;
  background-color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
button:hover {
  cursor: pointer;
  opacity: 0.7;
}

input,
textarea {
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 680px) {
  .pc-only {
    display: none !important;
  }
}

@media (min-width: 681px) {
  .sp-only {
    display: none !important;
  }
}

/* -----------------
  header
------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.7);
}
header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 65px;
}
@media (max-width: 680px) {
  header .header-wrap {
    padding: 10px 18px;
  }
}
header .header-wrap h1 a {
  color: #ff4500;
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff4f21), to(#feb84e));
  background: linear-gradient(to bottom, #ff4f21, #feb84e);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 680px) {
  header .header-wrap h1 a {
    font-size: 24px;
  }
}
header .header-wrap .btn {
  display: block;
  width: 220px;
  padding: 16px 0;
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#ff4f21), to(#ff9d4a));
  background: linear-gradient(to right, #ff4f21, #ff9d4a);
  border-radius: 40px;
}
@media (max-width: 680px) {
  header .header-wrap .btn {
    display: none;
    width: 220px;
    padding: 16px 0;
    font-size: 20px;
  }
}

/* -----------------
  footer
------------------ */
footer {
  padding: 40px 180px 25px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffcd00), to(#ff9b21));
  background: linear-gradient(to bottom, #ffcd00, #ff9b21);
}
@media (max-width: 680px) {
  footer {
    padding: 40px 120px 30px;
  }
}
footer .headding {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 55px;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 680px) {
  footer .headding {
    margin-bottom: 44px;
    font-size: 32px;
  }
}
footer .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 47px;
}
@media (max-width: 680px) {
  footer .icon-wrap {
    margin-bottom: 20px;
  }
}
footer .icon-wrap .icon-square {
  width: 40px;
  height: 40px;
  background-color: #d9d9d9;
}
footer .link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 680px) {
  footer .link-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 14px;
  }
}
footer .link-wrap a {
  font-size: 14px;
}
footer .copyright {
  text-align: center;
  font-size: 14px;
}
@media (max-width: 680px) {
  footer .copyright {
    font-size: 12px;
  }
}

@media (max-width: 680px) {
  .fixed-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 12px 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  .fixed-banner .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 333px;
    height: 48px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    background: -webkit-gradient(linear, right top, left top, from(#ff4f21), to(#ff9d4a));
    background: linear-gradient(to left, #ff4f21, #ff9d4a);
    border-radius: 40px;
  }
}
/* -----------------
  animations
------------------ */
@-webkit-keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* -----------------
  main
------------------ */
.sec01 {
  background-color: #fff9e5;
  overflow: clip;
  /* -----------------
  bg-wrap
  ------------------ */
}
.sec01__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 188px 70px 100px 130px;
  position: relative;
}
@media (max-width: 680px) {
  .sec01__inner {
    padding: 116px 0 64px;
  }
}
.sec01__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 680px) {
  .sec01__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    width: 89.3%;
    margin: 0 auto 40px;
  }
}
.sec01__wrapper .text-wrap {
  width: 50%;
}
@media (max-width: 680px) {
  .sec01__wrapper .text-wrap {
    width: 100%;
  }
}
.sec01__wrapper .text-wrap h2 {
  margin-bottom: 32px;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 680px) {
  .sec01__wrapper .text-wrap h2 {
    margin-bottom: 40px;
    font-size: 32px;
  }
}
.sec01__wrapper .text-wrap h2 .small {
  font-size: 40px;
}
@media (max-width: 680px) {
  .sec01__wrapper .text-wrap h2 .small {
    font-size: 24px;
  }
}
.sec01__wrapper .text-wrap h2 .large {
  font-size: 64px;
}
@media (max-width: 680px) {
  .sec01__wrapper .text-wrap h2 .large {
    font-size: 40px;
  }
}
.sec01__wrapper .text-wrap h2 .emp {
  color: #ff4f21;
}
.sec01__wrapper .text-wrap p {
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 680px) {
  .sec01__wrapper .text-wrap p {
    font-size: 14px;
  }
}
.sec01__wrapper .text-wrap p .bold {
  font-weight: bold;
}
.sec01__wrapper .img-wrap {
  width: 50%;
}
@media (max-width: 680px) {
  .sec01__wrapper .img-wrap {
    width: 100%;
  }
}
.sec01__wrapper .img-wrap img {
  width: 100%;
  height: auto;
}
.sec01 .btn {
  display: block;
  width: 446px;
  padding: 24px 0;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff4f21), to(#ff9d4a));
  background: linear-gradient(to left, #ff4f21, #ff9d4a);
  border-radius: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 680px) {
  .sec01 .btn {
    width: 333px;
    margin: 0 auto;
    padding: 14px 0;
    font-size: 20px;
  }
}
.sec01__bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.sec01__bg-img {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.sec01__bg-img--01 {
  position: absolute;
  width: 337px;
  height: 337px;
  bottom: -42px;
  right: 155px;
}
.sec01__bg-img--02 {
  position: absolute;
  width: 422px;
  height: 422px;
  top: 210px;
  left: 141px;
}
.sec01__bg-img--03 {
  position: absolute;
  width: 383px;
  height: 383px;
  bottom: -210px;
  left: 134px;
}
.sec01__bg-img--04 {
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: 31px;
  left: 11px;
}
@media (max-width: 680px) {
  .sec01__bg-img--04 {
    width: 170px;
    height: 170px;
    bottom: 279px;
    right: -92px;
    left: auto;
  }
}
.sec01__bg-group01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 504px;
  height: 672px;
}
@media (max-width: 680px) {
  .sec01__bg-group01 {
    top: 290px;
    left: -221px;
    -webkit-transform: scale(0.38);
            transform: scale(0.38);
  }
}
.sec01__bg-group02 {
  position: absolute;
  top: -119px;
  left: -272px;
  width: 504px;
  height: 672px;
  -webkit-transform: scale(0.65) rotate(-90deg);
          transform: scale(0.65) rotate(-90deg);
}
@media (max-width: 680px) {
  .sec01__bg-group02 {
    top: -188px;
    left: -297px;
    -webkit-transform: scale(0.51) rotate(-90deg);
            transform: scale(0.51) rotate(-90deg);
  }
}

.sec02 {
  padding: 140px 0 64px;
}
@media (max-width: 680px) {
  .sec02 {
    padding: 40px 0;
  }
}
.sec02 .contents {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec02 .contents {
    width: 91%;
    max-width: 450px;
  }
}
.sec02__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 680px) {
  .sec02__sec-title {
    margin-bottom: 56px;
  }
}
.sec02__sec-title::before {
  content: "worries";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #f0f3f4;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec02__sec-title::before {
    font-size: 80px;
  }
}
.sec02__sec-title h2 {
  position: relative;
  font-size: 36px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec02__sec-title h2 {
    font-size: 18px;
  }
}
.sec02__sec-title h2 .large {
  font-size: 48px;
}
@media (max-width: 680px) {
  .sec02__sec-title h2 .large {
    font-size: 24px;
  }
}
.sec02__sec-title h2 .emp {
  color: #ff4f21;
}
.sec02__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 29px;
  margin-bottom: 100px;
}
@media (max-width: 680px) {
  .sec02__card-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
    width: 98.5%;
    margin: 0 auto 56px;
  }
}
.sec02__card-wrap .card {
  position: relative;
  width: 33%;
  padding: 24px 23px;
  border: 3px solid #72797a;
  border-radius: 15px;
}
@media (min-width: 681px) {
  .sec02__card-wrap .card.--01, .sec02__card-wrap .card.--03 {
    top: 100px;
  }
}
@media (max-width: 680px) {
  .sec02__card-wrap .card {
    width: 100%;
    padding: 24px;
  }
}
.sec02__card-wrap .card .card-num {
  position: absolute;
  top: -50px;
  left: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec02__card-wrap .card .card-num {
    top: -35px;
    left: 22px;
    font-size: 80px;
  }
}
.sec02__card-wrap .card .card-title {
  margin-bottom: 15px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .sec02__card-wrap .card .card-title {
    margin-bottom: 16px;
    font-size: 18px;
  }
}
.sec02__card-wrap .card .card-title .emp {
  color: #ff4f21;
}
.sec02__card-wrap .card .card-text {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .sec02__card-wrap .card .card-text {
    font-size: 14px;
  }
}
.sec02__img-wrap {
  width: 45%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec02__img-wrap {
    width: 93%;
  }
}

.sec03 {
  padding: 106px 0 123px;
  background-color: #eefcff;
  overflow: clip;
  position: relative;
}
@media (max-width: 680px) {
  .sec03 {
    padding: 80px 0 82px;
  }
}
.sec03::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-bottom: 0;
  border-right: 101px solid transparent;
  border-left: 101px solid transparent;
  border-top: 64px solid #ffffff;
}
.sec03 .contents {
  width: 52.7%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 680px) {
  .sec03 .contents {
    width: 89.5%;
  }
}
.sec03__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 680px) {
  .sec03__sec-title {
    margin-bottom: 40px;
  }
}
.sec03__sec-title h2 {
  font-size: 36px;
  line-height: 2;
}
@media (max-width: 680px) {
  .sec03__sec-title h2 {
    font-size: 18px;
  }
}
.sec03__sec-title h2 .large {
  font-size: 48px;
}
@media (max-width: 680px) {
  .sec03__sec-title h2 .large {
    font-size: 24px;
  }
}
.sec03__sec-title h2 .emp {
  color: #ff4f21;
}
.sec03__img-wrap {
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}
@media (max-width: 680px) {
  .sec03__img-wrap {
    width: 83.5%;
    margin-bottom: 48px;
  }
}
.sec03__text-wrap {
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.sec03__text-wrap p {
  font-size: 22px;
  line-height: 2;
  margin-bottom: 20px;
}
@media (max-width: 680px) {
  .sec03__text-wrap p {
    font-size: 14px;
  }
}
.sec03__text-wrap p:last-of-type {
  margin-bottom: 0;
}
.sec03__text-wrap p .bold {
  font-weight: bold;
}
.sec03__bg-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.sec03__bg-img--01 {
  position: absolute;
  width: 329px;
  top: 589px;
  left: -350px;
}
@media (max-width: 680px) {
  .sec03__bg-img--01 {
    width: 148px;
    top: 296px;
    left: -96px;
  }
}
.sec03__bg-img--02 {
  position: absolute;
  width: 590px;
  top: 844px;
  right: -561px;
}
@media (max-width: 680px) {
  .sec03__bg-img--02 {
    width: 178px;
    top: 383px;
    right: -114px;
  }
}
.sec03__bg-img--03 {
  position: absolute;
  width: 154px;
  top: 1392px;
  left: -154px;
}
@media (max-width: 680px) {
  .sec03__bg-img--03 {
    width: 67px;
    top: auto;
    bottom: -135px;
    left: 15px;
  }
}

.sec04 {
  padding: 140px 0 64px;
}
@media (max-width: 680px) {
  .sec04 {
    padding: 40px 0;
  }
}
.sec04 .contents {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec04 .contents {
    width: 85.5%;
    max-width: 450px;
  }
}
.sec04__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}
.sec04__sec-title::before {
  content: "method";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff9e5;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec04__sec-title::before {
    font-size: 80px;
  }
}
.sec04__sec-title h2 {
  position: relative;
  font-size: 36px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec04__sec-title h2 {
    font-size: 18px;
  }
}
.sec04__sec-title h2 .large {
  font-size: 48px;
}
@media (max-width: 680px) {
  .sec04__sec-title h2 .large {
    font-size: 24px;
  }
}
.sec04__sec-title h2 .emp {
  color: #ff4f21;
}
.sec04__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 680px) {
  .sec04__card-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
.sec04__card-wrap .card {
  position: relative;
  width: 33%;
  padding: 40px 23px;
  border: 3px solid #ff4f21;
  border-radius: 15px;
}
@media (max-width: 680px) {
  .sec04__card-wrap .card {
    width: 100%;
    padding: 40px 24px;
  }
}
.sec04__card-wrap .card .card-num {
  position: absolute;
  top: -45px;
  left: 15px;
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec04__card-wrap .card .card-num {
    top: -43px;
    left: 22px;
    font-size: 96px;
  }
}
.sec04__card-wrap .card .card-title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .sec04__card-wrap .card .card-title {
    margin-bottom: 24px;
    font-size: 18px;
  }
}
.sec04__card-wrap .card .card-title .emp {
  color: #ff4f21;
}
.sec04__card-wrap .card .img-wrap {
  width: 100%;
  height: 170px;
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .sec04__card-wrap .card .img-wrap {
    width: 69%;
    height: auto;
    margin: 0 auto 24px;
  }
}
.sec04__card-wrap .card .img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 680px) {
  .sec04__card-wrap .card.--03 .img-wrap {
    width: 54.2%;
  }
}
.sec04__card-wrap .card .card-text {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .sec04__card-wrap .card .card-text {
    font-size: 14px;
  }
}
.sec04__card-wrap .card .card-text .bold {
  font-weight: bold;
}

.sec05 {
  padding: 140px 0 64px;
  background-color: #fff9e5;
}
@media (max-width: 680px) {
  .sec05 {
    padding: 40px 0 29px;
  }
}
.sec05 .contents {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec05 .contents {
    width: 85.5%;
    max-width: 450px;
  }
}
.sec05__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 680px) {
  .sec05__sec-title {
    margin-bottom: 40px;
  }
}
.sec05__sec-title::before {
  content: "merit";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec05__sec-title::before {
    font-size: 80px;
  }
}
.sec05__sec-title h2 {
  position: relative;
  font-size: 36px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec05__sec-title h2 {
    font-size: 18px;
  }
}
.sec05__sec-title h2 .large {
  font-size: 48px;
}
@media (max-width: 680px) {
  .sec05__sec-title h2 .large {
    font-size: 24px;
  }
}
.sec05__sec-title h2 .emp {
  color: #ff4f21;
}
.sec05__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 680px) {
  .sec05__card-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sec05__card-wrap .card {
  position: relative;
  width: 33%;
  text-align: center;
  border-radius: 15px;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card {
    width: 100%;
  }
}
.sec05__card-wrap .card.--01 {
  padding: 48px 23px;
  background-color: #ff9b21;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card.--01 {
    padding: 40px 67px;
  }
}
.sec05__card-wrap .card.--01 .img-wrap {
  width: 91%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card.--01 .img-wrap {
    width: 85.8%;
  }
}
.sec05__card-wrap .card.--02 {
  padding: 48px 47px;
  background-color: #ffcd00;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card.--02 {
    padding: 40px 81px;
  }
}
.sec05__card-wrap .card.--02 .img-wrap {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card.--02 .img-wrap {
    width: 99%;
  }
}
.sec05__card-wrap .card.--03 {
  padding: 48px 27px;
  background-color: #ffe100;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card.--03 {
    padding: 40px 57px;
  }
}
.sec05__card-wrap .card.--03 .img-wrap {
  width: 93%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card.--03 .img-wrap {
    width: 78%;
  }
}
.sec05__card-wrap .card .icon {
  position: absolute;
  top: 4%;
  left: 3%;
  width: 39px;
  height: 59px;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card .icon {
    top: 7%;
    left: 5%;
  }
}
.sec05__card-wrap .card .card-text {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 680px) {
  .sec05__card-wrap .card .card-text {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
  }
}
.sec05__card-wrap .card .card-text .u-line {
  text-decoration: underline;
  text-decoration-color: #f5f5f5;
  text-decoration-thickness: 8px;
  text-underline-offset: 0;
}

.sec06 {
  margin-bottom: 45px;
  padding: 160px 0 69px;
}
@media (max-width: 680px) {
  .sec06 {
    margin-bottom: 42px;
    padding: 40px 0px 30px;
  }
}
.sec06__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 65px;
}
@media (max-width: 680px) {
  .sec06__sec-title {
    margin-bottom: 24px;
  }
}
.sec06__sec-title::before {
  content: "example";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff9e5;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec06__sec-title::before {
    font-size: 80px;
  }
}
.sec06__sec-title h2 {
  position: relative;
  font-size: 48px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec06__sec-title h2 {
    font-size: 24px;
  }
}
.sec06__sec-title h2 .emp {
  color: #ff4f21;
}
.sec06__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin: 0 auto 64px;
}
@media (max-width: 680px) {
  .sec06__btn-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8px;
    width: 83%;
    margin: 0 auto 24px;
  }
}
.sec06__btn-wrap .btn {
  padding: 11px 40px;
  font-size: 24px;
  font-weight: bold;
  border: 3px solid #ff4f21;
  border-radius: 30px;
}
@media (max-width: 680px) {
  .sec06__btn-wrap .btn {
    padding: 8px 24px;
    font-size: 16px;
    border: 1px solid #ff4f21;
  }
}
.sec06__btn-wrap .btn.active {
  color: #f5f5f5;
  background: -webkit-gradient(linear, left top, right top, from(#ff4f21), to(#ff9d4a));
  background: linear-gradient(to right, #ff4f21, #ff9d4a);
  border: none;
  padding: 9px 25px;
}
.sec06__btn-wrap .btn:hover {
  opacity: 1;
}
.sec06 .splide__slide {
  background-color: #eefcff;
  border-radius: 10px;
  padding: 64px 78px;
}
@media (max-width: 680px) {
  .sec06 .splide__slide {
    padding: 29px 16px;
  }
}
.sec06 .splide__slide .img-wrap {
  width: 72%;
  margin: 0 auto 15px;
}
@media (max-width: 680px) {
  .sec06 .splide__slide .img-wrap {
    width: 73%;
    margin: 0 auto 10px;
  }
}
.sec06 .splide__slide .text-wrap {
  padding: 40px 30px;
  background-color: #fff;
}
@media (max-width: 680px) {
  .sec06 .splide__slide .text-wrap {
    padding: 13px 18px;
  }
}
.sec06 .splide__slide .text-wrap .title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .sec06 .splide__slide .text-wrap .title {
    margin-bottom: 11px;
    font-size: 16px;
  }
}
.sec06 .splide__slide .text-wrap .text {
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 680px) {
  .sec06 .splide__slide .text-wrap .text {
    font-size: 12px;
  }
}
.sec06 .splide__pagination {
  bottom: -45px;
}
@media (max-width: 680px) {
  .sec06 .splide__pagination {
    bottom: -30px;
  }
}
.sec06 .splide__pagination__page {
  width: 20px;
  height: 20px;
  margin: 0 12px;
  background-color: #fff;
  border: 2px solid #ff4f21;
  opacity: 1;
}
@media (max-width: 680px) {
  .sec06 .splide__pagination__page {
    width: 12px;
    height: 12px;
    margin: 0 7px;
    border: 1px solid #ff4f21;
  }
}
.sec06 .splide__pagination__page.is-active {
  background: #ff4f21;
  -webkit-transform: none;
          transform: none;
}
.sec06 .slide-hidden {
  position: absolute;
  width: 100%;
  visibility: hidden;
}

.sec07 {
  padding: 140px 0 65px;
  overflow: clip;
}
@media (max-width: 680px) {
  .sec07 {
    padding: 40px 0;
  }
}
.sec07 .contents {
  width: 55.6%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec07 .contents {
    width: 91.7%;
  }
}
.sec07__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 680px) {
  .sec07__sec-title {
    margin-bottom: 24px;
  }
}
.sec07__sec-title::before {
  content: "flow";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff9e5;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec07__sec-title::before {
    font-size: 80px;
  }
}
.sec07__sec-title h2 {
  position: relative;
  font-size: 48px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec07__sec-title h2 {
    font-size: 28px;
  }
}
.sec07__sec-title h2 .emp {
  color: #ff4f21;
}
.sec07__item-wrap {
  display: grid;
  grid-template-columns: 400px 400px;
  grid-template-rows: 400px 400px;
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec07__item-wrap {
    grid-template-columns: 184px 184px;
    grid-template-rows: 184px 184px;
    width: 368px;
  }
}
.sec07__item-wrap .item {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.sec07__item-wrap .item .content-wrap {
  padding: 34px 27px 39px;
  position: relative;
  z-index: 2;
}
@media (max-width: 680px) {
  .sec07__item-wrap .item .content-wrap {
    padding: 15px 13px;
  }
}
.sec07__item-wrap .item .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 1;
}
.sec07__item-wrap .item .bg img {
  width: auto;
  height: 100%;
}
.sec07__item-wrap .item.--02 {
  left: -1px;
}
.sec07__item-wrap .item.--02 .text-wrap .text {
  font-size: 26px;
}
@media (max-width: 680px) {
  .sec07__item-wrap .item.--02 .text-wrap .text {
    font-size: 12px;
  }
}
.sec07__item-wrap .item.--04 {
  left: -1px;
}
.sec07__item-wrap .item .text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
@media (max-width: 680px) {
  .sec07__item-wrap .item .text-wrap {
    gap: 11px;
    margin-bottom: 22px;
  }
}
.sec07__item-wrap .item .text-wrap .num {
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec07__item-wrap .item .text-wrap .num {
    font-size: 44px;
  }
}
.sec07__item-wrap .item .text-wrap .text {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 680px) {
  .sec07__item-wrap .item .text-wrap .text {
    font-size: 14px;
  }
}
.sec07__item-wrap .item .img-wrap {
  width: 100%;
  height: 200px;
  text-align: center;
}
@media (max-width: 680px) {
  .sec07__item-wrap .item .img-wrap {
    height: 92px;
  }
}
.sec07__item-wrap .item .img-wrap img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sec08 {
  padding: 160px 0 120px;
  background-color: #fff9e5;
}
@media (max-width: 680px) {
  .sec08 {
    padding: 40px 0 48px;
  }
}
.sec08 .contents {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec08 .contents {
    width: 90.5%;
  }
}
.sec08__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 680px) {
  .sec08__sec-title {
    margin-bottom: 10px;
  }
}
.sec08__sec-title::before {
  content: "plan";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__sec-title::before {
    font-size: 80px;
  }
}
.sec08__sec-title h2 {
  position: relative;
  font-size: 48px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec08__sec-title h2 {
    font-size: 28px;
  }
}
.sec08__sec-title h2 .emp {
  color: #ff4f21;
}
.sec08__price-wrap {
  margin: 0 auto 64px;
  padding: 48px 120px;
  text-align: center;
  border-radius: 15px;
  background-color: #fff;
}
@media (max-width: 680px) {
  .sec08__price-wrap {
    margin: 0 auto 48px;
    padding: 40px 29px;
  }
}
.sec08__price-wrap .headding {
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .sec08__price-wrap .headding {
    margin-bottom: 32px;
  }
}
.sec08__price-wrap .headding .text01 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__price-wrap .headding .text01 {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.sec08__price-wrap .headding .text02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.sec08__price-wrap .headding .text02::before {
  content: "";
  width: 35px;
  height: 3px;
  background-color: #000;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 680px) {
  .sec08__price-wrap .headding .text02::before {
    width: 20px;
    height: 1px;
  }
}
.sec08__price-wrap .headding .text02::after {
  content: "";
  width: 35px;
  height: 3px;
  background-color: #000;
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media (max-width: 680px) {
  .sec08__price-wrap .headding .text02::after {
    width: 20px;
    height: 1px;
  }
}
.sec08__price-wrap .headding .text02 p {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__price-wrap .headding .text02 p {
    font-size: 20px;
  }
}
.sec08__price-wrap .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .sec08__price-wrap .price {
    gap: 20px;
    margin-bottom: 32px;
  }
}
.sec08__price-wrap .price .initial,
.sec08__price-wrap .price .monthly {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 522px;
}
@media (max-width: 680px) {
  .sec08__price-wrap .price .initial,
  .sec08__price-wrap .price .monthly {
    max-width: 303px;
  }
}
.sec08__price-wrap .price .initial .text01,
.sec08__price-wrap .price .monthly .text01 {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__price-wrap .price .initial .text01,
  .sec08__price-wrap .price .monthly .text01 {
    font-size: 20px;
  }
}
.sec08__price-wrap .price .initial .text02,
.sec08__price-wrap .price .monthly .text02 {
  color: #ff4f21;
  font-size: 64px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__price-wrap .price .initial .text02,
  .sec08__price-wrap .price .monthly .text02 {
    font-size: 40px;
  }
}
.sec08__price-wrap .price .initial .text02 .semi,
.sec08__price-wrap .price .monthly .text02 .semi {
  font-size: 40px;
}
@media (max-width: 680px) {
  .sec08__price-wrap .price .initial .text02 .semi,
  .sec08__price-wrap .price .monthly .text02 .semi {
    font-size: 20px;
  }
}
.sec08__price-wrap .price .initial .text02 .small,
.sec08__price-wrap .price .monthly .text02 .small {
  font-size: 20px;
}
@media (max-width: 680px) {
  .sec08__price-wrap .price .initial .text02 .small,
  .sec08__price-wrap .price .monthly .text02 .small {
    font-size: 12px;
  }
}
.sec08__price-wrap .price .icon {
  width: 35px;
}
@media (max-width: 680px) {
  .sec08__price-wrap .price .icon {
    width: 25px;
  }
}
.sec08__price-wrap .reason {
  padding: 40px;
  border: 3px solid #03bbe6;
  border-radius: 15px;
}
@media (max-width: 680px) {
  .sec08__price-wrap .reason {
    padding: 40px 20px;
  }
}
.sec08__price-wrap .reason .title {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__price-wrap .reason .title {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 2.4;
  }
}
@media (max-width: 680px) {
  .sec08__price-wrap .reason .title .large {
    font-size: 20px;
  }
}
.sec08__price-wrap .reason .text {
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}
.sec08__price-wrap .reason .text .bold {
  font-weight: bold;
}
.sec08__table {
  margin: 0 auto 64px;
}
@media (max-width: 680px) {
  .sec08__table {
    margin: 0 auto 25px;
  }
}
.sec08__table .title {
  margin-bottom: 26px;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__table .title {
    margin-bottom: 15px;
    font-size: 28px;
  }
}
.sec08__table .text {
  margin-bottom: 26px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .sec08__table .text {
    margin-bottom: 17px;
    font-size: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 680px) {
  .sec08__table .table-wrap {
    position: relative;
    margin-right: -5%;
  }
  .sec08__table .table-scroll {
    overflow-x: scroll;
  }
  .sec08__table .scroll-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 42px;
    height: 42px;
    color: #ff4f21;
    font-size: 24px;
    background-color: #fff;
  }
}
.sec08__table table {
  width: 100%;
}
@media (max-width: 680px) {
  .sec08__table table {
    width: 687px;
  }
}
.sec08__table table tr td {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__table table tr td {
    font-size: 14px;
  }
}
.sec08__table table tr td:nth-of-type(1) {
  width: 19.9%;
}
.sec08__table table tr td:nth-of-type(2) {
  width: 26.7%;
}
.sec08__table table tr td:nth-of-type(3) {
  width: 26.7%;
}
.sec08__table table tr td:nth-of-type(4) {
  width: 26.7%;
}
.sec08__table table tr td.empty {
  position: sticky;
  left: 0;
  background-color: #fff9e5;
}
.sec08__table table tr td.head-t {
  padding: 32px 0;
  text-align: center;
  color: #fff;
  background-color: #ff9b21;
}
@media (max-width: 680px) {
  .sec08__table table tr td.head-t {
    padding: 18px 0;
  }
}
.sec08__table table tr td.head-l {
  position: sticky;
  left: 0;
  padding: 32px 0;
  text-align: center;
  color: #fff;
  background-color: #ff4f21;
}
@media (max-width: 680px) {
  .sec08__table table tr td.head-l {
    padding: 18px 0;
  }
}
.sec08__table table tr td.cont-l, .sec08__table table tr td.cont-c {
  padding-left: 20px;
  text-align: left;
  background-color: #f3f3f3;
}
@media (max-width: 680px) {
  .sec08__table table tr td.cont-l, .sec08__table table tr td.cont-c {
    padding-left: 12px;
  }
}
.sec08__table table tr td.cont-r {
  padding-left: 20px;
  text-align: left;
  background-color: #fff3ce;
}
@media (max-width: 680px) {
  .sec08__table table tr td.cont-r {
    padding-left: 12px;
  }
}
.sec08__table table tr td p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec08__table table tr td .icon {
  margin-right: 13px;
  color: #ff4f21;
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.sec08__option {
  margin: 0 auto;
}
.sec08__option .title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__option .title {
    margin-bottom: 15px;
    font-size: 24px;
  }
}
.sec08__option .title .small {
  font-size: 28px;
}
@media (max-width: 680px) {
  .sec08__option .title .small {
    font-size: 18px;
  }
}
.sec08__option .text {
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .sec08__option .text {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.sec08__option .list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px 11px;
}
@media (max-width: 680px) {
  .sec08__option .list ul {
    gap: 8px 8px;
  }
}
.sec08__option .list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 15.8%;
  text-align: center;
  background-color: #ffe100;
  border-radius: 50%;
  aspect-ratio: 1;
}
@media (max-width: 680px) {
  .sec08__option .list ul li {
    gap: 5px;
    width: 31.8%;
  }
}
.sec08__option .list ul li img {
  width: 56%;
}
@media (max-width: 680px) {
  .sec08__option .list ul li img {
    width: 52%;
  }
}
.sec08__option .list ul li p {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec08__option .list ul li p {
    font-size: 12px;
  }
}

.sec09 {
  padding: 160px 0 65px;
}
@media (max-width: 680px) {
  .sec09 {
    padding: 40px 0 28px;
  }
}
.sec09 .contents {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec09 .contents {
    width: 90%;
  }
}
.sec09__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .sec09__sec-title {
    margin-bottom: 24px;
  }
}
.sec09__sec-title::before {
  content: "FAQ";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff9e5;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec09__sec-title::before {
    font-size: 80px;
  }
}
.sec09__sec-title h2 {
  position: relative;
  font-size: 48px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec09__sec-title h2 {
    font-size: 28px;
  }
}
.sec09__sec-title h2 .emp {
  color: #ff4f21;
}
.sec09__faq {
  margin: 0 auto;
}
.sec09__faq .ac-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  padding: 15px 0 15px 15px;
}
@media (max-width: 680px) {
  .sec09__faq .ac-title {
    gap: 16px;
    padding: 10px 10px 10px 15px;
  }
}
.sec09__faq .ac-title:hover {
  cursor: pointer;
}
.sec09__faq .ac-title img {
  width: 3%;
}
@media (max-width: 680px) {
  .sec09__faq .ac-title img {
    width: 6%;
  }
}
.sec09__faq .ac-title p {
  font-size: 24px;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .sec09__faq .ac-title p {
    font-size: 16px;
  }
}
.sec09__faq .ac-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  padding: 15px;
  background-color: #fff3ce;
}
@media (max-width: 680px) {
  .sec09__faq .ac-contents {
    gap: 16px;
    padding: 10px 0 10px 15px;
  }
}
.sec09__faq .ac-contents img {
  width: 3%;
}
@media (max-width: 680px) {
  .sec09__faq .ac-contents img {
    width: 6%;
  }
}
.sec09__faq .ac-contents p {
  font-size: 24px;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .sec09__faq .ac-contents p {
    font-size: 16px;
  }
}
.sec09__faq .btn-plus::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5%;
  width: 25px;
  height: 2px;
  line-height: 1;
  background: #333;
}
@media (max-width: 680px) {
  .sec09__faq .btn-plus::before {
    width: 18px;
  }
}
.sec09__faq .btn-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5%;
  width: 25px;
  height: 2px;
  line-height: 1;
  background: #333;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 680px) {
  .sec09__faq .btn-plus::after {
    width: 18px;
  }
}
.sec09__faq .ac-open .btn-plus::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sec10 {
  padding: 160px 0 128px;
  background-color: #fff9e5;
}
@media (max-width: 680px) {
  .sec10 {
    padding: 40px 0 72px;
  }
}
.sec10__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 680px) {
  .sec10__sec-title {
    margin-bottom: 24px;
  }
}
.sec10__sec-title::before {
  content: "example";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec10__sec-title::before {
    font-size: 80px;
  }
}
.sec10__sec-title h2 {
  position: relative;
  font-size: 48px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec10__sec-title h2 {
    font-size: 28px;
  }
}
.sec10__sec-title h2 .emp {
  color: #ff4500;
}
.sec10 .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 78px 76px;
  background-color: #fff;
  border: 3px solid #03bbe6;
  border-radius: 10px;
}
@media (max-width: 680px) {
  .sec10 .splide__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding: 40px 20px;
  }
}
.sec10 .splide__slide .img-wrap {
  width: 39.5%;
}
@media (max-width: 680px) {
  .sec10 .splide__slide .img-wrap {
    width: 87.7%;
  }
}
.sec10 .splide__slide .text-wrap {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 680px) {
  .sec10 .splide__slide .text-wrap {
    width: 100%;
  }
}
.sec10 .splide__slide .text-wrap .title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 680px) {
  .sec10 .splide__slide .text-wrap .title {
    margin-bottom: 16px;
    text-align: center;
    font-size: 20px;
  }
}
.sec10 .splide__slide .text-wrap .text {
  font-size: 16px;
  line-height: 1.8;
}
.sec10 .splide__slide .text-wrap .author {
  margin-top: auto;
  font-size: 16px;
}
@media (max-width: 680px) {
  .sec10 .splide__slide .text-wrap .author {
    margin-top: 16px;
  }
}
.sec10 .splide__pagination {
  bottom: -65px;
}
@media (max-width: 680px) {
  .sec10 .splide__pagination {
    bottom: -35px;
  }
}
.sec10 .splide__pagination__page {
  background: #fff9e5;
  border: 2px solid #ff4f21;
  width: 20px;
  height: 20px;
  opacity: 1;
  margin: 0 12px;
}
@media (max-width: 680px) {
  .sec10 .splide__pagination__page {
    width: 16px;
    height: 16px;
    margin: 0 8px;
  }
}
.sec10 .splide__pagination__page.is-active {
  background: #ff4f21;
  -webkit-transform: none;
          transform: none;
}

.sec11 {
  padding: 160px 0 65px;
}
@media (max-width: 680px) {
  .sec11 {
    padding: 48px 0 40px;
  }
}
.sec11 .contents {
  width: 61.1%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .sec11 .contents {
    width: 90%;
  }
}
.sec11__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 680px) {
  .sec11__sec-title {
    margin-bottom: 24px;
  }
}
.sec11__sec-title::before {
  content: "inquiry";
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff9e5;
  font-family: "Poppins", sans-serif;
  font-size: 261px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .sec11__sec-title::before {
    font-size: 80px;
  }
}
.sec11__sec-title h2 {
  position: relative;
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec11__sec-title h2 {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
.sec11__sec-title .text {
  position: relative;
  font-size: 24px;
  line-height: 1.6;
  z-index: 10;
}
@media (max-width: 680px) {
  .sec11__sec-title .text {
    font-size: 20px;
  }
}
.sec11__sec-title .text .small {
  font-size: 20px;
}
@media (max-width: 680px) {
  .sec11__sec-title .text .small {
    font-size: 14px;
  }
}
.sec11__form .form-wrap {
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .sec11__form .form-wrap {
    margin-bottom: 24px;
  }
}
.sec11__form .form-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 680px) {
  .sec11__form .form-wrap .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 16px;
  }
}
.sec11__form .form-wrap .item:last-of-type {
  margin-bottom: 0;
}
.sec11__form .form-wrap .item label {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 680px) {
  .sec11__form .form-wrap .item label {
    margin-bottom: 11px;
    font-size: 16px;
  }
}
.sec11__form .form-wrap .item label .required {
  margin-left: 20px;
  color: #ff4f21;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .sec11__form .form-wrap .item label .required {
    margin-left: 3px;
    font-size: 12px;
  }
}
.sec11__form .form-wrap .item input::-webkit-input-placeholder, .sec11__form .form-wrap .item textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}
.sec11__form .form-wrap .item input::-moz-placeholder, .sec11__form .form-wrap .item textarea::-moz-placeholder {
  color: #bbbbbb;
}
.sec11__form .form-wrap .item input:-ms-input-placeholder, .sec11__form .form-wrap .item textarea:-ms-input-placeholder {
  color: #bbbbbb;
}
.sec11__form .form-wrap .item input::-ms-input-placeholder, .sec11__form .form-wrap .item textarea::-ms-input-placeholder {
  color: #bbbbbb;
}
.sec11__form .form-wrap .item input::placeholder,
.sec11__form .form-wrap .item textarea::placeholder {
  color: #bbbbbb;
}
.sec11__form .form-wrap .item input[type=text],
.sec11__form .form-wrap .item input[type=email] {
  width: 69.6%;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  background-color: #f3f3f3;
}
@media (max-width: 680px) {
  .sec11__form .form-wrap .item input[type=text],
  .sec11__form .form-wrap .item input[type=email] {
    width: 100%;
  }
}
.sec11__form .form-wrap .item textarea {
  width: 69.6%;
  padding: 15px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  background-color: #f3f3f3;
}
@media (max-width: 680px) {
  .sec11__form .form-wrap .item textarea {
    width: 100%;
  }
}
.sec11__form .form-wrap .item .item-wrap {
  width: 69.6%;
}
@media (max-width: 680px) {
  .sec11__form .form-wrap .item .item-wrap {
    width: 100%;
  }
}
.sec11__form .form-wrap .item .item-wrap label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .sec11__form .form-wrap .item .item-wrap label {
    font-size: 14px;
  }
}
.sec11__form .form-wrap .item .item-wrap label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.sec11__form .form-wrap .item .item-wrap label input[type=checkbox]:checked ~ .checkmark {
  background-color: #ff4f21;
  border-color: #ff4f21;
}
.sec11__form .form-wrap .item .item-wrap label .checkmark {
  height: 13px;
  width: 13px;
  margin-top: 2px;
  background-color: #fff;
  border: 1px solid #333;
}
.sec11__form .form-wrap .item .item-wrap label .checkmark:hover {
  cursor: pointer;
}
.sec11__form .policy {
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .sec11__form .policy {
    margin-bottom: 24px;
  }
}
.sec11__form .policy label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .sec11__form .policy label {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 16px;
  }
}
.sec11__form .policy label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.sec11__form .policy label input[type=checkbox]:checked ~ .checkmark {
  background-color: #ff4f21;
  border-color: #ff4f21;
}
.sec11__form .policy label .checkmark {
  height: 16px;
  width: 16px;
  margin-top: 2px;
  background-color: #fff;
  border: 1px solid #333;
}
@media (max-width: 680px) {
  .sec11__form .policy label .checkmark {
    margin-top: 5px;
  }
}
.sec11__form .policy label .checkmark:hover {
  cursor: pointer;
}
@media (max-width: 680px) {
  .sec11__form .policy label p {
    line-height: 1.6;
  }
}
.sec11__form .policy label p a {
  text-decoration: underline;
}
.sec11__form .policy label p .emp {
  color: #ff4f21;
}
.sec11__form .policy p {
  cursor: pointer;
}
.sec11__form .btn-wrap {
  text-align: center;
}
.sec11__form .btn-wrap .btn-submit {
  width: 320px;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#ff4f21), to(#ff9d4a));
  background: linear-gradient(to right, #ff4f21, #ff9d4a);
  border-radius: 40px;
}
@media (max-width: 680px) {
  .sec11__form .btn-wrap .btn-submit {
    width: 320px;
    padding: 20px;
  }
}

.confirm {
  padding: 160px 0 65px;
}
@media (max-width: 680px) {
  .confirm {
    padding: 48px 0 40px;
  }
}
.confirm .contents {
  width: 61.1%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .confirm .contents {
    width: 90%;
  }
}
.confirm__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 680px) {
  .confirm__sec-title {
    margin-bottom: 24px;
  }
}
.confirm__sec-title h2 {
  position: relative;
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .confirm__sec-title h2 {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
.confirm__sec-title .text {
  position: relative;
  font-size: 24px;
  line-height: 1.6;
  z-index: 10;
}
@media (max-width: 680px) {
  .confirm__sec-title .text {
    font-size: 20px;
  }
}
.confirm__sec-title .text .small {
  font-size: 20px;
}
@media (max-width: 680px) {
  .confirm__sec-title .text .small {
    font-size: 14px;
  }
}
.confirm__form .form-wrap {
  width: 600px;
  margin: 0 auto;
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .confirm__form .form-wrap {
    margin-bottom: 24px;
  }
}
.confirm__form .form-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 680px) {
  .confirm__form .form-wrap .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 16px;
  }
}
.confirm__form .form-wrap .item:last-of-type {
  margin-bottom: 0;
}
.confirm__form .form-wrap .item label {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 680px) {
  .confirm__form .form-wrap .item label {
    margin-bottom: 11px;
    font-size: 16px;
  }
}
.confirm__form .form-wrap .item label .required {
  margin-left: 20px;
  color: #ff4f21;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .confirm__form .form-wrap .item label .required {
    margin-left: 3px;
    font-size: 12px;
  }
}
.confirm__form .form-wrap .item input::-webkit-input-placeholder, .confirm__form .form-wrap .item textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}
.confirm__form .form-wrap .item input::-moz-placeholder, .confirm__form .form-wrap .item textarea::-moz-placeholder {
  color: #bbbbbb;
}
.confirm__form .form-wrap .item input:-ms-input-placeholder, .confirm__form .form-wrap .item textarea:-ms-input-placeholder {
  color: #bbbbbb;
}
.confirm__form .form-wrap .item input::-ms-input-placeholder, .confirm__form .form-wrap .item textarea::-ms-input-placeholder {
  color: #bbbbbb;
}
.confirm__form .form-wrap .item input::placeholder,
.confirm__form .form-wrap .item textarea::placeholder {
  color: #bbbbbb;
}
.confirm__form .form-wrap .item input[type=text],
.confirm__form .form-wrap .item input[type=email] {
  width: 69.6%;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  background-color: #f3f3f3;
}
@media (max-width: 680px) {
  .confirm__form .form-wrap .item input[type=text],
  .confirm__form .form-wrap .item input[type=email] {
    width: 100%;
  }
}
.confirm__form .form-wrap .item textarea {
  width: 69.6%;
  padding: 15px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  background-color: #f3f3f3;
}
@media (max-width: 680px) {
  .confirm__form .form-wrap .item textarea {
    width: 100%;
  }
}
.confirm__form .form-wrap .item .item-wrap {
  width: 69.6%;
}
@media (max-width: 680px) {
  .confirm__form .form-wrap .item .item-wrap {
    width: 100%;
  }
}
.confirm__form .form-wrap .item .item-wrap label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .confirm__form .form-wrap .item .item-wrap label {
    font-size: 14px;
  }
}
.confirm__form .form-wrap .item .item-wrap label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.confirm__form .form-wrap .item .item-wrap label input[type=checkbox]:checked ~ .checkmark {
  background-color: #ff4f21;
  border-color: #ff4f21;
}
.confirm__form .form-wrap .item .item-wrap label .checkmark {
  height: 13px;
  width: 13px;
  margin-top: 2px;
  background-color: #fff;
  border: 1px solid #333;
}
.confirm__form .form-wrap .item .item-wrap label .checkmark:hover {
  cursor: pointer;
}
.confirm__form .policy {
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .confirm__form .policy {
    margin-bottom: 24px;
  }
}
.confirm__form .policy label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .confirm__form .policy label {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 16px;
  }
}
.confirm__form .policy label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.confirm__form .policy label input[type=checkbox]:checked ~ .checkmark {
  background-color: #ff4f21;
  border-color: #ff4f21;
}
.confirm__form .policy label .checkmark {
  height: 16px;
  width: 16px;
  margin-top: 2px;
  background-color: #fff;
  border: 1px solid #333;
}
@media (max-width: 680px) {
  .confirm__form .policy label .checkmark {
    margin-top: 5px;
  }
}
.confirm__form .policy label .checkmark:hover {
  cursor: pointer;
}
@media (max-width: 680px) {
  .confirm__form .policy label p {
    line-height: 1.6;
  }
}
.confirm__form .policy label p a {
  text-decoration: underline;
}
.confirm__form .policy label p .emp {
  color: #ff4f21;
}
.confirm__form .policy p {
  cursor: pointer;
}
.confirm__form .btn-wrap {
  text-align: center;
}
.confirm__form .btn-wrap .btn-submit {
  width: 320px;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#ff4f21), to(#ff9d4a));
  background: linear-gradient(to right, #ff4f21, #ff9d4a);
  border-radius: 40px;
}
@media (max-width: 680px) {
  .confirm__form .btn-wrap .btn-submit {
    width: 320px;
    padding: 20px;
  }
}
.confirm__form .btn-back {
  display: block;
  margin-top: 48px;
}

.thanks {
  padding: 160px 0 65px;
}
@media (max-width: 680px) {
  .thanks {
    padding: 48px 0 40px;
  }
}
.thanks .contents {
  width: 61.1%;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .thanks .contents {
    width: 90%;
  }
}
.thanks__sec-title {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 680px) {
  .thanks__sec-title {
    margin-bottom: 24px;
  }
}
.thanks__sec-title h2 {
  position: relative;
  margin-bottom: 12px;
  font-size: 48px;
  line-height: 2;
  z-index: 10;
}
@media (max-width: 680px) {
  .thanks__sec-title h2 {
    margin-bottom: 24px;
    font-size: 28px;
  }
}
.thanks__sec-title .text {
  position: relative;
  font-size: 24px;
  line-height: 1.6;
  z-index: 10;
}
@media (max-width: 680px) {
  .thanks__sec-title .text {
    font-size: 20px;
  }
}
.thanks__sec-title .text .small {
  font-size: 20px;
}
@media (max-width: 680px) {
  .thanks__sec-title .text .small {
    font-size: 14px;
  }
}
.thanks .form-wrap {
  width: 600px;
  margin: 0 auto;
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .thanks .form-wrap {
    margin-bottom: 24px;
  }
}
.thanks .form-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 680px) {
  .thanks .form-wrap .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 16px;
  }
}
.thanks .form-wrap .item:last-of-type {
  margin-bottom: 0;
}
.thanks .form-wrap .item label {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 680px) {
  .thanks .form-wrap .item label {
    margin-bottom: 11px;
    font-size: 16px;
  }
}
.thanks .form-wrap .item label .required {
  margin-left: 20px;
  color: #ff4f21;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .thanks .form-wrap .item label .required {
    margin-left: 3px;
    font-size: 12px;
  }
}
.thanks .form-wrap .item input::-webkit-input-placeholder, .thanks .form-wrap .item textarea::-webkit-input-placeholder {
  color: #bbbbbb;
}
.thanks .form-wrap .item input::-moz-placeholder, .thanks .form-wrap .item textarea::-moz-placeholder {
  color: #bbbbbb;
}
.thanks .form-wrap .item input:-ms-input-placeholder, .thanks .form-wrap .item textarea:-ms-input-placeholder {
  color: #bbbbbb;
}
.thanks .form-wrap .item input::-ms-input-placeholder, .thanks .form-wrap .item textarea::-ms-input-placeholder {
  color: #bbbbbb;
}
.thanks .form-wrap .item input::placeholder,
.thanks .form-wrap .item textarea::placeholder {
  color: #bbbbbb;
}
.thanks .form-wrap .item input[type=text],
.thanks .form-wrap .item input[type=email] {
  width: 69.6%;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  background-color: #f3f3f3;
}
@media (max-width: 680px) {
  .thanks .form-wrap .item input[type=text],
  .thanks .form-wrap .item input[type=email] {
    width: 100%;
  }
}
.thanks .form-wrap .item textarea {
  width: 69.6%;
  padding: 15px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  background-color: #f3f3f3;
}
@media (max-width: 680px) {
  .thanks .form-wrap .item textarea {
    width: 100%;
  }
}
.thanks .form-wrap .item .item-wrap {
  width: 69.6%;
}
@media (max-width: 680px) {
  .thanks .form-wrap .item .item-wrap {
    width: 100%;
  }
}
.thanks .form-wrap .item .item-wrap label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .thanks .form-wrap .item .item-wrap label {
    font-size: 14px;
  }
}
.thanks .form-wrap .item .item-wrap label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.thanks .form-wrap .item .item-wrap label input[type=checkbox]:checked ~ .checkmark {
  background-color: #ff4f21;
  border-color: #ff4f21;
}
.thanks .form-wrap .item .item-wrap label .checkmark {
  height: 13px;
  width: 13px;
  margin-top: 2px;
  background-color: #fff;
  border: 1px solid #333;
}
.thanks .form-wrap .item .item-wrap label .checkmark:hover {
  cursor: pointer;
}
.thanks .policy {
  margin-bottom: 48px;
}
@media (max-width: 680px) {
  .thanks .policy {
    margin-bottom: 24px;
  }
}
.thanks .policy label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 680px) {
  .thanks .policy label {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 16px;
  }
}
.thanks .policy label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.thanks .policy label input[type=checkbox]:checked ~ .checkmark {
  background-color: #ff4f21;
  border-color: #ff4f21;
}
.thanks .policy label .checkmark {
  height: 16px;
  width: 16px;
  margin-top: 2px;
  background-color: #fff;
  border: 1px solid #333;
}
@media (max-width: 680px) {
  .thanks .policy label .checkmark {
    margin-top: 5px;
  }
}
.thanks .policy label .checkmark:hover {
  cursor: pointer;
}
@media (max-width: 680px) {
  .thanks .policy label p {
    line-height: 1.6;
  }
}
.thanks .policy label p a {
  text-decoration: underline;
}
.thanks .policy label p .emp {
  color: #ff4f21;
}
.thanks .policy p {
  cursor: pointer;
}
.thanks .btn-wrap {
  text-align: center;
}
.thanks .btn-wrap .btn-submit {
  display: inline-block;
  width: 320px;
  padding: 20px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#ff4f21), to(#ff9d4a));
  background: linear-gradient(to right, #ff4f21, #ff9d4a);
  border-radius: 40px;
}
@media (max-width: 680px) {
  .thanks .btn-wrap .btn-submit {
    width: 320px;
    padding: 20px;
  }
}

.cta {
  padding: 30px 67px 30px 79px;
  background-color: #ffcd00;
}
@media (max-width: 680px) {
  .cta {
    padding: 40px 34px;
  }
}
.cta__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 680px) {
  .cta__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cta__wrapper .text-wrap {
  width: 35.9%;
  text-align: center;
}
@media (max-width: 680px) {
  .cta__wrapper .text-wrap {
    width: 100%;
  }
}
.cta__wrapper .text-wrap .headding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 24px;
}
.cta__wrapper .text-wrap .headding p {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 680px) {
  .cta__wrapper .text-wrap .headding p {
    font-size: 24px;
  }
}
.cta__wrapper .text-wrap .headding p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -90px;
  width: 75px;
  height: 5px;
  background-color: #000;
  -webkit-transform: rotate(65deg);
          transform: rotate(65deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 680px) {
  .cta__wrapper .text-wrap .headding p::before {
    left: -75px;
    width: 65px;
    height: 2px;
  }
}
.cta__wrapper .text-wrap .headding p::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 75px;
  height: 5px;
  background-color: #000;
  -webkit-transform: rotate(-65deg);
          transform: rotate(-65deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
@media (max-width: 680px) {
  .cta__wrapper .text-wrap .headding p::after {
    right: -70px;
    width: 65px;
    height: 2px;
  }
}
.cta__wrapper .text-wrap .headding p .small {
  font-size: 28px;
}
@media (max-width: 680px) {
  .cta__wrapper .text-wrap .headding p .small {
    font-size: 18px;
  }
}
.cta__wrapper .text-wrap .text {
  margin-bottom: 16px;
  color: #ff4f21;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 680px) {
  .cta__wrapper .text-wrap .text {
    font-size: 24px;
  }
}
.cta__wrapper .text-wrap .text .small {
  font-size: 24px;
}
@media (max-width: 680px) {
  .cta__wrapper .text-wrap .text .small {
    font-size: 18px;
  }
}
.cta__wrapper .text-wrap .remarks {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}
.cta__wrapper .img-wrap {
  position: relative;
  bottom: -30px;
  width: 27.7%;
}
@media (max-width: 680px) {
  .cta__wrapper .img-wrap {
    position: static;
    width: 61%;
  }
}
.cta__wrapper .btn {
  display: block;
  position: relative;
  width: 30.2%;
  padding: 26px 0;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#ff4f21), to(#ff9d4a));
  background: linear-gradient(to right, #ff4f21, #ff9d4a);
  border-radius: 40px;
  overflow: hidden;
  overflow: hidden;
  -webkit-animation: btn_animation 1.5s infinite;
          animation: btn_animation 1.5s infinite;
  -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 680px) {
  .cta__wrapper .btn {
    width: 100%;
    max-width: 360px;
    padding: 14px 0;
    font-size: 20px;
  }
}
.cta__wrapper .btn:hover {
  text-decoration: none;
  color: #fff;
}
.cta__wrapper .btn .large {
  font-size: 32px;
}
@media (max-width: 680px) {
  .cta__wrapper .btn .large {
    font-size: 28px;
  }
}

@keyframes btn_animation {
  0% {
    -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
  10% {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    top: 5px;
  }
  20% {
    -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
  30% {
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
    top: 5px;
  }
  40% {
    -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
    top: 0px;
  }
}/*# sourceMappingURL=index.css.map */