html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  /*font: inherit;*/
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

/*scroll*/
html {
  /* scroll-behavior: smooth; */
  font-size: 10px;
}

/**/
:root {
  margin-top: 0 !important;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.08em;
  color: #1f1f1f;
  /* scroll-behavior: smooth; */
  border-style: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.sp-none {
  display: block;
}
@media (max-width: 480px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media (max-width: 480px) {
  .sp-block {
    display: block;
  }
}

.gray {
  background-color: #F4F4F4;
}

.common-inner {
  padding-top: 80px;
  padding-bottom: 56px;
}
@media (max-width: 425px) {
  .common-inner {
    padding-top: 56px;
  }
}

.common-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 166.667%;
  color: #1f1f1f;
}
.common-title span {
  display: block;
  font-size: 1.4rem;
  line-height: 142.857%;
  color: #35b597;
  margin-bottom: 20px;
}
@media (max-width: 425px) {
  .common-title {
    font-size: 2rem;
  }
}

.wrap__inner {
  display: grid;
  gap: 0 2rem;
  grid-template-columns: 1fr 480px;
  margin: 0 auto;
  max-width: 1184px;
  padding: 0 2rem;
}
.wrap__inner::before {
  display: block;
  position: fixed;
  content: "";
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: url(./img/bg.jpg) center center/cover fixed no-repeat;
  z-index: -1;
}
@media (max-width: 1024px) {
  .wrap__inner {
    display: block;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .wrap__inner::before {
    display: none;
  }
}

.section__header__inner {
  margin: 0 auto;
  max-width: 512px;
  position: sticky;
  top: 0;
}
.section__header__container {
  display: grid;
  align-content: center;
  gap: 5.6rem 0;
  padding-top: 9rem;
  height: 100dvh;
}
.section__header__nav {
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, auto);
  grid-auto-flow: column;
  gap: 32px 56px;
  margin: 0 auto;
}

.section__header__nav li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  color: #1f1f1f;
  transition: color 0.3s;
}
.section__header__nav li a::before {
  content: "";
  display: none;
  width: 8px;
  height: 8px;
  background-color: #35B597;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
}
.section__header__nav li a:hover {
  color: #35B597;
}
.section__header__nav li.js-active a {
  color: #35B597;
}
.section__header__nav li.js-active a::before {
  display: block;
}
.section__header__ctas {
  position: relative;
  padding-bottom: 56px;
  width: 100%;
}
.section__header__ctas__slider {
  position: relative;
  width: 500px;
  height: 320px;
  margin: 0 auto;
}
.section__header__ctas__slider .swiper-wrapper {
  display: flex;
}
.section__header__ctas__slider .swiper-slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.section__header__ctas__nav-prev, .section__header__ctas__nav-next {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.section__header__ctas__nav-prev::after, .section__header__ctas__nav-next::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #35B597;
  border-right: 2px solid #35B597;
}
.section__header__ctas__nav-prev::after {
  transform: rotate(-135deg);
}
.section__header__ctas__nav-next::after {
  transform: rotate(45deg);
}
.section__header__ctas__pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.section__header__ctas__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #c4c4c4;
  opacity: 1;
  border-radius: 50%;
  transition: background-color 0.3s;
  cursor: pointer;
}
.section__header__ctas__pagination .swiper-pagination-bullet-active {
  background-color: #35B597;
}
.section__header__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  width: 420px;
  height: 271px;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 4px 4px 4px rgba(65, 65, 65, 0.16);
  padding: 40px 0 32px;
  transition: all 0.3s;
}
.section__header__cta--rino {
  background-color: #fff;
  border: 2px solid #35B597;
}
.section__header__cta--rino h3, .section__header__cta--rino p {
  color: #35B597;
}
.section__header__cta--rino .section__header__cta__btn {
  border: 1px solid #35B597;
  background-color: #35B597;
}
.section__header__cta--rino .section__header__cta__btn span {
  color: #fff;
}
.section__header__cta--rino svg {
  stroke: #fff;
}
.section__header__cta--rino:hover .section__header__cta__btn {
  background-color: #fff;
}
.section__header__cta--rino:hover .section__header__cta__btn span {
  color: #35B597;
}
.section__header__cta--rino:hover .section__header__cta__btn svg {
  stroke: #35B597;
}
.section__header__cta--model {
  background-color: #35B597;
}
.section__header__cta--model h3, .section__header__cta--model p {
  color: #fff;
}
.section__header__cta--model .section__header__cta__btn {
  border: 1px solid #fff;
  background-color: #fff;
}
.section__header__cta--model .section__header__cta__btn span {
  color: #35B597;
}
.section__header__cta--model .section__header__cta__btn svg {
  stroke: #35B597;
}
.section__header__cta--model .section__header__cta__title::before, .section__header__cta--model .section__header__cta__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 40px;
  width: 1px;
  height: 44px;
  background-color: #fff;
}
.section__header__cta--model .section__header__cta__title::before {
  left: 80px;
  transform: rotate(-30deg);
}
.section__header__cta--model .section__header__cta__title::after {
  right: 80px;
  transform: rotate(30deg);
}
.section__header__cta--model:hover .section__header__cta__btn {
  background-color: #ebf8f5;
  border-color: #ebf8f5;
}
.section__header__cta__title {
  font-size: 1.6rem;
  font-weight: 500;
}
.section__header__cta__text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 166.667%;
}
.section__header__cta__img {
  width: 200px;
  height: auto;
}
.section__header__cta__img img {
  width: 100%;
  height: auto;
  display: block;
}
.section__header__cta__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 276px;
  padding: 20px 24px;
  border-radius: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 60px;
}
.section__header__cta__btn span {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
}
.section__header__cta__btn svg {
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .section__header {
    display: none;
  }
}

