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: 32px;
}
@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-columns: 1fr 1fr;
  gap: 32px 56px;
  margin: 0 auto;
}
.section__header__nav li:nth-child(1), .section__header__nav li:nth-child(2), .section__header__nav li:nth-child(3), .section__header__nav li:nth-child(4), .section__header__nav li:nth-child(5), .section__header__nav li:nth-child(6) {
  grid-column: 1;
}
.section__header__nav li:nth-child(n+7) {
  grid-column: 2;
}
.section__header__nav li:nth-child(7) {
  grid-row: 1;
}
.section__header__nav li:nth-child(8) {
  grid-row: 2;
}
.section__header__nav li:nth-child(9) {
  grid-row: 3;
}
.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;
}
.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;
  height: 100vh;
}
.section__fv__inner {
  width: 100%;
  height: 100vh;
  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__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: 24px;
    height: 18px;
    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: 16px;
    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;
  }
}

/*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;
  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;
}
.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;
}
.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 20px;
  border-radius: 8px;
  background-color: #fff;
}
.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;
}
.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: 55px;
}
@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: fit-content;
  margin: 0 auto 32px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background-color: #35B597;
  padding: 12px 40px;
  border-radius: 40px;
}
.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: 12px 40px;
  border-radius: 40px;
  background-color: #d9d9d9;
  color: #1f1f1f;
}
.section__whatIs__item__change__label--rino {
  background-color: #ebf8f5;
  color: #35B597;
}
.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%;
}

/*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: 24px;
  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 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.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;
  border-top: 1px solid #f4f4f4;
}
.section__works__contents:last-of-type {
  padding-bottom: 0;
}
.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 #646464;
}
.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 #646464;
}
.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;
}
.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: 20px 16px;
  background-color: #f4f4f4;
  font-size: 1.4rem;
  line-height: 142.857%;
  box-sizing: border-box;
}
.section__contact .clearfix {
  margin-top: 40px;
}
.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;
  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;
}
.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 */