@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.7;
}

html {
  height: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 667px) and (max-width: 928px) {
  html {
    font-size: 52%;
  }
}
@media screen and (max-width: 666px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-size: 1.6rem;
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue,
    YuGothic,
    "Yu Gothic Medium",
    "Yu Gothic",
    Verdana,
    Meiryo,
    sans-serif;
  color: #231815;
}
@media screen and (max-width: 666px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

textarea,
select,
input,
progress {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

h1 {
  font-size: 3.4rem;
}
@media screen and (max-width: 666px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.6rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.6rem;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:visited {
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
}

img,
video {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
  text-align: center;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

button:disabled,
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

label[for] {
  cursor: pointer;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

.l-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 666px) {
  .l-wrapper {
    padding: 0 4.5%;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 666px) {
  .sp {
    display: block !important;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 666px) {
  .pc {
    display: none !important;
  }
}

.btn {
  border-radius: 100vmax;
  padding: 12px;
  text-align: center;
  display: inline-block;
  max-width: 46.6rem;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  letter-spacing: 2px;
}
.btn.doc:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.6rem;
  width: 7.6rem;
  height: 9.6rem;
  background: url(../img/icon-document.svg) center center no-repeat;
  background-size: contain;
}
.btn.mail:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  width: 8.6rem;
  height: 9.6rem;
  background: url(../img/icon-mail.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 666px) {
  .btn {
    padding: 8px;
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  .btn.doc:before {
    left: 1.6rem;
    width: 4.6rem;
    height: 6.6rem;
  }
  .btn.mail:before {
    width: 6.6rem;
    height: 7.6rem;
  }
}
.btn.bg-red {
  background: #e84737 !important;
  color: #fff !important;
}
.btn.bg-yellow {
  background: #f7b764 !important;
  color: #fff !important;
}

.l-header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 4rem auto 0;
  gap: 3rem;
}
.l-header-cta__doc {
  border-radius: 100vmax;
  padding: 12px;
  text-align: center;
  display: inline-block;
  max-width: 46.6rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  background: #e84737 !important;
  color: #fff !important;
}
.l-header-cta__doc:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1.6rem;
  width: 5.6rem;
  height: 7.6rem;
  background: url(../img/icon-document.svg) center center no-repeat;
  background-size: contain;
}
.l-header-cta__mail {
  border-radius: 100vmax;
  padding: 12px;
  text-align: center;
  display: inline-block;
  max-width: 46.6rem;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  background: #f7b764 !important;
  color: #fff !important;
}
.l-header-cta__mail:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1rem;
  width: 6.6rem;
  height: 7.6rem;
  background: url(../img/icon-mail.svg) center center no-repeat;
  background-size: contain;
}

.sec-title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  border-radius: 16px 0 16px 0;
  text-align: center;
  color: #fff;
  background-color: #ef834a;
  padding: 8px;
  max-width: 653px;
  margin: 0 auto;
}
@media screen and (max-width: 666px) {
  .sec-title {
    font-size: 2rem;
  }
}

.sub-title {
  text-align: center;
  font-size: 2.2rem;
}
@media screen and (max-width: 666px) {
  .sub-title {
    font-size: 1.6rem;
  }
}

.sec {
  padding: 80px 0;
}
@media screen and (max-width: 666px) {
  .sec {
    padding: 46px 0;
  }
}

.l-section-cta {
  padding: 10rem 0 12rem;
}
.l-section-cta__image {
  max-width: 47rem;
  margin: 0 auto 8rem;
}
.l-section-cta__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 666px) {
  .l-section-cta__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 666px) {
  .l-section-cta {
    padding: 4rem 0 6rem;
  }
  .l-section-cta__image {
    margin: 0 auto 3rem;
  }
  .l-section-cta__list .btn {
    margin-bottom: 3rem;
  }
}

header.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 20px 100px 20px 2%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.5s;
  background-color: #ef834a;
}
header.header a.header-doc {
  border-radius: 100vmax;
  padding: 4px 16px 4px 50px;
  position: relative;
  background-color: #fff;
  line-height: 1.3;
  font-size: 1.4rem;
  color: #e84737;
}
header.header a.header-doc:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 40px;
  background: url(../img/header-icon-doc.png) center center no-repeat;
  background-size: contain;
}
header.header a.header-mail {
  border-radius: 100vmax;
  padding: 4px 16px 4px 55px;
  position: relative;
  background-color: #fff;
  line-height: 1.3;
  font-size: 1.4rem;
  color: #e84737;
  margin-left: 20px;
}
header.header a.header-mail:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 39px;
  height: 34px;
  background: url(../img/header-icon-mail.png) center center no-repeat;
  background-size: contain;
}
header.header h1.logo {
  transition: 0.2s;
  width: 256px;
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
  transition: all 0.3s;
}
header.header h1.logo a {
  display: block;
  line-height: 1;
}
header.header h1.logo img {
  width: 100%;
  transition: 0.2s;
}
header.header.sticky h1.logo {
  width: 100px;
  top: 5px;
}
header.header .toggle-btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 30px;
  z-index: 30;
  cursor: pointer;
}
header.header .toggle-btn span {
  position: absolute;
  display: block;
  left: 0;
  width: 44px;
  height: 4px;
  background-color: #fff;
  transition: all 0.5s;
}
header.header .toggle-btn span:nth-child(1) {
  top: 4px;
}
header.header .toggle-btn span:nth-child(2) {
  top: 13px;
}
header.header .toggle-btn span:nth-child(3) {
  bottom: 4px;
}
header.header #mask {
  display: none;
  transition: all 0.5s;
}
header.header #spnavArea nav {
  visibility: hidden;
  position: fixed;
  background: #fbe2c5;
  top: -100%;
  left: 0;
  bottom: 0;
  padding-top: 70px;
  width: 100%;
  transition: all 0.5s;
  z-index: 30;
  opacity: 0;
}
header.header #spnavArea nav .nav-logo {
  width: 256px;
}
header.header #spnavArea nav .inner {
  padding: 25px;
  display: flex;
}
header.header #spnavArea nav .inner .col {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header.header #spnavArea nav .inner .col:first-child {
  border-right: 1px solid #fff;
}
header.header #spnavArea nav .inner li {
  margin-bottom: 1em;
  text-align: center;
}
header.header #spnavArea.open nav {
  visibility: visible;
  top: 0;
  opacity: 1;
}
header.header #spnavArea.open li {
  font-size: 20px;
  margin: 16px 0;
}
header.header #spnavArea.open #mask {
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  cursor: pointer;
}
header.header #spnavArea.open .toggle-btn span {
  background-color: #fff;
}
header.header #spnavArea.open .toggle-btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}
header.header #spnavArea.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
header.header #spnavArea.open .toggle-btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}
@media screen and (max-width: 666px) {
  header.header h1.logo {
    width: 80px;
    top: 0px;
    left: 6px;
  }
  header.header a.header-doc,
  header.header a.header-mail {
    display: none;
  }
  header.header #spnavArea {
    display: block;
  }
}

