*,
::before,
::after {
  box-sizing: border-box;
}

ul, ol, figure, p, button, input,
h1, h2, h3, h4, h5, h6, dl, dt, dd {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-feature-settings: "palt";
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

svg {
  width: 100%;
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    font-size: min(0.715vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.334vw;
  }
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #231815;
  word-break: break-all;
}

main {
  display: block;
  background-color: #f4f2e3;
}

h2 {
  color: #601e1b;
}

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

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

.slideUp {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 1s linear 0s, translate 1s ease 0s;
}
.slideUp.is-animated {
  opacity: 1;
  translate: 0 0;
}

.consult_cta {
  position: relative;
  display: flex;
  justify-content: center;
}
.consult_cta > a {
  display: block;
  position: relative;
  background-image: url(../img/sikyubtn.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  text-indent: -9999px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .consult_cta > a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 769px) {
  .consult_cta.-pc > a {
    width: 67.6rem;
    height: 9.392rem;
  }
}
@media screen and (max-width: 768px) {
  .consult_cta.-pc > a {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .consult_cta.-sp > a {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .consult_cta.-sp > a {
    width: 56rem;
    height: 7.847rem;
  }
}

.cta_floating_button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 100;
  width: 350px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}
@media screen and (max-width: 768px) {
  .cta_floating_button {
    display: none;
  }
}
.cta_floating_button.is-visible {
  animation: showButton 0.4s forwards;
  animation-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .cta_floating_button.is-visible {
    display: none;
  }
}
.cta_floating_button.is-hidden {
  display: none;
}

@media (any-hover: hover) {
  .cta_floating_button:hover {
    filter: brightness(0.7) !important;
  }
}
@keyframes showButton {
  to {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
}
.chatbot-iframe-wrapper {
  position: fixed;
  z-index: 100;
  right: 25px;
  bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  width: 500px;
  height: 90vh;
  max-height: 670px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: none;
}
@media screen and (max-width: 768px) {
  .chatbot-iframe-wrapper {
    display: none;
  }
}
.chatbot-iframe-wrapper iframe {
  width: 100%;
  border: none;
}
.chatbot-iframe-wrapper.is-open {
  animation: showChatbotIframe 0.4s forwards;
}
@media screen and (max-width: 768px) {
  .chatbot-iframe-wrapper.is-open {
    display: none;
  }
}
.chatbot-iframe-wrapper.is-close {
  animation: closeChatbotIframe 0.4s forwards;
}
@media screen and (max-width: 768px) {
  .chatbot-iframe-wrapper.is-close {
    display: none;
  }
}

@keyframes showChatbotIframe {
  from {
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
  }
  to {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes closeChatbotIframe {
  from {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  to {
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
  }
}
.chatbot-iframe-inner {
  position: relative;
  height: 100%;
}

.chatbot-close-btn-wrapper {
  position: absolute;
  right: 15px;
  top: 10px;
}

.chatbot-close-btn {
  width: 15px;
  height: 15px;
  position: relative;
}
.chatbot-close-btn span {
  display: block;
  margin: 0;
  border: none;
  height: 3px;
  background: #fff;
  position: absolute;
  width: 100%;
}
.chatbot-close-btn span:nth-of-type(1) {
  top: 6px;
  transform: rotate(45deg);
}
.chatbot-close-btn span:nth-of-type(2) {
  top: 6px;
  transform: rotate(-45deg);
}

.dialog {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  border: none;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dialog::backdrop {
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease-in-out;
}
.dialog.show {
  opacity: 1;
}
.dialog.show::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.dialog_cont {
  margin: auto;
  position: relative;
}
@media screen and (min-width: 769px) {
  .dialog_cont {
    width: 112rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_cont {
    width: 67rem;
  }
}

.dialog_inner {
  background: #fff;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 769px) {
  .dialog_inner {
    max-height: calc(100vh - 155px);
  }
}
@media screen and (max-width: 768px) {
  .dialog_inner {
    height: 75vh;
  }
}

@media screen and (min-width: 769px) {
  .dialog_wrap {
    padding: 6rem 16rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_wrap {
    padding: 7rem 4rem;
  }
}

.dialog_open {
  border: none;
  border-radius: 100vmax;
  font-weight: 700;
  color: #000;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .dialog_open {
    height: 2rem;
    font-size: 1.28rem;
    position: absolute;
    top: 1.5rem;
    right: 69rem;
    z-index: 200;
  }
}
@media screen and (max-width: 768px) {
  .dialog_open {
    position: static;
    display: block;
    text-align: center;
    font-size: 1.334rem;
    z-index: 200;
  }
}
.dialog_open > span {
  display: inline;
  text-decoration: underline;
  color: #43b5a5;
}
@media (any-hover: hover) {
  .dialog_open:hover {
    opacity: 0.8;
  }
}

.dialog_close {
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: 50%;
  background-color: #00738a;
  position: absolute;
  top: -3rem;
  z-index: 10;
  cursor: pointer;
  outline: none;
}
@media screen and (min-width: 769px) {
  .dialog_close {
    right: -3rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_close {
    right: -2rem;
  }
}
.dialog_close::before, .dialog_close::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 3.8rem;
  height: 1px;
  top: 2.8rem;
  left: 1rem;
}
.dialog_close::before {
  transform: rotate(-45deg);
}
.dialog_close::after {
  transform: rotate(45deg);
}

.dialog_box + .dialog_box {
  margin-top: 4rem;
}

.dialog_ttl {
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #00738a;
}
@media screen and (min-width: 769px) {
  .dialog_ttl {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_ttl {
    font-size: 3.6rem;
  }
}
.dialog_ttl + .dialog_txt {
  margin-top: 2rem;
}

.dialog_subttl {
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 769px) {
  .dialog_subttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_subttl {
    font-size: 3.2rem;
  }
}
.dialog_subttl + .dialog_txt {
  margin-top: 1.5rem;
}

.dialog_txt {
  line-height: 2;
  position: relative;
}
@media screen and (min-width: 769px) {
  .dialog_txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_txt {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  .dialog_txt.mark {
    padding-left: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_txt.mark {
    padding-left: 2.2rem;
  }
}
.dialog_txt.mark::before {
  content: "";
  display: inline-block;
  background-color: #00738a;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 769px) {
  .dialog_txt.mark::before {
    width: 0.5rem;
    height: 0.5rem;
    top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_txt.mark::before {
    width: 1rem;
    height: 1rem;
    top: 2.5rem;
  }
}
@media screen and (min-width: 769px) {
  .dialog_txt.num {
    padding-left: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_txt.num {
    padding-left: 4.2rem;
  }
}
.dialog_txt.num::before {
  counter-increment: number 1;
  content: counter(number);
  display: inline-block;
  border: 1px solid;
  border-radius: 9999999px;
  text-align: center;
  letter-spacing: 0;
  position: absolute;
}
@media screen and (min-width: 769px) {
  .dialog_txt.num::before {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 1.2rem;
    line-height: 1.4rem;
    top: 0.8rem;
    left: -1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .dialog_txt.num::before {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 2.4rem;
    line-height: 2.8rem;
    top: 1.2rem;
    left: 0;
  }
}

.dialog_list {
  margin-top: 0.5rem;
  padding-left: 2.5rem;
  counter-reset: number;
}

.kv {
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .kv {
    background-position: center top, center bottom;
    background-size: 172rem, 100%;
  }
}
@media screen and (max-width: 768px) {
  .kv {
    background-position: center 4rem;
    background-size: contain;
  }
}

.kv_wrap {
  margin-inline: auto;
  width: 100%;
  background-color: white;
}

.kv_img {
  height: auto;
  position: relative;
  z-index: 3;
  margin: auto;
}
@media screen and (min-width: 1500px) {
  .kv_img {
    max-width: 100%;
  }
  .kv_img img {
    height: 770px;
    width: 100%;
    max-width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    content: url(../img/header-fv2-wide.webp);
  }
}

.kv_wrap {
  margin-inline: auto;
  width: 100%;
}

@media screen and (min-width: 1400px) {
  .kv_img_wrap_txt {
    bottom: 20px;
    padding-right: 130px;
  }
  .kv_img_wrap_txt .consult_cta > a {
    width: 414px;
    height: 56px;
  }
  .kv_wrap {
    background-color: white;
  }
}
.siryo_wrap4 {
  position: relative;
}
.siryo_wrap4 .dialog_open {
  position: static;
}

.sp-fv-wrap {
  position: relative;
}
.sp-fv-wrap img {
  width: 100%;
  display: block;
}

.sp-fv-bottom {
  background-color: #f4f2e3;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-fv-gift-txt,
.sp-footer-gift-txt {
  display: flex;
  color: white;
  font-size: 2.286rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 100;
  font-weight: 200;
}
.sp-fv-gift-txt a,
.sp-footer-gift-txt a {
  color: white;
  text-decoration: underline;
  font-size: 2.286rem;
  font-weight: 200;
  cursor: pointer;
  z-index: 100;
}

.sp-fv-gift-txt {
  bottom: 2%;
}

.sp-footer-gift-txt {
  bottom: 8%;
}

@media screen and (min-width: 769px) {
  .footer-gift-txt {
    font-size: 1.28rem;
    text-align: right;
    color: white;
    font-weight: 200;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-gift-txt {
    text-align: center;
  }
}
.footer-gift-txt a {
  font-weight: 200;
  text-decoration: underline;
  color: white;
}

.concerns {
  background: #e9e4d9;
}
@media screen and (min-width: 769px) {
  .concerns {
    background-image: url(../img/bg-gray.webp);
  }
}
@media screen and (max-width: 768px) {
  .concerns {
    background-image: url(../img/sp-gray-bg.webp);
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .concerns .container {
    padding: 4% 4%;
  }
}

@media screen and (min-width: 769px) {
  .concern-board {
    max-width: 1270px;
    min-height: 1960px;
    margin: 0 auto;
    padding: 62px 6.2rem;
    text-align: center;
    background-image: url(../img/bg-board.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
  }
}
@media screen and (max-width: 768px) {
  .concern-board {
    padding: 5.6rem;
    padding-bottom: 8rem;
    background-image: url(../img/sp-board-bg1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.concern-title,
.concern-title2 {
  display: flex;
  justify-content: center;
  margin: 4rem auto 0;
  max-width: 700px;
  max-height: 200px;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (min-width: 769px) {
  .concern-title,
  .concern-title2 {
    margin-top: 2.334rem;
  }
}
@media screen and (max-width: 768px) {
  .concern-title,
  .concern-title2 {
    width: 100%;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .concern-title.-pc,
  .concern-title2.-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .concern-title.-sp,
  .concern-title2.-sp {
    display: none;
  }
}

.concern-title2 {
  margin-top: 1rem;
}

.concern-subtitle {
  margin: 10px auto;
}
@media screen and (min-width: 769px) {
  .concern-subtitle.-pc {
    font-size: 2rem;
    max-width: 870px;
  }
}
@media screen and (max-width: 768px) {
  .concern-subtitle.-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .concern-subtitle.-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .concern-subtitle.-sp {
    width: 100%;
  }
}

.feature-grid {
  font-weight: 700;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
  display: grid;
}
@media screen and (min-width: 769px) {
  .feature-grid {
    max-width: 970px;
    margin-bottom: 15px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 14px;
    grid-row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .feature-grid {
    width: 100%;
    text-align: center;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
    grid-column-gap: 14px;
    grid-row-gap: 10px;
  }
}
.feature-grid .feature-intro {
  font-family: Noto Sans JP;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 1.48px;
  color: #411E1B;
}
@media screen and (min-width: 769px) {
  .feature-grid .feature-intro {
    font-size: 3.6rem;
    line-height: 90.95px;
  }
}
@media screen and (max-width: 768px) {
  .feature-grid .feature-intro {
    font-size: 3.6rem;
  }
}
.feature-grid > img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-item {
  max-width: 100%;
  margin: 0 auto;
}
.feature-item img {
  width: 100%;
  height: auto;
  display: block;
}

.concern-arrow {
  margin: 0 auto 30px;
}
@media screen and (min-width: 769px) {
  .concern-arrow {
    background: url(../img/arrow.webp);
    background-size: contain;
    width: 81px;
    height: 94px;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .concern-arrow {
    margin: 10px auto 0;
    width: 50px;
    height: 65px;
    background: url(../img/sp-arrow.webp);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.benefit-grid {
  display: grid;
}
@media screen and (min-width: 769px) {
  .benefit-grid {
    grid-template-columns: repeat(4, 1fr);
    width: 100rem;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 10px;
    padding-top: 3rem;
  }
}

.benefit-card {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .benefit-card {
    padding: 10px;
  }
}

.card-icon {
  margin: 0 auto 0.5rem;
}
.card-icon img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .card-icon {
    width: 80%;
  }
}

.setuzei-mincomment {
  text-align: left;
  font-weight: bold;
  color: #231815;
  display: flex;
}
@media screen and (min-width: 769px) {
  .setuzei-mincomment {
    padding-top: 3.184rem;
    padding-right: 1.734rem;
    padding-bottom: 3.184rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .setuzei-mincomment {
    justify-self: center;
    font-size: 12px;
    margin: auto;
    padding: 0;
  }
}

.siryo_wrap,
.siryo_wrap2,
.siryo_wrap3 {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.siryo_wrap {
  margin: auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .siryo_wrap {
    padding: 0 5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.siryo_wrap2 {
  margin-inline: auto;
  max-width: 100%;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .siryo_wrap2 {
    padding: 0 5rem 7.5rem;
  }
}

.siryo_wrap3 {
  margin: auto;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .siryo_wrap3 .consult_cta {
    margin-top: -1rem;
  }
}

.testimonials {
  background-color: #f7f8eb;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .testimonials {
    background-image: url(../img/voice-bg.webp);
    background-position: center bottom;
    background-size: cover;
    padding-top: 7.6rem;
    padding-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .testimonials {
    padding: 30px 0 12rem;
    background-image: url(../img/sp-voice-bg.webp);
    background-position: center bottom;
    background-size: contain;
  }
}
.testimonials .container {
  max-width: 1280px;
  margin: auto;
}

.section-title-voice {
  max-width: 1400px;
  position: relative;
}
@media screen and (min-width: 769px) {
  .section-title-voice {
    max-width: 1280px;
    margin: auto;
  }
}
.section-title-voice h2 {
  text-align: center;
  font-weight: 700;
  background-color: #f7f8eb;
  position: relative;
}
@media screen and (min-width: 769px) {
  .section-title-voice h2 {
    font-size: 4.8rem;
    letter-spacing: 5.2px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .section-title-voice h2 {
    font-size: 3.8rem;
    letter-spacing: 2.2px;
    margin-bottom: 20px;
  }
}
.section-title-voice h2 .pink {
  color: #dd665f;
}
@media screen and (min-width: 769px) {
  .section-title-voice h2::before, .section-title-voice h2::after {
    content: "";
    position: absolute;
    width: 115px;
    height: 3px;
    background: #411e1b;
    text-align: center;
  }
  .section-title-voice h2::before {
    top: 4rem;
    left: 2rem;
  }
  .section-title-voice h2::after {
    top: 3rem;
    right: 2rem;
  }
}

.testimonial-grid {
  display: grid;
}
@media screen and (min-width: 769px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    padding: 0 15%;
    margin-bottom: 16rem;
  }
}

@media screen and (min-width: 769px) {
  .testimonial-item {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .testimonial-item {
    padding: 0;
  }
}

.testimonial-content {
  font-weight: 700;
  margin-bottom: 5.334rem;
}
@media screen and (min-width: 769px) {
  .testimonial-content.drophukidasi {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 769px) {
  .testimonials .testimonial-grid .testimonial-item:nth-child(2) {
    margin-top: -6.4rem;
  }
}

.why-invest {
  background: var(--color-bg-light);
}
@media screen and (min-width: 769px) {
  .why-invest {
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .why-invest {
    padding: 0;
    padding-top: 30px;
  }
}
.why-invest .container {
  max-width: 1400px;
  margin: auto;
}

.section-title-reason {
  max-width: 1400px;
  position: relative;
}
.section-title-reason h2 {
  text-align: center;
  font-weight: 700;
  letter-spacing: 3.12px;
}
.section-title-reason h2 .pink {
  color: #dd665f;
}
@media screen and (min-width: 769px) {
  .section-title-reason h2 {
    font-size: 4.8rem;
    margin-bottom: 40px;
    padding-top: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .section-title-reason h2 {
    font-size: 3.8rem;
    margin-bottom: 20px;
  }
}

.reason-list {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .reason-list {
    padding: 2% 5% 5%;
  }
}
@media screen and (max-width: 768px) {
  .reason-list {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 769px) {
  .reason-item1,
  .reason-item2,
  .reason-item3 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .reason-item1,
  .reason-item2,
  .reason-item3 {
    margin-bottom: 24px;
  }
}

.reason-content1,
.reason-content2,
.reason-content3 {
  margin-bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

.points {
  padding: 60px 0;
  background: #e9e4d9;
  background-image: url(../img/bg-wood2.webp);
  background-position: center;
  background-repeat: repeat-x;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .points {
    padding: 30px 0;
  }
}
.points .container {
  max-width: 1400px;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .points .container {
    background-image: url(../img/board-bg-3point.webp);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .points .container {
    padding: 4% 1%;
  }
}

.point-board {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .point-board {
    gap: 15px;
    padding: 7.334rem 0 10rem;
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .point-board {
    background-image: url(../img/sp-bg-board-3point.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 10rem 0;
  }
}
.point-board h2 {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .point-board h2 {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .point-tit {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .point-tit img {
    width: 80%;
    margin-bottom: 3rem;
  }
}

.point-item {
  margin: auto;
}

@media screen and (max-width: 768px) {
  .point-num {
    width: 80%;
    margin: auto;
    margin-bottom: 2rem;
  }
}

.checklist {
  padding: 60px 0;
  background: #f7f8eb;
}
@media screen and (max-width: 768px) {
  .checklist {
    padding: 40px 0 60px;
  }
}
.checklist .container {
  max-width: 1400px;
  margin: auto;
}

.section-title-chk {
  max-width: 1400px;
}
@media screen and (min-width: 769px) {
  .section-title-chk {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 5.834rem;
    width: 65%;
  }
}
.section-title-chk .sp-only {
  width: 80%;
  margin: auto;
}

.check-grid {
  display: grid;
}
@media screen and (min-width: 769px) {
  .check-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 12.5rem;
    max-width: 116.505rem;
    margin: auto auto 4rem;
  }
}
@media screen and (max-width: 768px) {
  .check-grid {
    gap: 4rem 2rem;
    width: 90%;
    margin: 5rem auto 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

.check-item {
  text-align: center;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
}

.footer-cta {
  background: #401d1a;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .footer-cta {
    padding: 30px 0;
  }
}

.footer-cta-box {
  padding: 0 40px;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  .footer-cta-box {
    padding: 0 20px;
  }
}

footer {
  background: #727171;
  padding: 16px 0;
  width: 100%;
  font-family: "Noto Serif", serif;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-group {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-group .contents {
  width: auto;
  margin: 0;
  padding: 0;
}

.footer-group .copyright {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

footer a {
  color: #fff !important;
  font-size: 12px;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 2vw 4vw;
  }
  .footer-group {
    gap: 3vw;
  }
  .footer-group .contents p {
    white-space: nowrap;
  }
  .footer-group .copyright {
    font-size: 1.9vw;
    white-space: nowrap;
  }
  footer a {
    font-size: 1.9vw;
    white-space: nowrap;
  }
}
.kv-comment {
  display: block;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .kv-comment {
    padding: 20px 16.45rem 0;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) and (min-width: 1400px) {
  .kv-comment {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .kv-comment {
    display: none;
  }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
  .concerns .container,
  .testimonials .container,
  .why-invest .container,
  .checklist .container,
  .points .container {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
  .concerns .container {
    display: flex;
    justify-content: center;
  }
  .concern-board {
    padding-left: 70px;
    padding-right: 70px;
    min-height: unset;
    padding-bottom: 60px;
    width: 100%;
    box-sizing: border-box;
    margin-inline: auto;
    background-position: center center;
    background-size: 100% 100%;
  }
  .benefit-grid {
    width: 100%;
    padding-inline: 10px;
    box-sizing: border-box;
  }
  .testimonial-grid {
    padding-inline: 20px;
  }
  .reason-list {
    padding-inline: 20px;
  }
  .point-board {
    min-height: unset;
    padding: 11rem 70px 80px;
    box-sizing: border-box;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }
  .points .container {
    background-size: 100% 100%;
    background-position: center top;
    padding: 0;
    max-width: 100%;
  }
  .check-grid {
    padding-inline: 20px;
    gap: 40px;
  }
  .footer-cta-box {
    padding-inline: 20px;
  }
  .kv_img_wrap_txt {
    width: 100%;
    box-sizing: border-box;
    padding-inline: 20px;
  }
  .point-item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .point-num {
    width: 80%;
    margin: 0 auto;
  }
  .point-num img {
    width: 100%;
    height: auto;
  }
  .testimonials {
    padding-bottom: 16rem;
  }
  .section-title-voice h2::before {
    width: 70px;
    top: 50%;
    left: 10px;
  }
  .section-title-voice h2::after {
    width: 70px;
    top: 50%;
    right: 10px;
  }
  .checklist .container {
    padding-inline: 70px;
  }
}
.kv_img_wrap_txt {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .kv_img_wrap_txt {
    bottom: 1vw;
    padding-right: 9.286vw;
  }
}
@media screen and (max-width: 768px) {
  .kv_img_wrap_txt {
    bottom: -2.5rem;
  }
}
.kv_img_wrap_txt .dialog_open {
  position: static;
}

@media screen and (min-width: 1101px) and (max-width: 1399px) {
  .kv_img_wrap_txt {
    bottom: 1vw;
    padding-right: 9.286vw;
  }
  .kv_img_wrap_txt .consult_cta > a {
    width: 29.572vw;
    height: 4vw;
  }
}
@media screen and (min-width: 1400px) {
  .kv_img_wrap_txt {
    inset: auto 0 20px 0;
    padding-right: calc((100vw - 1400px) / 2 + 130px);
    justify-content: flex-end;
  }
  .kv_img_wrap_txt .consult_cta > a {
    width: 414px;
    height: 56px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .kv_img_wrap_txt {
    bottom: 1vw;
    padding-right: 9.286vw;
  }
  .kv_img_wrap_txt .consult_cta > a {
    width: 29.572vw;
    height: 4vw;
  }
}
.chatbot-iframe-wrapper.is-open {
  display: block;
  animation: showChatbotIframe 0.4s forwards;
}

.chatbot-iframe-wrapper.is-close {
  display: block;
  animation: closeChatbotIframe 0.4s forwards;
}

@media screen and (min-width: 1101px) and (max-width: 1399px) {
  .concern-board {
    min-height: unset;
    background-size: 100% 100%;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sp-setuzi-comment {
    display: block;
    margin-inline: auto;
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */