@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/* fonts */
@font-face {
  src: url(../fonts/NotoSansJP-Bold.woff) format("woff"), url(../fonts/NotoSansJP-Bold.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  src: url(../fonts/NotoSansJP-Medium.woff) format("woff"), url(../fonts/NotoSansJP-Medium.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url(../fonts/NotoSansJP-Regular.woff) format("woff"), url(../fonts/NotoSansJP-Regular.woff2) format("woff2");
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../fonts/CabinCondensed-Regular.woff) format("woff"), url(../fonts/CabinCondensed-Regular.woff2) format("woff2");
  font-family: "Cabin Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url(../fonts/CabinCondensed-Bold.woff) format("woff"), url(../fonts/CabinCondensed-Bold.woff2) format("woff2");
  font-family: "Cabin Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
/* font:rem=px デザインしたwidthを割る  */
html {
  font-size: 2.5641025641vw;
}
@media only screen and (min-width: 769px) {
  html {
    font-size: 0.6944444444vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.6;
  color: #333;
  font-display: optional;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}

.pc_hide {
  display: block;
}
@media only screen and (min-width: 769px) {
  .pc_hide {
    display: none;
  }
}

.sp_hide {
  display: none;
}
@media only screen and (min-width: 769px) {
  .sp_hide {
    display: block;
  }
}

/* common */
.inner {
  padding: 5rem 2.5rem;
}
@media only screen and (min-width: 769px) {
  .inner {
    padding: 8rem 27rem;
  }
}

h2 {
  line-height: 1.25;
  text-align: center;
  color: #1F2C41;
  font-size: 2.8rem;
  margin-bottom: 1em;
}
h2 .hira {
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  h2 .hira {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 769px) {
  h2 {
    font-size: 4rem;
    margin-bottom: 0.75em;
  }
}

.top_title {
  position: absolute;
  top: 2rem;
  left: 0;
  font-family: "Cabin Condensed", sans-serif;
  font-weight: 400;
  gap: 0.5em;
  display: flex;
  align-items: center;
  color: #B09E55;
}
@media only screen and (min-width: 769px) {
  .top_title {
    top: 4rem;
  }
}
.top_title::before {
  content: "";
  height: 1px;
  width: 3rem;
  background: #B09E55;
}
@media only screen and (min-width: 769px) {
  .top_title::before {
    width: 20rem;
  }
}

.number {
  font-family: "Cabin Condensed", sans-serif;
  line-height: 1;
}

.note {
  font-weight: 400;
  color: #999999;
  font-size: 1rem;
  line-height: 1.4;
}
@media only screen and (min-width: 769px) {
  .note {
    font-size: 1.2rem;
  }
}

.splide {
  padding-bottom: 2.5rem;
}
.splide__arrow {
  background: #B09E55;
  opacity: 1;
  width: 3rem;
  height: 3rem;
}
@media only screen and (min-width: 769px) {
  .splide__arrow {
    width: 4rem;
    height: 4rem;
  }
}
.splide__arrow svg {
  fill: #fff;
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .splide__arrow svg {
    width: 2rem;
    height: 2rem;
  }
}
.splide__arrow--prev {
  left: -2rem;
}
.splide__arrow--next {
  right: -2rem;
}
.splide__pagination {
  bottom: 0;
}
.splide__pagination__page.is-active {
  background: #B09E55;
  transform: scale(1);
}

/**/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  padding: 0 6rem 0 0;
  background: #fff;
}
@media only screen and (min-width: 769px) {
  .header {
    padding: 1rem 8rem;
    align-items: center;
  }
}
.header .logo {
  cursor: pointer;
  width: 4rem;
  margin: 1rem 0 1rem 2rem;
}
@media only screen and (min-width: 769px) {
  .header .logo {
    width: 5rem;
    margin: 0;
  }
}
.header_btn a {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  background: #B09E55;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0.8em 1.5rem;
  transition: all 0.4s;
}
.header_btn a .free {
  background: #1F2C41;
  border-radius: 0.2rem;
  font-size: 1.4rem;
  padding: 0.3rem 1rem;
}
.header .nav_btn {
  display: none;
}
@media only screen and (max-width: 769px) {
  .header .nav_btn {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
    width: 2rem;
    height: 1.6rem;
    transition: all 0.4s;
    z-index: 1000;
  }
}
.header .nav_btn span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0E3067;
  transition: all 0.4s;
}
.header .nav_btn span:first-of-type {
  top: 0;
}
.header .nav_btn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .nav_btn span:last-of-type {
  bottom: 0;
}
.header .nav_btn.open span {
  background: #fff;
}
.header .nav_btn.open span:first-of-type {
  top: 1rem;
  transform: rotate(-45deg);
}
.header .nav_btn.open span:nth-last-of-type(2) {
  display: none;
}
.header .nav_btn.open span:last-of-type {
  top: 1rem;
  transform: rotate(45deg);
}
@media only screen and (max-width: 769px) {
  .header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    font-size: 1.4rem;
    transition: all 0.4s;
    z-index: 999;
  }
}
.header nav.open {
  right: 0;
}
.header nav .nav_menu {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
@media only screen and (max-width: 769px) {
  .header nav .nav_menu {
    display: block;
    text-align: center;
    color: #fff;
    gap: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .header nav .nav_menu {
    gap: 5rem;
  }
}
.header nav .nav_menu li a {
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
}
@media only screen and (max-width: 769px) {
  .header nav .nav_menu li a {
    display: block;
    padding: 1em 0;
    color: #fff;
  }
}
.header nav .nav_menu li.header_btn a {
  color: #fff;
  border-radius: 0.2rem;
}

.fv {
  background: url(../images/fv_back_building.svg) no-repeat top 11rem left -18.7rem/80.4rem, linear-gradient(to bottom, #D8F2FF 0%, #D8F2FF 67%, #EEF1F0 67%, #EEF1F0 100%);
}
@media only screen and (min-width: 769px) {
  .fv {
    background: url(../images/fv_back_building.svg) no-repeat top 13rem left 44rem/100rem, linear-gradient(to bottom, #D8F2FF 0%, #D8F2FF 81%, #EEF1F0 81%, #EEF1F0 100%);
  }
}
.fv .inner {
  padding: 1.5rem 2rem 2.5rem 2rem;
}
@media only screen and (min-width: 769px) {
  .fv .inner {
    padding: 5rem 27rem 4rem;
  }
}
.fv .main_catch .flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .flex {
    gap: 1.5rem;
  }
}
.fv .main_catch .flex .balloon .balloon_wrap {
  position: relative;
  text-align: center;
  display: inline-block;
  line-height: 1.2;
  border-radius: 0.5rem;
  background: #1F2C41;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.5em 1rem;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .flex .balloon .balloon_wrap {
    font-size: 1.8rem;
  }
}
.fv .main_catch .flex .balloon .balloon_wrap .strong {
  font-size: 1.5rem;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .flex .balloon .balloon_wrap .strong {
    font-size: 2.2rem;
  }
}
.fv .main_catch .flex .balloon .balloon_wrap .adjust {
  margin-left: -0.15em;
}
.fv .main_catch .flex .balloon .balloon_wrap::after {
  position: absolute;
  content: "";
  width: 0.6rem;
  height: 0.8rem;
  background: #0E3067;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .flex .balloon .balloon_wrap::after {
    width: 0.9rem;
    height: 1.2rem;
  }
}
.fv .main_catch .flex .first_line {
  letter-spacing: 0.02em;
  color: #1F2C41;
  font-size: 2.8rem;
  line-height: 1.3;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .flex .first_line {
    font-size: 4.4rem;
  }
}
.fv .main_catch .flex .first_line .hira {
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .flex .first_line .hira {
    font-size: 3rem;
  }
}
.fv .main_catch .second_line {
  letter-spacing: 0.02em;
  line-height: 1.3;
  font-size: 3rem;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .second_line {
    font-size: 4.6rem;
  }
}
.fv .main_catch .second_line .hira {
  font-size: 2.2rem;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .second_line .hira {
    font-size: 3.4rem;
  }
}
.fv .main_catch .second_line .gold {
  color: #B09E55;
  font-size: 3.2rem;
  font-weight: 900;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch .second_line .gold {
    font-size: 5rem;
  }
}
.fv .main_catch + ul {
  margin-top: 15rem;
}
@media only screen and (min-width: 769px) {
  .fv .main_catch + ul {
    margin-top: 3rem;
  }
}
.fv ul {
  display: flex;
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  .fv ul {
    gap: 3rem;
    margin-left: 3.25rem;
  }
}
.fv ul li {
  width: 11rem;
  height: 11rem;
  color: #fff;
  background: #1F2C41;
  border-radius: 50%;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .fv ul li {
    width: 13.5rem;
    height: 13.5rem;
  }
}
.fv ul li .yellow {
  color: #EBD371;
}
.fv ul li .number {
  font-size: 3rem;
  display: inline-block;
  margin-left: 0.1em;
}
@media only screen and (min-width: 769px) {
  .fv ul li .number {
    font-size: 3.8rem;
  }
}
.fv ul li .strong {
  font-size: 2rem;
  line-height: 1.2;
}
@media only screen and (min-width: 769px) {
  .fv ul li .strong {
    font-size: 2.6rem;
  }
}
.fv ul li .small {
  font-size: 0.8rem;
}
@media only screen and (min-width: 769px) {
  .fv ul li .small {
    font-size: 1rem;
  }
}
.fv ul li:nth-child(2) {
  padding-top: 0.8rem;
}
.fv ul li:last-child {
  padding-top: 0.8rem;
}
@media only screen and (max-width: 769px) {
  .fv ul li:last-child {
    font-size: 1.4rem;
  }
}

#form .step {
  display: none;
}
#form .step.active {
  display: block;
}