/*scroll*/
.scroll {
  width: 480px;
  background: #ffffff;
  box-shadow: 0px 0px 8px rgba(65, 65, 65, 0.16);
}
@media (max-width: 1024px) {
  .scroll {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .scroll {
    width: 100%;
  }
}

.section__fv {
  background: url(./img/fv-bg.png) center center/cover no-repeat;
}
.section__fv__inner {
  width: 100%;
  height: 100%;
  padding: 32px 40px;
}
.section__fv__title {
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .section__fv {
    height: calc(100vh - 72px);
  }
}
@media (max-width: 425px) {
  .section__fv__inner {
    padding: 24px 24px;
  }
}

/*header--sp*/
.header--sp {
  display: none;
}
.header--sp__menu {
  display: none;
}
@media (max-width: 1024px) {
  .header--sp {
    display: block;
    position: sticky;
    top: 0;
    left: calc((100% - 480px) / 2);
    width: 480px;
    z-index: 12;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(65, 65, 65, 0.16);
  }
  .header--sp__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
  }
  .header--sp__nav__btns {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .header--sp__logo a {
    display: block;
    width: 110px;
    height: auto;
  }
  .header--sp__nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }
  .header--sp__nav .ham-text {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .header--sp__nav .ham-text .menu {
    display: block;
  }
  .header--sp__nav .ham-text .close {
    display: none;
  }
  .header--sp__nav__ham {
    width: 32px;
    height: 22px;
    position: relative;
  }
  .header--sp__nav__ham .ham-wrap {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header--sp__nav__ham .ham-wrap span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #222;
    position: absolute;
    transition: all 0.3s ease;
  }
  .header--sp__nav__ham .ham-wrap span:nth-child(1) {
    top: 0;
  }
  .header--sp__nav__ham .ham-wrap span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header--sp__nav__ham .ham-wrap span:nth-child(3) {
    bottom: 0;
  }
  .header--sp__nav.is-active .ham-text .menu {
    display: none;
  }
  .header--sp__nav.is-active .ham-text .close {
    display: block;
  }
  .header--sp__nav.is-active .ham-wrap span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header--sp__nav.is-active .ham-wrap span:nth-child(2) {
    opacity: 0;
  }
  .header--sp__nav.is-active .ham-wrap span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .header--sp__menu {
    display: block;
    position: fixed;
    top: 72px;
    left: calc((100% - 480px) / 2);
    width: 480px;
    background-color: #FFF;
    z-index: 11;
    height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .header--sp__menu.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header--sp__menu__list {
    width: 58%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    list-style: none;
    padding: 40px 24px 120px;
    margin: 0 auto;
    text-align: left;
  }
  .header--sp__menu__list li a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
  }
  .header--sp__menu__list li a:hover {
    transform: translateX(4px);
    transition: all 0.3s ease;
  }
  .header--sp__menu__list li a .menu-ttl {
    font-size: 1.2rem;
    line-height: normal;
    color: #35B597;
  }
  .header--sp__menu__list li a .menu-text {
    font-size: 1.6rem;
    font-weight: 500;
  }
}
@media (max-width: 480px) {
  .header--sp {
    left: 0;
    width: 100%;
  }
}

/*concept*/
.section__concept__inner {
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 425px) {
  .section__concept__inner {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.section__concept__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 56px 0;
}
@media (max-width: 425px) {
  .section__concept__list {
    gap: 6px;
    margin: 32px 0;
  }
}
.section__concept__list__item {
  display: grid;
  gap: 16px;
  grid-template-columns: 100px 32px 1fr;
  align-items: center;
}
.section__concept__list__item__text {
  color: #1f1f1f;
  font-size: 1.6rem;
  font-weight: 500;
}
.section__concept__text {
  color: #35B597;
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 112.5%;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .section__concept__text {
    font-size: 4rem;
    line-height: 1.4;
  }
}

/*cta*/
.cta__inner {
  background-color: #ebf8f5;
  padding: 40px 40px 56px;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 425px) {
  .cta__inner {
    padding: 24px 24px 32px;
  }
}
.cta__logo {
  display: block;
  width: 182px;
  height: auto;
  margin: 0 auto 24px;
}
.cta__title {
  color: #3a3a3a;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 48px;
}
.cta__plan {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.cta__btn {
  display: block;
  border-radius: 8px;
  border: 2px solid #35b597;
  background-color: #35b597;
  color: #fff;
  text-align: left;
  transition: all 0.3s ease;
  margin: 0 auto;
  cursor: pointer;
}
.cta__btn span {
  color: #fff;
}
.cta__btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 24px 40px 32px;
}
@media (max-width: 480px) {
  .cta__btn a {
    padding: 16px;
  }
}
.cta__btn__item {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.cta__btn__item img {
  width: 35px;
  height: auto;
  transition: all 0.3s ease;
}
.cta__btn__item h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s ease;
}
.cta__btn__item h3 span {
  display: block;
  font-size: 1.6rem;
  line-height: 150%;
}
@media (max-width: 425px) {
  .cta__btn__item h3 {
    font-size: 2rem;
  }
  .cta__btn__item h3 span {
    font-size: 1.4rem;
  }
}
.cta__btn__item__img {
  width: 40px;
  height: auto;
  transition: all 0.3s ease;
}
.cta__btn__btn {
  color: #35b597;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 32px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 63px;
  height: 60px;
  transition: all 0.3s ease;
}
.cta__btn__btn svg {
  stroke: #35b597;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .cta__btn__btn {
    gap: 24px;
  }
}
.cta__btn:hover {
  background-color: #fff;
  border-color: #35b597;
}
.cta__btn:hover .cta__btn__item h3 {
  color: #35b597;
}
.cta__btn:hover .cta__btn__item h3 span {
  color: #35b597;
}
.cta__btn:hover .cta__btn__btn {
  background-color: #35b597;
  border: 2px solid #35b597;
  color: #fff;
}
.cta__btn:hover .cta__btn__btn svg {
  stroke: #fff;
}

/*open-cta*/
.open-cta__inner {
  position: relative;
  background-color: #35B597;
  padding: 40px;
  text-align: center;
  border-radius: 8px;
}
@media (max-width: 425px) {
  .open-cta__inner {
    padding: 40px 24px;
  }
}
.open-cta__title span {
  display: block;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.08em;
  margin: 0 auto;
}
.open-cta__title span:nth-child(1) {
  font-size: 1.6rem;
}
.open-cta__title span:nth-child(2) {
  font-size: 2.4rem;
}
.open-cta__img {
  width: 100%;
  height: auto;
  z-index: 0;
  margin: 24px 0;
}
.open-cta__btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 276px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 32px;
  margin: 0 auto;
  z-index: 1;
  height: 60px;
}
.open-cta__btn span {
  display: block;
  color: #35B597;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.08em;
}
.open-cta__btn svg {
  stroke: #35B597;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .open-cta__btn:hover {
    background-color: #35B597;
    color: #fff;
  }
  .open-cta__btn:hover span {
    color: #fff;
  }
  .open-cta__btn:hover svg path {
    stroke: #fff;
  }
  .open-cta__btn:hover svg line {
    stroke: #fff;
  }
}

/*reason*/
.section__reasons__inner {
  padding-right: 24px;
  padding-left: 24px;
}
.section__reasons__title {
  padding-right: 16px;
  padding-left: 16px;
}
.section__reasons__title span {
  display: block;
  font-size: 1.4rem;
  line-height: 142.857%;
  color: #35B597;
}
.section__reasons__tabs {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 6px;
  margin: 40px 0 10px;
}
.section__reasons__tabs__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  background-color: #fff;
  color: #1f1f1f;
  width: calc((100% - 12px) / 3);
  height: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  letter-spacing: 0;
}
.section__reasons__tabs__tab img {
  width: 20px;
  height: auto;
}
.section__reasons__tabs__tab:hover {
  opacity: 0.8;
}
.section__reasons__tabs__tab.js-active {
  background-color: #35B597;
  color: #fff;
}
.section__reasons__tabs__tab.js-active img {
  filter: brightness(0) invert(1);
}
@media (max-width: 425px) {
  .section__reasons__tabs__tab {
    font-size: 1.4rem;
    height: 80px;
    gap: 6px;
  }
}
.section__reasons__contents {
  padding: 40px 16px;
  border-radius: 8px;
  background-color: #fff;
}

@media (max-width: 425px) {
  .section__reasons__contents{
    padding: 6% 4%;
  }
}
.section__reasons__contents__item {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section__reasons__contents__item.js-active {
  display: block;
  opacity: 1;
}
.section__reasons__contents__item__img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}
.section__reasons__contents__item__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 425px) {
  .section__reasons__contents__item__title {
    font-size: 1.8rem;
  }
}
.section__reasons__contents__item__text {
  font-size: 1.4rem;
  line-height: 142.857%;
}

/*whatIs*/
.section__whatIs__inner {
  padding-right: 24px;
  padding-left: 24px;
  padding-bottom: 16px;
}
.section__whatIs__title {
  padding-right: 16px;
  padding-left: 16px;
}
@media (max-width: 425px) {
  .section__whatIs__title {
    padding-right: 0;
    padding-left: 0;
  }
}
.section__whatIs__label {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 166.667%;
  margin: 56px 16px 37px;
  text-align: center;
  color: #fff;
  background-color: #35B597;
  padding-block: 20px;
  border-radius: 24px;
}
@media (max-width: 480px) {
  .section__whatIs__label {
    font-size: 1.5rem;
    padding: 16px 24px;
  }
}
.section__whatIs__img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.section__whatIs__text {
  font-size: 1.6rem;
  padding-right: 16px;
  padding-left: 16px;
  margin-bottom: 32px;
}
.section__whatIs__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section__whatIs__item {
  background-color: #ebf8f5;
  padding: 32px 16px;
  border-radius: 8px;
}
.section__whatIs__item__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 32px;
}
.section__whatIs__item__title strong {
  display: block;
  width: -moz-fit-content;
  width: 124px;
  margin: 0 auto 32px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background-color: #35B597;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  letter-spacing: 0.08em;
}
.section__whatIs__item__title span {
  color: #35B597;
}
.section__whatIs__item__img {
  width: 255px;
  height: auto;
  margin: 24px auto;
}
.section__whatIs__item__text {
  font-size: 1.6rem;
}
@media (max-width: 425px) {
  .section__whatIs__item__text {
    font-size: 1.4rem;
  }
}
.section__whatIs__item__change {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section__whatIs__item__change__title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 166.667%;
}
.section__whatIs__item__change__title--rino {
  color: #35B597;
}
.section__whatIs__item__change__text {
  font-size: 1.6rem;
}
.section__whatIs__item__change__content {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding: 40px 16px;
  border-radius: 8px;
}
.section__whatIs__item__change__voice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.section__whatIs__item__change__voice__text {
  font-size: 1.4rem;
  line-height: 142.857%;
  text-align: left;
}
.section__whatIs__item__change__voice__text--rino {
  color: #35B597;
}
.section__whatIs__item__change__voice img {
  width: 80px;
  height: auto;
}
.section__whatIs__item__change__label {
  font-size: 1.4rem;
  line-height: 142.857%;
  text-align: center;
  padding: 10px 40px;
  border-radius: 40px;
  background-color: #d9d9d9;
  color: #1f1f1f;
}
.section__whatIs__item__change__label--rino {
  background-color: #ebf8f5;
  color: #35B597;
}

@media (max-width: 425px) {
  .section__whatIs__item__change__label {
    padding: 4% 8%;
  }
}
.section__whatIs__item__plan__tabs {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 6px;
  margin: 0 0 10px;
}
.section__whatIs__item__plan__tabs__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  background-color: #F4F4F4;
  color: #1f1f1f;
  width: calc((100% - 12px) / 3);
  height: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}
@media (max-width: 425px) {
  .section__whatIs__item__plan__tabs__tab {
    font-size: 1.4rem;
    height: 80px;
    gap: 6px;
  }
}
.section__whatIs__item__plan__tabs__tab img {
  width: 20px;
  height: auto;
}
.section__whatIs__item__plan__tabs__tab:hover {
  opacity: 0.8;
}
.section__whatIs__item__plan__tabs__tab.js-active {
  color: #fff;
}
.section__whatIs__item__plan__tabs__tab.js-active img {
  filter: brightness(0) invert(1);
}
.section__whatIs__item__plan__tabs__tab.js-active.section__whatIs__item__plan__tabs__tab--plan1 {
  background-color: #f8645d;
}
.section__whatIs__item__plan__tabs__tab.js-active.section__whatIs__item__plan__tabs__tab--plan2 {
  background-color: #35B597;
}
.section__whatIs__item__plan__tabs__tab.js-active.section__whatIs__item__plan__tabs__tab--plan3 {
  background-color: #519fcc;
}
.section__whatIs__item__plan__contents {
  border-radius: 8px;
}
.section__whatIs__item__plan__contents__item {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 40px 20px;
  border-radius: 8px;
}
.section__whatIs__item__plan__contents__item.section__whatIs__item__plan__contents__item--plan1 {
  background-color: #fff3f3;
}
.section__whatIs__item__plan__contents__item.section__whatIs__item__plan__contents__item--plan2 {
  background-color: #ebf8f5;
}
.section__whatIs__item__plan__contents__item.section__whatIs__item__plan__contents__item--plan3 {
  background-color: #eef5fa;
}
.section__whatIs__item__plan__contents__item.js-active {
  display: block;
  opacity: 1;
}
.section__whatIs__item__plan__contents__item__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 32px;
  text-align: center;
}
.section__whatIs__item__plan__contents__item img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}
.section__whatIs__item__plan__contents__item__text {
  font-size: 1.4rem;
  line-height: 142.857%;
  text-align: left;
}

/*partner*/
.section__partner__inner {
  padding: 80px 24px 0;
}
@media (max-width: 425px) {
  .section__partner__inner {
    padding: 56px 24px 0;
  }
}
.section__partner__title {
  padding-right: 16px;
  padding-left: 16px;
}
@media (max-width: 425px) {
  .section__partner__title {
    padding-right: 0;
    padding-left: 0;
  }
}
.section__partner__contents {
  margin-top: 40px;
  padding: 32px 16px;
  background-color: #ebf8f5;
  border-radius: 8px;
}
.section__partner__contents__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1.6rem;
  margin-bottom: 32px;
}
.section__partner__contents__title strong {
  display: block;
  color: #35B597;
  font-size: 2rem;
  font-weight: 500;
  line-height: 160%;
}
.section__partner__contents__item {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #fff;
  border-radius: 8px;
}
.section__partner__contents__item__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.section__partner__contents__item__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 160%;
}
.section__partner__contents__item__text {
  font-size: 1.4rem;
  line-height: 142.857%;
}
.section__partner__contents__item__address {
  font-size: 1.4rem;
  line-height: 142.857%;
  color: #929292;
}

/*works*/
.section__works__inner {
  padding-inline: 40px;
}
@media (max-width: 425px) {
  .section__works__inner {
    padding-top: 56px;
    padding-inline: 24px;
  }
}
.section__works__contents {
  padding-block: 40px;
}
.section__works__contents__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 24px;
}
.section__works__contents__text {
  font-size: 1.4rem;
  line-height: 142.857%;
  color: #929292;
  margin-bottom: 32px;
}
@media (max-width: 425px) {
  .section__works__contents__text {
    font-size: 1.3rem;
  }
}
.section__works__main-slider-wrapper {
  position: relative;
  margin-bottom: 10px;
}
.section__works__main-slider-wrapper .swiper-button-prev,
.section__works__main-slider-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section__works__main-slider-wrapper .swiper-button-prev::after,
.section__works__main-slider-wrapper .swiper-button-next::after {
  display: none;
}
.section__works__main-slider-wrapper .swiper-button-prev svg,
.section__works__main-slider-wrapper .swiper-button-next svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.3s ease;
}
.section__works__main-slider-wrapper .swiper-button-prev:hover,
.section__works__main-slider-wrapper .swiper-button-next:hover {
  opacity: 0.8;
}
.section__works__main-slider-wrapper .swiper-button-prev {
  left: 10px;
}
.section__works__main-slider-wrapper .swiper-button-next {
  right: 10px;
}
.section__works__main-slider {
  width: 100%;
}
.section__works__main-slider img {
  width: 100%;
  height: auto;
}
.section__works__thumbnail-slider {
  width: 100%;
}
.section__works__thumbnail-slider .swiper-slide {
  width: calc((100% - 16px) / 4);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.section__works__thumbnail-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.section__works__thumbnail-slider .swiper-slide img {
  width: 100%;
  height: auto;
}

/*modelhouse*/
.section__modelhouse__inner {
  padding-inline: 40px;
}
@media (max-width: 425px) {
  .section__modelhouse__inner {
    padding-top: 56px;
    padding-inline: 24px;
  }
}
.section__modelhouse__label {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #35B597;
  padding: 12px 40px;
  border-radius: 40px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  color: #fff;
  margin-top: 24px;
}
.section__modelhouse__text {
  font-size: 1.6rem;
  padding-block: 48px;
}
.section__modelhouse__contents {
  padding-block: 40px;
  border-top: 1px solid #929292;
}
.section__modelhouse__contents__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 160%;
  margin-bottom: 24px;
}
.section__modelhouse__contents__text {
  font-size: 1.4rem;
  line-height: 142.857%;
  color: #929292;
  margin-bottom: 32px;
}
.section__modelhouse__main-slider-wrapper {
  position: relative;
  margin-bottom: 10px;
}
.section__modelhouse__main-slider-wrapper .swiper-button-prev,
.section__modelhouse__main-slider-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section__modelhouse__main-slider-wrapper .swiper-button-prev::after,
.section__modelhouse__main-slider-wrapper .swiper-button-next::after {
  display: none;
}
.section__modelhouse__main-slider-wrapper .swiper-button-prev svg,
.section__modelhouse__main-slider-wrapper .swiper-button-next svg {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.3s ease;
}
.section__modelhouse__main-slider-wrapper .swiper-button-prev:hover,
.section__modelhouse__main-slider-wrapper .swiper-button-next:hover {
  opacity: 0.8;
}
.section__modelhouse__main-slider-wrapper .swiper-button-prev {
  left: 10px;
}
.section__modelhouse__main-slider-wrapper .swiper-button-next {
  right: 10px;
}
.section__modelhouse__main-slider {
  width: 100%;
}
.section__modelhouse__main-slider img {
  width: 100%;
  height: auto;
}
.section__modelhouse__thumbnail-slider {
  width: 100%;
}
.section__modelhouse__thumbnail-slider .swiper-slide {
  width: calc((100% - 16px) / 4);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.section__modelhouse__thumbnail-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.section__modelhouse__thumbnail-slider .swiper-slide img {
  width: 100%;
  height: auto;
}
/* .section__modelhouse__map {
  border-bottom: 1px solid #929292;
} */
.section__modelhouse__map__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.section__modelhouse__map__iframe {
  width: 100%;
  height: 225px;
  border: 0;
}
.section__modelhouse__map__iframe iframe {
  width: 100%;
  height: 100%;
}
.section__modelhouse__map__text {
  font-size: 1.4rem;
  line-height: 142.857%;
  padding-block: 24px 40px;
  color: #929292;
}
.section__modelhouse__map__img {
  width: 100%;
  height: auto;
}

/*contact*/
.section__contact__inner {
  padding-inline: 24px;
}
@media (max-width: 425px) {
  .section__contact__inner {
    padding-top: 56px;
  }
}
.section__contact__form {
  padding-top: 56px;
}
.section__contact form ul li input {
  width: 100%;
  display: block;
}
.section__contact form ul li textarea {
  width: 100%;
  display: block;
  resize: vertical;
  height: 150px;
}
.section__contact form ul li input,
.section__contact form ul li textarea,
.section__contact form ul li select {
  border: none;
  padding: 16px 16px;
  background-color: #f4f4f4;
  font-size: 1.4rem;
  line-height: 1;
  box-sizing: border-box;
}
.section__contact .clearfix {

}
.section__contact .clearfix:nth-of-type(1) {
  margin-top: 0;
}
.section__contact .form-common__inner--cnt--left {
  display: flex;
  gap: 20px;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.section__contact .form-common__inner--cnt--left .form-common__inner--label {
  color: #fff;
  background-color: #a5a5a5;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 185.714%;
  padding: 4px 20px;
  border-radius: 32px;
}
.section__contact .form-common__inner--cnt--left .form-common__inner--label.label-required {
  background-color: #35B597;
}
.section__contact .form-common__inner--cnt--right {
  width: 100%;
  display: block;
}
.section__contact .form-common__inner--cnt--mail {
  font-size: 1.4rem;
  line-height: 185.714%;
  margin-top: 8px;
}
.section__contact .form-common__inner--privacy--list {
  background-color: #fff;
  border: 1px solid #ededed;
  height: 200px;
  padding: 16px;
  margin: 24px 0 16px;
  overflow-y: auto;
}
.section__contact .form-common__inner--privacy--list__text {
  margin-bottom: 16px;
}
.section__contact .form-common__inner--privacy--list__text h3, .section__contact .form-common__inner--privacy--list__text p, .section__contact .form-common__inner--privacy--list__text ul, .section__contact .form-common__inner--privacy--list__text ol {
  font-size: 1.4rem;
  line-height: 185.714%;
}
.section__contact .form-common__inner--privacy--list__text h3 {
  font-weight: 700;
}
.section__contact .form-common__inner--privacy--check {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 142.857%;
  cursor: pointer;
}
.section__contact .form-common__inner--privacy--check label {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
.section__contact .form-common__inner--privacy--check input {
  width: 13px;
  height: 13px;
  cursor: pointer;
  flex-shrink: 0;
}
.section__contact .form-common__inner--privacy--check span {
  cursor: pointer;
}
.section__contact .form-common__inner--btn {
  margin-top: 40px;
}
.section__contact .form-common__inner--btn input {
  width: 100%;
  display: block;
  background-color: #35B597;
  color: #fff;
  border: 1px solid #35B597;
  border-radius: 8px;
  padding-block: 16px;
  font-size: 2rem;
  font-weight: 500;
  cursor: pointer;
  line-height: 160%;
  transition: all 0.3s ease;
}
.section__contact .form-common__inner--btn input:hover {
  background-color: #fff;
  color: #35B597;
}
.section__contact .wpcf7-not-valid-tip {
  display: none;
}
.section__contact .wpcf7-radio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.section__contact .wpcf7-radio input {
  width: 13px;
  height: 13px;
  cursor: pointer;
  flex-shrink: 0;
}
.section__contact .wpcf7-list-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  cursor: pointer;
}
.section__contact .wpcf7-list-item-label {
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}
.section__contact .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
}

/*about*/
.section__about__inner {
  padding-inline: 24px;
}
.section__about__title {
  padding-right: 16px;
  padding-left: 16px;
}
@media (max-width: 425px) {
  .section__about__title {
    padding-right: 0;
    padding-left: 0;
  }
}
.section__about__tabs {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 6px;
  margin: 56px 0 10px;
}
.section__about__tabs__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  background-color: #d9d9d9;
  color: #1f1f1f;
  width: calc((100% - 12px) / 3);
  height: 76px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.section__about__tabs__tab img {
  width: 20px;
  height: auto;
}
.section__about__tabs__tab:hover {
  opacity: 0.8;
}
.section__about__tabs__tab.js-active {
  background-color: #35B597;
  color: #fff;
}
.section__about__tabs__tab.js-active img {
  filter: brightness(0) invert(1);
}
.section__about__contents {
  padding: 40px 20px;
  border-radius: 8px;
  background-color: #fff;
}
.section__about__contents__item {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.section__about__contents__item.js-active {
  display: block;
  opacity: 1;
}
.section__about__contents__item__img {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}
.section__about__contents__item__img img {
  width: 100%;
  height: auto;
}
.section__about__contents__item__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 425px) {
  .section__about__contents__item__title {
    font-size: 1.8rem;
  }
}
.section__about__contents__item__text {
  font-size: 1.4rem;
  line-height: 142.857%;
}

/*company*/
.section__company__inner {
  padding-inline: 40px;
}
@media (max-width: 425px) {
  .section__company__inner {
    padding-inline: 24px;
  }
}
.section__company__table {
  margin-top: 56px;
  width: 100%;
  border-collapse: collapse;
}
.section__company__table tr {
  display: flex;
  gap: 36px;
  padding-block: 24px;
  border-top: 1px solid #d9d9d9;
}
.section__company__table tr:last-of-type {
  border-bottom: 1px solid #d9d9d9;
}
.section__company__table tr th, .section__company__table tr td {
  font-size: 1.4rem;
  line-height: 142.857%;
}
.section__company__table tr th {
  text-align: left;
  width: 96px;
}
.section__company__table tr td {
  width: calc(100% - 132px);
}

.floating__banner {
  display: none;
}
@media (max-width: 480px) {
  .floating__banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .floating__banner.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .floating__banner__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .floating__banner__item {
    width: calc((100% - 6px) / 2);
  }
}

/*footer*/
.section__footer small {
  display: block;
  font-size: 1.2rem;
  line-height: normal;
  text-align: center;
  margin-top: 56px;
}
.section__footer img {
  width: 100%;
  height: auto;
}

small .copy {
  font-size: 1.2rem;
}/*# sourceMappingURL=page-client.css.map */

/* ************************************************************************************ */
/* ************************************************************************************ */
/* ************************************************************************************ */
/* フォーム部分 */
.wpcf7-list-item {
  margin: 0 0 1em 0;
}

form {
  overflow: hidden;
}

form ul {
  display: block;
  margin-bottom: 24px;
}

form ul li:last-of-type {
  width: 100%;
}

form ul .item-name {
  color: #1f1f1f;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

form ul .item-name span.item-req {
  flex-shrink: 0;
  color: #fff;
  background: #35B597;
  border-radius: 32px;
  text-align: center;
  padding: 8px 21px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

form ul .item-name span.item-noreq {
  flex-shrink: 0;
  color: #fff;
  background: #BFBFBF;
  text-align: center;
  padding: 8px 21px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 32px;
}

form ul li:last-of-type .item-form {
  width: 100%;
  display: block;
}

form ul li:last-of-type .item-form span {
  width: 100%;
  display: block;
}

form ul li:last-of-type input {
  width: 100%;
  display: block;
}

form ul li:last-of-type textarea {
  width: 100%;
  display: block;
  resize: vertical;
  height: 190px;
  line-height: 1.6;
}

@media screen and (max-width: 640px) {
  form ul li:first-of-type,
  form ul li:last-of-type {
    width: 100%;
  }

  form ul li:first-of-type {
    margin-bottom: 16px;
  }

  form ul li:last-of-type input,
  form ul li:last-of-type textarea {
    padding: 16px;
    font-size: 14px;
  }

  form [type=submit] {
    font-size: 18px;
  }

  .form-caption {
    margin-bottom: 32px;
  }

  .form-caption p {
    font-size: 14px;
    text-align: left;
  }

  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }

  .item-notice,
  li.item-form.itemform_add_search span {
    width: 100%;
  }

  .section-form__check {
    margin-bottom: 5%;
  }
}

.section-form__check1 {
  text-align: center;
  font-size: 14px;
}

.contact__form ul.form-tab button.active {
  color: #186a68;
  border-top: 1px solid #186a68;
  border-bottom: 1px solid #186a68;
}

.submit_btn {
  display: block;
  width: 100%;
  max-width: 400px;
  color: #1F3643;
  text-align: center;
  border-radius: 100px;
  border: none;
  margin: auto;
  /* border: 1px solid #216724; */
  position: relative;
}

.section-form__check {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}

.section-form__check span {
  background: none;
}

form [type=submit] {
  background: #35B597;
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 8px;
  padding: 16px;
  margin: auto;
  margin-top: 0px;
  position: relative;
  font-size: 18px;
  opacity: 1;
  transition: 0.3s;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  form [type=submit]:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}

.submit_btn:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 6px;
  top: 50%;
  transform: translateY(-48%);
  right: 24px;
  size: cover !important;
  position: center center !important;
}

.wpcf7-spinner {
  display: none !important;
}

li.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
  display: flex;
  justify-content: space-between;
}

li.item-form.itemform_add_search span {
  width: calc(100% - 140px);
}

li.item-form.itemform_add_search button {
  width: 120px;
  background: #216724;
  border: none;
  color: #fff;
}

.form-caption {
  margin-bottom: 120px;
}

.form-caption p {
  font-size: 16px;
  text-align: center;
}

.section-form-privacy__cnt {
  height: 180px;
  overflow-y: scroll;
  padding: 18px;
  margin-bottom: 32px;
}

.section-form-privacy__cnt h3 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  margin-top: 32px;
}

.section-form-privacy__cnt h3:first-of-type {
  margin-top: 0;
}

.section-form-privacy__cnt p {
  font-size: 14px;
}

.formError {
  z-index: 20 !important;
}

.xdsoft_datetimepicker {
  z-index: 21 !important;
}

@media screen and (max-width: 640px) {
  form ul {
    /* margin-bottom:32px; */
    margin-top: 5%;
    margin-bottom: 3%;
    flex-wrap: wrap;
  }

  form ul li:first-of-type,
  form ul li:last-of-type {
    width: 100%;
  }

  form ul li:first-of-type {
    margin-bottom: 16px;
  }

  form ul li:last-of-type input,
  form ul li:last-of-type textarea {
    padding: 16px;
    font-size: 14px;
  }

  form [type=submit] {
    font-size: 18px;
  }

  .form-caption {
    margin-bottom: 32px;
  }

  .form-caption p {
    font-size: 14px;
    text-align: left;
  }

  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }

  .item-notice,
  li.item-form.itemform_add_search span {
    width: 100%;
  }

  .section-form__check {
    margin-bottom: 5%;
  }
}

