@charset "UTF-8";
@media screen and (min-width:768px) {
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
}

:root {
  --montserrat: 'Montserrat', 'Noto Sans JP', sans-serif;
  --corp-green: #56BFBF;
  --corp-orange: #ED6E21;
  --bg-gray: #F3F6F7;
  --easing: cubic-bezier(.45, 0, 0, 1);
  --vwPC: calc(100vw / 1400);
  --vwSP: calc(100vw / 390);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 100px 80px 0;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 100px 15px 0;
  }
}

.breadcrumb-link {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.55px;
  line-height: 1.5;
  text-decoration: underline;
  color: #000;
}

.breadcrumb-separator {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #dadada;
}

.breadcrumb-current {
  font-size: 11px;
  letter-spacing: 0.55px;
  line-height: 1.5;
  color: #8b8b8b;
}

/* Hero Section */
.sec--hero {
  position: relative;
  padding: 80px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .sec--hero {
    padding: 50px 15px;
  }
}

.sec--hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: 0;
  display: inline-block;
  width: 69.9285714286%;
  aspect-ratio: 979/341;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22979%22%20height%3D%22341%22%20viewBox%3D%220%200%20979%20341%22%20fill%3D%22none%22%3E%0A%3Cpath%20d%3D%22M1009.04%20323.159C939.245%20222.62%20852.806%20194.448%20712.845%20203.79C602.41%20211.16%20475.643%20276.119%20273.325%20163.859C80.3836%2056.8028%2072.8025%20-54.085%2027.6028%20-142.507%22%20stroke%3D%22url(%23paint0_linear_1_2750)%22%20stroke-width%3D%2262%22%2F%3E%0A%3Cdefs%3E%0A%3ClinearGradient%20id%3D%22paint0_linear_1_2750%22%20x1%3D%22-3.08916%22%20y1%3D%22-61.0137%22%20x2%3D%221007.53%22%20y2%3D%22319.606%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%0A%3Cstop%20stop-color%3D%22%23CCEDED%22%2F%3E%0A%3Cstop%20offset%3D%220.548077%22%20stop-color%3D%22%2356BFBF%22%2F%3E%0A%3Cstop%20offset%3D%220.764423%22%20stop-color%3D%22%23B7C899%22%2F%3E%0A%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23FFA168%22%2F%3E%0A%3C%2FlinearGradient%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 767px) {
  .sec--hero::after {
    top: -120px;
  }
}

.sec--hero .hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media only screen and (max-width: 767px) {
  .sec--hero .hero-content {
    gap: 40px;
  }
}

.sec--hero .hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 68px;
  letter-spacing: 1.36px;
  line-height: 1;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .sec--hero .hero-title {
    font-size: 40px;
    letter-spacing: 0.8px;
  }
}

.sec--hero .hero-subtitle {
  background: linear-gradient(90deg, #000 0%, #56bfbf 100%);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1.54px;
  line-height: 1;
  padding: 2px 8px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 767px) {
  .sec--hero .hero-subtitle {
    font-size: 16px;
    letter-spacing: 1.12px;
  }
}

.sec--hero .hero-description {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.12px;
  line-height: 1.8;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .sec--hero .hero-description {
    font-size: 15px;
    letter-spacing: 1.05px;
  }
}

.sec--hero .hero-description p {
  margin: 0;
}

/* Mission Section */
.sec--mission {
  width: 100%;
  padding-bottom: calc(60 * var(--vwPC));
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .sec--mission {
    padding: 0 0 calc(30 * var(--vwSP));
  }
}

.sec--mission--bg {
  background: linear-gradient(to top, var(--corp-green) 0%, var(--corp-green) 25%, transparent 25%, transparent 100%);
  padding-bottom: calc(120 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--mission--bg {
    padding-bottom: calc(60 * var(--vwSP));
  }
}

.sec--mission .mission-content {
  background-color: #f3f6f7;
  border-radius: calc(56 * var(--vwPC));
  padding: calc(80 * var(--vwPC));
  display: flex;
  gap: calc(80 * var(--vwPC));
  align-items: flex-end;
}

@media only screen and (max-width: 767px) {
  .sec--mission .mission-content {
    border-radius: calc(20 * var(--vwSP));
    padding: calc(50 * var(--vwSP)) calc(20 * var(--vwSP)) calc(40 * var(--vwSP));
    flex-direction: column;
    gap: calc(50 * var(--vwSP));
    align-items: flex-start;
  }
}

.sec--mission .mission-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: calc(50 * var(--vwPC));
  max-width: calc(1100 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--mission .mission-text {
    max-width: 100%;
    gap: calc(40 * var(--vwSP));
  }
}

.sec--mission .section-label {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--mission .label-dot {
    font-size: calc(13 * var(--vwSP));
    width: calc(10 * var(--vwPC));
    height: calc(10 * var(--vwPC));
  }
}

.sec--mission .label-dot {
  width: calc(6 * var(--vwPC));
  height: calc(6 * var(--vwPC));
  background-color: #ed6e21;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .sec--mission .label-dot {
    font-size: calc(15 * var(--vwSP));
    margin-right: 5px;
    width: calc(25 * var(--vwPC));
    height: calc(25 * var(--vwPC));
  }
}

.sec--mission .label-text {
  font-weight: 700;
  font-size: calc(17 * var(--vwPC));
  line-height: 1.7;
  color: #56bfbf;
}

@media only screen and (max-width: 767px) {
  .sec--mission .label-text {
    font-size: calc(15 * var(--vwSP));
  }
}

.sec--mission .mission-title {
  font-weight: 700;
  font-size: calc(30 * var(--vwPC));
  letter-spacing: 0.07em;
  line-height: 1.6;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .sec--mission .mission-title {
    font-size: calc(24 * var(--vwSP));
  }
}

.sec--mission .mission-description {
  font-size: calc(17 * var(--vwPC));
  letter-spacing: 0.07em;
  line-height: 1.7;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .sec--mission .mission-description {
    font-size: calc(14 * var(--vwSP));
  }
}

.sec--mission .mission-image {
  flex: 0 0 calc(420 * var(--vwPC));
  height: calc(420 * var(--vwPC));
  position: relative;
}

@media only screen and (max-width: 767px) {
  .sec--mission .mission-image {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.sec--mission .mission-photo-pc {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@media only screen and (max-width: 767px) {
  .sec--mission .mission-photo-pc {
    display: none;
  }
}

.sec--mission .mission-photo-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .sec--mission .mission-photo-sp {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* Board Members Section */
.sec--board-members {
  background-color: #56bfbf;
  padding: 120px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

@media only screen and (max-width: 767px) {
  .sec--board-members {
    padding: 80px 15px;
    gap: 40px;
  }
}

.sec--board-members .section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 52px;
  letter-spacing: 1.04px;
  line-height: 1;
  text-align: center;
  color: #fff;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .section-title {
    font-size: 34px;
    letter-spacing: 0.68px;
  }
}

.sec--board-members .section-subtitle {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.12px;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  margin: -40px 0 0 0;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .section-subtitle {
    font-size: 15px;
    letter-spacing: 1.05px;
    margin: -25px 0 0 0;
  }
}

.sec--board-members .members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  max-width: 1110px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .members-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.sec--board-members .member-card {
  background-color: #fff;
  border-radius: 25px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .member-card {
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
  }
}

.sec--board-members .member-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.sec--board-members .member-image {
  width: 200px;
  height: 213px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .member-image {
    width: 160px;
    height: 170px;
  }
}

.sec--board-members .member-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sec--board-members .member-name-en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.91px;
  line-height: 1;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .member-name-en {
    font-size: 11px;
    letter-spacing: 0.77px;
  }
}

.sec--board-members .member-name-jp {
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1.54px;
  line-height: 1;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .member-name-jp {
    font-size: 20px;
    letter-spacing: 1.4px;
  }
}

.sec--board-members .member-role {
  padding: 1px 8px;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.84px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .member-role {
    font-size: 10px;
    letter-spacing: 0.7px;
  }
}

.sec--board-members .board-role {
  background-color: #ed6e21;
}

.sec--board-members .member-bio {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.98px;
  line-height: 1.7;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .sec--board-members .member-bio {
    font-size: 13px;
    letter-spacing: 0.91px;
  }
}

/* Company（Figma 02AboutPc Frame11 / 02AboutSp Frame6 — node 1-214 & 1-551） */
.sec--company {
  width: 100%;
  background-color: #f3f6f7;
  padding-top: calc(120 * var(--vwPC));
  padding-bottom: calc(50 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--company {
    padding-top: calc(80 * var(--vwSP));
    padding-bottom: calc(55 * var(--vwSP));
  }
}

.sec--company__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(60 * var(--vwPC));
  padding-top: calc(100 * var(--vwPC));
  padding-right: calc(80 * var(--vwPC));
  padding-left: calc(80 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--company__inner {
    gap: calc(40 * var(--vwSP));
    padding-top: calc(60 * var(--vwSP));
    padding-right: calc(15 * var(--vwSP));
    padding-left: calc(15 * var(--vwSP));
  }
}

.sec--company__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  gap: min(20 / 1400 * 100vw, 20px);
}

@media only screen and (max-width: 767px) {
  .sec--company__head {
    gap: 16px;
  }
}

.sec--company__title-en {
  margin: 0;
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: calc(52 * var(--vwPC));
  letter-spacing: 0.07em;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .sec--company__title-en {
    font-size: calc(34 * var(--vwSP));
  }
}

.sec--company__title-jp {
  margin: 0;
  font-weight: 700;
  font-size: calc(16 * var(--vwPC));
  letter-spacing: 0.07em;
  line-height: 1;
  color: var(--corp-green);
}

@media only screen and (max-width: 767px) {
  .sec--company__title-jp {
    font-size: calc(15 * var(--vwSP));
  }
}

.sec--company__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: calc(60 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--company__body {
    flex-direction: column;
    gap: calc(40 * var(--vwSP));
  }
}

.sec--company__table {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
}

@media only screen and (max-width: 767px) {
  .sec--company__table {
    flex: none;
    width: 100%;
  }
}

.sec--company__row {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.sec--company__term {
  flex: 0 0 auto;
  width: 120px;
  margin: 0;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-weight: 500;
  font-size: calc(16 * var(--vwPC));
  letter-spacing: 0.07em;
  line-height: 1.7;
  color: #000;
  border-bottom: 2px solid var(--corp-green);
  padding-top: calc(25 * var(--vwPC));
  padding-bottom: calc(25 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--company__term {
    width: 100px;
    font-size: calc(14 * var(--vwSP));
    letter-spacing: 0.07em;
    padding-top: calc(20 * var(--vwSP));
    padding-bottom: calc(20 * var(--vwSP));
  }
}

.sec--company__value {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(10 * var(--vwPC));
  font-weight: 400;
  font-size: calc(16 * var(--vwPC));
  letter-spacing: 0.07em;
  line-height: 1.7;
  color: #000;
  border-bottom: 1px solid #e9e9e9;
  padding-top: calc(25 * var(--vwPC));
  padding-bottom: calc(25 * var(--vwPC));
  padding-left: calc(30 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--company__value {
    font-size: calc(14 * var(--vwSP));
    letter-spacing: 0.07em;
    padding-top: calc(20 * var(--vwSP));
    padding-bottom: calc(20 * var(--vwSP));
    padding-left: calc(15 * var(--vwSP));
  }
}

.sec--company__value-text--sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .sec--company__value-text--sp {
    display: block;
  }
}

.sec--company__value-text--pc {
  display: block;
}

@media only screen and (max-width: 767px) {
  .sec--company__value-text--pc {
    display: none;
  }
}

.sec--company__value-line {
  display: block;
}

.sec--company__map-block {
  flex: 0 0 auto;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: calc(15 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--company__map-block {
    max-width: none;
    gap: calc(15 * var(--vwSP));
  }
}

.sec--company__map-label {
  margin: 0;
  font-weight: 500;
  font-size: calc(16 * var(--vwPC));
  letter-spacing: 0.07em;
  line-height: 1.7;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .sec--company__map-label {
    font-size: calc(14 * var(--vwSP));
  }
}

.sec--company__map {
  width: 100%;
  border-radius: calc(20 * var(--vwPC));
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 1/1;
}

@media only screen and (max-width: 767px) {
  .sec--company__map {
    aspect-ratio: 3/2;
  }
}

.sec--company__map-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media only screen and (max-width: 767px) {
  .sec--company__map-frame {
    height: calc(240 * var(--vwSP));
  }
}

/* Feature Cards Section */
.feature-section {
  padding: 0 50px 100px;
}

@media only screen and (max-width: 767px) {
  .feature-section {
    padding: 0 15px 60px;
  }
}

.feature-section .feature-container {
  max-width: 1300px;
  margin: 0 auto;
  background: #F3F6F7;
  padding: 80px;
  border-radius: 56px;
}

@media only screen and (max-width: 767px) {
  .feature-section .feature-container {
    padding: 50px 20px 40px;
    border-radius: 20px;
  }
}

.feature-section .feature-heading {
  text-align: center;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .feature-section .feature-heading {
    margin-bottom: 30px;
  }
}

.feature-section .feature-title {
  font-weight: 700;
  font-size: 40px;
  color: #56BFBF;
  letter-spacing: 2.8px;
  line-height: 1.6;
  margin-bottom: 5px;
}

@media only screen and (max-width: 767px) {
  .feature-section .feature-title {
    font-size: 22px;
    letter-spacing: 1.54px;
  }
}

.feature-section .feature-subtitle {
  font-weight: 700;
  font-size: 30px;
  color: #000000;
  letter-spacing: 2.1px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .feature-section .feature-subtitle {
    font-size: 20px;
    letter-spacing: 1.4px;
  }
}

.feature-section .feature-cards {
  display: flex;
  gap: 40px;
}

@media only screen and (max-width: 767px) {
  .feature-section .feature-cards {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-section .feature-card {
  flex: 1;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px 20px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .feature-section .feature-card {
    border-radius: 10px;
    padding: 20px;
  }
}

.feature-section .feature-card-title {
  font-weight: 700;
  font-size: 20px;
  color: #56BFBF;
  letter-spacing: 1.4px;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
  .feature-section .feature-card-title {
    font-size: 16px;
    letter-spacing: 1.12px;
    margin-bottom: 8px;
  }
}

.feature-section .feature-card-text {
  font-weight: 400;
  font-size: 15px;
  color: #000000;
  letter-spacing: 1.05px;
  line-height: 1.7;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .feature-section .feature-card-text {
    font-size: 13px;
    letter-spacing: 0.91px;
  }
}

/* Service Skills */
.sec--service-skills {
  width: 100%;
  background: linear-gradient(to top, var(--bg-gray) 0%, var(--bg-gray) 50%, transparent 50%, transparent 100%);
  padding: 0 calc(50 * var(--vwPC)) calc(100 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--service-skills {
    padding: 0 0 calc(60 * var(--vwSP));
  }
}

.sec--service-skills__inner {
  margin: 0 auto;
  background: var(--corp-green);
  border-radius: calc(56 * var(--vwPC));
  padding: calc(80 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--service-skills__inner {
    border-radius: calc(20 * var(--vwSP));
    padding: calc(50 * var(--vwSP)) calc(15 * var(--vwSP)) calc(40 * var(--vwSP));
  }
}

.sec--service-skills__lead {
  margin: 0;
  color: #fff;
  font-weight: 400;
  font-size: calc(17 * var(--vwPC));
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-skills__lead {
    font-size: calc(14 * var(--vwSP));
  }
}

.sec--service-skills__list {
  list-style: none;
  margin: calc(30 * var(--vwPC)) 0 0;
  padding: 0;
  display: flex;
  gap: calc(30 * var(--vwPC));
}

@media only screen and (max-width: 767px) {
  .sec--service-skills__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(24 * var(--vwSP)) calc(10 * var(--vwSP));
    margin-top: calc(24 * var(--vwSP));
  }
}

.sec--service-skills__item {
  width: calc(165 * var(--vwPC));
  min-height: calc(165 * var(--vwPC));
  padding: calc(20 * var(--vwPC)) 0;
  border-radius: calc(15 * var(--vwPC));
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 calc(10 * var(--vwPC)) calc(30 * var(--vwPC)) rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(8 * var(--vwPC));
  position: relative;
}

@media only screen and (max-width: 767px) {
  .sec--service-skills__item {
    width: 100%;
    min-height: calc(100 * var(--vwSP));
    border-radius: calc(10 * var(--vwSP));
    padding: calc(20 * var(--vwSP)) calc(3 * var(--vwSP)) calc(15 * var(--vwSP));
    gap: calc(8 * var(--vwSP));
  }
}

.sec--service-skills__item.is-active {
  background: #0f7f7f;
}

.sec--service-skills__item a {
  display: flex;
  flex-direction: column;
}

.sec--service-skills__item.is-active .sec--service-skills__en,
.sec--service-skills__item.is-active .sec--service-skills__jp {
  color: #fff;
}

.sec--service-skills__icon {
  width: calc(44 * var(--vwPC));
  height: calc(44 * var(--vwPC));
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .sec--service-skills__icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(30 * var(--vwSP));
    height: calc(30 * var(--vwSP));
  }
}

.sec--service-skills__en {
  margin-top: calc(2 * var(--vwPC));
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: calc(20 * var(--vwPC));
  line-height: 1.2;
  color: #000;
  text-align: center;
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .sec--service-skills__en {
    font-size: calc(15 * var(--vwSP));
  }
}

.sec--service-skills__jp {
  margin: 0;
  font-weight: 500;
  font-size: calc(13 * var(--vwPC));
  line-height: 1.5;
  color: #000;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .sec--service-skills__jp {
    font-size: calc(11 * var(--vwSP));
    line-height: 1.4;
  }
}

.sec--service-detail {
  width: 100%;
  background: var(--bg-gray);
  padding: 0 50px 100px;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail {
    padding: 0 15px 60px;
  }
}

.sec--service-detail__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__inner {
    gap: 30px;
  }
}

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

@media only screen and (max-width: 767px) {
  .sec--service-detail__head {
    gap: 12px;
  }
}

.sec--service-detail__icon {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__icon {
    width: 40px;
    height: 40px;
  }
}

.sec--service-detail__title {
  margin: 0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: min(42 / 1400 * 100vw, 42px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__title {
    font-size: 28px;
    letter-spacing: 0.02em;
  }
}

.sec--service-detail__subtitle {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--corp-green);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__subtitle {
    font-size: 15px;
  }
}

.sec--service-detail__txt {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__txt {
    width: 100%;
    font-size: 14px;
  }
}

.sec--service-detail__note {
  width: 100%;
  background: #dceeee;
  border-radius: 20px;
  padding: 30px 50px 40px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__note {
    border-radius: 15px;
    padding: 20px;
  }
}

.sec--service-detail__note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 50px;
  background: #56bfbf;
  border-radius: 2px;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__note::before {
    top: 22px;
    transform: none;
    height: 30px;
  }
}

.sec--service-detail__note-title {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__note-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.sec--service-detail__note-body {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__note-body {
    padding: 15px;
  }
}

.sec--service-detail__note-body p {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

@media only screen and (max-width: 767px) {
  .sec--service-detail__note-body p {
    font-size: 13px;
  }
}

.sec--service-problem {
  width: 100%;
  background: var(--bg-gray);
  padding: 0 50px 100px;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem {
    padding: 0 15px 60px;
  }
}

.sec--service-problem__inner {
  max-width: 1300px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__inner {
    border-radius: 20px;
    padding: 40px 20px 30px;
    flex-direction: column;
    gap: 26px;
  }
}

.sec--service-problem__lead {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__lead {
    width: 100%;
  }
}

.sec--service-problem__label {
  margin: 0;
  position: relative;
  padding-left: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--corp-green);
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__label {
    font-size: 11px;
  }
}

.sec--service-problem__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--corp-orange);
}

.sec--service-problem__title {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__title {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.sec--service-problem__illust {
  margin-top: 40px;
  height: 150px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__illust {
    margin-top: 14px;
    width: calc(184 * var(--vwSP));
    height: auto;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.sec--service-problem__illust-person {
  display: block;
  width: 84px;
  height: 120px;
  border: 2px solid #66d6df;
  border-bottom-width: 6px;
  border-radius: 44px 44px 14px 14px;
  background: linear-gradient(180deg, #f0ffff 0%, #b6f2f2 100%);
}

.sec--service-problem__illust-person:nth-child(2) {
  width: 92px;
  height: 132px;
}

.sec--service-problem__illust-person:nth-child(3) {
  background: linear-gradient(180deg, #d9ffff 0%, #56bfbf 100%);
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__illust-person {
    width: 42px;
    height: 60px;
    border-radius: 22px 22px 8px 8px;
    border-bottom-width: 4px;
  }

  .sec--service-problem__illust-person:nth-child(2) {
    width: 46px;
    height: 66px;
  }
}

.sec--service-problem__content {
  width: 750px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__content {
    width: 100%;
    padding-top: 0;
  }
}

.sec--service-problem__card {
  margin: 0;
  padding: 30px;
  list-style: none;
  border-radius: 15px;
  background: var(--bg-gray);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__card {
    padding: 20px;
    border-radius: 10px;
    gap: 8px;
  }
}

.sec--service-problem__card li {
  margin: 0;
  position: relative;
  padding-left: 22px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__card li {
    font-size: 14px;
    letter-spacing: 0.07em;
  }
}

.sec--service-problem__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #67cfd6;
}

.sec--service-problem__caption {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-problem__caption {
    font-size: 14px;
  }
}

.sec--service-feature {
  width: 100%;
  background: var(--bg-gray);
  padding: 0 50px 50px;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature {
    padding: 0 15px 60px;
  }
}

.sec--service-feature__inner {
  max-width: 1300px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__inner {
    border-radius: 20px;
    padding: 40px 20px 30px;
    flex-direction: column;
    gap: 30px;
  }
}

.sec--service-feature__lead {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__lead {
    width: 100%;
  }
}

.sec--service-feature__label {
  margin: 0;
  position: relative;
  padding-left: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--corp-green);
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__label {
    font-size: 11px;
  }
}

.sec--service-feature__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--corp-orange);
}

.sec--service-feature__title {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__title {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.sec--service-feature__illust {
  margin-top: 42px;
  height: 248px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__illust {
    margin-top: 10px;
    width: calc(158 * var(--vwSP));
    height: auto;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.sec--service-feature__illust-person {
  display: block;
  width: 112px;
  height: 188px;
  border: 2px solid #66d6df;
  border-bottom-width: 8px;
  border-radius: 58px 58px 18px 18px;
  background: linear-gradient(180deg, #f0ffff 0%, #b6f2f2 100%);
}

.sec--service-feature__illust-person:nth-child(2) {
  width: 118px;
  height: 198px;
}

.sec--service-feature__illust-person:nth-child(3) {
  background: linear-gradient(180deg, #d9ffff 0%, #56bfbf 100%);
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__illust-person {
    width: 44px;
    height: 74px;
    border-radius: 24px 24px 8px 8px;
    border-bottom-width: 4px;
  }

  .sec--service-feature__illust-person:nth-child(2) {
    width: 46px;
    height: 78px;
  }
}

.sec--service-feature__content {
  width: 750px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__content {
    width: 100%;
    padding-top: 0;
  }
}

.sec--service-feature__intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__intro {
    font-size: 14px;
  }
}

.sec--service-feature__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sec--service-feature__item-title {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--corp-green);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.7;
}

.sec--service-feature__item-title span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  opacity: 0.4;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__item-title {
    font-size: 18px;
    line-height: 1.5;
    flex-wrap: wrap;
  }

  .sec--service-feature__item-title span {
    font-size: 15px;
  }
}

.sec--service-feature__item-txt {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-feature__item-txt {
    font-size: 14px;
  }
}

.sec--service-example {
  width: 100%;
  background: var(--bg-gray);
  padding: 0 50px 50px;
}

@media only screen and (max-width: 767px) {
  .sec--service-example {
    padding: 0 15px 60px;
  }
}

.sec--service-example__inner {
  max-width: 1300px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__inner {
    border-radius: 20px;
    padding: 40px 20px 30px;
    gap: 40px;
  }
}

.sec--service-example__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__head {
    flex-direction: column;
    gap: 30px;
  }
}

.sec--service-example__lead {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec--service-example__label {
  margin: 0;
  position: relative;
  padding-left: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: var(--corp-green);
}

@media only screen and (max-width: 767px) {
  .sec--service-example__label {
    font-size: 11px;
    letter-spacing: 0.07em;
  }
}

.sec--service-example__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--corp-orange);
}

.sec--service-example__title {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.07em;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__title {
    font-size: 26px;
    letter-spacing: 0.07em;
  }
}

.sec--service-example__intro {
  margin: 40px 0 0;
  width: 680px;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.07em;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__intro {
    margin: 0;
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.07em;
  }
}

.sec--service-example__rows {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__rows {
    gap: 15px;
  }
}

.sec--service-example__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.sec--service-example__card {
  background: #edf7f7;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__card {
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
    padding: 15px;
    gap: 15px;
  }
}

.sec--service-example__icon {
  width: 66px;
  height: 66px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}

.sec--service-example__icon img {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__icon {
    width: 45px;
    height: 45px;
  }
}

.sec--service-example__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__body {
    gap: 7px;
    flex: 1;
    min-width: 0;
  }
}

.sec--service-example__card-title {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.07em;
  color: var(--corp-green);
}

@media only screen and (max-width: 767px) {
  .sec--service-example__card-title {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.07em;
  }
}

.sec--service-example__card-txt {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.07em;
}

@media only screen and (max-width: 767px) {
  .sec--service-example__card-txt {
    font-size: 13px;
    letter-spacing: 0.07em;
  }
}

.sec--service-results {
  width: 100%;
  background: var(--bg-gray);
  padding: 0 50px 50px;
}

@media only screen and (max-width: 767px) {
  .sec--service-results {
    padding: 0 15px 60px;
  }
}

.sec--service-results__inner {
  max-width: 1300px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__inner {
    border-radius: 20px;
    padding: 40px 20px 30px;
    gap: 40px;
  }
}

.sec--service-results__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__head {
    flex-direction: column;
    gap: 30px;
  }
}

.sec--service-results__lead {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec--service-results__label {
  margin: 0;
  position: relative;
  padding-left: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: var(--corp-green);
}

@media only screen and (max-width: 767px) {
  .sec--service-results__label {
    font-size: 11px;
  }
}

.sec--service-results__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--corp-orange);
}

.sec--service-results__title {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__title {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.sec--service-results__intro {
  margin: 40px 0 0;
  width: 680px;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__intro {
    margin: 0;
    width: 100%;
    font-size: 14px;
  }
}

.sec--service-results__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.sec--service-results__card {
  position: relative;
  background: #edf7f7;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__card {
    border-radius: 10px;
    padding: 15px;
    gap: 7px;
    padding-left: 108px;
    min-height: 126px;
    justify-content: center;
  }
}

.sec--service-results__no {
  position: absolute;
  left: 16px;
  top: -12px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: #def0f0;
  letter-spacing: 0.04em;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__no {
    left: 8px;
    top: -7px;
    font-size: 50px;
  }
}

.sec--service-results__icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__icon {
    position: absolute;
    left: 22px;
    top: 58px;
    width: 45px;
    height: 45px;
  }
}

.sec--service-results__card-title {
  margin: 0;
  color: var(--corp-green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__card-title {
    font-size: 16px;
  }
}

.sec--service-results__card-txt {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .sec--service-results__card-txt {
    font-size: 13px;
  }
}

.sec--service-process {
  width: 100%;
  background: var(--bg-gray);
  padding: 0 50px 100px;
}

@media only screen and (max-width: 767px) {
  .sec--service-process {
    padding: 0 15px 60px;
  }
}

.sec--service-process__inner {
  max-width: 1300px;
  margin: 0 auto;
  background: var(--corp-green);
  border-radius: 30px;
  padding: 70px 70px 90px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__inner {
    border-radius: 20px;
    padding: 40px 20px 30px;
    gap: 40px;
  }
}

.sec--service-process__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__head {
    flex-direction: column;
    gap: 30px;
  }
}

.sec--service-process__lead {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec--service-process__label {
  margin: 0;
  position: relative;
  padding-left: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__label {
    font-size: 11px;
  }
}

.sec--service-process__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--corp-orange);
}

.sec--service-process__title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__title {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.sec--service-process__intro {
  margin: 40px 0 0;
  width: 680px;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__intro {
    margin: 0;
    width: 100%;
    font-size: 14px;
  }
}

.sec--service-process__steps {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__steps {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.sec--service-process__steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

@media only screen and (max-width: 767px) {
  .sec--service-process__steps::before {
    left: 50%;
    right: auto;
    top: 6%;
    bottom: 6%;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }
}

.sec--service-process__step {
  position: relative;
  background: #fff;
  border: 6px solid #6cc6c4;
  border-radius: 20px;
  padding: 42px 20px 20px;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__step {
    border-radius: 15px;
    padding: 0 20px 20px;
  }
}

.sec--service-process__step-no {
  position: absolute;
  top: 0;
  left: 20px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 27px;
  padding: 2px 8px;
  border-radius: 0 0 8px 8px;
  background: var(--corp-orange);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__step-no {
    min-width: 32px;
    height: 24px;
    border-radius: 0 0 6px 6px;
    font-size: 13px;
  }
}

.sec--service-process__step-title {
  margin: 15px 0 12px;
  text-align: center;
  color: var(--corp-green);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__step-title {
    font-size: 18px;
    margin-top: 5px;
  }
}

.sec--service-process__step-txt {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-process__step-txt {
    font-size: 13px;
  }
}

.sec--service-price__head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--service-price__head {
    flex-direction: column;
  }
}

.sec--service-price__lead {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec--service-price__label {
  margin: 0;
  position: relative;
  padding-left: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .sec--service-price__label {
    font-size: 11px;
  }
}

.sec--service-price__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--corp-orange);
}

.sec--service-price__title {
  margin: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1.5;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .sec--service-price__title {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.sec--service-price__content {
  padding-top: 40px;
  width: 680px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (max-width: 767px) {
  .sec--service-price__content {
    width: 100%;
    padding-top: 0;
    gap: 25px;
  }
}

.sec--service-price__content .sec-btn {
  margin-left: 0;
}

.sec--service-price__txt {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--service-price__txt {
    font-size: 14px;
  }
}

.sec--service-price__btn {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px 20px 45px;
  border: 1px solid #fff;
  border-radius: 50px;
  background: #000;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .sec--service-price__btn {
    font-size: 15px;
    padding: 20px 25px 20px 38px;
  }
}

.sec--service-price__btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
}

/* Case */
.sec--case {
  border-radius: 56px 56px 0 0;
  padding: 120px 50px 100px;
}

@media only screen and (max-width: 767px) {
  .sec--case {
    border-radius: 40px 40px 0 0;
    padding: 60px 15px 60px;
  }
}

.sec--case__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.case-card {
  background: #fff;
  border: 1px solid #e7edef;
  border-radius: 30px;
  padding: 0 80px 80px;
}

@media only screen and (max-width: 767px) {
  .case-card {
    border-radius: 20px;
    padding: 0 20px 40px;
  }
}

.case-card+.case-card {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
  .case-card+.case-card {
    margin-top: 40px;
  }
}

.case-card__industry {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 0 0 8px 8px;
  background: var(--corp-orange);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .case-card__industry {
    font-size: 15px;
  }
}

.case-card__head {
  padding-top: 20px;
}

.case-card__icons {
  display: flex;
  gap: 15px;
}

.case-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .case-card__icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
}

.case-card__title {
  margin: 15px 0 0;
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .case-card__title {
    margin-top: 12px;
  }
}

.case-card__meta {
  margin: 40px 0 0;
  padding: 20px;
  background: #e7f6f6;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .case-card__meta {
    margin-top: 20px;
    padding: 15px;
  }
}

.case-card__meta-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-card__meta-item dt {
  margin: 0;
  padding: 1px 8px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .case-card__meta-item dt {
    font-size: 12px;
  }
}

.case-card__meta-item dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .case-card__meta-item dd {
    font-size: 14px;
  }
}

.case-card__body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media only screen and (max-width: 767px) {
  .case-card__body {
    margin-top: 40px;
    gap: 30px;
  }
}

.sec--privacy__block-title,
.case-card__block-title {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #e7edef;
  position: relative;
  color: var(--corp-green);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {

  .sec--privacy__block-title,
  .case-card__block-title {
    font-size: 20px;
  }
}

.sec--privacy__block-title::after,
.case-card__block-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100px;
  height: 2px;
  background: var(--corp-green);
}

.case-card__block p {
  margin: 25px 0 0;
  font-size: 15px;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .case-card__block p {
    margin-top: 20px;
    font-size: 14px;
  }
}

.case-card__text-group p {
  margin-top: 0;
}

.case-result {
  margin-top: 30px;
  display: flex;
  gap: 50px;
}

@media only screen and (max-width: 767px) {
  .case-result {
    flex-direction: column;
    gap: 20px;
  }
}

.case-result__text {
  flex: 1 1 0;
}

.case-result__text h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .case-result__text h4 {
    font-size: 18px;
  }
}

.case-result__text p {
  margin: 20px 0 0;
}

.case-result__chart {
  width: 470px;
}

@media only screen and (max-width: 767px) {
  .case-result__chart {
    width: 100%;
  }
}

.case-chart-line__plot {
  position: relative;
}

.case-chart-line__plot-img {
  position: absolute;
  top: 8.5%;
  right: 4%;
  width: 73%;
  aspect-ratio: 342/188;
}

.case-chart-line__plot-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 81%;
  aspect-ratio: 380/240;
}

.case-chart-line__months,
.case-chart-line__values {
  font-family: "Montserrat", sans-serif;
  padding: 4px 6px;
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.case-chart-line__months li,
.case-chart-line__values li {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  padding: 5px;
}

@media only screen and (max-width: 767px) {

  .case-chart-line__months li,
  .case-chart-line__values li {
    font-size: 11px;
  }
}

.case-chart-line__months li {
  background: #56bfbf;
  color: #fff;
}

.case-chart-line__months li+li {
  border-left: 1px solid #fff;
}

.case-chart-line__values {
  border-bottom: 1px solid #e7edef;
  border-right: 1px solid #e7edef;
  border-left: 1px solid #e7edef;
  margin-top: 0;
}

.case-chart-line__values li+li {
  border-left: 1px solid #e7edef;
}

.case-chart-bar {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-chart-bar li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 10px;
}

.case-chart-bar li span {
  font-size: 14px;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .case-chart-bar li span {
    font-size: 12px;
  }
}

.case-chart-bar li i {
  display: block;
  width: 100%;
  height: 40px;
  background: linear-gradient(to right, var(--corp-orange) 0 var(--w), #f3f6f7 var(--w) 100%);
  font-style: normal;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
  padding-left: 10px;
}

.case-chart-bar__values {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.case-chart-bar__values li {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  padding: 4px 6px;
  background: #56bfbf;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .case-chart-bar__values li {
    font-size: 11px;
  }
}

.case-cost {
  margin-top: 50px;
  border-radius: 20px;
  background: var(--bg-gray);
  padding: 30px 40px;
}

@media only screen and (max-width: 767px) {
  .case-cost {
    margin-top: 40px;
    border-radius: 15px;
    padding: 15px;
  }
}

.case-cost__title {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--corp-green);
  border-bottom: 2px solid var(--corp-green);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .case-cost__title {
    font-size: 16px;
  }
}

.case-cost__items {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .case-cost__items {
    gap: 15px;
  }
}

.case-cost__item {
  flex: 1 1 0;
  max-width: 240px;
  border: 1px solid #e7edef;
  border-radius: 10px;
  background: #fff;
  padding: 20px 20px 10px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .case-cost__item {
    padding: 15px 12px 5px;
  }
}

.case-cost__label {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  border-radius: 30px;
  background: var(--corp-green);
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .case-cost__label {
    font-size: 13px;
  }
}

.case-cost__price {
  margin: 5px 0 0;
  line-height: 1.7;
}

.case-cost__price strong {
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .case-cost__price strong {
    font-size: 32px;
  }
}

.case-cost__price span {
  font-size: 18px;
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .case-cost__price span {
    font-size: 14px;
  }
}

.case-comment {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  padding-right: 50px;
}

@media only screen and (max-width: 767px) {
  .case-comment {
    margin-top: 30px;
    padding-right: 30px;
  }
}

.case-comment__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: -50px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .case-comment__avatar {
    width: 60px;
    height: 60px;
    margin-right: -30px;
  }
}

.case-comment__bubble {
  flex: 1 1 0;
  border-radius: 15px;
  background: #e7f6f6;
  padding: 24px 40px 20px 80px;
}

@media only screen and (max-width: 767px) {
  .case-comment__bubble {
    padding: 20px 20px 15px 45px;
  }
}

.case-comment__bubble p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .case-comment__bubble p {
    font-size: 13px;
  }
}

.case-comment__name {
  margin-top: 8px !important;
  color: #8ec8c8;
  font-family: "Montserrat", sans-serif;
  font-size: 13px !important;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .case-comment__name {
    font-size: 11px !important;
  }
}

.sec--privacy {
  padding: 0 80px 80px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .sec--privacy {
    padding: 0 15px 50px;
  }
}

.sec--privacy__block:nth-of-type(n+2) .sec--privacy__block-title {
  margin-top: 50px;
}

.sec--privacy__block-text {
  margin-top: 1em;
}

.sec--privacy__list {
  margin: 1em auto;
}

.sec--privacy__list-item {
  margin: 0;
  position: relative;
  padding-left: 22px;
  font-weight: 400;
  line-height: 1.7;
}

@media only screen and (max-width: 767px) {
  .sec--privacy__list-item {
    letter-spacing: 0.07em;
  }
}

.sec--privacy__list-item::before {
  content: "";
  position: absolute;
  left: 0.5em;
  top: 0.9em;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #67cfd6;
}

.sec--privacy__contact-link {
  color: #67cfd6;
  text-decoration: underline;
}

.sec--privacy__contact-link:hover {
  opacity: 0.5;
}