@charset "UTF-8";
/* リセットcss */
@import url(https://unpkg.com/ress/dist/ress.min.css);
/* Google Fonts */
@import url(https://fonts.googleapis.com);
@import url(https://fonts.gstatic.com);
@import url(https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap);
@import url(https://fonts.googleapis.com);
@import url(https://fonts.gstatic.com);
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap);
/*
color-swatch ========================================*/
/*
breakpoint ==========================================================================*/
/*
font ========================================*/
/* Zen Old Mincho */
/* Zen Kaku Gothic */
/* Noto Sans JP */
/* Inter */
/* font size */
/*
all ==========================================================================*/
html,
body {
  background-color: #fff;
}

@keyframes emphasis-scale {
  0% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.25) translateY(-5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.u-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.u-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.u-fade-in.is-visible.lpContent__reason--leaf {
  animation: emphasis-scale 0.6s ease-out 1.2s 1 normal forwards;
}

.u-delay-1 {
  transition-delay: 0.3s;
}

.u-delay-2 {
  transition-delay: 0.6s;
}

.u-delay-3 {
  transition-delay: 0.9s;
}

.u-delay-3 {
  transition-delay: 1.2s;
}

.lpContent {
  background-color: #fff;
  color: #272B2A;
}
.lpContent__wrapper {
  width: min(1080px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (max-width: 1280px) {
  .lpContent__wrapper {
    width: min(81.25vw + 40px, 100%);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__wrapper {
    width: min(1080px, 100%);
  }
}
.lpContent .sectionTtl {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 35px;
  font-size: 50px;
  color: #3F6B5D;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  line-height: 1.25;
}
@media screen and (max-width: 1280px) {
  .lpContent .sectionTtl {
    padding-bottom: 2.734375vw;
    font-size: 3.90625vw;
    margin-bottom: 3.125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent .sectionTtl {
    padding-bottom: 5.8666666667vw;
    font-size: 9.6vw;
    margin-bottom: 10.6666666667vw;
  }
}
.lpContent .sectionTtl .sp-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .lpContent .sectionTtl .sp-show {
    display: block;
  }
}
.lpContent .sectionTtl small {
  font-size: 0.56em;
}
.lpContent .sectionTtl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 150px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/lp/sec_ttl.png);
}
@media screen and (max-width: 1280px) {
  .lpContent .sectionTtl::after {
    width: 11.71875vw;
    height: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent .sectionTtl::after {
    width: 28vw;
    height: 3.7333333333vw;
  }
}
.lpContent__header {
  padding-block: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
  transition: background-color 0.4s ease;
}
@media screen and (max-width: 1280px) {
  .lpContent__header {
    padding-block: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header {
    padding-block: 4.2666666667vw;
  }
}
.lpContent__header.is-open {
  background-color: transparent;
}
.lpContent__header.is-open .lpContent__header--dropdown {
  transform: translateY(0);
}
.lpContent__header.is-open .header__logo .logo-default {
  opacity: 0;
  visibility: hidden;
}
.lpContent__header.is-open .header__logo .logo-white {
  opacity: 1;
  visibility: visible;
}
.lpContent__header.is-open .header__nav--tel {
  opacity: 0;
  visibility: hidden;
}
.lpContent__header.is-open .header__nav--toggle {
  background-color: #F7F4EE;
  color: #3F6B5D;
  box-shadow: 0 8px 0 #C3C1BB;
}
@media screen and (max-width: 1280px) {
  .lpContent__header.is-open .header__nav--toggle {
    box-shadow: 0 0.625vw 0 #C3C1BB;
  }
}
.lpContent__header--dropdown {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #3F6B5D;
  z-index: 2;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  overflow-y: auto;
}
.lpContent__header--dropdown .dropdown__inner {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding: 148px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--dropdown .dropdown__inner {
    width: min(90.625vw, 100%);
    padding: 11.5625vw 1.5625vw 3.125vw;
    gap: 5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--dropdown .dropdown__inner {
    flex-direction: column-reverse;
    width: min(1160px, 100%);
    padding: 23.4666666667vw 20px 10.6666666667vw;
    gap: 1.0666666667vw;
  }
}
.lpContent__header--dropdown .dropdown__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 70px;
       column-gap: 70px;
  width: 100%;
  max-width: 698px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--dropdown .dropdown__list {
    -moz-column-gap: 5.46875vw;
         column-gap: 5.46875vw;
    max-width: 54.53125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--dropdown .dropdown__list {
    -moz-column-gap: 4vw;
         column-gap: 4vw;
    max-width: 100%;
  }
}
.lpContent__header--dropdown .dropdown__list li {
  border-bottom: 1px solid #B5C0BC;
}
@media screen and (max-width: 750px) {
  .lpContent__header--dropdown .dropdown__list li {
    display: flex;
  }
}
.lpContent__header--dropdown .dropdown__list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-decoration: none;
  padding-block: 16px 8px;
  font-size: 24px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--dropdown .dropdown__list li a {
    padding-block: 1.25vw 0.625vw;
    font-size: 1.875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--dropdown .dropdown__list li a {
    padding-block: 5.2vw;
    font-size: 4vw;
    width: 100%;
  }
}
.lpContent__header--dropdown .dropdown__list li a .sp-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .lpContent__header--dropdown .dropdown__list li a .sp-show {
    display: block;
  }
}
.lpContent__header--dropdown .dropdown__list li a::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 1280px) {
  .lpContent__header--dropdown .dropdown__list li a::after {
    width: 1.015625vw;
    height: 1.015625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--dropdown .dropdown__list li a::after {
    width: 3vw;
    height: 3vw;
  }
}
.lpContent__header--dropdown .dropdown__cta {
  text-align: center;
  max-width: 694px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--dropdown .dropdown__cta {
    max-width: 54.21875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--dropdown .dropdown__cta {
    max-width: 100%;
    width: 100%;
  }
}
.lpContent__header--dropdown .dropdown__cta img {
  max-width: 100%;
  height: auto;
  display: block;
}
.lpContent__header--inner {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner {
    width: min(87.5vw + 40px, 100%);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--inner {
    width: min(1160px, 100%);
  }
}
.lpContent__header--inner .header__logo {
  width: 254px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner .header__logo {
    width: 19.84375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--inner .header__logo {
    width: 40vw;
  }
}
.lpContent__header--inner .header__logo img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lpContent__header--inner .header__logo .logo-white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}
.lpContent__header--inner .header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner .header__nav {
    gap: 0.9375vw;
  }
}
.lpContent__header--inner .header__nav--tel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  z-index: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner .header__nav--tel {
    gap: 0.78125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--inner .header__nav--tel {
    display: none;
  }
}
.lpContent__header--inner .header__nav--tel .left {
  display: block;
  width: 64px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner .header__nav--tel .left {
    width: 5vw;
  }
}
.lpContent__header--inner .header__nav--tel .right {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 294px;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner .header__nav--tel .right {
    gap: 0.546875vw;
    max-width: 22.96875vw;
  }
}
.lpContent__header--inner .header__nav--tel .right span {
  display: block;
  padding: 1px 13px;
  text-align: center;
  border: solid 1px #272B2A;
  font-size: 13.5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner .header__nav--tel .right span {
    padding: 0.078125vw 1.015625vw;
    font-size: 1.0546875vw;
  }
}
.lpContent__header--inner .header__nav--tel .right p {
  display: block;
  line-height: 1;
  width: 100%;
  font-size: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner .header__nav--tel .right p {
    font-size: 3.125vw;
  }
}
.lpContent__header--inner .header__nav--toggle {
  background-color: #3F6B5D;
  color: #fff;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-block: 10px;
  width: 133px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 8px 0 #2F5046;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1280px) {
  .lpContent__header--inner .header__nav--toggle {
    font-size: 1.5625vw;
    padding-block: 0.78125vw;
    width: 10vw;
    border-radius: 0.390625vw;
    box-shadow: 0 0.625vw 0 #2F5046;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__header--inner .header__nav--toggle {
    font-size: 4.2666666667vw;
    padding-block: 2.1333333333vw;
    width: 25.6vw;
    border-radius: 1.3333333333vw;
    box-shadow: 0 0.8vw 0 #2F5046;
  }
}
.lpContent__main {
  padding-top: 115px;
}
@media screen and (max-width: 1280px) {
  .lpContent__main {
    padding-top: 8.984375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__main {
    padding-top: 19vw;
  }
}
.lpContent__mv {
  position: relative;
  padding-block: 69px 63px;
  background-image: url(../img/lp/mv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .lpContent__mv {
    padding-block: 5.390625vw 4.921875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv {
    padding-block: 7.4666666667vw 4.5333333333vw;
  }
}
.lpContent__mv::after {
  position: absolute;
  right: 64px;
  bottom: 0;
  content: "";
  display: block;
  width: 426px;
  height: 514px;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/lp/mv01.png);
}
@media screen and (max-width: 1280px) {
  .lpContent__mv::after {
    right: 5vw;
    width: 33.28125vw;
    height: 40.15625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv::after {
    right: -22vw;
    width: 78.1333333333vw;
    height: 94.1333333333vw;
  }
}
.lpContent__mv--inner {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1280px) {
  .lpContent__mv--inner {
    width: min(90.625vw, 100%);
    padding-inline: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner {
    width: min(1160px, 100%);
    padding-inline: 20px;
    flex-direction: column;
    gap: 4.5333333333vw;
  }
}
.lpContent__mv--inner .left {
  max-width: 720px;
}
@media screen and (max-width: 1280px) {
  .lpContent__mv--inner .left {
    max-width: 56.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .left {
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .left__sp-fade-text, .lpContent__mv--inner .left__sp-fade-img {
    grid-column: 1/-1;
    grid-row: 1/-1;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .left__sp-fade-text {
    animation: spFadeText 12s infinite;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .left__sp-fade-img {
    opacity: 0;
    animation: spFadeImg 12s infinite;
    max-width: 77.3333333333vw;
  }
}
.lpContent__mv--inner .left h1 {
  font-size: 62px;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1280px) {
  .lpContent__mv--inner .left h1 {
    font-size: 4.84375vw;
    margin-bottom: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .left h1 {
    font-size: 8.5333333333vw;
    margin-bottom: 6.9333333333vw;
    text-shadow: 1.125px 1.125px 0 #fff, -1.125px 1.125px 0 #fff, 1.125px -1.125px 0 #fff, -1.125px -1.125px 0 #fff;
  }
}
.lpContent__mv--inner .left h1 span {
  padding: 0 8px;
  font-size: 0.93em;
  background: linear-gradient(to right, #4B8673, #42665B);
  text-shadow: none;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .lpContent__mv--inner .left h1 span {
    padding: 0 0.625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .left h1 span {
    padding: 0 1.3333333333vw;
  }
}
.lpContent__mv--inner .left h1 small {
  font-size: 0.9em;
}
.lpContent__mv--inner .left h1 strong {
  color: #3F6B5D;
}
.lpContent__mv--inner .left__lead {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, -2px -2px 0 #fff;
  margin-bottom: 16px;
  letter-spacing: 0.045em;
}
@media screen and (max-width: 1280px) {
  .lpContent__mv--inner .left__lead {
    font-size: 1.5625vw;
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .left__lead {
    font-size: 4.2666666667vw;
    line-height: 1.7;
    text-shadow: 1.125px 1.125px 0 #fff, -1.125px 1.125px 0 #fff, 1.125px -1.125px 0 #fff, -1.125px -1.125px 0 #fff;
  }
}
.lpContent__mv--inner .left__lead span {
  color: #C97A2B;
}
.lpContent__mv--inner .left__lead .sp-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .left__lead .sp-show {
    display: block;
  }
}
.lpContent__mv--inner .left img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.lpContent__mv--inner .right {
  display: block;
  width: 248px;
  margin-bottom: 26px;
}
@media screen and (max-width: 1280px) {
  .lpContent__mv--inner .right {
    width: 19.375vw;
    margin-bottom: 2.03125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__mv--inner .right {
    width: 100%;
    margin-bottom: 0;
  }
}
.lpContent__mv--inner .right img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@keyframes spFadeText {
  0%, 41.67% {
    opacity: 1;
    visibility: visible;
  }
  50%, 91.67% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes spFadeImg {
  0%, 41.67% {
    opacity: 0;
    visibility: hidden;
  }
  50%, 91.67% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.lpContent__cta {
  padding-block: 50px 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1280px) {
  .lpContent__cta {
    padding-block: 3.90625vw 4.6875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__cta {
    padding-block: 5.3333333333vw 7.4666666667vw;
  }
}
.lpContent__cta--btn {
  display: block;
  max-width: 693px;
  margin-inline: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .lpContent__cta--btn {
    max-width: 54.140625vw;
    margin-bottom: 2.34375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__cta--btn {
    max-width: 100%;
    width: 100%;
    margin-bottom: 4.2666666667vw;
  }
}
.lpContent__cta--btn img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.lpContent__cta--lead {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
  color: #3F6B5D;
  letter-spacing: 0.025em;
  line-height: 1.65;
}
@media screen and (max-width: 1280px) {
  .lpContent__cta--lead {
    font-size: 2.1875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__cta--lead {
    font-size: 5.3333333333vw;
  }
}
.lpContent__cta--lead .sp-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .lpContent__cta--lead .sp-show {
    display: block;
  }
}
.lpContent__cta.b {
  background-image: url(../img/lp/cta_bg01.png);
}
@media screen and (max-width: 750px) {
  .lpContent__cta.b {
    background-image: url(../img/lp/cta_bg01_sp.png);
  }
}
.lpContent__cta.g {
  background-image: url(../img/lp/cta_bg02.png);
}
@media screen and (max-width: 750px) {
  .lpContent__cta.g {
    background-image: url(../img/lp/cta_bg02_sp.png);
  }
}
.lpContent__cta.g .lpContent__cta--lead {
  color: #fff;
}
.lpContent__circumstances {
  scroll-margin-top: 50px;
  padding-block: 61px 100px;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances {
    scroll-margin-top: 3.90625vw;
    padding-block: 4.765625vw 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances {
    scroll-margin-top: 13.3333333333vw;
    padding-block: 16vw;
  }
}
.lpContent__circumstances--flex {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--flex {
    gap: 3.125vw;
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--flex {
    flex-direction: column;
    gap: 10.6666666667vw;
    margin-bottom: 12.8vw;
  }
}
.lpContent__circumstances--flex .block {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--flex .block {
    width: calc((100% - 6.25vw) / 3);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--flex .block {
    width: 100%;
  }
}
.lpContent__circumstances--flex .block h3 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--flex .block h3 {
    gap: 0.9375vw;
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--flex .block h3 {
    gap: 3.2vw;
    margin-bottom: 4.2666666667vw;
  }
}
.lpContent__circumstances--flex .block h3 img {
  display: block;
  width: 32px;
  height: auto;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--flex .block h3 img {
    width: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--flex .block h3 img {
    width: 7.4666666667vw;
  }
}
.lpContent__circumstances--flex .block h3 span {
  width: calc(100% - 32px - 12px);
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--flex .block h3 span {
    width: calc(100% - 2.5vw - 0.9375vw);
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--flex .block h3 span {
    width: calc(100% - 7.4666666667vw - 7.4666666667vw);
    font-size: 5.3333333333vw;
  }
}
.lpContent__circumstances--flex .block h3 span strong {
  font-size: 1em;
  color: #3F6B5D;
}
.lpContent__circumstances--flex .block figure {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--flex .block figure {
    margin-bottom: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--flex .block figure {
    margin-bottom: 5.3333333333vw;
  }
}
.lpContent__circumstances--flex .block figure img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1.6/1;
}
.lpContent__circumstances--flex .block p {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.6;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--flex .block p {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--flex .block p {
    font-size: 4.2666666667vw;
  }
}
.lpContent__circumstances--flex .block p span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #3F6B5D;
}
.lpContent__circumstances--slide {
  position: relative;
  background-color: #F7F4EE;
  padding: 48px 64px 23px;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide {
    padding: 3.75vw 5vw 1.796875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide {
    padding: 5.3333333333vw 4vw 6.6666666667vw;
  }
}
.lpContent__circumstances--slide::before, .lpContent__circumstances--slide::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: -1;
}
.lpContent__circumstances--slide::before {
  top: 0;
  right: 0;
  border-top: 80px solid #F1EDE6;
  border-left: 80px solid transparent;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide::before {
    border-top: 6.25vw solid #F1EDE6;
    border-left: 6.25vw solid transparent;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide::before {
    border-top: 21.3333333333vw solid #F1EDE6;
    border-left: 21.3333333333vw solid transparent;
  }
}
.lpContent__circumstances--slide::after {
  bottom: 0;
  left: 0;
  border-bottom: 80px solid #F1EDE6;
  border-right: 80px solid transparent;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide::after {
    border-bottom: 6.25vw solid #F1EDE6;
    border-right: 6.25vw solid transparent;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide::after {
    border-bottom: 21.3333333333vw solid #F1EDE6;
    border-right: 21.3333333333vw solid transparent;
  }
}
.lpContent__circumstances--slide h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 36px;
  margin-bottom: 28px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide h3 {
    font-size: 2.8125vw;
    margin-bottom: 2.1875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide h3 {
    font-size: 7.4666666667vw;
    margin-bottom: 6.4vw;
  }
}
.lpContent__circumstances--slide .saijou-container {
  display: flex;
  width: 100%;
  gap: 64px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container {
    gap: 5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container {
    flex-direction: column;
    gap: 6.4vw;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-detail-area {
  width: 450px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container .saijou-detail-area {
    width: 35.15625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container .saijou-detail-area {
    width: 100%;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-list-area {
  width: calc(100% - 64px - 450px);
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area {
    width: calc(100% - 5vw - 35.15625vw);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area {
    width: 100%;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-detail-area .saijou-detail-inner {
  transition: opacity 0.3s ease-in-out;
}
.lpContent__circumstances--slide .saijou-container .saijou-detail-area .saijou-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 15/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.lpContent__circumstances--slide .saijou-container .saijou-detail-area .saijou-title {
  font-size: 24px;
  margin: 24px 0 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container .saijou-detail-area .saijou-title {
    font-size: 1.875vw;
    margin: 1.875vw 0 0.78125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container .saijou-detail-area .saijou-title {
    font-size: 5.3333333333vw;
    margin: 3.2vw 0 1.6vw;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-detail-area .saijou-address {
  font-size: 16px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container .saijou-detail-area .saijou-address {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container .saijou-detail-area .saijou-address {
    font-size: 3.7333333333vw;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-group {
  margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-group {
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-group {
    margin-bottom: 4vw;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-group-title {
  font-size: 20px;
  border-left: 4px solid #3F6B5D;
  padding-left: 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-group-title {
    font-size: 1.5625vw;
    padding-left: 0.9375vw;
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-group-title {
    font-size: 4.2666666667vw;
    padding-left: 3.2vw;
    margin-bottom: 3.2vw;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-buttons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-buttons {
    gap: 0.9375vw 0.625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-buttons {
    gap: 3.2vw 2.1333333333vw;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-btn {
  display: block;
  padding: 7px 20px;
  border: 1px solid #272B2A;
  background-color: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
  background-color: #F7F4EE;
  color: #272B2A;
}
@media screen and (max-width: 1280px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-btn {
    padding: 0.546875vw 1.5625vw;
    border-radius: 78.046875vw;
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-btn {
    padding: 1.3333333333vw 4.5333333333vw;
    border-radius: 999px;
    font-size: 3.4666666667vw;
  }
}
.lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-btn:hover {
  background-color: #3F6B5D;
  color: #fff;
}
.lpContent__circumstances--slide .saijou-container .saijou-list-area .saijou-btn.is-active {
  background-color: #3F6B5D;
  color: #fff;
  border-color: #3F6B5D;
}
.lpContent__anxiety {
  scroll-margin-top: 70px;
  background-color: #E5EEEB;
  padding-block: 106px 100px;
}
@media screen and (max-width: 1280px) {
  .lpContent__anxiety {
    scroll-margin-top: 5.46875vw;
    padding-block: 8.28125vw 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__anxiety {
    scroll-margin-top: 18.6666666667vw;
    padding-block: 16vw;
  }
}
.lpContent__anxiety--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 40px;
}
@media screen and (max-width: 1280px) {
  .lpContent__anxiety--flex {
    gap: 3.75vw 3.125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__anxiety--flex {
    flex-direction: column;
    gap: 6.4vw;
  }
}
.lpContent__anxiety--flex .block {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1280px) {
  .lpContent__anxiety--flex .block {
    width: calc((100% - 3.125vw) / 2);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__anxiety--flex .block {
    width: 100%;
  }
}
.lpContent__anxiety--flex .block h3 {
  position: relative;
  background-color: #3F6B5D;
  color: #fff;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-block: 10px;
  text-align: center;
  z-index: 2;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 1280px) {
  .lpContent__anxiety--flex .block h3 {
    font-size: 1.875vw;
    padding-block: 0.78125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__anxiety--flex .block h3 {
    font-size: 4.8vw;
    padding-block: 2.1333333333vw;
  }
}
.lpContent__anxiety--flex .block h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 0;
  border-top: 12px solid #3F6B5D;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
@media screen and (max-width: 750px) {
  .lpContent__anxiety--flex .block h3::after {
    border-top: 3.2vw solid #3F6B5D;
    border-right: 2.6666666667vw solid transparent;
    border-left: 2.6666666667vw solid transparent;
  }
}
.lpContent__anxiety--flex .block p {
  display: block;
  position: relative;
  padding-block: 22px;
  padding-inline: 24px;
  z-index: 1;
  background-color: #F7F4EE;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  overflow: hidden;
  color: #3F6B5D;
  letter-spacing: 0.055em;
  line-height: 1.65;
  text-align: justify;
}
@media screen and (max-width: 1280px) {
  .lpContent__anxiety--flex .block p {
    padding-block: 1.71875vw;
    padding-inline: 1.875vw;
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__anxiety--flex .block p {
    padding-block: 5.3333333333vw;
    padding-inline: 5.3333333333vw;
    font-size: 4.8vw;
    letter-spacing: 0.0875em;
  }
}
.lpContent__anxiety--flex .block p::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 192px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/lp/anxiety_bg02.png);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .lpContent__anxiety--flex .block p::before {
    width: 15vw;
    height: 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__anxiety--flex .block p::before {
    width: 51.2vw;
    height: 26.6666666667vw;
  }
}
.lpContent__anxiety--flex .block p small {
  font-size: 0.8em;
}
.lpContent__anxiety--flex .block p span {
  font-size: 0.8em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.lpContent__plan {
  scroll-margin-top: 50px;
  padding-block: 84px 100px;
  background-color: #F7F4EE;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan {
    scroll-margin-top: 3.90625vw;
    padding-block: 6.5625vw 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan {
    scroll-margin-top: 13.3333333333vw;
    padding-block: 16vw;
  }
}
.lpContent__plan--flex {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 35px;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex {
    gap: 1.25vw;
    margin-bottom: 2.734375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex {
    flex-direction: column;
    gap: 6.4vw;
    margin-bottom: 6.4vw;
  }
}
.lpContent__plan--flex .block {
  position: relative;
  padding: 24px 20px;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block {
    padding: 1.875vw 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block {
    width: 100%;
    padding: 6.4vw 5.3333333333vw;
  }
}
.lpContent__plan--flex .block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 60px;
  background-color: #3F6B5D;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block::before {
    width: 6.25vw;
    height: 4.6875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block::before {
    width: 21.3333333333vw;
    height: 16vw;
  }
}
.lpContent__plan--flex .block::after {
  position: absolute;
  top: 8.5px;
  left: 1px;
  color: #fff;
  font-size: 17.5px;
  transform: rotate(-37deg);
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block::after {
    top: 0.6640625vw;
    left: 0.078125vw;
    font-size: 1.3671875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block::after {
    top: 2.2666666667vw;
    left: 0.2666666667vw;
    font-size: 4.6666666667vw;
  }
}
.lpContent__plan--flex .block:nth-child(1)::after {
  content: "〜30名";
}
.lpContent__plan--flex .block:nth-child(2)::after {
  content: "〜30名";
}
.lpContent__plan--flex .block:nth-child(3)::after {
  content: "〜10名";
}
.lpContent__plan--flex .block:nth-child(4)::after {
  content: "〜5名";
}
.lpContent__plan--flex .block__icon {
  display: block;
  width: 13px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 1px;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block__icon {
    width: 1.015625vw;
    margin-bottom: 0.078125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block__icon {
    width: 3.4666666667vw;
    margin-bottom: 0.2666666667vw;
  }
}
.lpContent__plan--flex .block h3 {
  font-size: 28px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  text-align: center;
  color: #3F6B5D;
  margin-bottom: 2px;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block h3 {
    font-size: 2.1875vw;
    margin-bottom: 0.15625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block h3 {
    font-size: 8.5333333333vw;
    margin-bottom: 2.9333333333vw;
  }
}
.lpContent__plan--flex .block__lead {
  text-align: center;
  font-size: 14px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.65;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block__lead {
    font-size: 1.09375vw;
    margin-bottom: 0.46875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block__lead {
    font-size: 4.2666666667vw;
    margin-bottom: 1.6vw;
  }
}
.lpContent__plan--flex .block__lead span {
  background-color: #F7F4EE;
  padding: 1px 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block__lead span {
    padding: 0.078125vw 0.234375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block__lead span {
    padding: 0.2666666667vw 0.8vw;
  }
}
.lpContent__plan--flex .block__price {
  position: relative;
  font-size: 40px;
  color: #C97A2B;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  margin-bottom: 22px;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block__price {
    font-size: 3.125vw;
    margin-bottom: 1.71875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block__price {
    font-size: 12.8vw;
    margin-bottom: 7.4666666667vw;
    text-align: center;
  }
}
.lpContent__plan--flex .block__price small {
  font-size: 0.5em;
}
.lpContent__plan--flex .block__price span {
  position: absolute;
  top: 7px;
  right: 0;
  font-size: 14px;
  color: #272B2A;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block__price span {
    top: 0.546875vw;
    font-size: 1.09375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block__price span {
    top: 2.8666666667vw;
    right: 7vw;
    font-size: 4.2666666667vw;
  }
}
.lpContent__plan--flex .block__flow {
  display: block;
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--flex .block__flow {
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--flex .block__flow {
    margin-bottom: 5.3333333333vw;
  }
}
.lpContent__plan--lead {
  text-align: center;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .lpContent__plan--lead {
    font-size: 1.09375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__plan--lead {
    font-size: 3.7333333333vw;
  }
}
.lpContent__comparison {
  scroll-margin-top: 70px;
  padding-block: 85px 80px;
  background-color: #F7F4EE;
}
@media screen and (max-width: 1280px) {
  .lpContent__comparison {
    scroll-margin-top: 5.46875vw;
    padding-block: 6.640625vw 6.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__comparison {
    scroll-margin-top: 18.6666666667vw;
    padding-block: 16vw;
  }
}
.lpContent__comparison figure {
  display: block;
  max-width: 880px;
  margin-inline: auto;
}
@media screen and (max-width: 1280px) {
  .lpContent__comparison figure {
    max-width: 68.75vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__comparison figure {
    max-width: 100%;
  }
}
.lpContent__comparison figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 750px) {
  .lpContent__comparison figure img {
    width: 119.4666666667vw;
  }
}
.lpContent__message {
  scroll-margin-top: 50px;
  padding-block: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/lp/comparison_bg.png);
}
@media screen and (max-width: 1280px) {
  .lpContent__message {
    scroll-margin-top: 3.90625vw;
    padding-block: 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__message {
    scroll-margin-top: 13.3333333333vw;
    padding-block: 16vw;
    background-image: url(../img/lp/comparison_bg_sp.png);
  }
}
.lpContent__message--lead {
  max-width: 510px;
  font-size: 22px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  line-height: 1.45;
  text-align: justify;
  letter-spacing: 0.045em;
}
@media screen and (max-width: 1280px) {
  .lpContent__message--lead {
    max-width: 39.84375vw;
    font-size: 1.71875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__message--lead {
    max-width: 100%;
    font-size: 4.8vw;
  }
}
.lpContent__message--lead span {
  color: #C97A2B;
}
.lpContent__reason {
  scroll-margin-top: 50px;
  padding-block: 82px 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/lp/reason_bg.png);
}
@media screen and (max-width: 1280px) {
  .lpContent__reason {
    scroll-margin-top: 3.90625vw;
    padding-block: 6.40625vw 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__reason {
    scroll-margin-top: 13.3333333333vw;
    padding-block: 16vw;
  }
}
.lpContent__reason .sectionTtl {
  color: #fff;
}
.lpContent__reason--lead {
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 64px;
  letter-spacing: 0.055em;
}
@media screen and (max-width: 1280px) {
  .lpContent__reason--lead {
    font-size: 1.25vw;
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__reason--lead {
    font-size: 4.2666666667vw;
    margin-bottom: 12.8vw;
    text-align: left;
  }
}
.lpContent__reason--lead .sp-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .lpContent__reason--lead .sp-show {
    display: block;
  }
}
.lpContent__reason--leaf {
  display: block;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 24px;
}
@media screen and (max-width: 1280px) {
  .lpContent__reason--leaf {
    max-width: 46.875vw;
    margin-bottom: 1.875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__reason--leaf {
    max-width: 100%;
    margin-bottom: 10.8vw;
  }
}
.lpContent__reason--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 1280px) {
  .lpContent__reason--flex {
    gap: 1.953125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__reason--flex {
    flex-direction: column;
    gap: 6.4vw;
  }
}
.lpContent__reason--flex img {
  display: block;
  width: calc((100% - 50px) / 3);
  height: auto;
}
@media screen and (max-width: 1280px) {
  .lpContent__reason--flex img {
    width: calc((100% - 3.90625vw) / 3);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__reason--flex img {
    width: 100%;
  }
}
.lpContent__staff {
  scroll-margin-top: 50px;
  position: relative;
  padding-block: 81px 60px;
}
@media screen and (max-width: 1280px) {
  .lpContent__staff {
    scroll-margin-top: 3.90625vw;
    padding-block: 6.328125vw 4.6875vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__staff {
    scroll-margin-top: 13.3333333333vw;
    padding-block: 16vw 10.6666666667vw;
  }
}
.lpContent__staff::before, .lpContent__staff::after {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 375px;
  height: 204px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 1280px) {
  .lpContent__staff::before, .lpContent__staff::after {
    width: 29.296875vw;
    height: 15.9375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__staff::before, .lpContent__staff::after {
    width: 45.6vw;
    height: 25.6533333333vw;
  }
}
.lpContent__staff::before {
  left: 0;
  background-image: url(../img/lp/staff_bg_l.png);
}
.lpContent__staff::after {
  right: 0;
  background-image: url(../img/lp/staff_bg_r.png);
}
.lpContent__staff .sectionTtl {
  margin-bottom: 64px;
}
@media screen and (max-width: 1280px) {
  .lpContent__staff .sectionTtl {
    margin-bottom: 5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__staff .sectionTtl {
    margin-bottom: 10.6666666667vw;
  }
}
.lpContent__staff--container {
  overflow: hidden;
  width: 100%;
}
.lpContent__staff--container .lpContent__staff--wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: infinite-slide 30s linear infinite;
}
.lpContent__staff--container .lpContent__staff--wrapper .lpContent__staff--slide {
  width: 200px;
  margin-right: 40px;
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .lpContent__staff--container .lpContent__staff--wrapper .lpContent__staff--slide {
    width: 15.625vw;
    margin-right: 3.125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__staff--container .lpContent__staff--wrapper .lpContent__staff--slide {
    width: 32vw;
    margin-right: 4.2666666667vw;
  }
}
.lpContent__staff--container .lpContent__staff--wrapper .lpContent__staff--slide img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes infinite-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.lpContent__voice {
  scroll-margin-top: 70px;
  padding-block: 60px 100px;
}
@media screen and (max-width: 1280px) {
  .lpContent__voice {
    scroll-margin-top: 5.46875vw;
    padding-block: 4.6875vw 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__voice {
    scroll-margin-top: 18.6666666667vw;
    padding-block: 10.6666666667vw 16vw;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__voice--carousel {
    width: 100%;
    overflow: visible;
  }
}
@media screen and (min-width: 751px) {
  .lpContent__voice--flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1280px) {
  .lpContent__voice--flex {
    gap: 3.125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__voice--flex {
    display: flex;
    gap: 4.2666666667vw;
    width: -moz-max-content;
    width: max-content;
  }
}
.lpContent__voice--flex img.voice-slide {
  display: block;
  height: auto;
}
@media screen and (min-width: 751px) {
  .lpContent__voice--flex img.voice-slide {
    width: calc((100% - 80px) / 3);
  }
}
@media screen and (min-width: 751px) and (max-width: 1280px) {
  .lpContent__voice--flex img.voice-slide {
    width: calc((100% - 6.25vw) / 3);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__voice--flex img.voice-slide {
    width: 85.3333333333vw;
    flex-shrink: 0;
  }
}
.lpContent__voice--nav {
  display: none;
}
@media screen and (max-width: 750px) {
  .lpContent__voice--nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6.4vw;
    gap: 5.3333333333vw;
  }
}
.lpContent__voice--nav .prev-btn, .lpContent__voice--nav .next-btn {
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  cursor: pointer;
  z-index: 10;
}
.lpContent__voice--nav .prev-btn img, .lpContent__voice--nav .next-btn img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lpContent__voice--nav .pagination {
  display: flex;
  align-items: center;
  gap: 3.2vw;
}
.lpContent__voice--nav .pagination .dot {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border-radius: 50%;
  background-color: #E5EEEB;
  transition: background-color 0.3s;
  cursor: pointer;
}
.lpContent__voice--nav .pagination .dot.is-active {
  background-color: #3F6B5D;
}
.lpContent__flow {
  scroll-margin-top: 70px;
  padding-block: 109px 100px;
  background-color: #F7F4EE;
}
@media screen and (max-width: 1280px) {
  .lpContent__flow {
    scroll-margin-top: 5.46875vw;
    padding-block: 8.515625vw 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow {
    scroll-margin-top: 18.6666666667vw;
    padding-block: 16vw;
  }
}
.lpContent__flow--list {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 880px;
  margin-inline: auto;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list {
    gap: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    gap: 3.2vw;
  }
}
.lpContent__flow--list .block {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  background-color: #fff;
  padding: 24px 32px;
  border: solid 1px #3F6B5D;
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .block {
    gap: 3.125vw;
    padding: 1.875vw 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .block {
    flex-direction: column;
    gap: 5.3333333333vw;
    padding: 6.4vw 5.3333333333vw;
  }
}
.lpContent__flow--list .block__left {
  display: block;
  width: 140px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .block__left {
    width: 10.9375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .block__left {
    margin-inline: auto;
    width: 37.3333333333vw;
  }
}
.lpContent__flow--list .block__right {
  width: calc(100% - 40px - 140px);
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .block__right {
    width: calc(100% - 3.125vw - 10.9375vw);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .block__right {
    width: 100%;
  }
}
.lpContent__flow--list .block__right h3 {
  font-size: 28px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  margin-bottom: 16px;
  color: #3F6B5D;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .block__right h3 {
    font-size: 2.1875vw;
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .block__right h3 {
    font-size: 5.3333333333vw;
    margin-bottom: 3.2vw;
  }
}
.lpContent__flow--list .block__right--lead {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.65;
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .block__right--lead {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .block__right--lead {
    font-size: 4.2666666667vw;
  }
}
.lpContent__flow--list .block__right--check {
  padding: 10px 20px;
  margin-top: 17px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../img/lp/flow_bg.png);
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .block__right--check {
    padding: 0.78125vw 1.5625vw;
    margin-top: 1.328125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .block__right--check {
    padding: 2.6666666667vw 4vw;
    margin-top: 3.2vw;
  }
}
.lpContent__flow--list .block__right--check p {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 5px;
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .block__right--check p {
    padding-left: 2.03125vw;
    font-size: 1.25vw;
    margin-bottom: 0.390625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .block__right--check p {
    padding-left: 6.9333333333vw;
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}
.lpContent__flow--list .block__right--check p::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  width: 18px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/lp/check_icon.png);
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .block__right--check p::before {
    width: 1.40625vw;
    height: 2.03125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .block__right--check p::before {
    width: 4.8vw;
    height: 6.9333333333vw;
    bottom: unset;
  }
}
.lpContent__flow--list .block__right--check p:last-of-type {
  margin-bottom: 0;
}
.lpContent__flow--list .arrow {
  display: block;
  width: 25px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .lpContent__flow--list .arrow {
    width: 1.953125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__flow--list .arrow {
    width: 6.6666666667vw;
  }
}
.lpContent__faq {
  scroll-margin-top: 70px;
  background-color: #E5EEEB;
  padding-block: 85px 100px;
}
@media screen and (max-width: 1280px) {
  .lpContent__faq {
    scroll-margin-top: 5.46875vw;
    padding-block: 6.640625vw 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__faq {
    scroll-margin-top: 18.6666666667vw;
    padding-block: 16vw;
  }
}
.lpContent__faq--flex {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 40px;
}
@media screen and (max-width: 1280px) {
  .lpContent__faq--flex {
    gap: 3.75vw 3.125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__faq--flex {
    flex-direction: column;
    gap: 6.4vw;
  }
}
.lpContent__faq--flex .block {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1280px) {
  .lpContent__faq--flex .block {
    width: calc((100% - 3.125vw) / 2);
  }
}
@media screen and (max-width: 750px) {
  .lpContent__faq--flex .block {
    width: 100%;
  }
}
.lpContent__faq--flex .block h3 {
  position: relative;
  background-color: #3F6B5D;
  color: #fff;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-block: 10px;
  text-align: center;
  letter-spacing: 0.055em;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  .lpContent__faq--flex .block h3 {
    font-size: 1.875vw;
    padding-block: 0.78125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__faq--flex .block h3 {
    font-size: 4.8vw;
    padding-block: 2.1333333333vw;
  }
}
.lpContent__faq--flex .block h3::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 0;
  height: 0;
  border-top: 12px solid #3F6B5D;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
@media screen and (max-width: 750px) {
  .lpContent__faq--flex .block h3::after {
    border-top: 3.2vw solid #3F6B5D;
    border-right: 2.6666666667vw solid transparent;
    border-left: 2.6666666667vw solid transparent;
  }
}
.lpContent__faq--flex .block p {
  display: block;
  position: relative;
  padding-block: 22px;
  padding-inline: 24px;
  z-index: 1;
  background-color: #F7F4EE;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  overflow: hidden;
  color: #3F6B5D;
  letter-spacing: 0.065em;
  line-height: 1.65;
  text-align: justify;
}
@media screen and (max-width: 1280px) {
  .lpContent__faq--flex .block p {
    padding-block: 1.71875vw;
    padding-inline: 1.875vw;
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__faq--flex .block p {
    padding-block: 5.3333333333vw;
    padding-inline: 5.3333333333vw;
    font-size: 4.8vw;
    letter-spacing: 0.0875em;
  }
}
.lpContent__faq--flex .block p::before {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 192px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(../img/lp/anxiety_bg02.png);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .lpContent__faq--flex .block p::before {
    width: 15vw;
    height: 7.8125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__faq--flex .block p::before {
    width: 51.2vw;
    height: 26.6666666667vw;
  }
}
.lpContent__faq--flex .block p small {
  font-size: 0.8em;
}
.lpContent__faq--flex .block p span {
  font-size: 0.8em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
.lpContent__footer {
  padding-block: 34px 40px;
  background-color: #3F6B5D;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer {
    padding-block: calc(2.65625px * 1vw) 3.125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer {
    padding-block: 10.6666666667vw 32.8vw;
  }
}
.lpContent__footer .lpContent__wrapper {
  position: relative;
}
.lpContent__footer--logoArea {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer--logoArea {
    gap: 1.40625vw;
    margin-bottom: 1.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer--logoArea {
    gap: 2.1333333333vw;
    margin-bottom: 6.4vw;
  }
}
.lpContent__footer--logoArea .logo {
  display: block;
  width: 320px;
  height: auto;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer--logoArea .logo {
    width: 25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer--logoArea .logo {
    width: 58.6666666667vw;
  }
}
.lpContent__footer--logoArea .p_mark {
  display: block;
  width: 80px;
  height: auto;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer--logoArea .p_mark {
    width: 6.25vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer--logoArea .p_mark {
    width: 11.7333333333vw;
  }
}
.lpContent__footer--upper {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.045em;
  line-height: 1.65;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer--upper {
    font-size: 1.25vw;
    margin-bottom: 3.125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer--upper {
    font-size: 3.7333333333vw;
    margin-bottom: 8.5333333333vw;
  }
}
.lpContent__footer--bottom {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer--bottom {
    font-size: 1.25vw;
    margin-bottom: 3.125vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer--bottom {
    font-size: 3.7333333333vw;
    margin-bottom: 8.5333333333vw;
  }
}
.lpContent__footer--btns {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 43px;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer--btns {
    gap: 1.953125vw;
    margin-bottom: 3.359375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer--btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.1333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.lpContent__footer--btns a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer--btns a {
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer--btns a {
    font-size: 3.7333333333vw;
  }
}
.lpContent__footer--copy {
  text-align: center;
  color: #B5C0BC;
  padding-top: 16px;
  border-top: solid 1px #B5C0BC;
  font-size: 12px;
}
@media screen and (max-width: 1280px) {
  .lpContent__footer--copy {
    padding-top: 1.25vw;
    font-size: 0.9375vw;
  }
}
@media screen and (max-width: 750px) {
  .lpContent__footer--copy {
    padding-top: 4.2666666667vw;
    font-size: 3.2vw;
  }
}

.topBack__btn {
  position: fixed;
  bottom: 70px;
  right: 50px;
  cursor: pointer;
  display: block;
  width: 64px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .topBack__btn {
    bottom: 6.8359375vw;
    right: 3.90625vw;
    width: 5vw;
  }
}
@media screen and (max-width: 750px) {
  .topBack__btn {
    width: 13.8666666667vw;
    bottom: 26.6666666667vw;
  }
}
.topBack__btn.is-show {
  opacity: 1;
  visibility: visible;
}
.topBack__btn:hover {
  opacity: 0.7;
}
.topBack__btn img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.spFooterBanner {
  display: none;
}
@media screen and (max-width: 750px) {
  .spFooterBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    padding-block: 2.6666666667vw;
    background-image: url(../img/lp/sp_banner_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
.spFooterBanner.is-show {
  opacity: 1;
  visibility: visible;
}
.spFooterBanner a {
  display: block;
  width: 85.3333333333vw;
  margin-inline: auto;
}
.spFooterBanner a img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=lp_style.css.map */