@media screen and (max-width: 666px) {
  header.header {
    padding: 12px;
    height: 54px;
  }
  header.header .toggle-btn {
    top: 10px;
    right: 20px;
    cursor: pointer;
  }
  header.header .pconly {
    display: none;
  }
  header.header #spnavArea nav {
    padding-top: 0px;
  }
  header.header #spnavArea nav .nav-logo {
    display: none;
    width: 130px;
    text-align: center;
  }
  header.header #spnavArea nav .l-header-cta {
    flex-direction: column;
    width: 100%;
    margin: 4rem auto 0;
    gap: 2rem;
  }
  header.header #spnavArea nav .l-header-cta__doc:before {
    left: 0rem;
    width: 4.6rem;
    height: 6.6rem;
  }
  header.header #spnavArea nav .inner {
    flex-direction: column-reverse;
  }
  header.header #spnavArea nav .inner .col {
    width: 100%;
    display: block;
  }
  header.header #spnavArea nav .inner .col:first-child {
    border-right: none;
    margin-bottom: 3em;
  }
  header.header #spnavArea nav .inner .col li {
    text-align: center;
    font-size: 1.6rem;
    margin: 1rem 0;
  }
  header.header #spnavArea nav .inner .col li span {
    display: none;
  }
}
.footer .footer-logo {
  max-width: 298px;
  margin: 0 auto 8rem;
}

.copy {
  background-color: #ef834a;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 666px) {
  .copy {
    font-size: 1.2rem;
  }
}

.mv {
  margin-top: 5rem;
  margin-bottom: 6rem;
  display: flex;
  justify-content: flex-end;
}
.mv .mv-left {
  padding: 180px 2rem 0rem 2rem;
  width: calc(100% - 543px);
}
.mv .mv-right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  width: 543px;
}
.mv__inner {
  max-width: 500px;
  margin: 0 auto;
}
.mv__heading {
  font-size: 7rem;
  font-weight: 900;
  color: #e84737;
  margin-bottom: 3.6rem;
  line-height: 1.4;
}
.mv__txt {
  margin-bottom: 3.6rem;
  line-height: 2;
}
.mv__mv {
  max-width: 480px;
  margin: 6rem auto 0;
}
.mv__mv img {
  width: 100%;
}
@media screen and (max-width: 666px) {
  .mv {
    margin-top: 7rem;
    margin-bottom: 3rem;
    flex-direction: column;
  }
  .mv .mv-left {
    padding: 0 4vw;
    width: 100%;
  }
  .mv .mv-right {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    width: 100%;
  }
  .mv .mv-right img {
    width: 33.33%;
  }
  .mv__inner {
    margin: 0 auto;
  }
  .mv__heading {
    font-size: 4rem;
    margin-bottom: 1.6rem;
  }
  .mv__txt {
    margin-bottom: 1.6rem;
  }
  .mv__mv {
    margin: 1rem auto 0;
    width: 80%;
  }
  .mv__mv img {
    width: 100%;
  }
}

