@charset "UTF-8";
html {
  font-size: 16px;
  color: #595656;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
/* 
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}
*/

.header {
  position: initial;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 6.5625rem;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    height: 3.9375rem;
    border-bottom: 1px solid #CCC;
    background-color: #fff;
  }
}

.header__inner {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-left: 2.5rem;
  padding-left: 2.7777777778vw;
  padding-right: 2.5rem;
  padding-right: 2.7777777778vw;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.header__name {
  max-width: 10.5625rem;
  width: 11.7361111111vw;
}
@media screen and (max-width: 768px) {
  .header__name {
    max-width: 8.125rem;
    width: 23.75vw;
  }
}

.header__nav {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__nav-items {
  height: inherit;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .header__nav-items {
    gap: 1rem;
  }
}

.header__nav-item {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__nav-link {
  height: inherit;
  display: flex;
  align-items: center;
  color: #595656;
  font-weight: 700;
  transition: color 0.3s;
  font-size: 0.8125rem;
  font-size: clamp(0.625rem, 0.41rem + 0.447vw, 0.813rem);
}
.header__nav-link:hover {
  opacity: 1;
  color: #00B148;
}

.header__btn-items {
  margin-left: 2.125rem;
  height: inherit;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .header__btn-items {
    margin-left: 1.0625rem;
  }
}

.header__btn-item {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__btn-link {
  font-size: 0.9375rem;
  font-size: clamp(0.75rem, 0.535rem + 0.447vw, 0.938rem);
  font-weight: 700;
  color: #3C3C3C;
  text-align: center;
  border-radius: 8px;
  position: relative;
  letter-spacing: 0.09em;
  transition: color 0.3s, background-color 0.3s;
}
.header__btn-link::before {
  position: absolute;
  content: "";
  max-width: 0.5625rem;
  width: 0.625vw;
  height: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  right: 0.9722222222vw;
  background-image: url(../images/arrow-green.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.3s;
}
.header__btn-link:hover {
  opacity: 1;
}
.header__btn-link:hover::before {
  background-image: url(../images/arrow-white.svg);
}

.header__btn-link.header__btn-link--document {
  color: #00B148;
  border: 2px solid #00B148;
  max-width: 11.25rem;
  width: 12.5vw;
  padding: 0.96875rem 1rem;
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  .header__btn-link.header__btn-link--document {
    width: 15.2777777778vw;
    padding-left: 1rem;
  }
}
.header__btn-link.header__btn-link--document:hover {
  background-color: #00B148;
  color: #fff;
}

.header__btn-link.header__btn-link--free {
  background-color: #FFE248;
  max-width: 14.75rem;
  width: 16.3888888889vw;
  padding: 1.09375rem 1rem;
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  .header__btn-link.header__btn-link--free {
    width: 20.8333333333vw;
  }
}
.header__btn-link.header__btn-link--free::before {
  background-image: url(../images/arrow-darkgray.svg);
}
.header__btn-link.header__btn-link--free:hover {
  background-color: #FFB048;
}
.header__btn-link.header__btn-link--free:hover::before {
  background-image: url(../images/arrow-white.svg);
}

.hamburger {
  position: fixed;
  top: 0.78125rem;
  right: 0.5rem;
  z-index: 9999;
  width: 2.375rem;
  height: 2.375rem;
  cursor: pointer;
  background-color: #06C755;
  border-radius: 8px;
}

.hamburger span {
  position: absolute;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 2px;
  border-radius: 100vw;
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
  width: 1.40625rem;
}

.hamburger span:nth-child(1) {
  top: 0.625rem;
  left: 0.4375rem;
}

.hamburger span:nth-child(2) {
  top: 1.125rem;
  left: 0.4375rem;
}

.hamburger span:nth-child(3) {
  top: 1.625rem;
  left: 0.4375rem;
}

.hamburger.is-active span:nth-child(1) {
  top: 1.125rem;
  transform: rotate(-135deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 1.125rem;
  transform: rotate(135deg);
}

.drawer-menu {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5000;
  display: none;
}

.drawer-bg {
  background-color: white;
  height: 125vw;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.25);
}

.drawer-menu__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  flex-direction: column;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__link {
  color: #595656;
  font-size: 5vw;
  font-weight: 700;
  display: inline-block;
  width: 76vw;
  margin-bottom: 6vw;
  text-align: left;
  padding-left: 6vw;
  position: relative;
}
.drawer-menu__link::before {
  position: absolute;
  content: "";
  width: 2vw;
  height: 3.5vw;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/arrow-gray.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.drawer-menu__btn-wrap {
  max-width: 76vw;
  width: 100%;
}

.drawer-menu__btn {
  display: inline-block;
  width: 100%;
  font-size: 4vw;
  font-weight: 700;
  color: #06C755;
  letter-spacing: 0.09em;
  border: 2px solid #06C755;
  border-radius: 8px;
  text-align: center;
  padding: 4.5vw;
  position: relative;
}
.drawer-menu__btn::before {
  position: absolute;
  content: "";
  width: 2vw;
  height: 3.5vw;
  top: 50%;
  transform: translateY(-50%);
  right: 7.75vw;
  background-image: url(../images/arrow-green2.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.drawer-menu__btn--contact {
  margin-top: 2.75vw;
  background-color: #FFE248;
  color: #595656;
  border: 2px solid #FFE248;
}

.hero {
  padding-top: 3.5rem;
  padding-bottom: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .hero {
    margin-top: 3.9375rem;
    padding-top: 1.5rem;
  }
}

.hero__inner {
  max-width: 92.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .hero__inner {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.hero__wrap {
  display: flex;
  align-items: center;
  gap: 7.6388888889vw;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .hero__wrap {
    padding-left: 0rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__wrap {
    padding-left: 0rem;
    flex-direction: column;
    gap: 0;
    align-items: initial;
  }
}

.hero__contents {
  display: flex;
  align-items: center;
  gap: 6.875rem;
}
@media screen and (max-width: 1024px) {
  .hero__contents {
    gap: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__contents {
    display: contents;
    flex-direction: column;
    gap: 0;
  }
}

.hero__content {
  max-width: 26.9375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero__content {
    max-width: 100%;
    display: contents;
  }
}

.hero__subtitle {
  font-weight: 700;
  letter-spacing: 0.17em;
  text-align: center;
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
}
@media screen and (max-width: 768px) {
  .hero__subtitle {
    font-size: 3.25vw;
  }
}

.hero__title {
  margin-top: 2rem;
  font-size: 2.0625rem;
  font-size: clamp(1.75rem, 1.392rem + 0.745vw, 2.063rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .hero__title {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__title {
    margin-top: 2.5vw;
    font-size: 6vw;
  }
}

.hero__highlight {
  color: #fff;
  position: relative;
  font-size: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .hero__highlight {
    font-size: 6vw;
  }
}
.hero__highlight::before {
  position: absolute;
  content: "";
  width: 3.9375rem;
  height: 3.25rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/green-bubble.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .hero__highlight::before {
    width: 12.25vw;
    height: 10vw;
  }
}

.hero__highlight-ls {
  letter-spacing: 0.17em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__highlight-fz {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .hero__highlight-fz {
    font-size: 7vw;
  }
}

.hero__logo {
  margin-top: 2rem;
  max-width: 21.125rem;
  width: 23.4722222222vw;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .hero__logo {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__logo {
    margin-top: 0;
    max-width: 38.75vw;
    width: 53vw;
  }
}

@media screen and (max-width: 768px) {
  .hero__image {
    display: contents;
  }
}

.hero__mv-img {
  max-width: 36.5rem;
  width: 100%;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .hero__mv-img {
    max-width: 80.5vw;
    margin-top: 5vw;
    order: 3;
    margin-left: auto;
  }
}

.hero__cta {
  margin-top: 3.125rem;
  text-align: center;
  max-width: 29rem;
  width: 32.2222222222vw;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .hero__cta {
    margin-top: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__cta {
    margin-top: 0rem;
    order: 4;
    max-width: 100%;
    width: 100%;
  }
}

.hero__cta-button {
  font-size: 1.25rem;
  font-size: clamp(1rem, 0.713rem + 0.596vw, 1.25rem);
  font-weight: 700;
  background-color: #FFE248;
  color: #595656;
  display: inline-block;
  max-width: 26.9375rem;
  width: 29.9305555556vw;
  text-align: center;
  padding: 2.09375rem 0.9375rem;
  border-radius: 100vw;
  letter-spacing: 0.09em;
  transition: background-color 0.3s;
}
@media screen and (max-width: 1024px) {
  .hero__cta-button {
    padding: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__cta-button {
    max-width: 100%;
    width: 100%;
    padding: 5.625vw 0.9375rem;
    font-size: 5vw;
  }
}
@media screen and (max-width: 375px) {
  .hero__cta-button {
    font-size: 1rem;
  }
}
.hero__cta-button:hover {
  opacity: 1;
  background-color: #FFB048;
}

.hero__cta-offer,
.hero__cta-no-contract {
  font-size: 0.875rem;
  font-size: clamp(0.625rem, 0.338rem + 0.596vw, 0.875rem);
  font-weight: 700;
  color: #00B148;
  border: 2px solid #00B148;
  border-radius: 36px;
  padding: 0.3125rem 1.375rem;
  background-color: #fff;
  z-index: 10;
  position: relative;
  top: 0.9375rem;
}
@media screen and (max-width: 1024px) {
  .hero__cta-offer,
.hero__cta-no-contract {
    top: 0.625rem;
    padding: 0.3125rem 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__cta-offer,
.hero__cta-no-contract {
    top: 0.75rem;
    font-size: 3.5vw;
    padding: 0.3125rem 1.375rem;
  }
}
@media screen and (max-width: 375px) {
  .hero__cta-offer,
.hero__cta-no-contract {
    font-size: 0.625rem;
  }
}

.hero__cta-no-contract {
  margin-left: 0.5625rem;
}

.hero__cta-span-01 {
  font-size: 1.75rem;
  font-size: clamp(1.25rem, 0.677rem + 1.192vw, 1.75rem);
  font-family: "Noto Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .hero__cta-span-01 {
    font-size: 7vw;
  }
}
@media screen and (max-width: 375px) {
  .hero__cta-span-01 {
    font-size: 1.5rem;
  }
}

.hero__cta-span-02 {
  font-size: 1.5rem;
  font-size: clamp(1.25rem, 0.963rem + 0.596vw, 1.5rem);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .hero__cta-span-02 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 375px) {
  .hero__cta-span-02 {
    font-size: 1.25rem;
  }
}

.problem {
  max-width: 75rem;
  width: 83.3333333333vw;
  max-height: 73.875rem;
  height: 82.0833333333vw;
  margin-inline: auto;
  background-image: url(../images/problem-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .problem {
    background-image: url(../images/problem-bg-sp.png);
    width: 100%;
    height: 296.75vw;
    max-height: 100%;
  }
}

.problem__inner {
  max-width: 67.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 4rem;
  padding-bottom: 9.0625rem;
  margin-inline: auto;
}
@media screen and (max-width: 1250px) {
  .problem__inner {
    padding-top: 1.5625rem;
    padding-bottom: 6.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .problem__inner {
    padding-top: 2rem;
    padding-bottom: 4.53125rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__inner {
    padding-top: 5vw;
    padding-bottom: 8vw;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media screen and (max-width: 375px) {
  .problem__inner {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.problem__title-wrap {
  text-align: center;
}

.problem__sub-title {
  font-size: 0.8125rem;
  font-size: clamp(0.625rem, 0.41rem + 0.447vw, 0.813rem);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #00B148;
  background-color: #fff;
  display: inline-block;
  padding: 0.34375rem 0.90625rem;
  border-radius: 51px;
}
@media screen and (max-width: 768px) {
  .problem__sub-title {
    font-size: 0.8125rem;
    font-size: 3.25vw;
  }
}

.problem__title {
  display: block;
  margin-top: 1.5rem;
  font-size: 2rem;
  font-size: clamp(1.25rem, 0.39rem + 1.788vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1250px) {
  .problem__title {
    margin-top: 1.1875rem;
  }
}
@media screen and (max-width: 1024px) {
  .problem__title {
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__title {
    margin-top: 6vw;
    font-size: 1.5rem;
    font-size: 6vw;
  }
}

.problem__items {
  max-width: 54rem;
  width: 60vw;
  margin-inline: auto;
  margin-top: 4.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
@media screen and (max-width: 1250px) {
  .problem__items {
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .problem__items {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__items {
    margin-top: 12vw;
    grid-template-columns: repeat(1, 1fr);
    width: 85vw;
    gap: 10vw;
  }
}
.problem__items::before {
  position: absolute;
  content: "";
  width: 1.875rem;
  height: 2.3125rem;
  bottom: -4.0625rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/arrow-down.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .problem__items::before {
    width: 0.9375rem;
    height: 1.03125rem;
    bottom: -1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__items::before {
    width: 7.5vw;
    height: 9.25vw;
    bottom: -12.5vw;
  }
}

.problem__item {
  padding-top: 4rem;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 30px 0 rgba(89, 86, 86, 0.15);
  max-height: 24.5625rem;
  height: 27.2916666667vw;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .problem__item {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__item {
    padding-top: initial;
    height: 35vw;
    display: grid;
    align-items: center;
  }
}

.problem__number {
  font-size: 1.1875rem;
  font-size: clamp(0.75rem, 0.249rem + 1.043vw, 1.188rem);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 4rem;
  width: 4.4444444444vw;
  max-height: 4rem;
  height: 4.4444444444vw;
  background-color: #06B0C7;
  border-radius: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  letter-spacing: 0.05em;
  border: 4px solid #fff;
}
@media screen and (max-width: 1024px) {
  .problem__number {
    top: -1rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__number {
    max-width: 12vw;
    width: 12vw;
    max-height: 12vw;
    height: 12vw;
    top: -6vw;
    font-size: 1.1875rem;
    font-size: 4.75vw;
  }
}

@media screen and (max-width: 768px) {
  .problem__body {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 6vw;
  }
}

.problem__text {
  font-size: 1rem;
  font-size: clamp(0.625rem, 0.195rem + 0.894vw, 1rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .problem__text {
    font-size: 0.9375rem;
    font-size: 3.75vw;
    text-align: left;
    width: 42.5vw;
  }
}

.problem__img.problem__img--01 {
  margin-top: 2.8125rem;
  max-width: 12.0625rem;
  width: 13.4027777778vw;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .problem__img.problem__img--01 {
    margin-top: 1.40625rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__img.problem__img--01 {
    width: 29vw;
    max-width: 100%;
    margin-top: 0rem;
  }
}

.problem__img.problem__img--02 {
  margin-top: 1.875rem;
  max-width: 10.8125rem;
  width: 12.0138888889vw;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .problem__img.problem__img--02 {
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__img.problem__img--02 {
    width: 29vw;
    max-width: 100%;
    margin-top: 0rem;
  }
}

.problem__img.problem__img--03 {
  margin-top: 2.625rem;
  max-width: 11.125rem;
  width: 12.3611111111vw;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .problem__img.problem__img--03 {
    margin-top: 1.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__img.problem__img--03 {
    width: 29vw;
    max-width: 100%;
    margin-top: 0rem;
  }
}

.problem__box {
  max-width: 65rem;
  width: 72.2222222222vw;
  margin-inline: auto;
  margin-top: 5.3125rem;
  max-height: 20.5rem;
  height: 22.7777777778vw;
  background-image: url(../images/prblem-bg-white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .problem__box {
    margin-top: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__box {
    background-image: url(../images/prblem-bg-white-sp.png);
    width: 85vw;
    max-height: 100%;
    height: 103.25vw;
    margin-top: 16.25vw;
  }
}

.problem__box-text-wrap {
  max-width: 26.375rem;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .problem__box-text-wrap {
    top: 0;
    transform: translateX(-50%);
    padding-top: 9.25vw;
  }
}

.problem__box-img-wrap {
  display: flex;
  align-items: end;
  justify-content: center;
  margin-top: -1.25rem;
  margin-bottom: 1.25rem;
  gap: 1.375rem;
}
@media screen and (max-width: 1024px) {
  .problem__box-img-wrap {
    margin-top: -0.625rem;
    margin-bottom: 0.625rem;
    gap: 0.6875rem;
  }
}
@media screen and (max-width: 768px) {
  .problem__box-img-wrap {
    margin-top: 0rem;
    margin-bottom: 2.5vw;
  }
}

.problem__box-img {
  max-width: 24.25rem;
  width: 26.9444444444vw;
}
@media screen and (max-width: 768px) {
  .problem__box-img {
    max-width: 56vw;
    width: 56vw;
  }
}

.problem__box-text {
  font-size: 2rem;
  font-size: clamp(1.125rem, 0.122rem + 2.086vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .problem__box-text {
    font-size: 6vw;
  }
}

.problem__box-ls {
  letter-spacing: -0.22em;
}

.reason {
  overflow-x: clip;
}

.reason__inner {
  max-width: 67.625rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  padding-top: 9.5rem;
  padding-bottom: 6rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .reason__inner {
    padding-top: 4.75rem;
    padding-bottom: 3rem;
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    padding-top: 20.5vw;
    padding-bottom: 8vw;
  }
}

.reason__title-wrap {
  text-align: center;
  position: relative;
}
.reason__title-wrap::before {
  position: absolute;
  content: "";
  max-width: 5rem;
  width: 5.5555555556vw;
  max-height: 5rem;
  height: 5.5555555556vw;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/face-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .reason__title-wrap::before {
    top: -3rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__title-wrap::before {
    max-width: 12.5vw;
    width: 12.5vw;
    max-height: 12.5vw;
    height: 12.5vw;
    top: -13.75vw;
  }
}

.reason__title-img {
  max-width: 10.5625rem;
  display: inline;
  margin-right: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .reason__title-img {
    max-width: 8.75rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__title-img {
    max-width: 29.25vw;
    margin-right: 0;
  }
}

.reason__title {
  font-size: 2rem;
  font-size: clamp(1.375rem, 0.659rem + 1.49vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .reason__title {
    font-size: 5.75vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 375px) {
  .reason__title {
    font-size: 5.25vw;
  }
}

.reason__contents {
  margin-top: 4.5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .reason__contents {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__contents {
    margin-top: 12vw;
  }
}
.reason__contents::before {
  position: absolute;
  content: "";
  max-width: 19.5rem;
  width: 21.6666666667vw;
  max-height: 19.5rem;
  height: 21.6666666667vw;
  top: -10rem;
  right: -8.125rem;
  background-image: url(../images/flower-green.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1250px) {
  .reason__contents::before {
    right: -3.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .reason__contents::before {
    top: -3.125rem;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .reason__contents::before {
    max-width: 50.75vw;
    width: 50.75vw;
    max-height: 50.75vw;
    height: 50.75vw;
    top: -28.75vw;
    right: -18.75vw;
  }
}
.reason__contents::after {
  position: absolute;
  content: "";
  max-width: 19.5rem;
  width: 21.6666666667vw;
  max-height: 19.5rem;
  height: 21.6666666667vw;
  bottom: 12.1875rem;
  right: -8.125rem;
  background-image: url(../images/flower-green.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1250px) {
  .reason__contents::after {
    right: -3.125rem;
  }
}
@media screen and (max-width: 1024px) {
  .reason__contents::after {
    bottom: 6.25rem;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .reason__contents::after {
    display: none;
  }
}

.reason__items {
  max-width: 65.125rem;
  width: 72.3611111111vw;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .reason__items {
    max-width: initial;
    width: initial;
  }
}

.reason__item {
  margin-top: 4.5rem;
  display: flex;
  gap: 3.5rem;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .reason__item {
    margin-top: 2.25rem;
    gap: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__item {
    margin-top: 8vw;
    flex-direction: column;
    gap: 6vw;
  }
}

.reason__item.reason__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .reason__item.reason__item--reverse {
    flex-direction: column;
  }
}

.reason__img-wrap {
  max-width: 32.1875rem;
  border-radius: 16px;
  position: relative;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .reason__img-wrap {
    max-width: 83.25vw;
    border-radius: 2.25vw;
  }
}
.reason__img-wrap::before {
  position: absolute;
  content: "";
  max-width: 6.4375rem;
  width: 7.1527777778vw;
  max-height: 6.4375rem;
  height: 7.1527777778vw;
  top: -3.4722222222vw;
  left: -2.25rem;
  background-image: url(../images/reason-icon-01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1250px) {
  .reason__img-wrap::before {
    left: -0.3125rem;
  }
}
@media screen and (max-width: 1024px) {
  .reason__img-wrap::before {
    top: -1.875rem;
    left: -0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__img-wrap::before {
    max-width: 18.5vw;
    width: 18.5vw;
    max-height: 18.5vw;
    height: 18.5vw;
    top: -5vw;
    left: -5vw;
  }
}

.reason__item:nth-child(2) .reason__img-wrap::before {
  left: initial;
  right: -2.25rem;
  background-image: url(../images/reason-icon-02.png);
}
@media screen and (max-width: 1250px) {
  .reason__item:nth-child(2) .reason__img-wrap::before {
    right: -0.3125rem;
  }
}
@media screen and (max-width: 1024px) {
  .reason__item:nth-child(2) .reason__img-wrap::before {
    top: -1.875rem;
    right: -0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .reason__item:nth-child(2) .reason__img-wrap::before {
    top: -5vw;
    left: -5vw;
  }
}

.reason__item:nth-child(3) .reason__img-wrap::before {
  background-image: url(../images/reason-icon-03.png);
}

.reason__img {
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .reason__img {
    border-radius: 2.25vw;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.1);
  }
}

.reason__text-wrap {
  max-width: 29.4375rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .reason__text-wrap {
    max-width: 100%;
  }
}

.reason__tag {
  font-size: 0.8125rem;
  font-size: clamp(0.625rem, 0.41rem + 0.447vw, 0.813rem);
  font-family: "Roboto", sans-serif;
  color: #00B148;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: #dbf8ba;
  display: inline-block;
  border-radius: 4px;
  padding: 0.203125rem 0.4375rem;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .reason__tag {
    font-size: 3.25vw;
  }
}

.reason__sub-title {
  margin-top: 1.125rem;
  font-size: 2rem;
  font-size: clamp(1.125rem, 0.122rem + 2.086vw, 2rem);
  font-weight: 700;
  color: #00B148;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .reason__sub-title {
    margin-top: 3.25vw;
    font-size: 6vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .reason__sub-title {
    font-size: 5.75vw;
  }
}
@media screen and (max-width: 375px) {
  .reason__sub-title {
    font-size: 5.5vw;
  }
}

.reason__text {
  margin-top: 1.125rem;
  font-size: 1rem;
  font-size: clamp(0.688rem, 0.329rem + 0.745vw, 1rem);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .reason__text {
    margin-top: 3.25vw;
    font-size: 3.75vw;
    letter-spacing: 0;
  }
}

.free {
  max-width: 75rem;
  width: 83.3333333333vw;
  margin-inline: auto;
  background-color: #2ECC6E;
  border-radius: 32px;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .free {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .free {
    width: 95vw;
  }
}
.free::before {
  position: absolute;
  content: "";
  max-width: 16.75rem;
  width: 18.6111111111vw;
  max-height: 17rem;
  height: 18.8888888889vw;
  top: 0.9375rem;
  right: 0.9375rem;
  background-image: url(../images/cta-bg-right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .free::before {
    max-width: 33.5vw;
    width: 33.5vw;
    max-height: 34vw;
    height: 34vw;
  }
}
.free::after {
  position: absolute;
  content: "";
  max-width: 16.75rem;
  width: 18.6111111111vw;
  max-height: 17rem;
  height: 18.8888888889vw;
  bottom: 0.9375rem;
  left: 0.9375rem;
  background-image: url(../images/cta-bg-left.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .free::after {
    display: none;
  }
}

.free__inner {
  max-width: 56.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .free__inner {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}
@media screen and (max-width: 768px) {
  .free__inner {
    padding-top: 7.5vw;
    padding-bottom: 8vw;
  }
}
.free__inner::before {
  position: absolute;
  content: "";
  max-width: 16.6875rem;
  width: 18.5416666667vw;
  max-height: 18.1875rem;
  height: 20.2083333333vw;
  bottom: -2.0625rem;
  right: -8.125rem;
  background-image: url(../images/character.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1250px) {
  .free__inner::before {
    right: -1.25rem;
  }
}
@media screen and (max-width: 1024px) {
  .free__inner::before {
    right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .free__inner::before {
    display: none;
  }
}

.free__bubble {
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  color: #00B148;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: #fff;
  border-radius: 100vw;
  text-align: center;
  max-width: 12.625rem;
  margin-inline: auto;
  padding: 0.375rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .free__bubble {
    max-width: 10.625rem;
  }
}
@media screen and (max-width: 768px) {
  .free__bubble {
    font-size: 4vw;
    max-width: 50.5vw;
  }
}
.free__bubble::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 0.5rem;
  bottom: -0.4375rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.free__title {
  margin-top: 1rem;
  font-size: 2rem;
  font-size: clamp(1.375rem, 0.659rem + 1.49vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .free__title {
    margin-top: 4vw;
    font-size: 5vw;
  }
}

.free__title--middle {
  font-size: 2.125rem;
  font-size: clamp(1.5rem, 0.784rem + 1.49vw, 2.125rem);
}
@media screen and (max-width: 768px) {
  .free__title--middle {
    font-size: 5vw;
  }
}

.free__title--big {
  font-size: 2.5rem;
  font-size: clamp(1.875rem, 1.159rem + 1.49vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .free__title--big {
    font-size: 5vw;
  }
}

.free__items {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .free__items {
    margin-top: 6vw;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
  }
}
.free__items::before {
  position: absolute;
  content: "";
  width: 2.6875rem;
  height: 2.6875rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/plus.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.free__item {
  background-color: #fff;
  border-radius: 8px;
  max-width: 15rem;
  width: 100%;
  max-height: 5.875rem;
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .free__item {
    max-width: 11.25rem;
    max-height: 4.375rem;
  }
}
@media screen and (max-width: 768px) {
  .free__item {
    max-width: 60vw;
    max-height: 23.5vw;
  }
}

.free__item-text {
  font-size: 1.25rem;
  font-size: clamp(1rem, 0.713rem + 0.596vw, 1.25rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .free__item-text {
    font-size: 5vw;
  }
}

.free__item-text--big {
  font-size: 2.5rem;
  font-size: clamp(2.125rem, 1.695rem + 0.894vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .free__item-text--big {
    font-size: 9vw;
  }
}

.free__item-text--small {
  font-size: 1.5rem;
  font-size: clamp(1.25rem, 0.963rem + 0.596vw, 1.5rem);
  margin-left: -0.1875rem;
}
@media screen and (max-width: 768px) {
  .free__item-text--small {
    font-size: 6vw;
  }
}

.free__item-text--middle {
  font-size: 2.0625rem;
  font-size: clamp(1.688rem, 1.258rem + 0.894vw, 2.063rem);
}
@media screen and (max-width: 768px) {
  .free__item-text--middle {
    font-size: 7vw;
  }
}

.bg-yellow2 {
  position: relative;
  z-index: 10;
}
.bg-yellow2::before {
  position: absolute;
  content: "";
  max-width: 3.9375rem;
  width: 4.375vw;
  max-height: 1rem;
  height: 1.1111111111vw;
  bottom: 0;
  right: 0;
  background-color: #FFF494;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .bg-yellow2::before {
    width: 2.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .bg-yellow2::before {
    max-width: 14vw;
    width: 13.75vw;
    height: 4vw;
  }
}

.bg-yellow3 {
  position: relative;
  z-index: 10;
}
.bg-yellow3::before {
  position: absolute;
  content: "";
  max-width: 3.9375rem;
  width: 4.375vw;
  max-height: 1rem;
  height: 1.1111111111vw;
  bottom: 0;
  right: 0;
  background-color: #FFF494;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .bg-yellow3::before {
    width: 2.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .bg-yellow3::before {
    max-width: 17.25vw;
    width: 20vw;
    height: 4.5vw;
  }
}

.bg-yellow3-hight {
  position: relative;
  z-index: 10;
}
.bg-yellow3-hight::before {
  position: absolute;
  content: "";
  width: 3.9375rem;
  height: 1.5625rem;
  bottom: 0;
  right: 0;
  background-color: #FFF494;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .bg-yellow3-hight::before {
    width: 2.5rem;
    height: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .bg-yellow3-hight::before {
    width: 15vw;
  }
}

.free__btn-caption {
  margin-top: 3rem;
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .free__btn-caption {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .free__btn-caption {
    margin-top: 6vw;
    font-size: 4vw;
    letter-spacing: 0;
  }
}

.free__btn-wrap {
  margin-top: 1rem;
  max-width: 31.5rem;
  width: 35vw;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .free__btn-wrap {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .free__btn-wrap {
    margin-top: 4vw;
    max-width: 85vw;
    width: 85vw;
  }
}

.free__btn {
  font-size: 1.5rem;
  font-size: clamp(1rem, 0.427rem + 1.192vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  background-color: #FFE248;
  color: #595656;
  display: inline-block;
  width: 100%;
  border-radius: 72px;
  padding: 2.09375rem;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s;
}
@media screen and (max-width: 1024px) {
  .free__btn {
    padding: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .free__btn {
    font-size: 5vw;
    padding: 1.125rem 0.9375rem;
  }
}
.free__btn:hover {
  opacity: 1;
  background-color: #FFB048;
}

.free__btn--big {
  font-size: 1.75rem;
  font-size: clamp(1.25rem, 0.677rem + 1.192vw, 1.75rem);
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .free__btn--big {
    font-size: 6.5vw;
  }
}

.custom {
  overflow-x: clip;
}

.custom__inner {
  max-width: 67.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 6rem;
  padding-bottom: 3.8125rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .custom__inner {
    padding-top: 3rem;
    padding-bottom: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .custom__inner {
    padding-top: 14.5vw;
    padding-bottom: 19.25vw;
  }
}

.custom__title-wrap {
  text-align: center;
  position: relative;
}
.custom__title-wrap::before {
  position: absolute;
  content: "";
  max-width: 5rem;
  width: 5.5555555556vw;
  max-height: 5rem;
  height: 5.5555555556vw;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/face-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .custom__title-wrap::before {
    top: -3rem;
  }
}
@media screen and (max-width: 768px) {
  .custom__title-wrap::before {
    max-width: 12.5vw;
    width: 12.5vw;
    max-height: 12.5vw;
    height: 12.5vw;
    top: -14.5vw;
  }
}

.custom__title-small {
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  color: #00B148;
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .custom__title-small {
    font-size: 4vw;
  }
}

.custom__title {
  margin-top: 1rem;
  font-size: 2rem;
  font-size: clamp(1.375rem, 0.659rem + 1.49vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  display: block;
}
@media screen and (max-width: 768px) {
  .custom__title {
    margin-top: 2vw;
    font-size: 5vw;
    letter-spacing: 0;
    max-width: 72.25vw;
    margin-inline: auto;
  }
}

.custom__slider.swiper {
  margin-top: 4.5rem;
  display: grid;
  max-width: 64.75rem;
  width: 71.9444444444vw;
}
@media screen and (max-width: 1024px) {
  .custom__slider.swiper {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .custom__slider.swiper {
    overflow: visible;
    margin-top: 10vw;
    max-width: 83.5vw;
    width: 83.5vw;
  }
}

.custom-slide.swiper-slide {
  border: 2px solid #ECECEC;
  border-radius: 16px;
  position: relative;
  padding: 2.5rem 2.375rem 2.6875rem;
}
@media screen and (max-width: 1024px) {
  .custom-slide.swiper-slide {
    padding: 2.5rem 1.1875rem 1.34375rem;
  }
}
@media screen and (max-width: 768px) {
  .custom-slide.swiper-slide {
    padding: 10vw;
  }
}

.custom__tag {
  background-color: #00B148;
  display: inline-block;
  position: absolute;
  top: -0.125rem;
  left: -0.125rem;
  border-radius: 16px 0 8px 0;
  padding: 0.25rem 1rem;
  color: #fff;
  font-size: 1rem;
  font-size: clamp(0.625rem, 0.195rem + 0.894vw, 1rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .custom__tag {
    font-size: 4vw;
  }
}

.custom__img {
  max-width: 5rem;
  width: 5.5555555556vw;
  max-height: 5rem;
  height: 5.5555555556vw;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .custom__img {
    max-width: 20vw;
    width: 20vw;
    max-height: 20vw;
    height: 20vw;
  }
}

.custom__sub-title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-size: clamp(0.875rem, 0.588rem + 0.596vw, 1.125rem);
  color: #00B148;
  font-weight: 700;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .custom__sub-title {
    margin-top: 5vw;
    font-size: 4.5vw;
  }
}

/* Safari */
@media screen and (max-width: 768px) {
  _::-webkit-full-page-media,
_:future,
:root .custom__sub-title {
    font-size: 2.6vw;
  }
}

.custom__text {
  margin-top: 0.9375rem;
  font-size: 0.9375rem;
  font-size: clamp(0.75rem, 0.535rem + 0.447vw, 0.938rem);
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .custom__text {
    margin-top: 3.75vw;
    font-size: 3.75vw;
  }
}

/* Safari */
@media screen and (max-width: 768px) {
  _::-webkit-full-page-media,
_:future,
:root .custom__text {
    font-size: 2.2vw;
  }
}

.custom-strong {
  font-weight: 700;
  background: linear-gradient(transparent 60%, yellow 60%);
}

.custom-slide__contents {
  position: relative;
}
@media screen and (max-width: 768px) {
  .custom-slide__contents {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

.custom-button-prev.swiper-button-prev {
  position: absolute;
  background-image: url(../images/slide-arrow-prev.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 3.375rem;
  width: 3.75vw;
  max-height: 3.375rem;
  height: 3.75vw;
  left: -1.6875rem;
}
@media screen and (max-width: 1250px) {
  .custom-button-prev.swiper-button-prev {
    left: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .custom-button-prev.swiper-button-prev {
    max-width: 13.5vw;
    width: 13.5vw;
    max-height: 13.5vw;
    height: 13.5vw;
    left: 1.75vw;
  }
}

.custom-button-next.swiper-button-next {
  position: absolute;
  background-image: url(../images/slide-arrow-next.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 3.375rem;
  width: 3.75vw;
  max-height: 3.375rem;
  height: 3.75vw;
  right: -1.6875rem;
}
@media screen and (max-width: 1250px) {
  .custom-button-next.swiper-button-next {
    right: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .custom-button-next.swiper-button-next {
    max-width: 13.5vw;
    width: 13.5vw;
    max-height: 13.5vw;
    height: 13.5vw;
    right: 1.75vw;
  }
}

.custom-pagination.swiper-pagination {
  position: absolute;
  bottom: -3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .custom-pagination.swiper-pagination {
    bottom: -1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .custom-pagination.swiper-pagination {
    bottom: -12.5vw;
  }
}

.custom-pagination .swiper-pagination-bullet {
  max-width: 0.9375rem;
  width: 1.0416666667vw;
  max-height: 0.9375rem;
  height: 1.0416666667vw;
  margin: 0 0.3125rem;
}
@media screen and (max-width: 768px) {
  .custom-pagination .swiper-pagination-bullet {
    max-width: 3.75vw;
    width: 3.75vw;
    max-height: 3.75vw;
    height: 3.75vw;
  }
}

.custom-pagination .swiper-pagination-bullet-active {
  background: #06C755;
  border: 0.5rem solid #fff;
  outline: 0.125rem solid #06C755;
  outline-offset: -0.1875rem;
  max-width: 1.8125rem;
  width: 2.0138888889vw;
  max-height: 1.8125rem;
  height: 2.0138888889vw;
}
@media screen and (max-width: 1024px) {
  .custom-pagination .swiper-pagination-bullet-active {
    border: 0.5555555556vw solid #fff;
    outline: 0.1388888889vw solid #06C755;
    outline-offset: -0.2083333333vw;
  }
}
@media screen and (max-width: 768px) {
  .custom-pagination .swiper-pagination-bullet-active {
    border: 2vw solid #fff;
    outline: 0.5vw solid #06C755;
    outline-offset: -0.75vw;
    max-width: 7.25vw;
    width: 7.25vw;
    max-height: 7.25vw;
    height: 7.25vw;
  }
}

.custom-button-next.swiper-button-next::after,
.custom-button-prev.swiper-button-prev::after {
  color: transparent;
}

.function {
  margin-top: 3.875rem;
  background-color: #ECFEDC;
  border-radius: 96px;
  max-width: 75rem;
  margin-inline: auto;
  overflow-x: clip;
}
@media screen and (max-width: 1024px) {
  .function {
    margin-top: 1.9375rem;
    border-radius: 48px;
  }
}
@media screen and (max-width: 768px) {
  .function {
    margin-top: 8vw;
    margin-left: 2.5vw;
    margin-right: 2.5vw;
    border-radius: 6vw;
  }
}

.function__inner {
  max-width: 67.375rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 10.5rem;
  padding-bottom: 6rem;
  margin-inline: auto;
}
@media screen and (max-width: 1250px) {
  .function__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .function__inner {
    padding-top: 5.25rem;
    padding-bottom: 3rem;
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .function__inner {
    padding-top: 20vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.function__title-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: relative;
}
.function__title-wrap::before {
  position: absolute;
  content: "";
  max-width: 5rem;
  width: 5.5555555556vw;
  max-height: 5rem;
  height: 5.5555555556vw;
  top: -4.625rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/face-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .function__title-wrap::before {
    top: -1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .function__title-wrap::before {
    max-width: 12.5vw;
    width: 12.5vw;
    max-height: 12.5vw;
    height: 12.5vw;
    top: -12.5vw;
  }
}

.function__title-img {
  display: inline-block;
  max-width: 16.75rem;
  width: 18.6111111111vw;
}
@media screen and (max-width: 768px) {
  .function__title-img {
    max-width: 32.5vw;
    width: 32.5vw;
  }
}

.function__title {
  font-size: 2.125rem;
  font-size: clamp(1.5rem, 0.784rem + 1.49vw, 2.125rem);
  font-weight: 700;
  display: inline-block;
  margin-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .function__title {
    font-size: 6vw;
    margin-left: 2vw;
  }
}

.function__title-big {
  font-size: 4.625rem;
  font-size: clamp(3.375rem, 1.942rem + 2.981vw, 4.625rem);
  font-family: "Roboto", sans-serif;
  color: #06C755;
  margin: 0 0.3125rem;
}
@media screen and (max-width: 768px) {
  .function__title-big {
    font-size: 10vw;
  }
}

.function__items {
  margin-top: 4.5rem;
}
@media screen and (max-width: 1024px) {
  .function__items {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .function__items {
    margin-top: 6vw;
  }
}

.function__item {
  margin-top: 3.8125rem;
  display: flex;
  gap: 3.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .function__item {
    margin-top: 1.875rem;
    gap: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .function__item {
    margin-top: 6vw;
    flex-direction: column;
  }
}

.function__item.function__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .function__item.function__item--reverse {
    flex-direction: column;
  }
}

.function__item:nth-child(1),
.function__item:nth-child(3) {
  position: relative;
  z-index: 300;
}
.function__item:nth-child(1)::before,
.function__item:nth-child(3)::before {
  position: absolute;
  content: "";
  max-width: 19.5rem;
  width: 21.6666666667vw;
  max-height: 19.5rem;
  height: 21.6666666667vw;
  top: -7.1875rem;
  left: -2.875rem;
  background-image: url(../images/flower-white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .function__item:nth-child(1)::before,
.function__item:nth-child(3)::before {
    top: -5rem;
    left: -3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .function__item:nth-child(1)::before,
.function__item:nth-child(3)::before {
    display: none;
  }
}

.function__item:nth-child(2) {
  position: relative;
  z-index: 300;
}
.function__item:nth-child(2)::before {
  position: absolute;
  content: "";
  max-width: 19.5rem;
  width: 21.6666666667vw;
  max-height: 19.5rem;
  height: 21.6666666667vw;
  top: -7.1875rem;
  right: -2.875rem;
  background-image: url(../images/flower-white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .function__item:nth-child(2)::before {
    top: -5rem;
    right: -3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .function__item:nth-child(2)::before {
    display: none;
  }
}

.function__img-wrap {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .function__img-wrap {
    max-width: 80.5vw;
    width: 80.5vw;
  }
}

.function__img-wrap.function__img-wrap--movie {
  background-color: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  max-height: 21.5rem;
  height: 23.8888888889vw;
  display: grid;
  justify-content: center;
  align-items: center;
  aspect-ratio: 511/344;
  object-fit: cover;
  height: auto;
}

.function__movie {
  max-width: 30.375rem;
  width: 33.75vw;
  max-height: 14.3125rem;
  height: 15.9027777778vw;
  background-color: #f5f5f5;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}
@media screen and (max-width: 768px) {
  .function__movie {
    max-width: 78.75vw;
    width: 78.75vw;
    max-height: 37vw;
    height: 37vw;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

video {
  filter: drop-shadow(0px 0px #000);
}

.function__img {
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  aspect-ratio: 511/344;
  object-fit: cover;
  height: auto;
}

.function__text-wrap {
  max-width: 29.4375rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .function__text-wrap {
    max-width: 85vw;
  }
}

.function__sub-title {
  font-size: 2rem;
  font-size: clamp(1.375rem, 0.659rem + 1.49vw, 2rem);
  font-weight: 700;
  color: #00B148;
  padding-left: 3.5625rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .function__sub-title {
    padding-left: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .function__sub-title {
    font-size: 5.5vw;
    padding-left: 9.5vw;
  }
}
.function__sub-title::before {
  position: absolute;
  content: "";
  max-width: 3.0625rem;
  width: 3.4027777778vw;
  max-height: 3.0625rem;
  height: 3.4027777778vw;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/check.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .function__sub-title::before {
    max-width: 7.5vw;
    width: 7.5vw;
    max-height: 7.5vw;
    height: 7.5vw;
  }
}

@media screen and (max-width: 768px) {
  .function__sub-title.function__sub-title--ls {
    letter-spacing: -0.03em;
  }
}

.function__text {
  margin-top: 1.125rem;
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .function__text {
    margin-top: 0.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .function__text {
    font-size: 3.75vw;
  }
}

.support__inner {
  max-width: 67.375rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .support__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .support__inner {
    padding-top: 35.25vw;
    padding-bottom: 8vw;
  }
}

.support__title-wrap {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.support__title-wrap::before {
  position: absolute;
  content: "";
  max-width: 6rem;
  width: 6.6666666667vw;
  max-height: 6.5625rem;
  height: 7.2916666667vw;
  bottom: 0;
  right: -7.1875rem;
  background-image: url(../images/character-smile.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .support__title-wrap::before {
    right: -3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .support__title-wrap::before {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    top: -31vw;
    bottom: initial;
    max-width: 24vw;
    width: 24vw;
    max-height: 26.25vw;
    height: 26.25vw;
  }
}

.support__title {
  font-size: 1.5rem;
  font-size: clamp(0.875rem, 0.159rem + 1.49vw, 1.5rem);
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 768px) {
  .support__title {
    font-size: 5vw;
  }
}

.support__title-big {
  margin-top: 0.3125rem;
  font-size: 2rem;
  font-size: clamp(1.25rem, 0.39rem + 1.788vw, 2rem);
  font-weight: 700;
  color: #00B148;
  display: block;
}
@media screen and (max-width: 768px) {
  .support__title-big {
    font-size: 6.5vw;
  }
}

.support__items {
  margin-top: 4.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  max-width: 64.875rem;
  width: 72.0833333333vw;
  margin-inline: auto;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .support__items {
    margin-top: 1.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .support__items {
    margin-top: 8vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25vw;
    max-width: 90vw;
    width: 90vw;
  }
}
@media screen and (max-width: 375px) {
  .support__items {
    max-width: 87.5vw;
    width: 87.5vw;
  }
}

.support__item {
  border: 2px solid #ECECEC;
  border-radius: 16px;
  padding: 1rem 0.9375rem 1.5625rem;
}
@media screen and (max-width: 768px) {
  .support__item {
    border: 1px solid #ECECEC;
    border-radius: 2.25vw;
    padding: 2vw 7vw 3.75vw;
  }
}

.support__sub-title {
  max-height: 4.875rem;
  height: 5.4166666667vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-size: clamp(0.75rem, 0.177rem + 1.192vw, 1.25rem);
  font-weight: 700;
  color: #00B148;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .support__sub-title {
    max-height: 10.5vw;
    height: 10.5vw;
    font-size: 2.75vw;
  }
}

.step {
  max-width: 75rem;
  width: 83.3333333333vw;
  margin-inline: auto;
  background-color: #2ECC6E;
  border-radius: 32px;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .step {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .step {
    width: 95vw;
  }
}
.step::before {
  position: absolute;
  content: "";
  max-width: 16.75rem;
  width: 18.6111111111vw;
  max-height: 17rem;
  height: 18.8888888889vw;
  top: 0.9375rem;
  right: 0.9375rem;
  background-image: url(../images/cta-bg-right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .step::before {
    max-width: 33.5vw;
    width: 33.5vw;
    max-height: 34vw;
    height: 34vw;
  }
}
.step::after {
  position: absolute;
  content: "";
  max-width: 16.75rem;
  width: 18.6111111111vw;
  max-height: 17rem;
  height: 18.8888888889vw;
  bottom: 0.9375rem;
  left: 0.9375rem;
  background-image: url(../images/cta-bg-left.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .step::after {
    display: none;
  }
}

.step__inner {
  max-width: 63.4375rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 11rem;
  padding-bottom: 5rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .step__inner {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .step__inner {
    padding-top: 22vw;
    padding-bottom: 8vw;
  }
}

.step__title-wrap {
  text-align: center;
  position: relative;
  position: relative;
}
@media screen and (max-width: 768px) {
  .step__title-wrap {
    font-size: 5vw;
  }
}
.step__title-wrap::before {
  position: absolute;
  content: "";
  max-width: 5rem;
  width: 5.5555555556vw;
  max-height: 5rem;
  height: 5.5555555556vw;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/face-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .step__title-wrap::before {
    top: -3rem;
  }
}
@media screen and (max-width: 768px) {
  .step__title-wrap::before {
    max-width: 12.5vw;
    width: 12.5vw;
    max-height: 12.5vw;
    height: 12.5vw;
    top: -14.5vw;
  }
}

.step__title-small {
  display: block;
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .step__title-small {
    font-size: 4vw;
  }
}

.step__title {
  margin-top: 1rem;
  font-size: 2rem;
  font-size: clamp(1.125rem, 0.122rem + 2.086vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  display: block;
}
@media screen and (max-width: 1024px) {
  .step__title {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .step__title {
    margin-top: 2vw;
    font-size: 5vw;
  }
}

.step__items {
  margin-top: 2.5rem;
  display: grid;
  gap: 4.875rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 60.9375rem;
  width: 67.7083333333vw;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .step__items {
    margin-top: 1.25rem;
    gap: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .step__items {
    margin-top: 6vw;
    grid-template-columns: repeat(1, 1fr);
    gap: 4vw;
  }
}

.step__item:not(:last-child) .step__img-wrap {
  position: relative;
}
.step__item:not(:last-child) .step__img-wrap::before {
  position: absolute;
  content: "";
  max-width: 2.125rem;
  width: 2.3611111111vw;
  max-height: 1.875rem;
  height: 2.0833333333vw;
  top: 50%;
  transform: translateY(-50%);
  right: -3.75rem;
  background-image: url(../images/arrow-next.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .step__item:not(:last-child) .step__img-wrap::before {
    right: -1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .step__item:not(:last-child) .step__img-wrap::before {
    display: none;
  }
}

.step__text-wrap {
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .step__text-wrap {
    margin-top: 3vw;
  }
}

.step__text {
  font-size: 1.25rem;
  font-size: clamp(0.75rem, 0.177rem + 1.192vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .step__text {
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .step__text {
    font-size: 4vw;
  }
}

.free__btn-wrap.step__btn-wrap {
  margin-top: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .free__btn-wrap.step__btn-wrap {
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .free__btn-wrap.step__btn-wrap {
    margin-top: 6vw;
  }
}

.plan {
  background-color: #ECFEDC;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .plan {
    max-width: 95vw;
    width: 95vw;
    margin-inline: auto;
    border-radius: 6vw;
  }
}

.plan__inner {
  max-width: 67.125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 12rem;
  padding-bottom: 6rem;
  margin-inline: auto;
}
@media screen and (max-width: 1250px) {
  .plan__inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .plan__inner {
    padding-top: 6rem;
    padding-bottom: 3rem;
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__inner {
    padding-top: 22vw;
    padding-bottom: 8vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.plan__title-wrap {
  text-align: center;
  position: relative;
}
.plan__title-wrap::before {
  position: absolute;
  content: "";
  max-width: 5rem;
  width: 5.5555555556vw;
  max-height: 5rem;
  height: 5.5555555556vw;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/face-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .plan__title-wrap::before {
    top: -3rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__title-wrap::before {
    max-width: 12.5vw;
    width: 12.5vw;
    max-height: 12.5vw;
    height: 12.5vw;
    top: -14.5vw;
  }
}

.plan__title-small {
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  color: #00B148;
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .plan__title-small {
    font-size: 4vw;
  }
}

.plan__title {
  margin-top: 1rem;
  font-size: 2rem;
  font-size: clamp(1.375rem, 0.659rem + 1.49vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  display: block;
}
@media screen and (max-width: 768px) {
  .plan__title {
    margin-top: 2vw;
    font-size: 5vw;
    letter-spacing: 0;
    max-width: 72.25vw;
    margin-inline: auto;
  }
}

.plan__read-contents {
  margin-top: 4.5rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .plan__read-contents {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__read-contents {
    margin-top: 6vw;
  }
}
.plan__read-contents::before {
  position: absolute;
  content: "";
  max-width: 19.5rem;
  width: 21.6666666667vw;
  max-height: 19.5rem;
  height: 21.6666666667vw;
  top: -9.875rem;
  right: -8.5625rem;
  background-image: url(../images/flower-white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.plan__read {
  background-color: #dbf8ba;
  border-radius: 16px;
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .plan__read {
    padding: 8vw 6vw;
  }
}

.plan__read-head {
  font-size: 1.25rem;
  font-size: clamp(0.813rem, 0.311rem + 1.043vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan__read-head {
    font-size: 4vw;
  }
}

.plan__read-wrap {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .plan__read-wrap {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__read-wrap {
    margin-top: 8vw;
    flex-direction: column;
    gap: 6vw;
  }
}

.plan__read-box {
  background-color: #fff;
  border-radius: 8px;
  max-width: 29.0625rem;
  width: 32.2916666667vw;
  max-height: 5.875rem;
  height: 6.5277777778vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .plan__read-box {
    max-height: 7.5rem;
    height: 8.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .plan__read-box {
    max-width: 73vw;
    width: 73vw;
    max-height: 23.5vw;
    height: 23.5vw;
  }
}

.plan__text {
  font-size: 1.25rem;
  font-size: clamp(0.813rem, 0.311rem + 1.043vw, 1.25rem);
  font-weight: 700;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .plan__text {
    font-size: 5vw;
  }
}

.plan__text-big {
  font-size: 2.5rem;
  font-size: clamp(1.5rem, 0.354rem + 2.385vw, 2.5rem);
  color: #06C755;
}
@media screen and (max-width: 768px) {
  .plan__text-big {
    font-size: 10vw;
  }
}

.plan__text-small {
  font-size: 1.5rem;
  font-size: clamp(1rem, 0.427rem + 1.192vw, 1.5rem);
  color: #06C755;
}
@media screen and (max-width: 768px) {
  .plan__text-small {
    font-size: 6vw;
  }
}

.plan__text-middle {
  font-size: 2.1875rem;
  font-size: clamp(1.375rem, 0.444rem + 1.937vw, 2.188rem);
  color: #06C755;
}
@media screen and (max-width: 768px) {
  .plan__text-middle {
    font-size: 8.75vw;
  }
}

.plan__price {
  margin-top: 4.5rem;
}
@media screen and (max-width: 1024px) {
  .plan__price {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__price {
    margin-top: 6vw;
  }
}

.plan__price-initial-wrap {
  background-color: #fff;
  border-radius: 8px;
  max-height: 5.875rem;
  height: 6.5277777778vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .plan__price-initial-wrap {
    max-height: 7.5rem;
    height: 8.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .plan__price-initial-wrap {
    max-height: 23.5vw;
    height: 23.5vw;
  }
}

.plan__price-initial {
  font-size: 1.875rem;
  font-size: clamp(1.125rem, 0.265rem + 1.788vw, 1.875rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan__price-initial {
    font-size: 5vw;
  }
}

.plan__price-initial-big {
  font-size: 3.5rem;
  font-size: clamp(2.188rem, 0.683rem + 3.13vw, 3.5rem);
  color: #06C755;
  margin-right: -0.4375rem;
  line-height: 0.1;
}
@media screen and (max-width: 1024px) {
  .plan__price-initial-big {
    margin-right: -0.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__price-initial-big {
    font-size: 10vw;
  }
}

.plan__price-initial-middle {
  font-size: 1.5rem;
  font-size: clamp(0.875rem, 0.159rem + 1.49vw, 1.5rem);
  color: #06C755;
}
@media screen and (max-width: 768px) {
  .plan__price-initial-middle {
    font-size: 6vw;
  }
}

.plan__price-items {
  margin-top: 6.1875rem;
  display: grid;
  gap: 1.0625rem;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .plan__price-items {
    margin-top: 4.375rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__price-items {
    margin-top: 16.75vw;
    gap: 11vw;
    grid-template-columns: repeat(1, 1fr);
  }
}
.plan__price-items::before {
  position: absolute;
  content: "";
  max-width: 2.6875rem;
  width: 2.9861111111vw;
  max-height: 2.6875rem;
  height: 2.9861111111vw;
  top: -4.6875rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/plus-white.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .plan__price-items::before {
    top: -3.125rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__price-items::before {
    max-width: 10.75vw;
    width: 10.75vw;
    max-height: 10.75vw;
    height: 10.75vw;
    top: -14vw;
  }
}

.plan__price-item {
  background-color: #fff;
  border-radius: 16px;
  border: 2px solid #ECECEC;
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 1024px) {
  .plan__price-item {
    padding: 1.25rem 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__price-item {
    padding: 10vw 12vw;
  }
}

.plan__price-item.plan__price-item--standard {
  border: 4px solid #06C755;
  position: relative;
}

.plan__recommend {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 2rem;
  background-color: #06C755;
  color: #fff;
  font-size: clamp(0.625rem, 0.195rem + 0.894vw, 1rem);
  font-weight: 700;
  border-radius: 100vw;
}
@media screen and (max-width: 1024px) {
  .plan__recommend {
    top: -0.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__recommend {
    font-size: 4vw;
    top: -4vw;
  }
}

.plan__en {
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  font-weight: 700;
  color: #06B0C7;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .plan__en {
    font-size: 4vw;
  }
}

.plan__en.plan__en--standard {
  color: #06C755;
}

.plan__en.plan__en--pro {
  color: #FF758A;
}

.plan__name {
  font-size: 1.5rem;
  font-size: clamp(1.125rem, 0.695rem + 0.894vw, 1.5rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan__name {
    margin-top: 0.5vw;
    font-size: 6vw;
  }
}

.plan__cost {
  font-size: 2rem;
  font-size: clamp(1.5rem, 0.927rem + 1.192vw, 2rem);
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #ECECEC;
}
@media screen and (max-width: 768px) {
  .plan__cost {
    font-size: 8vw;
  }
}

.plan__cost-middle {
  font-size: 1.5rem;
  font-size: clamp(1.125rem, 0.695rem + 0.894vw, 1.5rem);
}
@media screen and (max-width: 768px) {
  .plan__cost-middle {
    font-size: 6vw;
  }
}

.plan__cost-small {
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  font-weight: 400;
  padding-left: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .plan__cost-small {
    padding-left: 0.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__cost-small {
    font-size: 4vw;
  }
}

.plan__delivery-wrap {
  margin-top: 1.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .plan__delivery-wrap {
    margin-top: 5.5vw;
  }
}

.plan__delivery-title {
  font-size: 0.875rem;
  font-size: clamp(0.688rem, 0.473rem + 0.447vw, 0.875rem);
  font-weight: 500;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .plan__delivery-title {
    padding-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__delivery-title {
    font-size: 3.5vw;
    padding-left: 8vw;
  }
}
.plan__delivery-title::before {
  position: absolute;
  content: "";
  max-width: 1.5rem;
  width: 1.6666666667vw;
  max-height: 1.5rem;
  height: 1.6666666667vw;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/message.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .plan__delivery-title::before {
    max-width: 6vw;
    width: 6vw;
    max-height: 6vw;
    height: 6vw;
  }
}

.plan__delivery-number {
  font-size: 1.25rem;
  font-size: clamp(1rem, 0.713rem + 0.596vw, 1.25rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .plan__delivery-number {
    font-size: 5vw;
  }
}

.plan__delivery-number-small {
  font-size: 0.875rem;
  font-size: clamp(0.75rem, 0.607rem + 0.298vw, 0.875rem);
  font-weight: 500;
  margin-left: 0.5rem;
  margin-right: 1.3125rem;
}
@media screen and (max-width: 1024px) {
  .plan__delivery-number-small {
    margin-left: 0.25rem;
    margin-right: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__delivery-number-small {
    font-size: 3.5vw;
    margin-left: 2vw;
    margin-right: 5.75vw;
  }
}

.plan__function-wrap {
  margin-top: 1.4375rem;
}
@media screen and (max-width: 1024px) {
  .plan__function-wrap {
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__function-wrap {
    margin-top: 5.75vw;
  }
}

.plan__function-head {
  font-size: 0.875rem;
  font-size: clamp(0.75rem, 0.607rem + 0.298vw, 0.875rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .plan__function-head {
    font-size: 3.5vw;
  }
}

.plan__function-items {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .plan__function-items {
    margin-top: 4vw;
  }
}

.plan__function-item {
  font-size: 0.875rem;
  font-size: clamp(0.75rem, 0.607rem + 0.298vw, 0.875rem);
  font-weight: 500;
  padding-left: 2.125rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .plan__function-item {
    padding-left: 1.0625rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__function-item {
    font-size: 3.5vw;
    padding-left: 8.5vw;
  }
}
.plan__function-item::before {
  position: absolute;
  content: "";
  max-width: 1.125rem;
  width: 1.25vw;
  max-height: 1.0625rem;
  height: 1.1805555556vw;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/check-plan.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .plan__function-item::before {
    max-width: 4.5vw;
    width: 4.5vw;
    max-height: 4.25vw;
    height: 4.25vw;
  }
}

.plan__function-item:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .plan__function-item:not(:first-child) {
    margin-top: 2vw;
  }
}

.plan__function-text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .plan__function-text {
    margin-top: 2vw;
    font-size: 3.25vw;
  }
}

.plan__caption-items {
  margin-top: 4.5rem;
}
@media screen and (max-width: 1024px) {
  .plan__caption-items {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__caption-items {
    margin-top: 6vw;
  }
}

.plan__caption-item {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 2;
  letter-spacing: -0.05em;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
}
@media screen and (max-width: 768px) {
  .plan__caption-item {
    font-size: 3.25vw;
    color: #878787;
  }
}

.plan__caption-link {
  position: relative;
  padding-right: 1.125rem;
  text-decoration: underline;
  color: #595656;
}
@media screen and (max-width: 768px) {
  .plan__caption-link {
    padding-right: 4.5vw;
    color: #878787;
  }
}
.plan__caption-link::after {
  position: absolute;
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  bottom: 0.1875rem;
  right: 0;
  background-image: url(../images/link-icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .plan__caption-link::after {
    max-width: 3.5vw;
    width: 3.5vw;
    max-height: 3.5vw;
    height: 3.5vw;
  }
}

.faq__inner {
  max-width: 67.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 12rem;
  padding-bottom: 6rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .faq__inner {
    padding-top: 5.375rem;
    padding-bottom: 3rem;
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding-top: 22.5vw;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.faq__title {
  font-size: 2.125rem;
  font-size: clamp(1.375rem, 0.515rem + 1.788vw, 2.125rem);
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq__title {
    font-size: 5vw;
  }
}
.faq__title::before {
  position: absolute;
  content: "";
  max-width: 5rem;
  width: 5.5555555556vw;
  max-height: 5rem;
  height: 5.5555555556vw;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/face-icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .faq__title::before {
    top: -3rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__title::before {
    max-width: 12.5vw;
    width: 12.5vw;
    max-height: 12.5vw;
    height: 12.5vw;
    top: -14.5vw;
  }
}

.faq__contents {
  margin-top: 4.5rem;
  max-width: 65rem;
  width: 72.2222222222vw;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .faq__contents {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__contents {
    max-width: initial;
    width: initial;
    margin-top: 8vw;
  }
}

.faq__wrap {
  margin-top: 4.5rem;
  background-color: #ECFEDC;
  border: 4px solid #ECFEDC;
  border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .faq__wrap {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__wrap {
    margin-top: 2vw;
  }
}

.faq__head {
  font-size: 1.375rem;
  font-size: clamp(1.125rem, 0.838rem + 0.596vw, 1.375rem);
  font-weight: 700;
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1rem 2.5rem;
}
@media screen and (max-width: 1024px) {
  .faq__head {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__head {
    font-size: 4vw;
    padding: 4vw 2.5vw;
    gap: 4vw;
  }
}

.faq__body {
  background-color: #fff;
  border-radius: 0 0 16px 16px;
  padding: 1rem 2.5rem 1.5rem;
  line-height: 2.4;
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.598rem + 0.447vw, 1rem);
  font-weight: 500;
  letter-spacing: -0.00625rem;
}
@media screen and (max-width: 1024px) {
  .faq__body {
    padding: 1rem 1.25rem 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .faq__body {
    font-size: 4vw;
    padding: 4vw 7.5vw 1.5rem;
    letter-spacing: 0.5px;
  }
}

.faq__body.faq__body--ls {
  letter-spacing: -0.01875rem;
}
.faq__icon {
  max-width: 3.5625rem;
  width: 3.9583333333vw;
  max-height: 3.5625rem;
  height: 3.9583333333vw;
  background-color: #06C755;
  display: inline-block;
  border-radius: 100vw;
  display: grid;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  font-size: clamp(1rem, -0.146rem + 2.385vw, 2rem);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .faq__icon {
    max-width: 12.25vw;
    width: 12.25vw;
    max-height: 12.25vw;
    height: 12.25vw;
    font-size: 6vw;
  }
}

.faq__link {
  color: #595656;
  text-decoration: underline;
  position: relative;
  display: inline;
  padding-right: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .faq__link {
    padding-right: 4.75vw;
  }
}
.faq__link::after {
  position: absolute;
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  bottom: 0.1875rem;
  right: initial;
  background-image: url(../images/link-icon.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .faq__link::after {
    max-width: 3.5vw;
    width: 3.5vw;
    max-height: 3.5vw;
    height: 3.5vw;
    margin-left: 1.25vw;
  }
}

.cta {
  max-width: 75rem;
  width: 83.3333333333vw;
  margin-inline: auto;
  background-color: #2ECC6E;
  border-radius: 32px;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .cta {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .cta {
    width: 95vw;
  }
}
.cta::before {
  position: absolute;
  content: "";
  max-width: 16.75rem;
  width: 18.6111111111vw;
  max-height: 17rem;
  height: 18.8888888889vw;
  top: 0.9375rem;
  right: 0.9375rem;
  background-image: url(../images/cta-bg-right.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .cta::before {
    max-width: 33.5vw;
    width: 33.5vw;
    max-height: 34vw;
    height: 34vw;
  }
}
.cta::after {
  position: absolute;
  content: "";
  max-width: 16.75rem;
  width: 18.6111111111vw;
  max-height: 17rem;
  height: 18.8888888889vw;
  bottom: 0.9375rem;
  left: 0.9375rem;
  background-image: url(../images/cta-bg-left.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .cta::after {
    display: none;
  }
}

.cta__inner {
  max-width: 55.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .cta__inner {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__inner {
    padding-top: 1.875rem;
    padding-bottom: 2rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.cta__title {
  font-size: 2rem;
  font-size: clamp(1.625rem, 1.195rem + 0.894vw, 2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 5vw;
    letter-spacing: 0.08em;
  }
}

.cta__btn-head {
  margin-top: 3rem;
  font-size: 1.25rem;
  font-size: clamp(1rem, 0.713rem + 0.596vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .cta__btn-head {
    margin-top: 6vw;
    font-size: 4vw;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 375px) {
  .cta__btn-head {
    font-size: 0.75rem;
  }
}

.hero__cta.hero__cta--cta {
  margin-top: 0;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .hero__cta.hero__cta--cta {
    margin-top: 0.625rem;
    max-width: 85vw;
  }
}

.hero__cta-button.hero__cta-button--cta {
  box-shadow: 0 4px 24px 0 rgba(89, 86, 86, 0.2);
}
@media screen and (max-width: 768px) {
  .hero__cta-button.hero__cta-button--cta {
    box-shadow: none;
  }
}

.cta__more-head {
  margin-top: 3rem;
  font-size: 1.25rem;
  font-size: clamp(1rem, 0.713rem + 0.596vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__more-head {
    margin-top: 6vw;
    font-size: 4vw;
  }
}

.cta__btn-wrap {
  margin-top: 1rem;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .cta__btn-wrap {
    margin-top: 4vw;
    flex-direction: column;
  }
}

.cta__btn {
  max-width: 25.75rem;
  width: 28.6111111111vw;
  background-color: #fff;
  color: #00B148;
  font-size: 1.25rem;
  font-size: clamp(1rem, 0.713rem + 0.596vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  padding: 1.125rem 0.625rem;
  border-radius: 72px;
  border: 3px solid #fff;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
@media screen and (max-width: 768px) {
  .cta__btn {
    font-size: 5vw;
    max-width: 85vw;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 375px) {
  .cta__btn {
    font-size: 1rem;
  }
}
.cta__btn:hover {
  opacity: 1;
  background-color: #fff;
  color: #FFB048;
  border: 3px solid #FFB048;
}

.cta__btn.cta__btn--contact {
  color: #fff;
  background-color: transparent;
}
.cta__btn.cta__btn--contact:hover {
  background-color: #fff;
  color: #FFB048;
  border: 3px solid #FFB048;
}

.footer {
  background-color: #F8F8F8;
}

.footer__inner {
  max-width: 67.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-left: 2.125rem;
    padding-right: 2.125rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__menu-contents {
    display: contents;
  }
}

.footer__menu {
  display: flex;
  border-bottom: 1px solid #595656;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    flex-direction: column;
    display: grid;
    padding-bottom: 8vw;
  }
}

@media screen and (max-width: 1024px) {
  .footer__menu-left {
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .footer__menu-left {
    margin-top: 7.5vw;
    order: 2;
    text-align: center;
  }
}

.footer__menu-logo {
  max-width: 10.625rem;
}
@media screen and (max-width: 768px) {
  .footer__menu-logo {
    max-width: 42.5vw;
    margin-inline: auto;
  }
}

.footer__menu-access {
  margin-top: 1rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .footer__menu-access {
    margin-top: 0rem;
    font-size: 3.5vw;
  }
}

.footer__menu-center {
  max-width: 10.1875rem;
  width: 100%;
  margin-left: 5.25rem;
}
@media screen and (max-width: 1024px) {
  .footer__menu-center {
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .footer__menu-center {
    margin-left: 0rem;
    max-width: 100%;
  }
}

.footer__menu-head {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer__menu-head {
    font-size: 4vw;
  }
}

.footer__menu-items {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer__menu-items {
    margin-top: 2.5vw;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5vw;
    align-items: baseline;
  }
}

.footer__menu-item:not(:first-child) {
  margin-top: 0.75rem;
}

.footer__menu-link {
  font-size: 0.9375rem;
  color: #595656;
  padding-left: 0.875rem;
  position: relative;
  transition: color 0.3s;
}
.footer__menu-link:hover {
  color: #06C755;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .footer__menu-link {
    font-size: 3.75vw;
  }
}
.footer__menu-link::before {
  position: absolute;
  content: "";
  width: 0.375rem;
  height: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../images/arrow-gray.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .footer__menu-link::before {
    width: 1.5vw;
    height: 2.5vw;
  }
}

.footer__menu-right {
  max-width: 19.75rem;
  width: 100%;
  margin-left: 10.375rem;
}
@media screen and (max-width: 1024px) {
  .footer__menu-right {
    margin-left: 4.875rem;
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .footer__menu-right {
    display: none;
    margin-left: 0rem;
  }
}

.footer__btn-item:not(:first-child) {
  margin-top: 0.9375rem;
}

.footer__btn {
  display: inline-block;
  width: 100%;
  border: 2px solid #06C755;
  background-color: #fff;
  border-radius: 8px;
  font-weight: 700;
  color: #06C755;
  text-align: center;
  padding: 0.875rem;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.footer__btn:hover {
  opacity: 1;
  color: #FFB048;
  border: 2px solid #FFB048;
}

.footer__btn.footer__btn--green {
  background-color: #06C755;
  color: #fff;
}
.footer__btn.footer__btn--green:hover {
  background-color: #fff;
  color: #FFB048;
}

.footer__nav-items {
  margin-inline: auto;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__nav-items {
    margin-top: 8vw;
    margin-inline: initial;
    max-width: 50vw;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
  }
}
@media screen and (max-width: 375px) {
  .footer__nav-items {
    max-width: 57.5vw;
  }
}

.footer__nav-item {
  padding-left: 2rem;
  padding-right: 2rem;
  border-left: 1px solid #595656;
  height: 0.9375rem;
  line-height: 15px;
}
@media screen and (max-width: 768px) {
  .footer__nav-item {
    border-right: 1px solid #595656;
    padding-left: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-item:nth-child(2) {
    padding-left: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-item:nth-child(3) {
    margin-top: 6vw;
    padding-left: 0;
    border-left: none;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-item:nth-child(4) {
    margin-top: 6vw;
    padding-left: 0;
    border-left: none;
    border-right: none;
  }
}

.footer__nav-item:first-child {
  border-left: none;
  padding-left: 0rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-item:first-child {
    border-right: none;
  }
}

.footer__nav-item:last-child {
  padding-right: 0rem;
}

.footer__nav-link {
  font-size: 0.9375rem;
  color: #595656;
  transition: color 0.3s;
}
.footer__nav-link:hover {
  color: #06C755;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .footer__nav-link {
    font-size: 3.75vw;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  width: 100%;
  display: inline-block;
  background-color: #06C755;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

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

.text-green {
  color: #06C755;
}

.text-deepgreen {
  color: #00B148;
}

.text-blue {
  color: #06B0C7;
}

.text-yellow2 {
  color: #FFF494;
}

.page-content {
  max-width: 90rem;
  margin-inline: auto;
}

.top-btn-wrap {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  max-width: 4.75rem;
  width: 5.2777777778vw;
  max-height: 4.75rem;
  height: 5.2777777778vw;
  z-index: 1000;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .top-btn-wrap {
    bottom: 0.625rem;
    right: 0.625rem;
    max-width: 9.5vw;
    width: 9.5vw;
    max-height: 9.5vw;
    height: 9.5vw;
  }
}

.top-btn-wrap.active {
  opacity: 1;
  visibility: visible;
}

.top-btn:hover {
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */