@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

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

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
}

.container {
  width: 100%;
  max-width: 115.6rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container-2 {
  width: 100%;
  max-width: 115.6rem;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.container-3 {
  width: 100%;
  max-width: 87.8rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container-4 {
  width: 100%;
  max-width: 123rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container-4-sub {
  width: 100%;
  max-width: 123rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .container-4-sub {
    padding-right: 0;
    padding-left: 0;
  }
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.c-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: min(488px, 37.5384615385vw);
  height: min(80px, 6.1538461538vw);
  background-color: #ffbd24;
  border-radius: min(43px, 3.3076923077vw);
  box-shadow: 0px 8px 0px #d99800;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .c-button {
    width: 345px;
    height: 56px;
    border-radius: 43px;
    margin: 0 auto;
  }
}
.c-button__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(30px, 2.3076923077vw);
  width: min(12.88px, 0.9907692308vw);
}
@media screen and (max-width: 760px) {
  .c-button__arrow {
    width: 9.11px;
    right: 21px;
  }
}
.c-button__text {
  font-size: min(29px, 2.2307692308vw);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .c-button__text {
    font-size: 18px;
  }
}
.c-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.c-title {
  position: relative;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
.c-title__english {
  font-family: "futura-pt", sans-serif;
  font-size: min(110px, 8.4615384615vw);
  font-weight: 800;
  color: #f6f6f6;
  line-height: 1.1;
}
.c-title__english--white {
  color: #40d8bb;
}
.c-title__english--whites {
  color: #fff;
}
@media screen and (max-width: 760px) {
  .c-title__english {
    font-size: 75px;
  }
}
.c-title__japanese {
  position: absolute;
  left: 50%;
  font-weight: 700;
  top: min(30px, 2.3076923077vw);
  transform: translateX(-50%);
  font-size: min(40px, 3.0769230769vw);
  letter-spacing: 0.04em;
  width: 100%;
}
.c-title__japanese--white {
  color: #fff;
}
.c-title__japanese span {
  color: #07b997;
}
@media screen and (max-width: 760px) {
  .c-title__japanese {
    font-size: 24px;
    top: 23px;
    letter-spacing: 0;
  }
}
.c-title__img {
  position: absolute;
  margin: 0 auto;
  width: min(303px, 23.3076923077vw);
  left: 50%;
  transform: translateX(-50%);
  top: min(40px, 3.0769230769vw);
}
@media screen and (max-width: 760px) {
  .c-title__img {
    width: 200px;
    top: 28px;
  }
}

.l-footer {
  background-color: #e7f7f6;
}
@media screen and (max-width: 760px) {
  .l-footer {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.l-footer__content {
  margin: 0 auto;
  max-width: 1229px;
  width: 100%;
  background-color: #07b997;
  border-top-right-radius: min(60px, 4.6153846154vw);
  border-top-left-radius: min(60px, 4.6153846154vw);
  padding: min(67px, 5.1538461538vw) min(90px, 6.9230769231vw) min(39px, 3vw);
}
@media screen and (max-width: 760px) {
  .l-footer__content {
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
    padding: 60px 25px 30px;
  }
}
.l-footer__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: min(61.5px, 4.7307692308vw);
  padding-right: min(38px, 2.9230769231vw);
  padding-left: min(38px, 2.9230769231vw);
}
@media screen and (max-width: 760px) {
  .l-footer__top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 34px;
  }
}
.l-footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: min(19px, 1.4615384615vw);
  width: min(330px, 25.3846153846vw);
}
@media screen and (max-width: 760px) {
  .l-footer__left {
    width: 100%;
    row-gap: 15px;
    margin-bottom: 25px;
  }
}
.l-footer__h2 {
  color: #fff;
  font-size: min(30px, 2.3076923077vw);
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 760px) {
  .l-footer__h2 {
    font-size: 25px;
  }
}
.l-footer__detail {
  font-weight: 500;
  color: #fff;
  font-size: min(17px, 1.3076923077vw);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 760px) {
  .l-footer__detail {
    font-size: 15px;
    line-height: 1.6;
  }
}
.l-footer__button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(13px, 1vw);
       column-gap: min(13px, 1vw);
  margin-bottom: min(29px, 2.2307692308vw);
}
.l-footer__button-group--subdomain {
  justify-content: flex-end;
}
@media screen and (max-width: 760px) {
  .l-footer__button-group {
    row-gap: 18px;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 29px;
  }
}
.l-footer__button {
  width: min(327px, 25.1538461538vw);
  height: min(73px, 5.6153846154vw);
  border-radius: min(52px, 4vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #ffbd24;
}
.l-footer__button--2 {
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .l-footer__button {
    width: 100%;
    height: 66px;
    border-radius: 52px;
  }
}
.l-footer__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(16.5px, 1.2692307692vw);
}
@media screen and (max-width: 760px) {
  .l-footer__arrow {
    width: 13px;
    right: 19px;
  }
}
.l-footer__a-text {
  color: #fff;
  font-size: min(21px, 1.6153846154vw);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.l-footer__a-text--2 {
  color: #07b997;
}
@media screen and (max-width: 760px) {
  .l-footer__a-text {
    font-size: 20px;
  }
}
.l-footer__ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: min(20px, 1.5384615385vw);
       column-gap: min(20px, 1.5384615385vw);
  row-gap: min(3px, 0.2307692308vw);
}
@media screen and (max-width: 760px) {
  .l-footer__ul {
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 13px;
  }
}
.l-footer__anker {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(5px, 0.3846153846vw);
       column-gap: min(5px, 0.3846153846vw);
  transition: all 0.3s;
}
.l-footer__anker:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .l-footer__anker {
    -moz-column-gap: 3px;
         column-gap: 3px;
  }
}
.l-footer__anker-text {
  font-size: min(16px, 1.2307692308vw);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 760px) {
  .l-footer__anker-text {
    font-size: 13px;
  }
}
.l-footer__anker-icon {
  width: min(14px, 1.0769230769vw);
  height: min(14px, 1.0769230769vw);
}
@media screen and (max-width: 760px) {
  .l-footer__anker-icon {
    width: 10px;
    height: 10px;
    transform: translateY(1px);
  }
}
.l-footer__right {
  width: min(643px, 49.4615384615vw);
}
@media screen and (max-width: 760px) {
  .l-footer__right {
    width: 100%;
  }
}
.l-footer__hr {
  background-color: #fff;
  height: 1px;
  width: 100%;
  border: 0;
}
.l-footer__bottom {
  padding-top: min(33px, 2.5384615385vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-right: min(38px, 2.9230769231vw);
  padding-left: min(38px, 2.9230769231vw);
}
@media screen and (max-width: 760px) {
  .l-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 12.7px;
    padding-right: 0px;
    padding-left: 0px;
    padding-top: 22px;
  }
}
.l-footer__logo {
  width: min(189px, 14.5384615385vw);
}
@media screen and (max-width: 760px) {
  .l-footer__logo {
    width: 94px;
  }
}
.l-footer__copy {
  color: #fff;
  letter-spacing: 0.02em;
  font-size: min(15px, 1.1538461538vw);
}
@media screen and (max-width: 760px) {
  .l-footer__copy {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.l-header {
  padding-left: 57px;
  padding-right: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  line-height: 85px;
  width: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 760px) {
  .l-header {
    height: 60px;
    line-height: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.l-header__logo-group {
  width: 137px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.l-header__logo-group:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .l-header__logo-group {
    width: 95px;
  }
}
.l-header__logo {
  width: 100%;
}
.l-header__ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
}
@media screen and (max-width: 1170px) {
  .l-header__ul {
    display: none;
  }
}
.l-header__a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
  transition: all 0.3s;
}
.l-header__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-header__japanese {
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #212121;
}
.l-header__english {
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-family: "futura-pt", sans-serif;
  color: #07b997;
}
.l-header__button {
  margin-left: 40px;
  width: 284px;
  height: 50px;
  background-color: #ffbd24;
  border-radius: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s;
}
.l-header__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1170px) {
  .l-header__button {
    display: none;
  }
}
.l-header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.l-hamburger {
  display: none;
  text-align: center;
}
@media screen and (max-width: 1170px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger__logo-group {
  width: 18rem;
  text-align: center;
  display: block;
  margin: 0 auto;
  margin-top: 2rem;
}
.l-hamburger__logo {
  width: 100%;
  display: inline-block;
}
.l-hamburger__contact {
  width: 50%;
  margin: 0 auto;
  height: 5rem;
  border-radius: 30px;
  margin-top: 2.5rem;
}
.l-hamburger__contact-p {
  margin: 0 auto;
  font-size: 2rem;
}
.l-hamburger__nav {
  position: fixed;
  background-color: #fff;
  color: #212121;
  width: 100%;
  height: 100%;
  z-index: 50;
  opacity: 0;
  top: -1500px;
  transition: all 0.7s;
  z-index: 800;
}
.l-hamburger__p {
  font-weight: 500;
  line-height: 1;
  font-family: "futura-pt", sans-serif;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.5);
}
.l-hamburger__japanese {
  font-size: 12px;
  color: #fff;
  font-weight: 700;
}
.l-hamburger__space {
  height: 85px;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .l-hamburger__space {
    height: 60px;
  }
}
.l-hamburger__ul {
  text-align: center;
  position: relative;
}
.l-hamburger__li {
  position: relative;
  border-top: 1px solid #f6f6f6;
  background-color: #07b997;
  color: #fff;
  padding-top: 15.5px;
  padding-bottom: 15.5px;
  border-color: rgba(246, 246, 246, 0.3);
}
.l-hamburger__li--special {
  border-bottom: 1px solid #f6f6f6;
  border-color: rgba(246, 246, 246, 0.3);
}
.l-hamburger__li.is-open .l-hamburger__submenu {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}
.l-hamburger__li.is-open .l-hamburger__arrow {
  transform: rotate(180deg);
}
.l-hamburger__30-box {
  text-align: center;
}
.l-hamburger__30 {
  color: #fff;
  position: relative;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20.5px;
  margin-top: 70px;
  text-align: center;
  display: inline-block;
}
.l-hamburger__30::before {
  position: absolute;
  left: -19.4px;
  content: "";
  background-color: #ffe6e6;
  width: 2px;
  height: 21px;
  transform: rotate(-30deg);
  top: 4px;
  border-radius: 10px;
}
.l-hamburger__30::after {
  position: absolute;
  right: -19.4px;
  content: "";
  background-color: #ffe6e6;
  width: 2px;
  height: 21px;
  transform: rotate(30deg);
  border-radius: 10px;
  top: 4px;
}
.l-hamburger__a {
  color: #fff;
  position: relative;
  font-size: 1.8rem;
  cursor: pointer;
  text-transform: capitalize;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (max-width: 1170px) {
  .l-hamburger__a {
    font-size: 30px;
  }
}
@media screen and (max-width: 760px) {
  .l-hamburger__a {
    font-size: 2.5rem;
  }
}
.l-hamburger__arrow {
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: -10rem;
  transform-origin: center 3px;
}
.l-hamburger__button {
  display: none;
  cursor: pointer;
  width: 85px;
  height: 85px;
  border: none;
  border-radius: 50%;
  position: fixed;
  right: 2%;
  top: 1.7rem;
  background-color: transparent;
  z-index: 1000;
  transition: all 0.5s;
  transform: translateY(-2rem);
}
@media screen and (max-width: 1170px) {
  .l-hamburger__button {
    display: inline-block;
  }
}
@media screen and (max-width: 760px) {
  .l-hamburger__button {
    width: 60px;
    height: 60px;
  }
}
.l-hamburger__hum {
  display: none;
  height: 2px;
  width: 30px;
  background-color: #07b997;
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 25px;
  z-index: 1000;
  border-radius: 10px;
}
.l-hamburger__hum::before, .l-hamburger__hum::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 30px;
  background-color: #07b997;
  position: absolute;
  top: -10px;
  left: 0;
  transition: all 0.25s;
  border-radius: 3px;
}
@media screen and (max-width: 760px) {
  .l-hamburger__hum::before, .l-hamburger__hum::after {
    height: 1.5px;
    width: 18px;
    top: -6px;
  }
}
.l-hamburger__hum::after {
  top: 10px;
}
@media screen and (max-width: 760px) {
  .l-hamburger__hum::after {
    top: 6px;
  }
}
@media screen and (max-width: 1170px) {
  .l-hamburger__hum {
    display: inline-block;
  }
}
@media screen and (max-width: 760px) {
  .l-hamburger__hum {
    height: 1.5px;
    width: 18px;
    margin-top: 23px;
  }
}
.l-hamburger__contact {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  width: 289px;
  padding-top: 18.5px;
  padding-bottom: 18.5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.l-hamburger__contact-text {
  color: #07b997;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 700;
}
.l-hamburger__contact-ico {
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 17.7px;
}
.l-hamburger__contact-p {
  margin: 0 auto;
  font-size: 20px;
}

.open .l-hamburger__nav {
  top: 0;
  opacity: 1;
  background-color: #07b997;
}

.open .l-hamburger__button span {
  background-color: transparent;
}

.open .l-hamburger__button span::before {
  transform: translateY(9px) rotate(-315deg);
}
@media screen and (max-width: 760px) {
  .open .l-hamburger__button span::before {
    transform: translateY(7px) rotate(-315deg);
  }
}

.open .l-hamburger__button span::after {
  transform: translateY(-11px) rotate(315deg);
}
@media screen and (max-width: 760px) {
  .open .l-hamburger__button span::after {
    transform: translateY(-5px) rotate(315deg);
  }
}

.p-fv {
  background: url(../img/fv/bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: min(93.6px, 7.2vw);
  padding-bottom: min(93.6px, 7.2vw);
  margin-top: 85px;
}
@media screen and (max-width: 760px) {
  .p-fv {
    background: url(../img/fv/bg-sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 66px;
    padding-bottom: 34px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 760px) {
  .p-fv__wrap {
    text-align: center;
  }
}
.p-fv__eva {
  width: min(293px, 22.5384615385vw);
}
@media screen and (max-width: 760px) {
  .p-fv__eva {
    width: 168px;
  }
}
.p-fv__sub-title {
  margin-bottom: min(15px, 1.1538461538vw);
  font-size: min(25px, 1.9230769231vw);
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 760px) {
  .p-fv__sub-title {
    margin-bottom: 9.5px;
    font-size: 14px;
  }
}
.p-fv__title {
  margin: 0;
  margin-bottom: min(17px, 1.3076923077vw);
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: min(60px, 4.6153846154vw);
}
.p-fv__title span {
  color: #07b997;
}
@media screen and (max-width: 760px) {
  .p-fv__title {
    margin-bottom: 17px;
    font-size: 33px;
  }
}
.p-fv__eva-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 0px;
       column-gap: 0px;
  margin-bottom: min(40px, 3.0769230769vw);
}
@media screen and (max-width: 760px) {
  .p-fv__eva-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 5px;
    margin-bottom: 73px;
  }
}

.p-fv-2 {
  padding-top: 170px;
  padding-bottom: 106px;
  text-align: center;
  background-color: #e7f7f6;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-fv-2 {
    padding-top: 100px;
  }
}
.p-fv-2__h1 {
  margin-bottom: 25px;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-fv-2__h1 span {
  color: #07b997;
  text-decoration: underline !important;
}
@media screen and (max-width: 760px) {
  .p-fv-2__h1 {
    font-size: 23px;
    letter-spacing: 0.05em;
    margin-bottom: 50px;
  }
}
.p-fv-2__img {
  margin-bottom: 27.4px;
  width: 376px;
}
@media screen and (max-width: 760px) {
  .p-fv-2__img {
    width: 242px;
    margin-bottom: 58px;
  }
}
.p-fv-2__detail {
  margin-bottom: 22px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 760px) {
  .p-fv-2__detail {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 2;
  }
}
.p-fv-2__green {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 12px;
  border: 2px solid #07b997;
  color: #07b997;
  border-radius: 8px;
  display: inline-block;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .p-fv-2__green {
    padding: 17px 20px;
    line-height: 2;
    text-align: left;
    border-radius: 14px;
  }
}
.p-fv-2__scroll {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: absolute;
  bottom: 47px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .p-fv-2__scroll {
    bottom: 53px;
  }
}
.p-fv-2__line {
  position: absolute;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  animation: lineUpDown 2s ease-in-out infinite;
}

@keyframes lineUpDown {
  0% {
    transform: translateX(-50%) translateY(-10px);
  }
  50% {
    transform: translateX(-50%) translateY(10px); /* Adjust this value to control movement distance */
  }
  100% {
    transform: translateX(-50%) translateY(-10px);
  }
}
.p-about {
  padding-top: min(90px, 6.9230769231vw);
  padding-bottom: min(110px, 8.4615384615vw);
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-about {
    padding-top: 48px;
    padding-bottom: 60px;
  }
}
.p-about__title {
  margin-bottom: min(38px, 2.9230769231vw);
}
@media screen and (max-width: 760px) {
  .p-about__title {
    margin-bottom: 25px;
  }
}
.p-about__sub-title {
  font-size: min(45px, 3.4615384615vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: min(30px, 2.3076923077vw);
  line-height: 1.6;
}
.p-about__sub-title span {
  color: #fff;
  background-color: #07b997;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (max-width: 760px) {
  .p-about__sub-title {
    margin-bottom: 25px;
    font-size: 25px;
  }
}
.p-about__detail {
  font-size: min(20px, 1.5384615385vw);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: min(60px, 4.6153846154vw);
  line-height: 1.75;
}
@media screen and (max-width: 760px) {
  .p-about__detail {
    margin-bottom: 35px;
    font-size: 15px;
    text-align: left;
    line-height: 1.9;
  }
}
.p-about__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(28px, 2.1538461538vw);
       column-gap: min(28px, 2.1538461538vw);
}
@media screen and (max-width: 760px) {
  .p-about__wrap {
    display: none;
  }
}
.p-about__swiper {
  display: none !important;
}
@media screen and (max-width: 760px) {
  .p-about__swiper {
    display: block !important;
  }
}
.p-about__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-items: center;
}
.p-about__img {
  width: min(203px, 15.6153846154vw);
  margin-bottom: min(12px, 0.9230769231vw);
}
@media screen and (max-width: 760px) {
  .p-about__img {
    width: 100%;
    margin-bottom: 12px;
  }
}
.p-about__card-text {
  font-size: min(18px, 1.3846153846vw);
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: 0px;
}
@media screen and (max-width: 760px) {
  .p-about__card-text {
    font-size: 18px;
  }
}
.p-about__card-sub {
  font-size: min(15px, 1.1538461538vw);
  letter-spacing: 0.04em;
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-about__card-sub {
    font-size: 15px;
  }
}

.p-cta {
  background: url(../img/cta/img.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: min(46px, 3.5384615385vw);
  padding-bottom: min(54px, 4.1538461538vw);
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-cta {
    background: url(../img/cta/img-sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 43px;
    padding-bottom: 43px;
  }
}
.p-cta__title {
  font-size: min(33px, 2.5384615385vw);
  font-weight: 700;
  margin-bottom: min(5px, 0.3846153846vw);
  letter-spacing: 0.04em;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-cta__title {
    font-size: 24px;
    margin-bottom: 6px;
  }
}
.p-cta__sub-title {
  margin-bottom: min(54px, 4.1538461538vw);
  letter-spacing: 0.04em;
  color: #fff;
  font-size: min(20px, 1.5384615385vw);
  font-weight: 500;
}
@media screen and (max-width: 760px) {
  .p-cta__sub-title {
    margin-bottom: 39px;
    font-size: 17px;
    font-weight: 500;
  }
}
.p-cta__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(32px, 2.4615384615vw);
       column-gap: min(32px, 2.4615384615vw);
}
@media screen and (max-width: 760px) {
  .p-cta__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 41px;
  }
}
.p-cta__button {
  width: min(523px, 40.2307692308vw);
  height: min(94px, 7.2307692308vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #ffbd24;
  border-radius: min(52px, 4vw);
  transition: all 0.3s;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
}
.p-cta__button--2 {
  background-color: #fff;
  border: 1px solid #07b997;
}
.p-cta__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-cta__button {
    width: 100%;
    height: 65px;
    border-radius: 52px;
  }
}
.p-cta__button-deco {
  width: min(333px, 25.6153846154vw);
  position: absolute;
  top: min(-25px, -1.9230769231vw);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .p-cta__button-deco {
    width: 230px;
    top: -15px;
  }
}
.p-cta__button-text {
  font-size: min(26px, 2vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.p-cta__button-text--2 {
  color: #07b997;
}
@media screen and (max-width: 760px) {
  .p-cta__button-text {
    font-size: 18px;
  }
}
.p-cta__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(32.5px, 2.5vw);
}
@media screen and (max-width: 760px) {
  .p-cta__arrow {
    right: 21.3px;
    width: 10.79px;
  }
}

.p-banner {
  padding-top: min(13px, 1vw);
  padding-bottom: min(13px, 1vw);
  background-color: #07b997;
  overflow: hidden; /* はみ出し防止 */
}
@media screen and (max-width: 760px) {
  .p-banner {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.p-banner__container {
  width: 100%;
  max-width: 115.6rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 760px) {
  .p-banner__container {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-banner__slider {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-banner__slider {
    white-space: nowrap;
    overflow: hidden;
  }
}
.p-banner__wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 13.8px;
       column-gap: 13.8px;
}
@media screen and (max-width: 760px) {
  .p-banner__wrap {
    display: inline-flex;
    animation: slide 15s linear infinite; /* アニメーション設定 */
    padding-right: 50px; /* 間隔を空ける */
  }
}
.p-banner__wrap--2 {
  display: none;
}
@media screen and (max-width: 760px) {
  .p-banner__wrap--2 {
    display: inline-flex;
    animation: slide 15s linear infinite; /* アニメーション設定 */
    padding-right: 50px; /* 間隔を空ける */
  }
}
.p-banner__text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-banner__text {
    white-space: nowrap;
  }
}
.p-banner__thick {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 760px) {
  .p-banner__thick {
    white-space: nowrap;
  }
}
.p-banner__line {
  height: 16px;
  width: 1px;
}

/* スライドアニメーション */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.p-usecase {
  background-color: #f6f6f6;
  padding-top: min(78px, 6vw);
  padding-bottom: min(110px, 8.4615384615vw);
}
@media screen and (max-width: 760px) {
  .p-usecase {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.p-usecase__title {
  margin-bottom: min(65px, 5vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__title {
    margin-bottom: 30px;
  }
}
.p-usecase__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: min(50px, 3.8461538462vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__wrap {
    display: none;
  }
}
.p-usecase__card {
  width: 100%;
  background-color: #fff;
  box-shadow: 10px 10px 0px #07b997;
  padding: min(34px, 2.6153846154vw) min(45px, 3.4615384615vw) min(35px, 2.6923076923vw) min(45px, 3.4615384615vw);
  display: flex;
  flex-direction: row;
  -moz-column-gap: min(63px, 4.8461538462vw);
       column-gap: min(63px, 4.8461538462vw);
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-usecase__card {
    box-sizing: border-box;
    flex-direction: column;
    min-height: 895px;
    row-gap: 45px;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 5px 5px 0px #07b997;
  }
}
.p-usecase__left {
  width: min(323px, 24.8461538462vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__left {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-usecase__right {
  width: min(606px, 46.6153846154vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__right {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-usecase__swiper-parent {
  display: none !important;
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-usecase__swiper-parent {
    display: block !important;
  }
}
.p-usecase__swiper {
  padding-bottom: 20px;
}
@media screen and (max-width: 760px) {
  .p-usecase__swiper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-usecase__context {
  width: min(320px, 24.6153846154vw);
  margin-bottom: min(15px, 1.1538461538vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__context {
    margin-bottom: 11px;
    width: 100%;
  }
}
.p-usecase__logo {
  width: min(300px, 23.0769230769vw);
  margin-bottom: min(26px, 2vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__logo {
    margin-bottom: 14px;
    width: initial;
    height: 60px;
  }
}
.p-usecase__logo--2 {
  width: min(270px, 20.7692307692vw);
  margin-bottom: 0;
}
@media screen and (max-width: 760px) {
  .p-usecase__logo--2 {
    margin-bottom: 14px;
    width: initial;
    height: 60px;
  }
}
.p-usecase__wrapping {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: min(17px, 1.3076923077vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__wrapping {
    row-gap: 11px;
  }
}
.p-usecase__hr {
  position: absolute;
  width: 1px;
  height: min(400px, 30.7692307692vw);
  background-color: #bababa;
  content: "";
  left: min(398px, 30.6153846154vw);
  top: min(27px, 2.0769230769vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__hr {
    width: 88%;
    height: 1px;
    top: 364px;
    left: 20px;
  }
}
.p-usecase__dl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
.p-usecase__dl--column {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: min(15px, 1.1538461538vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__dl--column {
    row-gap: 10px;
  }
}
.p-usecase__dt {
  font-size: min(17px, 1.3076923077vw);
  font-weight: 700;
  color: #07b997;
  width: 32%;
  line-height: 1;
}
@media screen and (max-width: 760px) {
  .p-usecase__dt {
    font-size: 16px;
  }
}
.p-usecase__dd {
  font-size: min(16px, 1.2307692308vw);
  font-weight: 500;
  color: #5a5d5e;
  width: 68%;
  line-height: 1;
  row-gap: min(12px, 0.9230769231vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-usecase__dd--column {
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-usecase__dd {
    font-size: 15px;
    row-gap: 10px;
  }
}
.p-usecase__dd-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(7px, 0.5384615385vw);
       column-gap: min(7px, 0.5384615385vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__dd-group {
    -moz-column-gap: 7px;
         column-gap: 7px;
  }
}
.p-usecase__detail-group {
  row-gap: min(24px, 1.8461538462vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 760px) {
  .p-usecase__detail-group {
    row-gap: 25px;
  }
}
.p-usecase__h3 {
  font-size: min(27px, 2.0769230769vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #07b997;
  margin-bottom: min(23px, 1.7692307692vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }
}
.p-usecase__h4 {
  margin-bottom: min(14px, 1.0769230769vw);
  background-color: #ffc400;
  width: min(119px, 9.1538461538vw);
  height: min(29px, 2.2307692308vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: 0.04em;
  font-size: min(16px, 1.2307692308vw);
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-usecase__h4 {
    margin-bottom: 13px;
    width: 119px;
    height: 29px;
    font-size: 16px;
  }
}
.p-usecase__ul {
  display: flex;
  flex-direction: column;
  row-gap: min(8px, 0.6153846154vw);
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 760px) {
  .p-usecase__ul {
    row-gap: 9px;
  }
}
.p-usecase__li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: min(11px, 0.8461538462vw);
       column-gap: min(11px, 0.8461538462vw);
}
@media screen and (max-width: 760px) {
  .p-usecase__li {
    -moz-column-gap: 7px;
         column-gap: 7px;
  }
}
.p-usecase__li-p {
  letter-spacing: 0.04em;
  color: #5a5d5e;
  font-size: min(15px, 1.1538461538vw);
  line-height: 1.35;
}
@media screen and (max-width: 760px) {
  .p-usecase__li-p {
    font-size: 14px;
    font-weight: 500;
  }
}

.swiper-pagination {
  bottom: -10px !important;
}

.swiper-pagination-bullet {
  background-color: #fff;
}

.swiper-pagination-bullet-active {
  background-color: #07b997;
}

.p-comparison {
  padding-top: min(93px, 7.1538461538vw);
  padding-bottom: min(75px, 5.7692307692vw);
  position: relative;
}
@media screen and (max-width: 760px) {
  .p-comparison {
    padding-top: 50px;
    padding-bottom: 36px;
  }
}
.p-comparison__title {
  margin-bottom: min(18px, 1.3846153846vw);
}
@media screen and (max-width: 760px) {
  .p-comparison__title {
    margin-bottom: -5px;
    width: 466px;
  }
}
.p-comparison__table {
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-comparison__table {
    width: 976px;
  }
}
.p-comparison__table-img {
  width: 100%;
}
.p-comparison__table-parent {
  padding-left: 15px;
  padding-right: 15px;
}

.p-flow {
  background-color: #07b997;
  padding-top: min(75px, 5.7692307692vw);
  padding-bottom: min(75px, 5.7692307692vw);
}
@media screen and (max-width: 760px) {
  .p-flow {
    padding-top: 50px;
    padding-bottom: 55px;
  }
}
.p-flow__title {
  margin-bottom: min(40px, 3.0769230769vw);
}
@media screen and (max-width: 760px) {
  .p-flow__title {
    margin-bottom: 30px;
  }
}
.p-flow__diagram {
  width: 100%;
  margin-bottom: min(87px, 6.6923076923vw);
}
@media screen and (max-width: 760px) {
  .p-flow__diagram {
    margin-bottom: 45px;
  }
}
.p-flow__button {
  margin: 0 auto;
  width: min(523px, 40.2307692308vw);
  height: min(94px, 7.2307692308vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #ffbd24;
  border-radius: min(52px, 4vw);
  transition: all 0.3s;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
}
.p-flow__button--2 {
  background-color: #fff;
  border: 1px solid #07b997;
}
.p-flow__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 760px) {
  .p-flow__button {
    width: 100%;
    height: 65px;
    border-radius: 52px;
  }
}
.p-flow__button-deco {
  width: min(333px, 25.6153846154vw);
  position: absolute;
  top: min(-25px, -1.9230769231vw);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 760px) {
  .p-flow__button-deco {
    width: 230px;
    top: -15px;
  }
}
.p-flow__button-text {
  font-size: min(26px, 2vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.p-flow__button-text--2 {
  color: #07b997;
}
@media screen and (max-width: 760px) {
  .p-flow__button-text {
    font-size: 18px;
  }
}
.p-flow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(32.5px, 2.5vw);
}
@media screen and (max-width: 760px) {
  .p-flow__arrow {
    right: 21.3px;
    width: 10.79px;
  }
}

.p-price {
  padding-top: min(90px, 6.9230769231vw);
  padding-bottom: min(120px, 9.2307692308vw);
  background-color: #e7f7f6;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-price {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}
.p-price__title {
  margin-bottom: min(52px, 4vw);
}
@media screen and (max-width: 760px) {
  .p-price__title {
    margin-bottom: 0px;
  }
}
.p-price__wrap {
  margin-bottom: min(40px, 3.0769230769vw);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: min(30px, 2.3076923077vw);
       column-gap: min(30px, 2.3076923077vw);
}
@media screen and (max-width: 760px) {
  .p-price__wrap {
    display: none;
  }
}
.p-price__child {
  text-align: center;
  background-color: #fff;
  width: min(380px, 29.2307692308vw);
  border-radius: min(26px, 2vw);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
  padding: min(55px, 4.2307692308vw) min(23px, 1.7692307692vw) min(54px, 4.1538461538vw) min(23px, 1.7692307692vw);
  position: relative;
  transition: border 0.3s ease;
}
.p-price__child--green {
  border: 3px solid #07b997;
}
@media screen and (max-width: 760px) {
  .p-price__child {
    border: none;
    padding: 50px 20px;
    border-radius: 26px;
    width: auto;
  }
  .p-price__child--green {
    border: 3px solid #07b997;
  }
}
.p-price__plan {
  font-size: min(29px, 2.2307692308vw);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: min(22px, 1.6923076923vw);
}
@media screen and (max-width: 760px) {
  .p-price__plan {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.p-price__sub-title {
  font-size: min(17px, 1.3076923077vw);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.7;
  margin-bottom: min(40px, 3.0769230769vw);
}
@media screen and (max-width: 760px) {
  .p-price__sub-title {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.p-price__content {
  margin-bottom: min(25px, 1.9230769231vw);
}
@media screen and (max-width: 760px) {
  .p-price__content {
    margin-bottom: 30px;
  }
}
.p-price__dl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: min(25px, 1.9230769231vw) min(3px, 0.2307692308vw) min(25px, 1.9230769231vw) min(10px, 0.7692307692vw);
  border-bottom: 1.5px solid #bababa;
  max-height: min(76px, 5.8461538462vw);
}
.p-price__dl:first-child {
  border-top: 1.5px solid #bababa;
}
@media screen and (max-width: 760px) {
  .p-price__dl {
    padding: 20px 0px 20px 7px;
    max-height: 27px;
  }
}
.p-price__dt {
  font-size: min(17px, 1.3076923077vw);
  font-weight: 500;
  line-height: 1;
  width: 50%;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media screen and (max-width: 760px) {
  .p-price__dt {
    font-size: 13px;
  }
}
.p-price__dd {
  font-size: min(18px, 1.3846153846vw);
  font-weight: 700;
  line-height: 1;
  width: 50%;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: min(7px, 0.5384615385vw);
       column-gap: min(7px, 0.5384615385vw);
}
@media screen and (max-width: 760px) {
  .p-price__dd {
    font-size: 15px;
    -moz-column-gap: 6px;
         column-gap: 6px;
  }
}
.p-price__dd span {
  font-size: min(28px, 2.1538461538vw);
  transform: translateY(-3px);
}
@media screen and (max-width: 760px) {
  .p-price__dd span {
    font-size: 25px;
  }
}
.p-price__sub-icon {
  width: min(25px, 1.9230769231vw);
  height: min(25px, 1.9230769231vw);
}
@media screen and (max-width: 760px) {
  .p-price__sub-icon {
    width: 20px;
    height: 20px;
  }
}
.p-price__up {
  font-size: min(16px, 1.2307692308vw);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: min(8px, 0.6153846154vw);
}
@media screen and (max-width: 760px) {
  .p-price__up {
    font-size: 15px;
    margin-bottom: 9px;
  }
}
.p-price__button {
  margin: 0 auto;
  margin-bottom: min(13px, 1vw);
  width: min(229px, 17.6153846154vw);
  height: min(56px, 4.3076923077vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #07b997;
  border-radius: min(10px, 0.7692307692vw);
  position: relative;
}
.p-price__button--gray {
  background-color: #a2a2a2;
}
@media screen and (max-width: 760px) {
  .p-price__button {
    width: 229px;
    height: 56px;
    margin-bottom: 13px;
    border-radius: 10px;
  }
}
.p-price__text {
  color: #fff;
  font-size: min(17px, 1.3076923077vw);
  font-weight: 700;
}
@media screen and (max-width: 760px) {
  .p-price__text {
    font-size: 17px;
  }
}
.p-price__download {
  width: min(10.79px, 0.83vw);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: min(13px, 1vw);
}
@media screen and (max-width: 760px) {
  .p-price__download {
    width: 13px;
    right: 14.6px;
  }
}
.p-price__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: min(5px, 0.3846153846vw);
       column-gap: min(5px, 0.3846153846vw);
  text-decoration: underline !important;
}
@media screen and (max-width: 760px) {
  .p-price__contact {
    -moz-column-gap: 5px;
         column-gap: 5px;
  }
}
.p-price__contact-text {
  font-size: min(16px, 1.2307692308vw);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 760px) {
  .p-price__contact-text {
    font-size: 16px;
  }
}
.p-price__contact-icon {
  width: min(5.9px, 0.4538461538vw);
}
@media screen and (max-width: 760px) {
  .p-price__contact-icon {
    width: 5.9px;
  }
}
.p-price__kome {
  font-size: min(16px, 1.2307692308vw);
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
}
@media screen and (max-width: 760px) {
  .p-price__kome {
    font-size: 11px;
  }
}
.p-price__swiper {
  display: none !important;
}
@media screen and (max-width: 760px) {
  .p-price__swiper {
    display: block !important;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-price__reco {
  position: absolute;
  top: 0;
  right: min(-2px, -0.1538461538vw);
  width: min(99px, 7.6153846154vw);
}
@media screen and (max-width: 760px) {
  .p-price__reco {
    width: 82px;
  }
}

.p-question {
  background-color: #f6f6f6;
  padding-top: min(112px, 8.6153846154vw);
  padding-bottom: min(120px, 9.2307692308vw);
}
@media screen and (max-width: 760px) {
  .p-question {
    padding-top: 50px;
    padding-bottom: 90px;
  }
}
.p-question__title {
  margin-bottom: min(40px, 3.0769230769vw);
}
@media screen and (max-width: 760px) {
  .p-question__title {
    margin-bottom: 30px;
  }
}
.p-question__wrap {
  display: flex;
  flex-direction: column;
  row-gap: min(30px, 2.3076923077vw);
}
@media screen and (max-width: 760px) {
  .p-question__wrap {
    row-gap: 20px;
  }
}
.p-question__dl {
  background-color: #fff;
  border-radius: min(10px, 0.7692307692vw);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.16);
  padding: min(26px, 2vw) min(27px, 2.0769230769vw) min(30px, 2.3076923077vw);
  cursor: pointer;
}
@media screen and (max-width: 760px) {
  .p-question__dl {
    padding: 20px;
    padding-right: 41px;
    border-radius: 10px;
  }
}
.p-question__dt {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  -moz-column-gap: 21px;
       column-gap: 21px;
}
.p-question__qp {
  font-size: min(20px, 1.5384615385vw);
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 760px) {
  .p-question__qp {
    font-size: 15px;
  }
}
.p-question__icon {
  width: min(21px, 1.6153846154vw);
  right: 0;
  position: absolute;
  top: min(7px, 0.5384615385vw);
  height: min(21px, 1.6153846154vw);
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 760px) {
  .p-question__icon {
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
  }
}
.p-question__dd {
  overflow: hidden;
  transition: height 0.3s ease;
}
.p-question__flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  -moz-column-gap: 21px;
       column-gap: 21px;
  padding-top: min(21px, 1.6153846154vw);
}
@media screen and (max-width: 760px) {
  .p-question__flex {
    padding-top: 20px;
  }
}
.p-question__hr {
  width: 100%;
  border: none;
  background-color: #707070;
  height: 1px;
  margin-top: min(30px, 2.3076923077vw);
}
@media screen and (max-width: 760px) {
  .p-question__hr {
    margin-top: 24px;
  }
}
.p-question__ap {
  font-size: min(18px, 1.3846153846vw);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (max-width: 760px) {
  .p-question__ap {
    font-size: 14px;
  }
}
.p-question__obj {
  width: min(30px, 2.3076923077vw);
}
@media screen and (max-width: 760px) {
  .p-question__obj {
    display: none;
  }
}

.p-strong {
  padding-top: min(90px, 6.9230769231vw);
  padding-bottom: min(102px, 7.8461538462vw);
}
@media screen and (max-width: 760px) {
  .p-strong {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.p-strong__h2 {
  margin-bottom: min(80px, 6.1538461538vw);
}
@media screen and (max-width: 760px) {
  .p-strong__h2 {
    margin-bottom: 58px;
    width: 400px;
  }
}
.p-strong__wrap {
  display: flex;
  flex-direction: column;
  row-gap: min(179px, 13.7692307692vw);
}
@media screen and (max-width: 760px) {
  .p-strong__wrap {
    row-gap: 40px;
  }
}
.p-strong__hr {
  border: 0;
  width: 100%;
  border: 1px solid #d5d5d5;
}
.p-strong__child {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: min(59px, 4.5384615385vw);
       column-gap: min(59px, 4.5384615385vw);
}
.p-strong__img {
  width: min(504px, 38.7692307692vw);
}
@media screen and (max-width: 760px) {
  .p-strong__img {
    width: 100%;
    margin-bottom: 25px;
  }
}
.p-strong__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.p-strong__tag {
  padding-left: min(22px, 1.6923076923vw);
  padding-right: min(22px, 1.6923076923vw);
  margin-bottom: min(15px, 1.1538461538vw);
  background-color: #07b997;
  height: min(35px, 2.6923076923vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: min(20px, 1.5384615385vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: min(30px, 2.3076923077vw);
}
@media screen and (max-width: 760px) {
  .p-strong__tag {
    border-radius: 30px;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px;
    height: 30px;
    font-size: 15px;
  }
}
.p-strong__title {
  margin-bottom: min(25px, 1.9230769231vw);
  font-weight: 700;
  font-size: min(30px, 2.3076923077vw);
  letter-spacing: 0.04em;
  z-index: 1;
}
@media screen and (max-width: 760px) {
  .p-strong__title {
    margin-bottom: 25px;
    font-size: 22px;
  }
}
.p-strong__description {
  font-size: min(20px, 1.5384615385vw);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 760px) {
  .p-strong__description {
    font-size: 15px;
  }
}
.p-strong__number {
  width: min(137px, 10.5384615385vw);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 760px) {
  .p-strong__number {
    width: 90px;
  }
}

.p-support {
  padding-top: min(80px, 6.1538461538vw);
  padding-bottom: min(85px, 6.5384615385vw);
  background-color: #f6f6f6;
}
@media screen and (max-width: 760px) {
  .p-support {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-support__title {
  margin: 0 auto;
  margin-bottom: min(51px, 3.9230769231vw);
  width: min(623px, 47.9230769231vw);
}
@media screen and (max-width: 760px) {
  .p-support__title {
    margin-bottom: 39px;
    width: 100%;
  }
}
.p-support__wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: min(40px, 3.0769230769vw);
  justify-content: center;
  -moz-column-gap: min(57px, 4.3846153846vw);
       column-gap: min(57px, 4.3846153846vw);
  margin-bottom: min(86px, 6.6153846154vw);
}
@media screen and (max-width: 760px) {
  .p-support__wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    margin-bottom: 61px;
  }
}
.p-support__article {
  width: min(531px, 40.8461538462vw);
  height: min(1173px, 13.3076923077vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: min(24px, 1.8461538462vw) min(38px, 2.9230769231vw);
  box-shadow: 0px 0px 15px rgba(7, 185, 151, 0.16), 10px 10px 0px #07b997;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  .p-support__article {
    padding: 20px;
    height: 173px;
    width: 97%;
    transform: translateX(-5px);
  }
}
.p-support__content {
  max-width: 306px;
  width: 100%;
}
@media screen and (max-width: 760px) {
  .p-support__content {
    text-align: center;
  }
}
.p-support__img {
  width: min(118px, 9.0769230769vw);
  height: auto;
}
@media screen and (max-width: 760px) {
  .p-support__img {
    display: none;
  }
}
.p-support__h3 {
  font-size: min(25px, 1.9230769231vw);
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-bottom: min(15px, 1.1538461538vw);
}
@media screen and (max-width: 760px) {
  .p-support__h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }
}
.p-support__detail {
  font-size: min(15px, 1.1538461538vw);
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media screen and (max-width: 760px) {
  .p-support__detail {
    font-size: 15px;
    line-height: 1.75;
  }
}
.p-support__obj {
  margin: 0 auto;
  width: min(1056px, 81.2307692308vw);
}
@media screen and (max-width: 760px) {
  .p-support__obj {
    width: 100%;
  }
}

.p-problem {
  background-color: #e7f7f6;
  padding-top: min(100px, 7.6923076923vw);
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-problem {
    padding-top: 70px;
  }
}
.p-problem__h2 {
  font-size: min(35px, 2.6923076923vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: min(43px, 3.3076923077vw);
}
.p-problem__h2 span {
  color: #07b997;
}
@media screen and (max-width: 760px) {
  .p-problem__h2 {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
.p-problem__group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: min(44px, 3.3846153846vw);
       column-gap: min(44px, 3.3846153846vw);
  margin-bottom: min(47px, 3.6153846154vw);
}
@media screen and (max-width: 760px) {
  .p-problem__group {
    row-gap: 8px;
    -moz-column-gap: 8px;
         column-gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 21px;
  }
}
.p-problem__child {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #07b997;
  background-color: #fff;
  width: min(246px, 18.9230769231vw);
  height: min(246px, 18.9230769231vw);
  font-size: min(20px, 1.5384615385vw);
  letter-spacing: 0.04em;
  font-weight: 700;
  box-shadow: 0px 0px 30px rgba(60, 151, 137, 0.2);
}
.p-problem__child span {
  color: #07b997;
}
.p-problem__child--special {
  transform: translateY(min(130px, 10vw));
}
@media screen and (max-width: 760px) {
  .p-problem__child--special {
    transform: none;
  }
}
@media screen and (max-width: 760px) {
  .p-problem__child {
    width: calc((100% - 8px) / 2);
    height: auto;
    aspect-ratio: 1/1;
    font-size: 15px;
  }
}
.p-problem__img {
  width: min(756px, 58.1538461538vw);
  margin: 0 auto;
  margin-bottom: min(-23px, -1.7692307692vw);
}
@media screen and (max-width: 760px) {
  .p-problem__img {
    width: 376px;
    margin-bottom: -11px;
  }
}

.p-solution {
  padding-top: min(63px, 4.8461538462vw);
  padding-bottom: min(110px, 8.4615384615vw);
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-solution {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 38px;
    padding-bottom: 70px;
  }
}
.p-solution__arrow {
  margin: 0 auto;
  width: min(45px, 3.4615384615vw);
  margin-bottom: min(18px, 1.3846153846vw);
}
@media screen and (max-width: 760px) {
  .p-solution__arrow {
    width: 30px;
    margin-bottom: 25px;
  }
}
.p-solution__h2 {
  width: min(642px, 49.3846153846vw);
  margin: 0 auto;
  margin-bottom: min(66px, 5.0769230769vw);
}
@media screen and (max-width: 760px) {
  .p-solution__h2 {
    width: 352px;
    margin-bottom: 40px;
  }
}
.p-solution__white {
  margin: 0 auto;
  max-width: min(1230px, 94.6153846154vw);
  width: 100%;
  border-radius: min(30px, 2.3076923077vw);
  padding: min(43px, 3.3076923077vw) min(62px, 4.7692307692vw);
  display: flex;
  flex-direction: row;
  justify-content: center;
  box-shadow: 0px 0px min(20px, 1.5384615385vw) rgba(60, 151, 137, 0.4);
}
@media screen and (max-width: 760px) {
  .p-solution__white {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 25px;
  }
}
.p-solution__card {
  position: relative;
  padding-top: min(10px, 0.7692307692vw);
  padding-bottom: min(10px, 0.7692307692vw);
}
.p-solution__card:not(:last-child) {
  padding-right: min(39px, 3vw);
  border-right: 1px solid #dedede;
}
@media screen and (max-width: 760px) {
  .p-solution__card:not(:last-child) {
    padding-right: 22px;
    border-right: none;
  }
}
.p-solution__card:not(:first-child) {
  padding-left: min(39px, 3vw);
}
@media screen and (max-width: 760px) {
  .p-solution__card:not(:first-child) {
    padding-left: 22px;
  }
}
@media screen and (max-width: 760px) {
  .p-solution__card {
    border-radius: 20px;
    background-color: #fff;
    padding: 32px 22px 23px;
    box-shadow: 0px 0px 20px rgba(60, 151, 137, 0.4);
  }
}
.p-solution__number {
  margin-bottom: min(14px, 1.0769230769vw);
  color: #07b997;
  border-bottom: 2px solid #07b997;
  font-family: "futura-pt", sans-serif;
  font-size: min(27px, 2.0769230769vw);
  font-weight: 800;
  letter-spacing: 0.03em;
  display: inline-block;
}
@media screen and (max-width: 760px) {
  .p-solution__number {
    font-size: 22px;
    margin-bottom: 18.5px;
  }
}
.p-solution__h3 {
  font-size: min(25px, 1.9230769231vw);
  font-weight: 700;
  margin-bottom: min(14px, 1.0769230769vw);
  letter-spacing: 0.04em;
}
.p-solution__h3 span {
  color: #07b997;
}
@media screen and (max-width: 760px) {
  .p-solution__h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.p-solution__detail {
  font-size: min(18px, 1.3846153846vw);
  margin-bottom: min(25px, 1.9230769231vw);
}
@media screen and (max-width: 760px) {
  .p-solution__detail {
    margin-bottom: 22px;
    font-size: 15px;
  }
}
.p-solution__img {
  width: min(316px, 24.3076923077vw);
}
@media screen and (max-width: 760px) {
  .p-solution__img {
    width: 100%;
  }
}
.p-solution__kome {
  position: absolute;
  font-size: min(12px, 0.9230769231vw);
  letter-spacing: 0.04em;
  color: #5a5d5e;
  bottom: min(-13px, -1vw);
  left: min(48px, 3.6923076923vw);
  width: min(300px, 23.0769230769vw);
}
@media screen and (max-width: 760px) {
  .p-solution__kome {
    width: auto;
    position: static;
    margin-top: 8px;
    font-size: 12px;
  }
}

.p-calender {
  background-color: #fff;
  padding-top: 59px;
  padding-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-calender {
    padding-top: 61px;
    padding-bottom: 60px;
  }
}
.p-calender__h2 {
  margin-bottom: 9px;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 760px) {
  .p-calender__h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
}
.p-calender__sub {
  font-size: 25px;
  letter-spacing: 0.03em;
  color: #07b997;
  font-family: "futura-pt", sans-serif;
  margin-bottom: 38px;
}
@media screen and (max-width: 760px) {
  .p-calender__sub {
    margin-bottom: 30px;
  }
}
.p-calender__text {
  letter-spacing: 0.08em;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 53px;
  line-height: 1.8;
}
@media screen and (max-width: 760px) {
  .p-calender__text {
    margin-bottom: 60px;
    letter-spacing: 0.04em;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    line-height: 2;
  }
}

.p-kasou {
  padding-top: 140px;
  padding-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 760px) {
  .p-kasou {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.p-kasou__h1 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 760px) {
  .p-kasou__h1 {
    font-size: 22px;
  }
}
.p-kasou__content {
  margin-bottom: 30px;
}
.p-kasou__p {
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 760px) {
  .p-kasou__p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
}

.p-legal-table {
  width: 100%;
  max-width: 900px;
  border-collapse: collapse;
  margin: 0 auto 30px;
  text-align: left;
}
.p-legal-table th,
.p-legal-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  vertical-align: top;
}
.p-legal-table th {
  background-color: #f8f8f8;
  font-weight: 700;
}
.p-legal-table td {
  width: 35%;
  line-height: 1.6;
}
.p-legal-table td:last-child {
  width: 65%;
}
.p-legal-table td a {
  color: #0066cc;
  text-decoration: none;
}
.p-legal-table td a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 760px) {
  .p-legal-table {
    font-size: 14px;
  }
  .p-legal-table th,
  .p-legal-table td {
    padding: 10px;
  }
}

.p-privacy {
  padding-top: 140px;
  padding-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .p-privacy {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.p-privacy__h1 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.p-privacy__content {
  max-width: 900px;
  margin: 0 auto;
}
.p-privacy__intro {
  margin-bottom: 40px;
  line-height: 1.8;
}
.p-privacy__section {
  margin-bottom: 50px;
}
.p-privacy__section:not(:first-child) {
  border-top: 1px solid #ddd;
  padding-top: 30px;
}
.p-privacy__h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-privacy__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.p-privacy__table th,
.p-privacy__table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  vertical-align: top;
}
.p-privacy__table th {
  background-color: #f8f8f8;
  font-weight: 700;
  width: 40%;
}
.p-privacy__table td {
  width: 35%;
  line-height: 1.6;
}
.p-privacy__table td:last-child {
  width: 65%;
}
@media screen and (max-width: 760px) {
  .p-privacy__table {
    font-size: 14px;
  }
  .p-privacy__table th,
  .p-privacy__table td {
    padding: 10px;
  }
}
.p-privacy__list {
  margin-left: 25px;
  margin-bottom: 20px;
}
.p-privacy__list li {
  margin-bottom: 10px;
  line-height: 1.6;
  display: list-item !important;
}
.p-privacy__list:not(.p-privacy__list--bullet) li {
  list-style: decimal !important;
}
.p-privacy__list--bullet li {
  list-style: disc !important;
}
.p-privacy p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.p-privacy a {
  color: #0066cc;
  text-decoration: none;
}
.p-privacy a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 760px) {
  .p-privacy {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */