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

ul,
ol {
  padding: 0;
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #435250;
}

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

.l-main {
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

#service,
#price,
#profile,
#flow,
#contact {
  scroll-margin-top: 120px;
}
@media screen and (max-width: 768px) {
  #service,
  #price,
  #profile,
  #flow,
  #contact {
    scroll-margin-top: 80px;
  }
}

.header__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-inline: 20px;
    height: 80px;
  }
}

.header__logo {
  font-family: "Josefin Sans", sans-serif;
  font-size: 36px;
  font-weight: 300;
  color: #435250;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .header__logo {
    font-size: 28px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .header__nav {
    gap: 16px;
  }
}

.header__navList {
  display: flex;
  align-items: center;
  gap: 55px;
}
@media (max-width: 768px) {
  .header__navList {
    display: none;
  }
}

.header__navLink {
  font-size: 16px;
  font-weight: 500;
  color: #435250;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 45px;
  border-radius: 10px;
  background-color: #feb116;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .header__cta {
    width: 140px;
    height: 40px;
    font-size: 14px;
  }
}

.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
}

.header__burgerBar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #435250;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger.is-open .header__burgerBar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger.is-open .header__burgerBar:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open .header__burgerBar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__drawer {
  display: none;
}
@media (max-width: 768px) {
  .header__drawer {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
}

@media (max-width: 768px) {
  .header__drawer.is-open {
    max-height: 320px;
  }
}

.header__drawerList {
  display: flex;
  flex-direction: column;
}

.header__drawerLink {
  display: block;
  padding-block: 16px;
  padding-inline: 20px;
  font-size: 16px;
  font-weight: 500;
  color: #435250;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(67, 82, 80, 0.1);
}

@media screen and (min-width: 768.02px) and (max-width: 1439.98px) {
  .header__inner {
    padding-inline: 40px;
  }
  .header__nav {
    gap: 20px;
  }
  .header__navList {
    gap: 20px;
  }
}
@media screen and (min-width: 768.02px) and (max-width: 1023.98px) {
  .header__inner {
    padding-inline: 24px;
  }
  .header__logo {
    font-size: 26px;
  }
  .header__nav {
    gap: 14px;
  }
  .header__navList {
    gap: 14px;
  }
  .header__navLink {
    font-size: 14px;
  }
  .header__cta {
    width: 150px;
    height: 44px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header__inner {
    padding-inline: 16px;
  }
  .header__logo {
    font-size: 24px;
  }
  .header__nav {
    gap: 10px;
  }
  .header__cta {
    width: 130px;
    height: 38px;
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .header__inner {
    padding-inline: 14px;
  }
  .header__logo {
    font-size: 20px;
  }
  .header__nav {
    gap: 8px;
  }
  .header__cta {
    width: 116px;
    height: 36px;
    font-size: 12px;
  }
}
.fv {
  position: relative;
  width: 100%;
  min-height: 826px;
  background-color: #d9d9d9;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    min-height: 0;
  }
}

.fv__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/fv-bg.png");
  background-image: image-set(url("../images/fv-bg.webp") type("image/webp"), url("../images/fv-bg.png") type("image/png"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.fv__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 120px;
  padding-block: 215px 139px;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding-inline: 20px;
    padding-block: 120px 60px;
  }
}

.fv__body {
  display: flex;
  align-items: center;
  gap: 75px;
}
@media screen and (max-width: 1024px) {
  .fv__body {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.fv__text {
  flex-shrink: 1;
  min-width: 0;
  width: 462px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .fv__text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}

.fv__title {
  font-size: 50px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 32px;
    white-space: normal;
  }
}
@media screen and (max-width: 375px) {
  .fv__title {
    font-size: 27px;
    line-height: 1.25;
  }
}

.fv__lead {
  font-size: 20px;
  font-weight: 400;
  color: #444444;
  line-height: 1.448;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .fv__lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .fv__lead {
    font-size: 17px;
    line-height: 1.8;
  }
}

.fv__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  max-width: 100%;
  height: 60px;
  border-radius: 10px;
  background-color: #feb816;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv__cta {
    font-size: 18px;
  }
}

.fv__photo {
  flex-shrink: 1;
  min-width: 0;
  width: 662px;
  max-width: 100%;
  aspect-ratio: 662/441;
}
@media screen and (max-width: 1024px) {
  .fv__photo {
    width: 100%;
    height: auto;
  }
}

.fv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768.02px) and (max-width: 1439.98px) {
  .fv__inner {
    padding-inline: clamp(40px, 19.2vw - 156px, 120px);
  }
  .fv__title {
    white-space: normal;
    font-size: clamp(32px, 4.6vw - 16px, 50px);
  }
  .fv__lead {
    font-size: clamp(16px, 1.45vw - 1px, 20px);
  }
}
@media screen and (min-width: 768.02px) and (max-width: 1024px) {
  .fv__title {
    white-space: nowrap;
  }
  .fv__title br {
    display: none;
  }
}
.voice {
  margin-top: 80px;
  padding-inline: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .voice {
    margin-top: 40px;
    padding-inline: 20px;
    gap: 32px;
  }
}

.voice__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.voice__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #feb816;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

.voice__title {
  font-size: 40px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .voice__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .voice__title {
    font-size: 22px;
    line-height: 1.35;
  }
}

.voice__list {
  display: flex;
  justify-content: center;
  gap: 44px;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  .voice__list {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .voice__list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

.voice__card {
  flex-shrink: 1;
  width: 370.667px;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  border: 1px solid #c7cbcb;
  border-radius: 20px;
  background-color: #ffffff;
}

.voice__cardHead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.voice__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background-color: #e1eeeb;
  overflow: hidden;
}

.voice__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice__role {
  font-size: 15px;
  font-weight: 400;
  color: #435250;
  line-height: 1.73;
  text-align: center;
}

.voice__cardBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.voice__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #d6f3ed;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 700;
  color: #435250;
  line-height: 1.18;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .voice__tag {
    font-size: 18px;
  }
}

.voice__text {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #435250;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 375px) {
  .voice__text {
    font-size: 17px;
    line-height: 1.8;
  }
}

.worries {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .worries {
    margin-top: 40px;
  }
}

.worries__top {
  width: 100%;
  background-color: #f7f9f9;
  clip-path: polygon(0 0, 100% 0, 100% 90.8%, 50% 100%, 0 90.8%);
}
@media screen and (max-width: 1024px) {
  .worries__top {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
  }
}

.worries__topInner {
  position: relative;
  max-width: 1440px;
  height: 835px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .worries__topInner {
    height: auto;
    padding-block: 60px 130px;
  }
}

.worries__head {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .worries__head {
    position: static;
    transform: none;
    margin-bottom: 40px;
  }
}

.worries__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #feb816;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

.worries__title {
  font-size: 40px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .worries__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .worries__title {
    font-size: 22px;
    line-height: 1.35;
  }
}

.worries__titleBrSp {
  display: none;
}

@media (max-width: 430px) {
  .worries__titleBrSp {
    display: inline;
  }
}
.brSp {
  display: none;
}

.brPc {
  display: inline;
}

