@charset "UTF-8";
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: inherit;
  color: #000;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

button {
  -webkit-appearance: none;
  border-radius: 0;
  text-align: inherit;
  background: none;
  box-shadow: none;
  padding: 0;
  cursor: pointer;
  border: none;
  color: inherit;
  font: inherit;
}

:root {
  --default-radius: 3.2rem;
  --btn-radius: 4.9rem;
  --danger: rgb(255 65 65);
  --danger-hover: rgb(255 65 65 / 70%);
  --success: rgb(100, 190, 73);
  --success-hover: rgb(100 190 73 / 70%);
  --bright-blue: #7187ff;
  --orange: #de6600;
  --gray: #f1f1f1;
  --btn-large: 600px;
  --btn-medium: 400px;
  --bg-second: #F1F1F1;
  --light-blue: #F2F4FF;
}

.btn {
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  position: relative;
  height: 6.4rem;
  border-radius: var(--btn-radius);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: white;
}
.btn .btn__icon {
  position: absolute;
  height: 100%;
  top: 0;
  width: 6.5rem;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
}

.btn__danger {
  background-color: var(--danger);
}
.btn__danger:hover {
  background-color: var(--danger-hover);
}

.btn__success {
  background-color: var(--success);
}
.btn__success:hover {
  background-color: var(--success-hover);
}

.btn__success--outline {
  background-color: white;
  color: var(--success);
  border: 0.2rem solid var(--success);
}
.btn__success--outline:hover {
  background-color: var(--success);
  color: white;
}
.btn__success--outline .btn__icon {
  background-color: transparent;
}

@font-face {
  font-family: "YuGothic";
  src: url("fonts/YuGothic-Medium.otf");
}
@font-face {
  font-family: "YuGothic";
  src: url("fonts/YuGothic-Bold.otf");
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Zen Kaku Gothic Antique", "游ゴシック＞ヒラギノ角ゴ", "游ゴシック＞メイリオ", "Hiragino Kaku Gothic ProN", "YuGothic", "san-serif";
  font-size: 1.8rem;
}

.content {
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .content {
    padding: 0 1.6rem;
  }
}
@media (max-width: 1280px) {
  .content {
    padding: 0 1.6rem;
  }
}

.header {
  background-color: #f0faff;
  background-image: url("images/banner.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  color: #fff;
  height: 100rem;
}
@media (max-width: 1024px) {
  .header {
    height: 109rem;
  }
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .header .header__inner {
    flex-wrap: wrap;
  }
}
.header .header__inner .header__inner--left {
  padding-top: 13.2rem;
}
@media (max-width: 1024px) {
  .header .header__inner .header__inner--left {
    padding-top: 2.2rem;
  }
}
.header .header__inner .header__inner--left .header__title {
  font-size: 8rem;
  background-color: white;
  color: black;
  width: fit-content;
  font-weight: bold;
  margin: 2.4rem 0;
  line-height: 9.4rem;
  padding: 0 1rem;
}
.header .header__inner .header__inner--left .header__title label {
  font-size: 6.4rem;
}
@media (max-width: 1024px) {
  .header .header__inner .header__inner--left .header__title label {
    font-size: 3.6rem;
  }
}
@media (min-width: 1024px) and (max-width: 1100px) {
  .header .header__inner .header__inner--left .header__title {
    font-size: 7rem;
  }
}
.header .header__inner .header__inner--left .header__title:first-of-type {
  white-space: nowrap;
  width: calc(100% - 8rem);
}
@media (max-width: 1024px) {
  .header .header__inner .header__inner--left .header__title {
    font-size: 4.5rem;
    line-height: 5.4rem;
    color: #ffa041;
    margin: 1.6rem 0;
  }
  .header .header__inner .header__inner--left .header__title:first-of-type {
    width: fit-content;
  }
}
.header .header__inner .header__inner--left .header__img--item {
  margin-top: 3.2rem;
  display: flex;
  width: 45.2rem;
}
.header .header__inner .header__inner--left .header__img--item img {
  width: 100%;
}
@media (max-width: 1024px) {
  .header .header__inner .header__inner--left .header__img--item {
    margin-top: 0;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .header .header__inner .header__inner--right {
    width: 100%;
  }
}
.header .header__inner .header__inner--right .header__btn {
  position: relative;
  padding: 0.8rem;
  background-color: white;
  border-radius: var(--btn-radius);
  margin-top: 26.7rem;
}
.header .header__inner .header__inner--right .header__btn .btn__danger {
  height: 6.5rem;
  width: 45.9rem;
  border-radius: var(--btn-radius);
}
.header .header__inner .header__inner--right .header__btn .header__btn--tooltip {
  position: absolute;
  top: -6.47rem;
  left: 0;
}
.header .header__inner .header__inner--right .header__btn .header__btn--tooltip .tooltip__content {
  position: relative;
  min-width: 22.2rem;
  height: 6rem;
  display: flex;
  background-color: white;
  border-radius: 2.6rem;
  color: black;
  font-size: 2.4rem;
  font-weight: bold;
}
.header .header__inner .header__inner--right .header__btn .header__btn--tooltip .tooltip__content span {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 0 2.7rem;
  border-radius: 2.6rem;
}
.header .header__inner .header__inner--right .header__btn .header__btn--tooltip .tooltip__content svg {
  position: absolute;
  position: absolute;
  bottom: -2.8rem;
  left: 1.8rem;
}
@media (max-width: 1024px) {
  .header .header__inner .header__inner--right .header__btn {
    margin-top: 11rem;
  }
  .header .header__inner .header__inner--right .header__btn .btn__danger {
    height: 6.5rem;
    width: 100%;
    border-radius: var(--btn-radius);
    font-size: 1.8rem;
    padding: 0 8.4rem;
  }
}
.header .header__inner .header__inner--right .btn__success--outline {
  width: 100%;
  max-width: 44.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .header__inner .header__inner--right .btn__success--outline {
    max-width: 100%;
    font-size: 1.8rem;
    padding: 0 7.5rem;
  }
}
.header .header__inner .header__inner--right .apply__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  border-radius: 3.2rem;
  padding: 1.6rem;
  color: var(--success);
  margin-top: 2.43rem;
  height: 20rem;
  align-items: center;
}
.header .header__inner .header__inner--right .apply__box .apply__box--top {
  display: flex;
}
.header .header__inner .header__inner--right .apply__box .apply__box--top .apply__box--icon {
  margin-right: 2.2rem;
}
.header .header__inner .header__inner--right .apply__box .apply__box--top .apply__box--time {
  font-size: 1.6rem;
  font-weight: bold;
}
.header .header__inner .header__inner--right .apply__box .apply__box--top .apply__box--title {
  font-size: 1.8rem;
  color: black;
  line-height: 3.2rem;
}
@media (max-width: 1024px) {
  .header .header__inner .header__inner--right .apply__box {
    margin-top: 1.6rem;
  }
  .header .header__inner .header__inner--right .apply__box .apply__box--top .apply__box--icon {
    margin-left: 1.2rem;
    margin-right: 1rem;
  }
}
.header .categories {
  width: 100%;
  height: 36rem;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 8rem;
  color: black;
  display: flex;
  justify-content: start;
}
.header .categoriestitle__mobile {
  display: none;
}
.header .categories .categories__title__mobile {
  display: none;
}
@media (max-width: 1024px) {
  .header .categories {
    margin-top: 3.2rem;
  }
  .header .categories .categories__title {
    display: none;
  }
  .header .categories .title__1 {
    padding: 0 1rem;
    background-color: white;
  }
  .header .categories .title__2 {
    padding: 0 1rem;
    margin-top: 1rem;
    width: fit-content;
    background-color: white;
  }
  .header .categories .categories__title__mobile {
    margin-top: 1.6rem;
    display: block;
    font-size: 2.4rem;
    font-weight: bold;
    width: fit-content;
  }
}
.header .categories__slider {
  margin-top: 1.2rem;
}
.header .categories__slider__item {
  text-align: center;
}
.header .categories__slider__item__image {
  aspect-ratio: 6/4;
  margin: auto;
}
.header .categories__slider__item__title {
  margin-top: 0.5rem;
  text-align: center;
  white-space: normal;
}
.header .categories .categories__title {
  font-size: 2.4rem;
  font-weight: bold;
  background-color: white;
  width: fit-content;
  margin-top: 3.2rem;
  padding-left: 1rem;
}

.container {
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  min-height: 30rem;
}
.container__content--top {
  border-top-right-radius: 3.2rem;
  border-top-left-radius: 3.2rem;
  margin-top: -3.5rem;
  background-color: #fafafa;
  padding-top: 0.1rem;
}
.container__content--trouble {
  padding-bottom: 15.3rem;
}
.container__content--trouble .introduce__title__mobile {
  display: none;
}
@media (max-width: 1024px) {
  .container__content--trouble {
    padding-bottom: 0rem;
    margin-bottom: -2rem;
  }
  .container__content--trouble .introduce__title__mobile {
    margin-top: 3rem !important;
    display: block !important;
  }
  .container__content--trouble .introduce__title {
    display: none;
  }
}
.container__content--result {
  padding-bottom: 6.4rem;
  background-color: #fafafa;
}
@media (max-width: 1024px) {
  .container__content--result {
    padding-bottom: 1rem;
    padding-top: 1.2rem;
  }
}
.container__content--flow {
  background-color: #fafafa;
  padding-bottom: 20rem;
}
@media (max-width: 1024px) {
  .container__content--flow {
    padding-bottom: 0;
    padding-top: 1.2rem;
  }
}
@media (max-width: 1024px) {
  .container__content--flow .content {
    padding-bottom: 20px;
  }
}
.container__content--form {
  background-color: #f1f1f1;
  padding-top: 5.6rem;
}
@media (max-width: 1024px) {
  .container__content--form {
    margin-top: 0;
    padding-top: 2.2rem;
  }
}
@media (max-width: 1024px) {
  .container {
    background-color: var(--bg-second);
  }
}

.introduce {
  padding-bottom: 5.3rem;
}
@media (max-width: 1024px) {
  .introduce {
    padding-bottom: 4.3rem;
  }
}
.introduce .introduce__title {
  font-size: 4rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  line-height: 5.6rem;
  line-height: 6.4rem;
  margin-top: 3.5rem;
  letter-spacing: 0.4rem;
}
.introduce .introduce__title .hidden {
  display: none;
}
@media (max-width: 1024px) {
  .introduce .introduce__title {
    font-size: 2.4rem;
    line-height: 3.8rem;
    margin-top: 1.6rem;
  }
  .introduce .introduce__title .hidden {
    display: block;
  }
}
.introduce .introduce__title .emphasis {
  background: linear-gradient(transparent 0, transparent 76%, #ffa041 56%, #ffa041 100%);
}
@media (max-width: 1024px) {
  .introduce .introduce__title .emphasis {
    background: linear-gradient(transparent 0, transparent 54%, #ffa041 56%, #ffa041 100%);
  }
}

.introduce__list {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .introduce__list {
    margin-top: 3.4rem;
    gap: 3rem;
    flex-wrap: wrap;
  }
}
.introduce__item {
  width: 42rem;
}
@media (max-width: 1024px) {
  .introduce__item {
    width: 100%;
  }
}
.introduce__item__title {
  font-size: 3.2rem;
  margin-top: 2rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  letter-spacing: 0.3rem;
  white-space: normal;
}
.introduce__item__subtitle {
  margin-top: 2rem;
  font-size: 2.4rem;
  letter-spacing: 0.25rem;
  width: 100%;
  white-space: normal;
}
@media (max-width: 1024px) {
  .introduce__item__title {
    font-size: 2.4rem;
    margin-top: 1rem;
    line-height: 4rem;
  }
  .introduce__item__subtitle {
    font-size: 1.6rem;
    margin-top: 1.4rem;
    letter-spacing: 0.2rem;
  }
}
.introduce__image {
  aspect-ratio: 7/5;
}
@media (max-width: 1024px) {
  .introduce__image {
    width: 100%;
  }
}

.section-title {
  font-size: 2.4rem;
  text-align: center;
  min-height: 9rem;
  background-color: #f1f1f1;
  letter-spacing: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.section-title br {
  display: none;
}
@media (max-width: 1024px) {
  .section-title {
    line-height: 3.2rem;
    font-size: 1.8rem;
    padding: 1.2rem 0 2rem;
  }
  .section-title br {
    display: block;
  }
}

.trouble__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .trouble__list {
    gap: 2.8rem;
    margin-top: 4rem;
  }
}
.trouble__item--left {
  margin-top: 16rem;
}
@media (max-width: 1024px) {
  .trouble__item--left {
    margin-top: 0;
  }
}
.trouble__content {
  background: white;
  border-radius: 3.2rem;
  padding: 2rem 40.9rem 3rem 34.1rem;
  position: relative;
}
@media (max-width: 1024px) {
  .trouble__content {
    padding: 2.4rem 1.6rem 3.6rem;
    width: 84%;
  }
  .trouble__content .trouble__item--left .trouble__content {
    padding: 2.4rem 1.6rem 3.6rem;
  }
  .trouble__content .head {
    font-size: 2.4rem;
  }
}
.trouble__content__text {
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
}
@media (max-width: 1024px) {
  .trouble__content__text {
    line-height: 3.2rem;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
}
.trouble__content__text--left {
  color: var(--bright-blue);
}
.trouble__content__text--right {
  color: var(--orange);
}
.trouble__content--right {
  padding: 4.5rem 35rem 4.5rem 6.5rem;
}
@media (max-width: 1024px) {
  .trouble__content--right {
    float: right;
    padding: 7.5rem 1.6rem 1.3rem;
  }
}
.trouble__image {
  aspect-ratio: 29/30;
  position: absolute;
  bottom: 0;
  left: 1.5rem;
}
@media (max-width: 1024px) {
  .trouble__image {
    width: 11rem;
    bottom: -8.6rem;
    z-index: 1;
  }
}
.trouble__image--right {
  aspect-ratio: 29/30;
  position: absolute;
  bottom: 0;
  right: 1.5rem;
}
@media (max-width: 1024px) {
  .trouble__image--right {
    width: 11rem;
    top: -5.6rem;
    right: 2rem;
  }
}

.result__list {
  display: flex;
  gap: 0.8rem;
  margin-top: 5.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .result__list {
    margin-top: 7rem;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .result__list {
    margin-top: 7rem;
    gap: 6rem;
  }
}
.result__item {
  width: 30rem;
  position: relative;
}
@media (max-width: 1024px) {
  .result__item {
    width: 47%;
  }
}
@media (max-width: 768px) {
  .result__item {
    width: 100%;
    flex: 1 0 100%;
  }
}
.result__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 1.6rem;
  letter-spacing: 0.3rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .result__title {
    font-size: 1.6rem;
  }
  .result__title br {
    display: none;
  }
}
.result__subtitle {
  font-size: 2.4rem;
  margin-top: 1.6rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 1024px) {
  .result__subtitle {
    margin-top: 0;
    font-size: 1.6rem;
  }
  .result__subtitle br {
    display: none;
  }
}
.result__image {
  height: 14rem;
  position: absolute;
  bottom: 1rem;
}
.result__image__container {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 19rem;
  background-color: var(--light-blue);
  border-radius: 0 3.2rem 3.2rem 3.2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .result__image__container {
    height: 21.6rem;
  }
}
.result__income {
  height: 4.2rem;
  background-color: var(--bright-blue);
  border-radius: 3.2rem;
  width: 85%;
  max-width: 30.7rem;
  display: flex;
  color: white;
  align-items: center;
  padding: 0 1.6rem;
  position: absolute;
  top: -1.4rem;
}
@media (max-width: 1024px) {
  .result__income {
    height: 4.8rem;
  }
}
.result__income__label {
  height: 100%;
  padding-right: 1.5rem;
  border-right: 1px solid;
  vertical-align: middle;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
@media (max-width: 1024px) {
  .result__income__label {
    padding-right: 2.4rem;
  }
}
.result__income__price {
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 0.8rem;
  letter-spacing: 0.3rem;
  display: flex;
  align-items: center;
}
.result__income__price svg {
  margin: 0 0.6rem 0 1.6rem;
}
@media (max-width: 1024px) {
  .result__income__price {
    letter-spacing: 0.6rem;
  }
}
.result__income__unit {
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: -1rem;
}
.result__income__price--old {
  color: #cbd3ff;
}
.result__badge {
  position: absolute;
  top: -3rem;
  right: 0;
  background: white;
  height: 3rem;
  border-radius: 2.6rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 15px;
}
@media (max-width: 1024px) {
  .result__badge {
    height: 3.3rem;
    line-height: 3.3rem;
  }
}
.result__badge__content {
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 1.3rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 1024px) {
  .result__badge__content {
    padding: 0 1.3rem;
    letter-spacing: 0.3rem;
  }
}
.result__badge__content .price {
  font-size: 1.8rem;
}
.result__badge svg {
  position: absolute;
  top: 2.8rem;
  left: 5.3rem;
}

@media (max-width: 1024px) {
  .container__content--result .content {
    padding-bottom: 3.2rem;
  }
}

@media (max-width: 1024px) {
  .section__title__result {
    padding-top: 3rem;
  }
}

.flow__index {
  font-size: 5.6rem;
  line-height: 5.6rem;
  color: #ffa041;
  font-weight: bold;
  letter-spacing: 0.5rem;
}
.flow__list {
  gap: 3.2rem;
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .flow__list {
    margin-top: 4.8rem;
  }
}
.flow__item--right {
  justify-content: end;
  position: relative;
}
@media (max-width: 1024px) {
  .flow__item--right {
    justify-content: start;
  }
}
.flow__item--right .svg-top {
  position: absolute;
  left: 31.2rem;
  top: -7.5rem;
}
@media (max-width: 1024px) {
  .flow__item--right .svg-top {
    display: none;
  }
}
.flow__item--right .svg-bottom {
  position: absolute;
  left: 31.2rem;
  bottom: -6.6rem;
}
@media (max-width: 1024px) {
  .flow__item--right .svg-bottom {
    display: none;
  }
}
.flow__item {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.flow__item .image-container {
  background-color: #f2f4ff;
  border-radius: 3.2rem;
  z-index: 1;
  text-align: center;
}
@media (max-width: 1024px) {
  .flow__item .image-container {
    background-color: #ffa041;
    width: 100%;
    height: 27.9rem;
  }
}
.flow__item__title {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 3.2rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .flow__item__title {
    font-size: 2.4rem;
    flex-direction: column;
  }
}
.flow__item__subtitle {
  width: 40rem;
  font-size: 2.4rem;
  margin-top: 3rem;
  letter-spacing: 0.3rem;
  line-height: 3.2rem;
}
@media (max-width: 1024px) {
  .flow__item__subtitle {
    font-size: 1.6rem;
    width: 100%;
    line-height: 2.4rem;
    margin-top: 2rem;
    letter-spacing: 0.2rem;
  }
}

.form {
  max-width: 69.2rem;
  margin: auto;
}
@media (max-width: 1024px) {
  .form {
    margin-top: 3.3rem;
  }
}
.form__top {
  margin-top: 2.4rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .form__top {
    margin-top: 4rem;
  }
}
.form__title {
  background-color: white;
  width: 34rem;
  text-align: center;
  height: 9.1rem;
  line-height: 9.1rem;
  border-top-left-radius: 3.2rem;
  border-top-right-radius: 3.2rem;
  font-size: 2.4rem;
  color: #ffa041;
  letter-spacing: 0.3rem;
  border-bottom: 1px solid #f1f1f1;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .form__title {
    width: 100%;
    border-bottom: none;
  }
}
.form__link {
  width: 32.8rem;
  height: 7.6rem;
  background-color: #64be49;
  border-radius: 11.2rem;
  text-align: center;
  color: white;
  font-size: 1.8rem;
  padding: 1rem;
  letter-spacing: 0.3rem;
}
.form__link .btn__icon--second {
  background-color: unset;
}
@media (max-width: 1024px) {
  .form__link {
    display: none;
  }
}
.form__content {
  padding: 4.1rem 10.5rem;
  background-color: white;
  min-height: 10rem;
  border-top-right-radius: 3.2rem;
  border-bottom-right-radius: 3.2rem;
  border-bottom-left-radius: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (max-width: 1024px) {
  .form__content {
    border-top-right-radius: 0;
    padding: 0 1.6rem 2.2rem;
  }
}
.form__label {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  gap: 1rem;
}
.form__label--required {
  font-size: 1.8rem;
  font-weight: 400;
  color: #ff5100;
}
.form__label--sub {
  font-size: 1.8rem;
  font-weight: 400;
  color: #cccccc;
}
.form__input {
  margin-top: 0.8rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.form__input__year {
  width: 9.3rem;
}
.form__input__month {
  width: 6.4rem;
}
.form__input__province {
  width: 13.6rem;
}
.form__input input {
  height: 5rem;
  width: 100%;
  border: none;
  background-color: #f1f1f1;
  border-radius: 1.6rem;
  padding-left: 1.6rem;
}
.form__input select {
  height: 5rem;
  border: none;
  background-color: #f1f1f1;
  border-radius: 1.6rem;
  padding-left: 1.6rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("images/icon-select.png");
  background-repeat: no-repeat, repeat;
  background-position: right 0.1em top 50%, 0 0;
}
.form__policy {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.form__policy a {
  color: #1f8acc;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: bold;
}
.form__btn {
  background-color: #ff4141;
  width: 100%;
  text-align: center;
  height: 6.2rem;
  color: white;
  border-radius: 1.6rem;
  font-weight: bold;
}
.form__btn:hover {
  opacity: 0.7;
}

.footer {
  padding-bottom: 5.7rem;
}
@media (max-width: 1024px) {
  .footer {
    margin-top: 6.1rem;
  }
}
.footer__policy {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 5.6rem;
  flex-wrap: wrap-reverse;
}
@media (max-width: 1024px) {
  .footer__policy {
    letter-spacing: 0.2rem;
    gap: 1.3rem;
    margin-top: 2.2rem;
  }
}
.footer__policy a {
  color: #1f8acc;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__policy--top {
  background-color: white;
  margin-top: 6.7rem;
}
@media (max-width: 1024px) {
  .footer__policy--top {
    margin-top: 0;
  }
}

.form__section {
  min-height: 12.8rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.form__section__label {
  display: flex;
  justify-content: center;
}
.form__section span {
  font-weight: bold;
}
.form__section .btn__icon {
  display: none;
}
.form__section__left {
  color: #ff4141;
  text-align: center;
}
.form__section__left button {
  width: 60rem;
  height: 6.4rem;
  color: white;
  background-color: #ff4141;
  border-radius: 4.8rem;
  text-align: center;
}
.form__section__right {
  color: #64be49;
  text-align: center;
}
.form__section__right button {
  width: 40rem;
  height: 6.4rem;
  color: white;
  background-color: #64be49;
  border-radius: 4.8rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .form__section {
    font-size: 1.6rem;
    padding: 1.6rem;
    gap: 2rem;
  }
  .form__section .btn__icon {
    display: flex;
  }
  .form__section .btn__icon--second {
    background-color: unset;
  }
  .form__section__left {
    width: 100%;
  }
  .form__section__left button {
    font-size: 1.8rem;
    margin-top: 0.8rem;
    width: 100%;
    padding: 0 9rem;
  }
  .form__section__right {
    font-size: 1.8rem;
    width: 100%;
  }
  .form__section__right button {
    font-size: 1.8rem;
    width: 100%;
    padding: 0 9rem;
  }
}

.form__section__bottom {
  display: none;
}
.form__section__bottom button {
  padding: 0;
}
.form__section__bottom span {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .form__section__bottom {
    margin-top: 1.8rem;
    display: block;
    left: 0;
    right: 0;
  }
}

#float--section {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.7);
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  #float--section {
    gap: 1rem;
  }
  #float--section button {
    padding: 0 1.5rem;
  }
  #float--section span {
    margin: 0 -0.2px;
    font-size: 1.3rem;
    word-break: keep-all;
  }
}

.menu {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  top: 1.6rem;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .menu {
    display: flex;
  }
}

.menu__logo {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 15px;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.6rem;
}
.menu__logo svg {
  margin-left: 0.5rem;
}

.drop__btn {
  background-color: white;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 15px;
}

.dropdown .drop__btn--close {
  display: none;
}

.dropdown.show .drop__btn--close {
  display: flex;
}

.dropdown.show .drop__btn--open {
  display: none;
}

.form__message--success {
  background-color: #d1e7dd;
  color: #64be49;
  text-align: center;
  height: 4rem;
  line-height: 4rem;
}

.form__message--error {
  background-color: #f8d7db;
  color: #ff4141;
  text-align: center;
  height: 4rem;
  line-height: 4rem;
}

.drop__btn:hover,
.drop__btn:focus {
  background-color: #f1f1f1 !important;
  opacity: 1 !important;
}

.hidden {
  display: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown__content {
  display: none;
  position: absolute;
  right: 0rem;
  min-width: 160px;
  overflow: auto;
  z-index: 1;
  padding: 0 1.5rem 1.5rem;
}

.dropdown__content a {
  margin-top: 1.6rem;
  color: #666666;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background-color: white;
  border-radius: 4.8rem;
  text-align: center;
  width: 24rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 4px 15px;
  font-size: 1.8rem;
}

.dropdown__content--success {
  background-color: #64be49 !important;
  color: white !important;
  font-weight: bold;
}

.dropdown__content--primary {
  background-color: #ffa041 !important;
  color: white !important;
  font-weight: bold;
}

.dropdown a:hover {
  background-color: #ddd;
}

.show {
  display: block;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 62.5%;
  }
  .header__inner {
    flex-wrap: wrap;
  }
  .header__title {
    font-size: 4.5rem;
  }
}
button:hover {
  opacity: 0.7;
}

input[type=checkbox] {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}

input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  top: 0;
  left: 0;
  border: 2px solid #cccccc;
  border-radius: 3px;
  background-color: white;
}

input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1.6rem;
  border: solid #2987e9;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  position: absolute;
  top: 1px;
  left: 7px;
}

.l_logo{
	text-align: center;
}

.l_wrap{
	width: 1000px;
	margin: 0 auto;	
}

/*# sourceMappingURL=styles.css.map */