.p-index-service {
  margin-bottom: 8rem;
}
.p-index-service__inner {
  border-radius: 2rem;
  border: 4px solid #ef834a;
  overflow: hidden;
}
.p-index-service__heading {
  background-color: #ef834a;
  color: #fff;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 5px;
  font-weight: bold;
  padding: 0.8rem;
}
.p-index-service__list {
  display: flex;
  align-items: center;
  padding: 2rem 0 2rem 10vw;
}
.p-index-service__list:first-of-type {
  margin-top: 2.6rem;
}
.p-index-service__list:last-of-type {
  margin-bottom: 2.6rem;
}
.p-index-service__list dt {
  width: 5.7rem;
  height: 5.7rem;
  background-color: #ef834a;
  color: #fff;
  font-size: 3rem;
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
@media screen and (max-width: 666px) {
  .p-index-service {
    margin-bottom: 4rem;
  }
  .p-index-service__heading {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .p-index-service__list {
    display: flex;
    align-items: center;
    padding: 1.6rem 2rem 1.6rem 2rem;
  }
  .p-index-service__list:first-of-type {
    margin-top: 2.6rem;
  }
  .p-index-service__list:last-of-type {
    margin-bottom: 2.6rem;
  }
  .p-index-service__list dt {
    width: 4.7rem;
    height: 4.7rem;
    background-color: #ef834a;
    color: #fff;
    font-size: 2rem;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
  }
  .p-index-service__list dd {
    flex: 1;
  }
}

.p-index-slider {
  position: relative;
  overflow: hidden;
}
.p-index-slider .swiper {
  margin: 0 38px;
  overflow: hidden;
}
.p-index-slider .swiper-wrapper {
  width: 100%;
}
.p-index-slider .swiper-slide {
  color: #ffffff;
  width: 100%;
  text-align: center;
}
.p-index-slider .swiper-button-prev,
.p-index-slider .swiper-button-next {
  width: 19px;
  height: 44px;
  background-size: contain;
  transform: translateY(-50%);
  margin-top: 0;
  z-index: 5;
}
.p-index-slider .swiper-button-next {
  background-image: url("../img/next.png");
}
.p-index-slider .swiper-button-prev {
  background-image: url("../img/prev.png");
}
.p-index-slider .swiper-button-prev:after,
.p-index-slider .swiper-button-next:after {
  display: none;
}

.p-index-worries {
  margin-top: 10rem;
  background-color: #fbe2c5;
  padding: 10rem 0 3rem;
  position: relative;
}
.p-index-worries:before {
  position: absolute;
  content: "";
  top: -60px;
  width: 100%;
  height: 114px;
  background: url(../img/wave.svg) center top no-repeat;
  background-size: cover;
}
.p-index-worries__header {
  max-width: 77.7rem;
  margin: 0 auto;
}
.p-index-worries .sec-title {
  position: relative;
  top: -5rem;
}
.p-index-worries__list {
  margin-bottom: 4rem;
  display: flex;
  align-items: flex-start;
}
.p-index-worries__list dt {
  width: 300px;
  border-radius: 1rem;
  background-color: #fff;
  color: #ef834a;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  padding: 1rem;
}
.p-index-worries__list dd {
  flex: 1;
  padding: 1rem 1rem 1rem 5rem;
  border-top: 3px solid #fff;
  margin-left: -2rem;
}
@media screen and (max-width: 666px) {
  .p-index-worries {
    padding: 6rem 0 2rem;
  }
  .p-index-worries:before {
    top: -45px;
    width: 100%;
    height: 74px;
  }
  .p-index-worries__header {
    max-width: 77.7rem;
    margin: 0 auto;
  }
  .p-index-worries .sec-title {
    position: relative;
    top: -2rem;
    margin-bottom: 3rem;
  }
  .p-index-worries__list {
    margin-bottom: 3rem;
    flex-direction: column;
  }
  .p-index-worries__list dt {
    width: 100%;
    border-radius: 1rem;
    font-size: 1.8rem;
    letter-spacing: 2px;
    padding: 1rem;
  }
  .p-index-worries__list dd {
    flex: 1;
    padding: 1rem;
    border-top: none;
    margin-left: 0;
  }
}

.p-index-reason {
  margin-top: 10rem;
  background-color: #fbe2c5;
  padding: 10rem 0 6rem;
  position: relative;
}
.p-index-reason .sec-title {
  margin-top: -12.5rem;
  margin-bottom: 3rem;
}
.p-index-reason__body {
  background-color: #fff;
  padding: 5rem 5rem 1px;
  border-radius: 1.6rem;
}
.p-index-reason__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
@media screen and (max-width: 666px) {
  .p-index-reason__row {
    flex-wrap: wrap;
  }
}
.p-index-reason__row__icon {
  width: 11rem;
  height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ef834a;
  border-radius: 2rem;
  padding: 2rem;
}
.p-index-reason__row__txt {
  flex: 1;
  padding-left: 30px;
}
.p-index-reason__title {
  width: fit-content;
  padding: 0 8px;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.p-index-reason__title span {
  position: relative;
  z-index: 2;
}
.p-index-reason__title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 16px;
  border-radius: 100vmax;
  background-color: #fbe2c5;
  z-index: 0;
}
.p-index-reason__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 666px) {
  .p-index-reason__list {
    flex-wrap: wrap;
  }
}
.p-index-reason__list .col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.p-index-reason__list .col.wide {
  width: 100%;
}
.p-index-reason__list .col.wide dl {
  width: 100% !important;
}
.p-index-reason__list dl {
  display: flex;
  align-items: center;
  width: 50%;
}
.p-index-reason__list dl dt {
  width: 3.3rem;
  height: 3.3rem;
  background-color: #ef834a;
  color: #fff;
  font-size: 2rem;
  margin-right: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
@media screen and (max-width: 666px) {
  .p-index-reason {
    margin-top: 8rem;
  }
  .p-index-reason__body {
    padding: 3rem 2rem 1px;
  }
  .p-index-reason__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 666px) and (max-width: 666px) {
  .p-index-reason__row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 666px) {
  .p-index-reason__row__icon {
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 666px) {
  .p-index-reason__row__txt {
    flex: 1;
    padding-left: 10px;
  }
}
@media screen and (max-width: 666px) {
  .p-index-reason__title {
    width: fit-content;
    padding: 0 8px;
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 4rem;
    min-height: 68px;
    display: flex;
    align-items: center;
  }
  .p-index-reason__title span {
    position: relative;
    z-index: 2;
  }
  .p-index-reason__title:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 16px;
    border-radius: 100vmax;
    background-color: #fbe2c5;
    z-index: 0;
  }
}
@media screen and (max-width: 666px) {
  .p-index-reason__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-left: -7rem;
  }
}
@media screen and (max-width: 666px) and (max-width: 666px) {
  .p-index-reason__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 666px) {
  .p-index-reason__list .col {
    width: 100%;
    margin-top: -1rem;
  }
  .p-index-reason__list .col.wide {
    width: 100%;
  }
}
@media screen and (max-width: 666px) {
  .p-index-reason__list dl {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
  .p-index-reason__list dl dt {
    width: 2.6rem;
    height: 2.6rem;
    background-color: #ef834a;
    color: #fff;
    font-size: 1.6rem;
    margin-right: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
  }
  .p-index-reason__list dl dd {
    flex: 1;
  }
}

.p-index-comparison {
  background-color: #fbe2c5;
  padding-bottom: 5rem;
}
.p-index-comparison__inner {
  position: relative;
  top: -4rem;
  overflow: hidden;
}
.p-index-comparison__title {
  background-color: #ef834a;
  text-align: center;
  color: #fff;
  font-size: 2.6rem;
  letter-spacing: 4px;
  padding: 1rem 0 0.6rem;
  border-radius: 2rem 2rem 0 0;
}
.p-index-comparison__body {
  border-radius: 0 0 2rem 2rem;
  border: 4px solid #ef834a;
  background-color: #fff;
  overflow: hidden;
}
.p-index-comparison__table {
  border-top: 4px solid #ef834a;
  width: calc(100% + 4px);
  margin: 0 auto 0 -2px;
}
.p-index-comparison__table td,
.p-index-comparison__table th {
  padding: 1rem 1rem;
  text-align: center;
  font-weight: normal;
  border: 2px solid #ef834a;
  letter-spacing: 3px;
  line-height: 1.4;
}
.p-index-comparison__table th {
  background-color: #f8e2ad;
  height: 70px;
}
.p-index-comparison__table tr:last-of-type td,
.p-index-comparison__table tr:last-of-type th {
  border-bottom: none;
}
.p-index-comparison__table .w1 {
  width: 240px;
}
.p-index-comparison__table .w2 {
  width: 240px;
}
.p-index-comparison__table .w3 {
  width: 240px;
}
.p-index-comparison__table .w4 {
  width: 240px;
}
.p-index-comparison__table .c-txt {
  color: #ef834a;
  font-weight: bold;
}
@media screen and (max-width: 666px) {
  .p-index-comparison {
    background-color: #fbe2c5;
    padding-bottom: 5rem;
  }
  .p-index-comparison__inner {
    position: relative;
    top: -4rem;
    overflow: hidden;
  }
  .p-index-comparison__title {
    background-color: #ef834a;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    letter-spacing: 2px;
    padding: 1rem 0 0.6rem;
    border-radius: 2rem 2rem 0 0;
  }
  .p-index-comparison__table {
    border-top: 4px solid #ef834a;
    width: calc(100% + 4px);
    margin: 0 auto 0 -2px;
  }
  .p-index-comparison__table td,
  .p-index-comparison__table th {
    padding: 1rem 1rem;
    text-align: center;
    font-weight: normal;
    border: 2px solid #ef834a;
    letter-spacing: 1px;
    line-height: 1.4;
  }
  .p-index-comparison__table .w1 {
    width: 25%;
  }
  .p-index-comparison__table .w2 {
    width: 25%;
  }
  .p-index-comparison__table .w3 {
    width: 25%;
  }
  .p-index-comparison__table .w4 {
    width: 25%;
  }
}

.p-index-hot {
  background-color: #fbe2c5;
  padding-bottom: 5rem;
  margin-top: 10rem;
}
.p-index-hot__heading {
  position: relative;
  top: -4rem;
  overflow: hidden;
}
.p-index-hot .sec-title span {
  display: block;
  text-align: center;
  font-size: 2rem;
}
.p-index-hot__circle {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-around;
  padding: 0 3rem;
}
.p-index-hot__circle li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 21rem;
  height: 20.9rem;
  background: url(../img/circle.png) no-repeat;
  background-size: contain;
}
.p-index-hot__body {
  position: relative;
  z-index: 2;
  top: -2rem;
}
@media screen and (max-width: 666px) {
  .p-index-hot {
    background-color: #fbe2c5;
    padding-bottom: 5rem;
    margin-top: 10rem;
  }
  .p-index-hot__heading {
    position: relative;
    top: -4rem;
    overflow: hidden;
  }
  .p-index-hot .sec-title span {
    display: block;
    text-align: center;
    font-size: 2rem;
  }
  .p-index-hot__circle {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
  }
  .p-index-hot__circle li {
    width: 210px;
    height: 210px;
  }
}
.p-index-hot__body {
  position: relative;
  z-index: 2;
  top: 1rem;
}

.p-index-breakdown {
  background-color: #fbe2c5;
  padding-bottom: 1rem;
  margin-top: 10rem;
}
.p-index-breakdown__heading {
  position: relative;
  top: -2.6rem;
  margin-bottom: 3rem;
}
.p-index-breakdown__list {
  margin-bottom: 8rem;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
.p-index-breakdown__list dt {
  background-color: #fff;
  border-radius: 1.6rem;
  color: #ef834a;
  font-weight: bold;
  font-size: 2.4rem;
  width: 330px;
  text-align: center;
  padding: 1.6rem;
  line-height: 1.5;
  letter-spacing: 3px;
}
.p-index-breakdown__list dd {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 3px;
}
@media screen and (max-width: 666px) {
  .p-index-breakdown {
    margin-top: 6rem;
  }
  .p-index-breakdown__list {
    margin-bottom: 4rem;
    flex-direction: column;
    gap: 1rem;
  }
  .p-index-breakdown__list dt {
    font-size: 1.8rem;
    width: 100%;
    letter-spacing: 2px;
  }
  .p-index-breakdown__list dd {
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
}

.p-index-support {
  background-color: #fbe2c5;
  padding-bottom: 1rem;
  margin-top: 10rem;
}
.p-index-support__heading {
  position: relative;
  top: -2.6rem;
  margin-bottom: 3rem;
}
.p-index-support__list {
  margin-bottom: 8rem;
}
.p-index-support__list li {
  margin-bottom: 3rem;
  background-color: #fff;
  border: 4px solid #ef834a;
  text-align: center;
  font-size: 2.4rem;
  padding: 1rem;
  border-radius: 100vmax;
  letter-spacing: 4px;
  font-weight: bold;
}
@media screen and (max-width: 666px) {
  .p-index-support {
    margin-top: 0rem;
  }
  .p-index-support__heading {
    position: relative;
    top: -2.6rem;
    margin-bottom: 2rem;
  }
  .p-index-support__list {
    margin-bottom: 0;
  }
  .p-index-support__list li {
    margin-bottom: 3rem;
    background-color: #fff;
    border: 4px solid #ef834a;
    text-align: center;
    font-size: 1.6rem;
    padding: 1rem 0.5rem;
    border-radius: 100vmax;
    letter-spacing: inherit;
    font-weight: bold;
  }
}

.p-index-join {
  background-color: #fbe2c5;
  padding-bottom: 3rem;
  margin-top: 10rem;
}
.p-index-join__heading {
  position: relative;
  top: -2.6rem;
  margin-bottom: 3rem;
}
.p-index-join__list {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}
.p-index-join__list dt {
  background-color: #fff;
  margin-right: 3rem;
  text-align: left;
  font-size: 2.4rem;
  padding: 1rem;
  border-radius: 1rem;
  letter-spacing: 4px;
  font-weight: bold;
  padding-left: 10rem;
  padding-right: 3rem;
  position: relative;
}
.p-index-join__list dt:before,
.p-index-join__list dt:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  width: 3px;
  height: 90px;
  background: #e60012;
}
.p-index-join__list dt:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-index-join__list dt:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 666px) {
  .p-index-join {
    margin-top: 6rem;
  }
  .p-index-join__list {
    flex-direction: column;
  }
  .p-index-join__list dt {
    margin-right: 0;
    text-align: left;
    font-size: 1.8rem;
    padding: 1rem;
    border-radius: 1rem;
    letter-spacing: 1px;
    font-weight: bold;
    padding-left: 6rem;
    padding-right: 1rem;
    position: relative;
    min-height: 81px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .p-index-join__list dt:before,
  .p-index-join__list dt:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    width: 3px;
    height: 50px;
    background: #e60012;
  }
  .p-index-join__list dt:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .p-index-join__list dt:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .p-index-join__list dd {
    width: 100%;
    text-align: left;
  }
}

.p-index-flow {
  background-color: #fbe2c5;
  padding-bottom: 6rem;
  margin-top: 10rem;
  position: relative;
}
.p-index-flow__heading {
  position: relative;
  top: -2.6rem;
  margin-bottom: 3rem;
}
.p-index-flow__list {
  margin-bottom: 3rem;
}
.p-index-flow__list li {
  display: flex;
  align-items: center;
  background-color: #fff;
  text-align: left;
  font-size: 2.4rem;
  border-radius: 100vmax;
  overflow: hidden;
  letter-spacing: 4px;
  font-weight: bold;
  padding-left: 0rem;
  padding-right: 3rem;
  position: relative;
  border: 4px solid #ef834a;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.p-index-flow__list span.num {
  background-color: #ef834a;
  padding: 1rem 2rem 1rem 3rem;
  color: #fff;
}
.p-index-flow__list span.txt {
  flex: 1;
  text-align: center;
}
.p-index-flow__list .arrow {
  width: 80px;
  height: 60px;
  background: url(../img/arrow.png) top center no-repeat;
  background-size: contain;
  margin: -1px auto 2rem;
}
.p-index-flow .center {
  text-align: center;
  margin-top: 4rem;
  font-weight: bold;
}
.p-index-flow:after {
  content: "";
  position: absolute;
  bottom: -60px;
  width: 100%;
  height: 114px;
  background: url(../img/wave.svg) center top no-repeat;
  background-size: cover;
}
@media screen and (max-width: 666px) {
  .p-index-flow {
    padding-bottom: 3rem;
    margin-top: 6rem;
    position: relative;
  }
  .p-index-flow__list {
    margin-bottom: 3rem;
  }
  .p-index-flow__list li {
    font-size: 1.8rem;
    border-radius: 10px;
    letter-spacing: 1px;
    padding-right: 1rem;
    position: relative;
    border: 2px solid #ef834a;
    align-items: center;
    gap: 10px;
  }
  .p-index-flow__list span.num {
    background-color: #ef834a;
    padding: 1.7rem 2rem 1.7rem 2rem;
    color: #fff;
    height: 100%;
    display: block;
  }
  .p-index-flow__list span.txt {
    flex: 1;
    text-align: center;
  }
  .p-index-flow__list .arrow {
    width: 80px;
    height: 60px;
    background: url(../img/arrow.png) top center no-repeat;
    background-size: contain;
    margin: -1px auto 2rem;
  }
  .p-index-flow .center {
    text-align: center;
    margin-top: 4rem;
    font-weight: bold;
  }
  .p-index-flow:after {
    content: "";
    position: absolute;
    bottom: -40px;
    width: 100%;
    height: 74px;
    background: url(../img/wave.svg) center top no-repeat;
    background-size: cover;
  }
}

.p-index-vision {
  padding-bottom: 3rem;
  margin-top: 16rem;
  position: relative;
}
.p-index-vision__heading {
  color: #e60012;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 3rem;
}
.p-index-vision__image {
  max-width: 960px;
  margin: 0 auto 4rem;
}
.p-index-vision__body p {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.9;
}
@media screen and (max-width: 666px) {
  .p-index-vision {
    padding-bottom: 0;
    margin-top: 6rem;
    position: relative;
  }
  .p-index-vision__heading {
    color: #e60012;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 2rem;
  }
  .p-index-vision__image {
    max-width: 960px;
    margin: 0 auto 4rem;
  }
  .p-index-vision__body p {
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.9;
  }
}

.p-index-faq {
  background-color: #fbe2c5;
  padding-bottom: 6rem;
  margin-top: 5rem;
  position: relative;
}
.p-index-faq__heading {
  position: relative;
  top: -2.6rem;
  margin-bottom: 3rem;
}
.p-index-faq__body {
  background-color: #fff;
  border-radius: 2rem;
  padding: 2rem 4rem;
  margin-bottom: 3rem;
}
.p-index-faq__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.p-index-faq__list dt {
  position: relative;
  color: #fff;
  font-size: 3rem;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  border-radius: 8px;
}
.p-index-faq__list dt.faq-Q {
  background-color: #f7b764;
}
.p-index-faq__list dt.faq-A {
  background-color: #e84737;
}
.p-index-faq__list dd {
  width: calc(100% - 10.5rem);
}
@media screen and (max-width: 666px) {
  .p-index-faq {
    background-color: #fbe2c5;
    padding-bottom: 3rem;
    margin-top: 5rem;
    position: relative;
  }
  .p-index-faq__body {
    background-color: #fff;
    border-radius: 2rem;
    padding: 2rem 1.6rem;
    margin-bottom: 2rem;
  }
  .p-index-faq__list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .p-index-faq__list dt {
    position: relative;
    color: #fff;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 8px;
  }
  .p-index-faq__list dd {
    width: calc(100% - 9.5rem);
  }
} /*# sourceMappingURL=style.css.map */