@media (max-width: 600px) {
  .brSp {
    display: inline;
  }
  .brPc {
    display: none;
  }
}
.worries__bubble {
  position: absolute;
  display: inline-block;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 500;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .worries__bubble {
    position: static;
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .worries__bubble {
    font-size: 18px;
  }
}

.worries__bubble--1 {
  left: 21.667%;
  top: 212px;
}

.worries__bubble--2 {
  left: 50.972%;
  top: 184px;
}

.worries__bubble--3 {
  left: 8.264%;
  top: 348px;
}

.worries__bubble--4 {
  left: 70.347%;
  top: 319px;
}

.worries__bubble--5 {
  left: 19.028%;
  top: 497px;
}

.worries__bubble--6 {
  left: 61.597%;
  top: 453px;
}

.worries__illust {
  position: absolute;
  left: 41.111%;
  top: 294px;
  width: 256px;
  height: 256px;
}
@media screen and (max-width: 1024px) {
  .worries__illust {
    position: static;
    margin-inline: auto;
    margin-block: 24px;
  }
}

.worries__illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.worries__lead {
  position: absolute;
  top: 660px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 26px;
  font-weight: 500;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .worries__lead {
    position: static;
    transform: none;
    width: 100%;
    padding-inline: 20px;
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .worries__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .worries__lead {
    font-size: 17px;
    line-height: 1.8;
  }
}

.worries__bottom {
  position: relative;
  z-index: 2;
  max-width: 909px;
  margin-inline: auto;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .worries__bottom {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 768px) {
  .worries__bottom {
    margin-top: 24px;
    gap: 32px;
  }
}

.worries__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: -35px;
  margin-bottom: 35px;
}

.worries__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #435250;
}

.worries__assure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.worries__assureTitle {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #435250;
  line-height: 1.59;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .worries__assureTitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .worries__assureTitle {
    font-size: 19px;
    line-height: 1.45;
  }
}

.worries__assureTitle::before,
.worries__assureTitle::after {
  content: "";
  width: 2px;
  height: 28px;
  background-color: #435250;
}

.worries__assureTitle::before {
  transform: rotate(-22deg);
}

.worries__assureTitle::after {
  transform: rotate(22deg);
}

.worries__msg {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: #ffffff;
  border: 2px solid #6cb6b0;
  border-radius: 20px;
  padding-block: 37px;
  padding-inline: 52px;
}
@media (max-width: 480px) {
  .worries__msg {
    padding-block: 24px;
    padding-inline: 24px;
  }
}

.worries__msgText {
  font-size: 34px;
  font-weight: 700;
  color: #435250;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .worries__msgText {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .worries__msgText {
    font-size: 20px;
  }
}

.worries__msgAccent {
  color: #feb816;
}

.solution__features {
  position: relative;
  z-index: 1;
  background-color: #eaf9f6;
  margin-top: -131px;
  padding-block: 210px 83px;
  padding-inline: 120px;
}
@media screen and (max-width: 1440px) {
  .solution__features {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 768px) {
  .solution__features {
    margin-top: 0;
    padding-block: 80px 60px;
    padding-inline: 20px;
  }
}

.solution__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .solution__head {
    margin-bottom: 40px;
  }
}

.solution__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #feb816;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
}

.solution__title {
  font-size: 36px;
  font-weight: 700;
  color: #435250;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .solution__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  .solution__title {
    font-size: 22px;
    line-height: 1.35;
  }
}

.solution__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .solution__cards {
    margin-bottom: 0;
  }
}

.solution__row {
  display: flex;
  justify-content: center;
  gap: 28px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .solution__row {
    flex-direction: column;
    align-items: center;
  }
}

.solution__card {
  width: 380px;
  max-width: 100%;
  min-height: 457px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px 24px 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .solution__card {
    min-height: 0;
    padding: 24px 20px 32px;
  }
}

.solution__row:first-child .solution__card {
  width: 384px;
  max-width: 100%;
}

.solution__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  padding-inline: 30px;
  background-color: #6cb6b0;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.solution__cardTitle {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 700;
  color: #435250;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 375px) {
  .solution__cardTitle {
    font-size: 19px;
  }
}

.solution__icon {
  margin-top: 40px;
  width: 160px;
  height: 160px;
}
@media (max-width: 600px) {
  .solution__icon {
    margin-top: 16px;
  }
}

.solution__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution__cardText {
  margin-top: 16px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #435250;
  line-height: 1.64;
  letter-spacing: 0.03em;
}

.solution__cta {
  position: relative;
  z-index: 0;
  width: 100%;
  background-color: #6cb6b0;
  padding-block: 49px;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .solution__cta {
    padding-block: 32px;
    padding-inline: 16px;
  }
}

.solution__ctaInner {
  position: relative;
  width: 738px;
  max-width: 100%;
  margin-inline: auto;
  padding-block: 51px;
  padding-inline: 80px;
  background-color: #ffffff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .solution__ctaInner {
    padding-block: 40px;
    padding-inline: 20px;
  }
}

.solution__ctaBody {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.solution__ctaTitle {
  font-size: 30px;
  font-weight: 700;
  color: #435250;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .solution__ctaTitle {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .solution__ctaTitle {
    font-size: 20px;
  }
}

.solution__ctaTitleAccent {
  color: #3a7b75;
}

.solution__ctaSub {
  font-size: 18px;
  font-weight: 500;
  color: #435250;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .solution__ctaSub {
    font-size: 15px;
  }
}

.solution__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: #feb816;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .solution__ctaBtn {
    font-size: 18px;
  }
}

.solution__ctaIllust {
  position: absolute;
  right: 35px;
  bottom: -1px;
  width: 135px;
}
@media screen and (max-width: 1024px) {
  .solution__ctaIllust {
    position: static;
    margin-top: 24px;
    width: 120px;
  }
}

.solution__ctaIllust img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768.02px) and (max-width: 1439.98px) {
  .voice {
    padding-inline: clamp(40px, 40px + 80 * (100vw - 768px) / 672, 120px);
  }
  .voice__tag {
    word-break: auto-phrase;
    font-size: clamp(18px, 18px + 4 * (100vw - 768px) / 672, 22px);
  }
  .voice__role {
    word-break: auto-phrase;
    font-size: clamp(13px, 13px + 2 * (100vw - 768px) / 672, 15px);
  }
  .voice__text {
    word-break: auto-phrase;
  }
  .worries__msgText {
    word-break: auto-phrase;
    font-size: clamp(22px, 22px + 12 * (100vw - 768px) / 672, 34px);
  }
  .worries__lead {
    word-break: auto-phrase;
    font-size: clamp(18px, 18px + 8 * (100vw - 768px) / 672, 26px);
  }
  .solution__cardTitle {
    word-break: auto-phrase;
    text-wrap: balance;
    font-size: clamp(16px, 16px + 6 * (100vw - 768px) / 672, 22px);
  }
  .solution__cardText {
    word-break: auto-phrase;
  }
  .solution__ctaTitle {
    word-break: auto-phrase;
    text-wrap: balance;
    font-size: clamp(22px, 22px + 8 * (100vw - 768px) / 672, 30px);
  }
  .voice__title,
  .worries__title,
  .solution__title {
    text-wrap: balance;
  }
}
@media screen and (min-width: 600px) and (max-width: 768px) {
  .solution__features {
    margin-top: -99px;
    padding-block: 179px 60px;
  }
  .solution__ctaInner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 44px;
    padding-inline: 40px;
  }
  .solution__ctaTitle {
    word-break: auto-phrase;
    text-wrap: balance;
  }
  .solution__ctaIllust {
    position: absolute;
    top: auto;
    right: 40px;
    bottom: -1px;
    margin-top: 0;
    width: 110px;
  }
}
@media screen and (min-width: 768.02px) and (max-width: 1024px) {
  .solution__ctaInner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 44px;
    padding-inline: 40px;
  }
  .solution__ctaTitle {
    word-break: auto-phrase;
    text-wrap: balance;
  }
  .solution__ctaIllust {
    position: absolute;
    top: auto;
    right: 24px;
    bottom: -1px;
    margin-top: 0;
    width: 110px;
  }
}
@media (max-width: 599.98px) {
  .solution__features {
    margin-top: -164px;
    padding-block: 244px 60px;
  }
}
@media (max-width: 480px) {
  .solution__ctaBtn {
    font-size: 15px;
    padding: 12px 24px;
  }
  .solution__ctaInner {
    padding-block: 24px;
  }
}
@media (max-width: 600px) {
  .solution__ctaIllust {
    margin-top: 14px;
    width: 92px;
  }
}
@media (max-width: 425px) {
  .solution__ctaIllust {
    display: none;
  }
}
.price {
  margin-top: 80px;
  padding-inline: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .price {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 768px) {
  .price {
    margin-top: 40px;
    padding-inline: 20px;
    gap: 32px;
  }
}

.price__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #feb816;
  line-height: 1;
  letter-spacing: 0.03em;
}

.price__title {
  font-size: 40px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .price__title {
    font-size: 22px;
    line-height: 1.35;
  }
}

.price__tableWrap {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .price__tableWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.price__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
@media screen and (max-width: 1024px) {
  .price__table {
    min-width: 900px;
  }
}

.price__corner,
.price__rowHead {
  width: 259px;
}

.price__colHead,
.price__cell {
  width: 315px;
}

.price__corner,
.price__colHead,
.price__rowHead,
.price__cell {
  height: 75px;
  padding: 17px;
  border: 1px solid #dfe6e6;
  text-align: center;
  vertical-align: middle;
}

.price__corner {
  background-color: #ffffff;
  border-color: transparent;
}

.price__colHead {
  background-color: #6cb6b0;
  border-color: #6cb6b0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.448;
  letter-spacing: 0.03em;
}

.price__rowHead {
  background-color: #ddeeed;
  font-size: 20px;
  font-weight: 500;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
}

.price__rowHeadNote {
  display: block;
  font-size: 14px;
}

.price__cell {
  font-weight: 500;
  color: #435250;
  letter-spacing: 0.03em;
}

.price__cell--strong {
  font-size: 20px;
  line-height: 1.448;
}

.price__cell--desc {
  height: 93px;
  font-size: 16px;
  line-height: 1.448;
}

.price__cellNote {
  display: block;
  font-size: 12px;
  line-height: 1.5;
}

.price__cell--mark {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 600px) {
  .price {
    padding-inline: 16px;
  }
  .price__table {
    min-width: 540px;
  }
  .price__corner,
  .price__rowHead {
    width: 150px;
  }
  .price__colHead,
  .price__cell {
    width: 130px;
  }
  .price__corner,
  .price__colHead,
  .price__rowHead,
  .price__cell {
    padding: 8px;
    height: auto;
  }
  .price__colHead,
  .price__rowHead {
    font-size: 15px;
  }
  .price__cell--strong,
  .price__cell--mark {
    font-size: 15px;
  }
  .price__cell--desc {
    height: auto;
    font-size: 13px;
  }
  .price__cellNote {
    font-size: 11px;
  }
  .price__rowHeadNote {
    font-size: 12px;
  }
}
.profile {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 83px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  background-image: url("../images/profile-bg.png");
  background-image: image-set(url("../images/profile-bg.webp") type("image/webp"), url("../images/profile-bg.png") type("image/png"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .profile {
    padding-inline: 30px;
  }
}
@media screen and (max-width: 768px) {
  .profile {
    margin-top: 40px;
    padding-top: 0;
    padding-bottom: 0;
    gap: 32px;
    padding-inline: 20px;
  }
}
@media screen and (max-width: 375px) {
  .profile {
    padding-inline: 0;
  }
}

.profile__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.profile__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #feb816;
  line-height: 1;
  letter-spacing: 0.03em;
}

.profile__title {
  font-size: 40px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .profile__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .profile__title {
    font-size: 22px;
    line-height: 1.35;
  }
}

.profile__card {
  position: relative;
  z-index: 1;
  width: 1030px;
  max-width: 100%;
  background-color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
}

.profile__top {
  display: flex;
  gap: 100px;
  padding: 87px 85px 61px;
}
@media screen and (max-width: 1024px) {
  .profile__top {
    gap: 60px;
    padding: 87px 64px 61px;
    justify-content: center;
  }
}
@media screen and (max-width: 830px) {
  .profile__top {
    gap: 28px;
    padding-inline: 36px;
  }
}
@media screen and (max-width: 768px) {
  .profile__top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 24px 32px;
  }
}

.profile__photo {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}

.profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile__intro {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .profile__intro {
    flex: 0 1 auto;
  }
}

.profile__name {
  font-size: 26px;
  font-weight: 700;
  color: #435250;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 375px) {
  .profile__name {
    font-size: 19px;
    line-height: 1.45;
  }
}

.profile__role {
  margin-left: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.profile__textWrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile__text {
  font-size: 18px;
  font-weight: 500;
  color: #435250;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 375px) {
  .profile__text {
    font-size: 17px;
    line-height: 1.8;
  }
}

@media (max-width: 600px) {
  .profile__top {
    gap: 20px;
    padding: 12px 20px 24px;
  }
  .profile__photo {
    width: 200px;
    height: 200px;
  }
}
.profile__detail {
  display: flex;
  gap: 24px;
  padding: 26px 46px 25px 47px;
  background-color: #f4f9f8;
}
@media screen and (max-width: 768px) {
  .profile__detail {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 600px) {
  .profile__detail {
    flex-direction: column;
  }
}

.profile__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.profile__col:first-child {
  width: 419px;
}

.profile__col:last-child {
  width: 494px;
}

@media screen and (max-width: 1024px) {
  .profile__col .profile__item {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .profile__col:first-child,
  .profile__col:last-child {
    width: auto;
    flex: 1 1 0;
  }
}
@media screen and (max-width: 600px) {
  .profile__col:first-child,
  .profile__col:last-child {
    width: 100%;
    flex: 0 1 auto;
  }
}
@media screen and (max-width: 375px) {
  .profile__col .profile__item {
    font-size: 14px;
  }
}
.profile__tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  height: 31px;
  padding-inline: 10px;
  background-color: #ffffff;
  border: 1px solid #6cb6b0;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #6cb6b0;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 375px) {
  .profile__tag {
    font-size: 16px;
  }
}

.profile__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile__item {
  font-size: 16px;
  font-weight: 500;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.02em;
}

.area {
  margin-top: 80px;
  padding-inline: 248px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .area {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 768px) {
  .area {
    margin-top: 40px;
    padding-inline: 20px;
    gap: 30px;
  }
}

.area__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.area__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #feb816;
  line-height: 1;
  letter-spacing: 0.03em;
}

.area__title {
  font-size: 40px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .area__title {
    font-size: 28px;
  }
}

.area__card {
  width: 100%;
  padding: 40px 46px;
  background-color: #f4f9f8;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .area__card {
    padding: 24px 20px;
    border-radius: 20px;
    gap: 24px;
  }
}

.area__textWrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.area__text {
  font-size: 16px;
  font-weight: 400;
  color: #435250;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .area__text {
    font-size: 15px;
    line-height: 1.9;
  }
}

.area__accent {
  font-weight: 700;
  color: #3a7b75;
}

.area__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid #dfe6e6;
}
@media screen and (max-width: 768px) {
  .area__list {
    padding-top: 20px;
    gap: 14px;
  }
}

.area__row {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .area__row {
    flex-direction: column;
    gap: 4px;
  }
}

.area__term {
  flex-shrink: 0;
  width: 200px;
  font-size: 16px;
  font-weight: 700;
  color: #6cb6b0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .area__term {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  .area__term {
    width: auto;
  }
}

.area__desc {
  margin: 0;
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  color: #435250;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .area__desc {
    font-size: 15px;
  }
}

.flow {
  margin-top: 80px;
  padding-inline: 248px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .flow {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 768px) {
  .flow {
    margin-top: 40px;
    padding-inline: 20px;
    gap: 32px;
  }
}

.flow__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.flow__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #feb816;
  line-height: 1;
  letter-spacing: 0.03em;
}

.flow__title {
  font-size: 40px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .flow__title {
    font-size: 22px;
    line-height: 1.35;
  }
}

.flow__steps {
  position: relative;
  width: 944px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
@media (max-width: 600px) {
  .flow__steps {
    gap: 48px;
  }
}

.flow__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 25px;
  bottom: -115px;
  width: 1px;
  background-color: #9ba5a4;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .flow__step:not(:last-child)::before {
    left: 20px;
    top: 20px;
    bottom: -110px;
  }
}
@media (max-width: 600px) {
  .flow__step:not(:last-child)::before {
    bottom: -68px;
  }
}

.flow__step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.flow__num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #6cb6b0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 31px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .flow__num {
    width: 40px;
    height: 40px;
    padding-bottom: 4px;
    font-size: 24px;
  }
}

.flow__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 1px;
}

.flow__stepTitle {
  font-size: 30px;
  font-weight: 700;
  color: #6cb6b0;
  line-height: 1.448;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .flow__stepTitle {
    font-size: 22px;
  }
}
@media screen and (max-width: 375px) {
  .flow__stepTitle {
    font-size: 19px;
    line-height: 1.45;
  }
}

.flow__stepText {
  font-size: 20px;
  font-weight: 500;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .flow__stepText {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .flow__stepText {
    font-size: 17px;
    line-height: 1.8;
  }
}

.cta {
  margin-top: 80px;
  padding-inline: 264px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .cta {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 768px) {
  .cta {
    margin-top: 40px;
    padding-inline: 20px;
    gap: 32px;
  }
}

.cta__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .cta__head {
    gap: 32px;
  }
}

.cta__headTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta__label {
  font-family: "Josefin Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #feb816;
  line-height: 1;
  letter-spacing: 0.03em;
}

.cta__title {
  font-size: 40px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  .cta__title {
    font-size: 22px;
    line-height: 1.35;
  }
}

.cta__lead {
  font-size: 20px;
  font-weight: 500;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__lead {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .cta__lead {
    font-size: 17px;
    line-height: 1.8;
  }
}
.cta__lead .cta__leadAccent {
  color: #3a7b75;
  font-weight: 700;
}

.cta__form {
  width: 912px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.cta__fields {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.cta__field {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta__labelRow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta__fieldLabel {
  font-size: 16px;
  font-weight: 700;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
}

.cta__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding-inline: 6px;
  background-color: #ff0000;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.03em;
}

.cta__input {
  width: 100%;
  height: 58px;
  padding: 10px 19px;
  background-color: #ffffff;
  border: 1px solid #c4c0c0;
  border-radius: 3px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
}

.cta__input::placeholder {
  color: #c4c0c0;
}

.cta__input--email {
  font-size: 17px;
}

.cta__textarea {
  height: 177px;
  font-size: 17px;
  resize: vertical;
}

.cta__notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta__noteTitle {
  font-size: 17px;
  font-weight: 700;
  color: #435250;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.cta__noteText {
  font-size: 17px;
  font-weight: 400;
  color: #435250;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .cta__noteText {
    font-size: 14px;
  }
}

.cta__noteList {
  display: flex;
  flex-direction: column;
}

.cta__noteItem {
  font-size: 16px;
  font-weight: 500;
  color: #435250;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .cta__noteItem {
    font-size: 14px;
  }
}

.cta__agree {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
  color: #435250;
  line-height: 1.448;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.cta__checkbox {
  flex-shrink: 0;
  margin-top: 4px;
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 16px;
  border: 1px solid #b7b7b7;
  border-radius: 3px;
  background-color: #ffffff;
  cursor: pointer;
}

.cta__checkbox:checked {
  background-color: #6cb6b0;
  border-color: #6cb6b0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

.cta__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 359px;
  max-width: 100%;
  height: 60px;
  margin-inline: auto;
  background-color: #feb816;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.cta__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cta__submitIcon {
  width: 24px;
  height: 24px;
}

.cta__status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.cta__status.is-sending {
  display: block;
  background-color: rgba(67, 82, 80, 0.06);
  color: #435250;
}

.cta__status.is-ok {
  display: block;
  background-color: rgba(254, 184, 22, 0.12);
  color: #435250;
}

.cta__status.is-ng {
  display: block;
  background-color: rgba(214, 69, 69, 0.1);
  color: #b03030;
}

.footer {
  margin-top: 80px;
  padding-block: 6px 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 40px;
  }
}

.footer__copy {
  font-family: "Josefin Sans", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #435250;
  line-height: 1;
  letter-spacing: 0.03em;
}