.wpcf7-form-control {
  background: #FFF;
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  width: 100%;
  color: #2D2D2D; 
}

.wpcf7-form-control::placeholder {
  color: #A5A5A5;
}

.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-radio label input {
  width: 24px;
  height: 24px;
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: calc(100% - 36px);
}

.form-caption p,
form * {
  /* font-family: "Zen Kaku Gothic New"; */
}

.contact__form .privacy-policy-scroll {
  background: #FFF;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.contact__form .privacy-policy-scroll p {
  font-size: 1.4rem;
  line-height: 1.71;
  color: #2C2928;
}

.contact__form .privacy-policy-scroll p a {
  color: #5839FF;
}

.form__notice {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: -8px;
  margin-bottom: 24px;
  line-height: 1.6;
  color: #929292;
}

.privacy-policy-scroll {
  background: #FFF;
  padding: 20px 16px;
  max-height: 200px;
  height: 100%;
  margin-top: 24px;
  overflow: hidden scroll;
}

.privacy-policy-scroll::-webkit-scrollbar {
  width: 8px;
}

.privacy-policy-scroll::-webkit-scrollbar-thumb {
  background: #A7A7A7;
  border-radius: 10px;
}

.privacy-policy-scroll::-webkit-scrollbar-track {
  background: #FFF;
}

.privacy-policy-scroll .simplebar-track {
  width: 0.3rem;
}

.privacy-policy-scroll .simplebar-scrollbar {
  width: 0.3rem;
}

.privacy-policy-scroll .simplebar-scrollbar::before {
  width: 0.3rem;
  color: #fff;
  opacity: 1;
}

.privacy-policy-scroll p {
  font-size: 1.4rem;
  line-height: 1.71;
}

@media (max-width: 640px) {
  .form__notice {
    font-size: 1.2rem;
    margin-top: 2%;
  }
}

.item-form.itemform_add_search {
  display: flex !important;
  gap: 16px;
}

.item-form.itemform_add_search .wpcf7-form-control-wrap {
  width: calc(100% - 96px);
}

.item-form.itemform_add_search button.wpcf7c-elm-step1 {
  width: 80px;
  background: #2D2D2D;
  font-size: 1.2rem;
  text-align: center;
}

span.wpcf7-form-control.wpcf7-radio {
  background: unset;
}

.privacy-box {
  border: 1px solid #EDEDED;
  background: #FFF;
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px 26px;
  box-sizing: border-box;
}

.privacy-box h3 {
  font-size: 1.4rem;
  line-height: 1.71;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2%;
}

.privacy-box p {
  color: #111111;
  font-size: 1.4rem;
  line-height: 1.71;
  letter-spacing: 0.05em;
}

.privacy-box p:not(:last-of-type) {
  margin-bottom: 4%;
}

@media (max-width: 1024px) {
  .privacy-box {
    padding: 2% 2% 3%;
  }
}

@media (max-width: 640px) {
  .privacy-box {
    padding: 4% 4% 5%;
  }
}

.section-form__check1,
.section-form__check2 {
  padding: 24px;
  text-align: center;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  background: none;
}

span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item-label {
  font-size: 1.4rem;
  line-height: 1;
}

span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wpcf7-form-control-wrap[data-name=radio-plan] span.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control.wpcf7-radio label input[type=radio] {
  width: 18px;
  height: 18px;
  border: 1px solid #111111;
  /* 枠線の色 */
  border-radius: 50%;
  /* 丸くする */
  color: #FFFFFF;
  /* 背景色 */
  -moz-appearance: none;
  appearance: none;
  /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none;
  /* Safari対応 */
  outline: none;
  /* フォーカス時の枠線を消す */
  cursor: pointer;
  /* ポインタを変更 */
}

.wpcf7-form-control.wpcf7-radio label input[type=radio]:checked {
  color: #000000 !important;
  /* チェック時の背景色 */
  box-shadow: inset 0 0 0 4px #FFFFFF;
  /* 中央に白い丸を作る */
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: 100%;
}

/* チェック時のスタイル */
.wpcf7-list-item {
  margin: 0;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.wpcf7-list-item input[type=radio] {
  width: auto !important;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.section-form__check1 .wpcf7-list-item,
.section-form__check2 .wpcf7-list-item {
  justify-content: center;
}

.mfp-hide {
  display: none !important;
}

.mfp-wrap .mfp-arrow {
  margin-top: -16px;
  display: none;
}

.mfp-wrap .mfp-content {
  width: 80%;
}

.mfp-wrap .mfp-content .works-popup {
  max-width: 1200px !important;
  margin: 0 auto;
}

.reserve-notice {
  color: #A5A5A5;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71;
  letter-spacing: 0.05em;
  margin-top: -10px;
  letter-spacing: 0.08em;
}

/* 260324 */
.section__fv {
  position: relative;
  height: 100dvh;
  background: url(./img/fv-bg.jpg) center center/cover no-repeat;
}

.section__fv__inner {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 64px 24px;
}

.section__fv__logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 133px;
  height: auto;
}
@media (max-width: 1024px) {
  .section__fv__logo {
    display: none;
  }
}
.section__fv__title {
  color: #fff;
  text-shadow: 0 4px 10px rgba(31, 31, 31, 0.8);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: 0.08em;
  margin-left: -24px;
}
.section__fv__title strong {
  font-size: 4rem;
  color: #fff;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: 0.08em;
  text-shadow: 0 4px 10px rgba(31, 31, 31, 0.8);
}
@media (max-width: 480px) {
  .section__fv__title {
    font-size: 2.4rem;
    margin-left: -20px;
  }
  .section__fv__title strong {
    font-size: 3.2rem;
  }
}

@media (max-width: 425px) {
  .section__fv__title {
    font-size: 2rem;
    margin-left: -16px;
  }
  .section__fv__title strong {
    font-size: 2.4rem;
  }
}
.section__fv__text {
  text-shadow: 0 4px 10px rgba(31, 31, 31, 0.8);
  padding-top: 44px;
}

@media (max-width: 480px) {
  .section__fv__text {
    padding-top: 32px;
  }
}

@media (max-width: 425px) {
  .section__fv__text {
    padding-top: 24px;
  }
}
.section__fv__text span {
  display: block;
}
.section__fv__text--main, .section__fv__text--sub {
  color: #fff;
}
.section__fv__text--main {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.08em;
}
.section__fv__text--sub {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 24px;
}
@media (max-width: 425px) {
  .section__fv__text--main {
    font-size: 2rem;
  }
  .section__fv__text--sub {
    font-size: 1.4rem;
  }
}

.section__modelhouse__highlight {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  margin-bottom: 32px;
}
.section__modelhouse__highlight__title {
  color: #35B597;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.section__modelhouse__highlight__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section__modelhouse__highlight__list__item {
  font-size: 1.4rem;
  line-height: 142.857%;
  letter-spacing: 0.08em;
  list-style: disc;
  list-style-position: inside;
  text-indent: -14px;
  padding-left: 14px;
}
.section__modelhouse__highlight__list__item::marker {
  color: green;
}
.section__modelhouse__map__text {
  color: #929292;
}

.section__modelhouse__cta, .section__works__cta {
  display: block;
  width: 100%;
  max-width: 300px;
  background-color: #35B597;
  border-radius: 8px;
  padding: 14px 24px;
  border: 1px solid #35B597;
  margin: 0 auto;
}
.section__modelhouse__btn, .section__works__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  span {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.08em;
    strong {
      color: #fff;
      font-size: 2rem;
      font-weight: 500;
      line-height: normal;
      letter-spacing: 0.08em;
    }
  }
  svg {
    width: 22px;
    height: auto;
    stroke: #fff;
  }
}

@media (min-width: 1024px) {
  .section__modelhouse__cta:hover, .section__works__cta:hover {
    background-color: #fff;
    span {
      color: #35B597;
      strong {
        color: #35B597;
      }
    }
    svg {
      stroke: #35B597;
    }
  }
}

.next-section {
  background: url(./img/next-section-bg.png) center center/cover no-repeat;
}

.next-section__inner {
  padding: 40px 12px 62px;
  text-align: center;
}

.next-section__text span {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.08em;
}

.next-section__text strong {
  display: block;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0.08em;
}

@media (max-width: 425px) {
  .next-section__text span {
    font-size: 1.8rem;
  }
  .next-section__text strong {
    font-size: 2.4rem;
  }
}

.cta__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.cta__catch span {
  color: #35B597;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 166.667%;
  letter-spacing: 0.08em;
}
.cta__catch span small {
  color: #35B597;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
}

.next-section.--second {
  margin-top: 56px;
}