.form form .progress {
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.form form .progress::after {
  position: absolute;
  content: "";
  width: 70%;
  height: 2px;
  left: 15%;
  top: 5.5rem;
  background: #8697B3;
}
.form form .progress .step_number {
  position: relative;
  z-index: 1;
  color: #8697B3;
  line-height: 1.25;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (min-width: 769px) {
  .form form .progress .step_number {
    font-size: 1.4rem;
  }
}
.form form .progress .step_number .progress_text {
  min-height: 2.5em;
  display: flex;
  align-items: flex-end;
}
.form form .progress .step_number .number {
  background: #8697B3;
  color: #fff;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 400;
}
.form form .progress .step_number.recent {
  color: #0E3067;
}
.form form .progress .step_number.recent .progress_text {
  color: #0E3067;
}
.form form .progress .step_number.recent .number {
  background: #0E3067;
}
.form form .progress + div {
  margin-top: 3rem;
}
.form form .content + .content {
  margin-top: 2.5rem;
}
.form form .content p {
  font-weight: 600;
}
.form form .content p.heading {
  margin-bottom: 1rem;
}
.form form .content p span:not(.note) {
  display: inline-block;
  padding: 0 0.5em 0.1em;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  border-radius: 0.2rem;
  margin-right: 1rem;
}
.form form .content p span:not(.note).required {
  background: #EB7371;
}
.form form .content p span:not(.note).optionally {
  background: #999999;
}
.form form .content p .note {
  margin-left: 0.5rem;
}
@media only screen and (min-width: 769px) {
  .form form .content p .note {
    margin-left: 1rem;
  }
}
.form form .content input::-moz-placeholder {
  color: #ccc;
  font-weight: 400;
}
.form form .content input::placeholder {
  color: #ccc;
  font-weight: 400;
}
.form form .content input[type=text],
.form form .content input[type=email],
.form form .content input[type=tel],
.form form .content input[type=address],
.form form .content textarea,
.form form .content select {
  width: 100%;
  background: #F0F1E9;
  border: solid #DDDDDD 1px;
  padding: 0.85em 1em;
}
.form form .content select {
  cursor: pointer;
}
.form form .content input[type=radio] {
  display: none;
}
.form form .content input[type=radio]:checked + label {
  background: #B09E55;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 0 #333;
  transform: translateY(2px);
}
.form form .content textarea {
  min-height: 9em;
}
.form form .content .select_wrap {
  position: relative;
}
.form form .content .select_wrap::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  background: #333;
  width: 1rem;
  height: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.form form .content .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.form form .content .grid .like_btn {
  background: #DDDDDD;
  color: #999;
  border: solid #333 1px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0 2px 0 #333;
  padding: 1rem;
  line-height: 1.4;
}
@media only screen and (min-width: 769px) {
  .form form .content .grid .like_btn {
    padding: 2.5rem;
  }
}
.form form .content label p {
  margin-bottom: 1rem;
}
.form form .content.agree {
  text-align: center;
}
.form form .content.agree a {
  color: #0E3067;
  text-decoration: underline;
}
.form form .content.btn {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 769px) {
  .form form .content.btn {
    width: 54%;
  }
}
.form form .content.btn .next {
  width: 100%;
  text-align: center;
  position: relative;
  background: #0E3067;
  border-radius: 0.2rem;
  color: #fff;
  font-size: 1.6rem;
  padding: 1em;
}
@media only screen and (min-width: 769px) {
  .form form .content.btn .next {
    font-size: 1.8rem;
  }
}
.form form .content.btn .next::after {
  position: absolute;
  content: "";
  background: url(../images/btn_arrow_right.svg) no-repeat center/contain;
  width: 1.3em;
  height: 1.3em;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.form form .content.btn .next:disabled {
  background: #999;
}
.form form .content.btn.two_btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media only screen and (min-width: 769px) {
  .form form .content.btn.two_btn {
    width: 80%;
  }
}
.form form .content.btn.two_btn button {
  position: relative;
  text-align: center;
  padding: 1em 0;
  font-size: 1.6rem;
  border-radius: 0.2rem;
  color: #fff;
  background: #DDDDDD;
  color: #999999;
}
.form form .content.btn.two_btn button::after {
  position: absolute;
  content: "";
  background: url(../images/btn_arrow_right.svg) no-repeat center/contain;
  width: 1.3em;
  height: 1.3em;
  top: 50%;
  left: 1em;
  transform: translateY(-50%) scale(-1, 1);
}
.form form .content.btn.two_btn .submit_wrap {
  position: relative;
}
.form form .content.btn.two_btn .submit_wrap::after {
  position: absolute;
  content: "";
  background: url(../images/btn_arrow_right.svg) no-repeat center/contain;
  width: 1.3em;
  height: 1.3em;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.form form .content.btn.two_btn input[type=submit] {
  width: 100%;
  background: #B09E55;
  text-align: center;
  padding: 1em 0;
  font-size: 1.6rem;
  border-radius: 0.2rem;
  color: #fff;
  background: #B09E55;
}
.form form .content.btn.two_btn input[type=submit]:disabled {
  filter: grayscale(100%);
}
.form form .error-message {
  color: #EB7371;
  margin-top: 1.5rem;
}
.form form .error-message span {
  position: relative;
  display: inline-block;
  padding: 0.2em 1em;
  background: rgba(235, 115, 113, 0.2);
  border-radius: 0.5rem;
}
.form form .error-message span::before {
  position: absolute;
  content: "";
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1.2rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(235, 115, 113, 0.2);
}

.form_top .inner {
  padding: 2.5rem 2.5rem 5rem;
}
@media only screen and (min-width: 769px) {
  .form_top .inner {
    padding: 2.5rem 40.5rem 8rem;
  }
}
.form_top h2 {
  background: #0E3067;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 2.5rem;
  margin-bottom: 0;
}
@media only screen and (min-width: 769px) {
  .form_top h2 {
    font-size: 2rem;
  }
}
.form_top h2 .free {
  background: #fff;
  border-radius: 0.2rem;
  color: #1F2C41;
  padding: 0.2em 0.5em;
}
@media only screen and (min-width: 769px) {
  .form_top h2 .free {
    padding: 0.1em 0.4em;
  }
}

@media only screen and (min-width: 769px) {
  .form_bottom .inner {
    padding: 8rem 40.2rem;
  }
}

.worry {
  background: url(../images/house.svg) no-repeat left 3rem bottom 4.4rem/8.9rem, url(../images/money.svg) no-repeat right 3rem bottom 4.9rem/10rem, linear-gradient(180deg, #333 0%, #DDDDDD 100%);
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 50% 100%, 0 90%, 0 100%);
}
@media only screen and (min-width: 769px) {
  .worry {
    background: url(../images/house.svg) no-repeat left 52.6rem bottom 6.5rem/10.1rem, url(../images/money.svg) no-repeat right 51.5rem bottom 8.4rem/11.4rem, linear-gradient(180deg, #333 0%, #DDDDDD 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 77%, 50% 100%, 0 77%, 0 100%);
  }
}
.worry .inner {
  padding: 5rem 1.5rem 0 1.5rem;
}
@media only screen and (min-width: 769px) {
  .worry .inner {
    padding: 6rem 27rem 0 27rem;
  }
}
.worry h2 {
  color: #fff;
}
.worry h2 .small {
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  .worry h2 .small {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 769px) {
  .worry ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
}
.worry ul li {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  display: flex;
}
.worry ul li .three_lines {
  display: inline-block;
  width: 20rem;
  height: 12rem;
  padding-top: 2rem;
}
.worry ul li .three_lines.over {
  font-size: 1.4rem;
}
.worry ul li .three_lines.adjust {
  padding-top: 2.45rem;
}
.worry ul li .two_lines {
  display: inline-block;
  width: 18rem;
  height: 10.4rem;
  padding-top: 2.5rem;
}
.worry ul li:first-child span {
  background: url(../images/serif_01.svg) no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 769px) {
  .worry ul li:first-child span {
    background: url(../images/serif_01_pc.svg) no-repeat;
    background-size: contain;
  }
}
@media only screen and (max-width: 769px) {
  .worry ul li:nth-child(2) {
    margin-top: -8.4rem;
  }
}
.worry ul li:nth-child(2) span {
  background: url(../images/serif_02.svg) no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 769px) {
  .worry ul li:nth-child(3) {
    margin-top: -2rem;
  }
}
.worry ul li:nth-child(3) span {
  background: url(../images/serif_03.svg) no-repeat;
  background-size: contain;
}
.worry ul li:nth-child(3) .two_lines {
  padding-top: 1.3rem;
}
@media only screen and (max-width: 769px) {
  .worry ul li:last-child {
    margin-top: -8rem;
  }
}
.worry ul li:last-child span {
  background: url(../images/serif_04.svg) no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 769px) {
  .worry ul li:last-child span {
    background: url(../images/serif_04_pc.svg) no-repeat;
    background-size: contain;
  }
}
@media only screen and (max-width: 769px) {
  .worry ul li:nth-child(odd) {
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 769px) {
  .worry ul li:nth-child(even) {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 769px) {
  .worry ul li:nth-child(even) {
    margin-top: 2.5rem;
  }
}
.worry .image figure {
  text-align: center;
}
.worry .image figure img {
  width: 12rem;
  margin-top: -4.6rem;
}
@media only screen and (min-width: 769px) {
  .worry .image figure img {
    width: 13.6rem;
    margin-top: -1rem;
  }
}

.solution {
  color: #0E3067;
  line-height: 1.4;
  background: url(../images/solution_man.svg) no-repeat bottom 4rem right 1.7rem/14.5rem, url(../images/back_solution_sp.webp) no-repeat center center/130%, #FFFAF1;
  margin-top: -5rem;
}
@media only screen and (min-width: 769px) {
  .solution {
    background: url(../images/solution_man.svg) no-repeat bottom 5rem right 41rem/18rem, url(../images/back_solution_pc.webp) no-repeat center center/cover, #FFFAF1;
    margin-top: -11.5rem;
  }
}
.solution .inner {
  padding: 9.2rem 2.5rem 5rem;
}
@media only screen and (min-width: 769px) {
  .solution .inner {
    padding: 17rem 41rem 8rem;
  }
}
@media only screen and (min-width: 769px) {
  .solution .balloon {
    margin-left: 8rem;
  }
}
.solution .balloon .balloon_wrap {
  display: inline-block;
  background: #fff;
  position: relative;
  border-radius: 0.5rem;
  font-size: 2rem;
  padding: 0.25em 0.5em;
  filter: drop-shadow(0 2px 4px rgba(176, 158, 85, 0.25));
}
@media only screen and (min-width: 769px) {
  .solution .balloon .balloon_wrap {
    font-size: 2.6rem;
  }
}
.solution .balloon .balloon_wrap::after {
  position: absolute;
  content: "";
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1rem;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.solution .balloon + p {
  margin-top: 1rem;
}
.solution .strong {
  font-size: 3rem;
}
@media only screen and (min-width: 769px) {
  .solution .strong {
    font-size: 4rem;
  }
}
.solution .strong .hira {
  font-size: 2rem;
}
@media only screen and (min-width: 769px) {
  .solution .strong .hira {
    font-size: 2.6rem;
  }
}
.solution .strong .underline {
  background: linear-gradient(transparent 75%, #FFE680 75%);
}

.reason {
  position: relative;
  background: #B09E55;
}
.reason .top_title {
  color: #fff;
}
.reason .top_title::before {
  background: #fff;
}
@media only screen and (min-width: 769px) {
  .reason .inner {
    padding: 8rem 19.5rem;
  }
}
.reason h2 {
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .reason ul {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 1.5rem;
  }
}
.reason ul li {
  background: url(../images/reason_title_arrow.svg) no-repeat top 5.5rem left/32rem, #fff;
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
}
.reason ul li .top {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.reason ul li .top .number {
  display: inline-block;
  text-align: center;
  color: #B09E55;
  font-size: 1.4rem;
}
.reason ul li .top .number .main_number {
  font-size: 5.6rem;
  line-height: 0.9;
}
.reason ul li .top h3 {
  line-height: 1.4;
  color: #0E3067;
  font-size: 2rem;
}
.reason ul li .top h3 .medium {
  font-size: 1.6rem;
}
.reason ul li .top h3 .small {
  font-size: 1.2rem;
}
.reason ul li .top h3 .strong {
  font-size: 2.8rem;
}
.reason ul li .top + div {
  margin-top: 3rem;
}
.reason ul li .note {
  text-align: center;
  margin-top: 2rem;
}
.reason ul li .image {
  width: 30rem;
  height: 18rem;
}
.reason ul li .image figure img {
  width: 30rem;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.reason ul li .image + div {
  margin-top: 1.5rem;
}
.reason ul li .text {
  line-height: 1.8;
  font-size: 1.4rem;
  font-weight: 400;
}
.reason ul li .text .strong {
  font-weight: 600;
}
.reason ul li .text + div {
  margin-top: 1.5rem;
}
.reason ul li .to_section {
  background: #1F2C41;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  padding: 1em 0;
  border-radius: 0.2rem;
  position: relative;
}
.reason ul li .to_section a {
  display: block;
}
.reason ul li .to_section::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  background: url(../images/arrow_down.svg) no-repeat center/contain;
}
.reason ul li:nth-child(5), .reason ul li:nth-child(6) {
  background: url(../images/reason_title_arrow.svg) no-repeat top 4.2rem left/32rem, #fff;
}
@media only screen and (max-width: 769px) {
  .reason ul li + li {
    margin-top: 2rem;
  }
}

.cta_area {
  background: #0E3067;
  text-align: center;
}
.cta_area .inner {
  padding: 3rem 2.5rem 3.5rem;
}
@media only screen and (min-width: 769px) {
  .cta_area .inner {
    padding: 5rem 50.7rem 6rem;
  }
}
.cta_area .cta_top {
  color: #fff;
  margin-bottom: 1rem;
}
.cta_area .cta_top .wrap {
  display: inline-block;
  position: relative;
  padding: 0 1.2em;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .cta_area .cta_top .wrap {
    font-size: 2rem;
  }
}
.cta_area .cta_top .wrap .number {
  font-size: 3.2rem;
}
@media only screen and (min-width: 769px) {
  .cta_area .cta_top .wrap .number {
    font-size: 4rem;
  }
}
.cta_area .cta_top .wrap::before, .cta_area .cta_top .wrap::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 1.2em;
  height: 1px;
  background: #fff;
}
.cta_area .cta_top .wrap::before {
  left: 0;
  transform: rotate(70deg);
}
.cta_area .cta_top .wrap::after {
  right: 0;
  transform: rotate(-70deg);
}
.cta_area a {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #B09E55;
  color: #fff;
  font-size: 2rem;
  border-radius: 0.2rem;
  padding: 0.75em 0 0.75em 3.5rem;
  box-shadow: 0 5px 0 0 #857840;
  transition: all 0.4s;
}
@media only screen and (min-width: 769px) {
  .cta_area a {
    font-size: 2.4rem;
    gap: 1.5rem;
    padding: 0.75em 0 0.75em 4.4rem;
  }
}
.cta_area a .free {
  background: #1F2C41;
  border-radius: 0.2rem;
  padding: 0.18em 0.8em;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  .cta_area a .free {
    font-size: 1.6rem;
  }
}
.cta_area a::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -18rem;
  left: 0;
  width: 3rem;
  height: 100%;
  background-color: rgba(251, 251, 251, 0.6);
  animation: btn_animation 3.5s ease-in-out infinite;
}
@keyframes btn_animation {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  71% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.cta_area a::after {
  position: absolute;
  content: "";
  background: url(../images/btn_arrow_right.svg) no-repeat center/contain;
  width: 1.2em;
  height: 1.2em;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.cta_area a:hover {
  transform: translateY(3px);
  box-shadow: 0 2px 0 0 #857840;
}

.performance {
  position: relative;
}
.performance .slider .splide__list .splide__slide {
  background: #F0F1E9;
  border-radius: 0.5rem;
  overflow: hidden;
}
.performance .slider .splide__list .splide__slide h3 {
  text-align: center;
  background: #0E3067;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.5em 0;
}
.performance .slider .splide__list .splide__slide .image {
  width: 100%;
  height: 18rem;
}
.performance .slider .splide__list .splide__slide .image img {
  width: 100%;
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.performance .slider .splide__list .splide__slide .contents {
  padding: 2rem 1.5rem 2.5rem;
}
@media only screen and (min-width: 769px) {
  .performance .slider .splide__list .splide__slide .contents {
    padding: 2rem 3rem 2.5rem;
  }
}
.performance .slider .splide__list .splide__slide .contents .price dl {
  text-align: center;
}
.performance .slider .splide__list .splide__slide .contents .price dl.houstart {
  display: flex;
}
.performance .slider .splide__list .splide__slide .contents .price dl.houstart dt {
  background: #B09E55;
  line-height: 1.4;
  color: #fff;
  font-size: 1.4rem;
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.performance .slider .splide__list .splide__slide .contents .price dl.houstart dd {
  background: #fff;
  border-top: solid 2px #B09E55;
  border-right: solid 2px #B09E55;
  border-bottom: solid 2px #B09E55;
  color: #B09E55;
  width: 100%;
  font-size: 2rem;
  padding: 1rem 0;
}
.performance .slider .splide__list .splide__slide .contents .price dl.houstart dd .number {
  font-size: 4.8rem;
}
.performance .slider .splide__list .splide__slide .contents .price dl.houstart + div {
  margin-top: 1rem;
}
.performance .slider .splide__list .splide__slide .contents .price dl.others {
  width: 50%;
}
.performance .slider .splide__list .splide__slide .contents .price dl.others dt {
  background: #DDDDDD;
  border-radius: 0.2rem;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}
.performance .slider .splide__list .splide__slide .contents .price dl.others dd {
  font-size: 1.4rem;
  margin-top: 0.5rem;
}
.performance .slider .splide__list .splide__slide .contents .price dl.others dd .number {
  font-size: 3.4rem;
}
.performance .slider .splide__list .splide__slide .contents .price dl.others + .others {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: solid 1px #DDDDDD;
}
.performance .slider .splide__list .splide__slide .contents .price .others_wrap {
  display: flex;
  padding: 1rem;
  background: #fff;
}
.performance .slider .splide__list .splide__slide .contents .price .note {
  margin-top: 1rem;
}
.performance .slider .splide__list .splide__slide .contents .price + div {
  margin-top: 1.5rem;
}
.performance .slider .splide__list .splide__slide .contents .detail {
  display: flex;
  align-items: center;
}
.performance .slider .splide__list .splide__slide .contents .detail p {
  font-size: 1.4rem;
  font-weight: 400;
  width: 50%;
}
.performance .slider .splide__list .splide__slide .contents .detail p.type {
  width: 55%;
}
.performance .slider .splide__list .splide__slide .contents .detail p + p {
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: solid 1px #DDDDDD;
}
.performance .slider .splide__list .splide__slide .contents .detail p .medium {
  font-weight: 500;
}
.performance .slider .splide__list .splide__slide .contents .detail + .detail {
  margin-top: 1rem;
}
.performance .slider .splide__list .splide__slide .contents .detail + .customer_voice {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: solid 1px #fff;
}
.performance .slider .splide__list .splide__slide .contents .customer_voice {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.performance .slider .splide__list .splide__slide .contents .customer_voice .balloon {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
}
.performance .slider .splide__list .splide__slide .contents .customer_voice .balloon .balloon_wrap {
  background: url(../images/icon_voice.svg) no-repeat center center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
}
.performance .slider .splide__list .splide__slide .contents .customer_voice .text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
}
.performance .slider + .slider {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  .performance .slider + .slider {
    margin-top: 2rem;
  }
}

.staff {
  position: relative;
  background: #F1F3F6;
}
.staff .intro {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media only screen and (min-width: 769px) {
  .staff .intro {
    width: 75%;
    margin: 0 auto 3rem;
  }
}
@media only screen and (min-width: 769px) {
  .staff .staff_list {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}
.staff .staff_list li {
  position: relative;
  background: #fff;
  box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}
.staff .staff_list li::before, .staff .staff_list li::after {
  position: absolute;
  content: "";
  background: #B09E55;
  width: 2rem;
  height: 2rem;
}
.staff .staff_list li::before {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.staff .staff_list li::after {
  bottom: 0;
  right: 0;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.staff .staff_list li .image {
  width: 100%;
}
.staff .staff_list li .contents {
  padding: 1.5rem 2rem 2.5rem;
}
.staff .staff_list li .contents .profile {
  color: #0E3067;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff .staff_list li .contents .profile .name {
  font-size: 2rem;
}
.staff .staff_list li .contents .profile .name + .position {
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  border-left: solid 1px #DDDDDD;
}
.staff .staff_list li .contents .profile .position {
  font-size: 1.2rem;
}
.staff .staff_list li .contents .profile + p {
  margin-top: 1.5rem;
}
.staff .staff_list li .contents .message {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
}
@media only screen and (max-width: 769px) {
  .staff .staff_list li + li {
    margin-top: 2rem;
  }
}

.comparison {
  position: relative;
}
@media only screen and (max-width: 769px) {
  .comparison .inner {
    padding: 5rem 1.5rem;
  }
}
@media only screen and (min-width: 769px) {
  .comparison .table_wrap {
    width: 67%;
    margin: 0 auto;
  }
}
.comparison .table_wrap table {
  width: 100%;
  line-height: 1.4;
  font-size: 1.2rem;
  border-collapse: separate;
  border-spacing: 2px;
}
@media only screen and (min-width: 769px) {
  .comparison .table_wrap table {
    font-size: 1.4rem;
  }
}
.comparison .table_wrap table thead tr th {
  vertical-align: middle;
  text-align: center;
  background: #DDDDDD;
}
.comparison .table_wrap table thead tr th:first-child {
  width: 22%;
}
@media only screen and (min-width: 769px) {
  .comparison .table_wrap table thead tr th:first-child {
    width: 20%;
  }
}
.comparison .table_wrap table thead tr th.houstart {
  position: relative;
  width: 43%;
  background: #B09E55;
  color: #fff;
  padding: calc(1rem - 5px) 0 1rem;
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  .comparison .table_wrap table thead tr th.houstart {
    font-size: 2.4rem;
    width: 50%;
  }
}
.comparison .table_wrap table thead tr th.houstart::after {
  position: absolute;
  content: "";
  top: -5px;
  left: 0;
  width: 100%;
  height: calc(100% + 5px);
  border-top: solid 5px #B09E55;
  border-radius: 0.2rem 0.2rem 0 0;
}
.comparison .table_wrap table thead tr th.houstart .small {
  display: block;
  font-size: 1rem;
}
@media only screen and (min-width: 769px) {
  .comparison .table_wrap table thead tr th.houstart .small {
    font-size: 1.2rem;
  }
}
.comparison .table_wrap table thead tr th:last-child {
  width: 35%;
}
@media only screen and (min-width: 769px) {
  .comparison .table_wrap table thead tr th:last-child {
    width: 30%;
  }
}
.comparison .table_wrap table tbody tr th {
  background: #0E3067;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}
.comparison .table_wrap table tbody tr td {
  text-align: center;
  vertical-align: middle;
}
.comparison .table_wrap table tbody tr td.houstart {
  position: relative;
  color: #83763F;
  background: #F9F2D5;
  padding: 1em 0;
  font-size: 1.4rem;
}
@media only screen and (min-width: 769px) {
  .comparison .table_wrap table tbody tr td.houstart {
    font-size: 1.6rem;
  }
}
.comparison .table_wrap table tbody tr td.houstart::after {
  position: absolute;
  content: "";
  border-left: solid 5px #B09E55;
  border-right: solid 5px #B09E55;
  top: -2px;
  left: 0;
  width: 100%;
  height: calc(100% + 2px);
}
.comparison .table_wrap table tbody tr td.houstart.last::after {
  border-bottom: solid 5px #B09E55;
  height: calc(100% + 7px);
}
.comparison .table_wrap table tbody tr td:last-child {
  font-weight: 400;
  background: #F0F1E9;
}
.comparison .table_wrap .note {
  margin-top: 1em;
}
.comparison .table_wrap + div {
  margin-top: 3rem;
}
@media only screen and (min-width: 769px) {
  .comparison .table_wrap + div {
    margin-top: 6.5rem;
  }
}
.comparison .recommend {
  border: solid 1px #B09E55;
  border-radius: 0.2rem;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .comparison .recommend {
    width: 60%;
    margin: 0 auto;
  }
}
.comparison .recommend h3 {
  position: absolute;
  top: -1.3rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  color: #B09E55;
  line-height: 1.4;
  font-size: 1.8rem;
}
@media only screen and (min-width: 769px) {
  .comparison .recommend h3 {
    font-size: 2rem;
  }
}
.comparison .recommend h3 span {
  display: inline-block;
  padding: 0 1rem;
  background: #fff;
}
.comparison .recommend .list_wrap {
  display: flex;
  justify-content: center;
  padding: 3.5rem 0 2.5rem;
}
.comparison .recommend .list_wrap ul li {
  color: #0E3067;
  line-height: 1.4;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .comparison .recommend .list_wrap ul li {
    font-size: 1.8rem;
  }
}
.comparison .recommend .list_wrap ul li span {
  padding-left: 1.6em;
  display: inline-block;
  position: relative;
}
.comparison .recommend .list_wrap ul li span::before {
  position: absolute;
  content: "";
  top: 0.06em;
  left: 0;
  background: url(../images/check_navy.svg) no-repeat center/contain;
  width: 1.25em;
  height: 1.25em;
}
.comparison .recommend .list_wrap ul li + li {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: dotted 1px #DDDDDD;
}

.flow {
  position: relative;
  background: #F0F1E9;
}
.flow ul {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .flow ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
.flow ul::after {
  position: absolute;
  content: "";
  background: #B09E55;
}
@media only screen and (max-width: 769px) {
  .flow ul::after {
    height: 80%;
    width: 2px;
    left: 2rem;
    top: 10%;
  }
}
@media only screen and (min-width: 769px) {
  .flow ul::after {
    width: 80%;
    height: 2px;
    top: 2rem;
    left: 10%;
  }
}
.flow ul li {
  position: relative;
  background: #fff;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem 1rem 3rem;
  counter-increment: flow_number;
  z-index: 1;
}
@media only screen and (max-width: 769px) {
  .flow ul li {
    margin-left: 3rem;
  }
}
@media only screen and (min-width: 769px) {
  .flow ul li {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.5rem 2rem 1.5rem;
    margin-top: 3rem;
  }
}
.flow ul li .icon {
  width: 6rem;
  height: 6rem;
}
.flow ul li h3 {
  color: #333;
  line-height: 1.4;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .flow ul li h3 {
    font-size: 1.8rem;
    text-align: center;
    min-height: 2.8em;
    display: flex;
    align-items: center;
  }
}
.flow ul li::before {
  position: absolute;
  content: "0" counter(flow_number);
  background: #B09E55;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Cabin Condensed", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
}
@media only screen and (max-width: 769px) {
  .flow ul li::before {
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 769px) {
  .flow ul li::before {
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 769px) {
  .flow ul li + li {
    margin-top: 1.5rem;
  }
}
.flow p {
  line-height: 1.8;
  font-weight: 400;
  margin-top: 2em;
}
@media only screen and (min-width: 769px) {
  .flow p {
    text-align: center;
    margin-top: 1em;
  }
}

.faq {
  position: relative;
  background: #F1F3F6;
}
@media only screen and (min-width: 769px) {
  .faq .faq_list {
    width: 80%;
    margin: 0 auto;
  }
}
.faq .faq_list li {
  border-radius: 0.2rem;
  overflow: hidden;
  background: #fff;
}
.faq .faq_list li .accordion {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 1em 2.5em 0.8em 2.7em;
  cursor: pointer;
}
@media only screen and (min-width: 769px) {
  .faq .faq_list li .accordion {
    padding: 1em 2.4em 1em 2.5em;
  }
}
.faq .faq_list li .accordion::before {
  position: absolute;
  content: "Q";
  font-family: "Cabin Condensed", sans-serif;
  font-weight: 700;
  color: #0E3067;
  font-size: 2.4rem;
  line-height: 1;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
}
.faq .faq_list li .accordion::after {
  position: absolute;
  content: "";
  background: url(../images/arrow_down_navy.svg) no-repeat center/contain;
  width: 1.1875em;
  height: 1.1875em;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.faq .faq_list li .accordion.open::after {
  transform: translateY(-50%) scale(1, -1);
}
.faq .faq_list li .accordion_content {
  display: none;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 1.5rem 2rem 2rem 2rem;
  border-top: solid 1px #F1F3F6;
}
.faq .faq_list li + li {
  margin-top: 1.5rem;
}

.company {
  position: relative;
  background: #F1F3F6;
}
.company dl div {
  display: flex;
  gap: 1rem;
  line-height: 1.4;
  padding: 1em 0;
}
.company dl div dt {
  color: #0E3067;
  width: 30%;
  font-weight: 500;
}
.company dl div dd {
  width: 70%;
  font-weight: 400;
}
.company dl div + div {
  border-top: solid 1px #fff;
}
.company dl div.last {
  border-bottom: solid 1px #fff;
}

.footer {
  text-align: center;
  padding: 3rem 0 3.5rem;
}
@media only screen and (min-width: 769px) {
  .footer {
    padding: 4rem 0 4.5rem;
  }
}
.footer figure {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 2rem;
}
.footer a {
  text-decoration: underline;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}
.footer .copy {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 400;
}
@media only screen and (min-width: 769px) {
  .footer .copy {
    font-size: 1.4rem;
  }
}

.thanks {
  background: #F0F1E9;
}
.thanks .inner {
  padding: 12rem 2rem;
}
@media only screen and (min-width: 769px) {
  .thanks .inner {
    padding: 12rem 27rem;
  }
}
.thanks p {
  font-weight: 400;
}
@media only screen and (min-width: 769px) {
  .thanks p {
    text-align: center;
  }
}
.thanks .back {
  width: 80%;
  margin: 5rem auto 0;
}
@media only screen and (min-width: 769px) {
  .thanks .back {
    width: 40%;
  }
}
.thanks .back a {
  position: relative;
  display: block;
  text-align: center;
  background: #1F2C41;
  color: #fff;
  padding: 0.8em 0;
  border-radius: 0.2rem;
}
.thanks .back a::after {
  position: absolute;
  content: "";
  background: url(../images/btn_arrow_right.svg) no-repeat center/contain;
  width: 1.3em;
  height: 1.3em;
  top: 50%;
  left: 1em;
  transform: translateY(-50%) scale(-1, 1);
}/*# sourceMappingURL=style.css.map */