﻿:root {
  --text: #333;
  --muted: #666;
  --green: #8ac51f;
  --orange: #f09600;
  --cream: #fef7eb;
  --pale-green: #edf6e2;
  --container: 1142px;
  --side: clamp(20px, 10.4vw, 150px);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
}

body.is-menu-open {
  overflow: hidden;
}

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

.mobile-br {
  display: none;
}

.mobile-nowrap {
  white-space: normal;
}

/* Figma lower classes list page */
.classes-list-page {
  overflow-x: hidden;
}

.classes-list-page .site-header__nav a[aria-current="page"],
.classes-list-page .site-footer__nav a[aria-current="page"] {
  color: var(--orange);
  font-weight: 700;
}

.classes-list-hero {
  position: relative;
  height: 303px;
  overflow: hidden;
  padding: 14px 150px 80px;
  background: #fff;
}

.classes-list-hero .section-bg {
  opacity: 0.55;
  object-fit: cover;
  object-position: center;
}

.classes-list-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 73px;
  width: min(1140px, 100%);
  margin-inline: auto;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.classes-list-breadcrumb {
  width: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.classes-list-breadcrumb span {
  font-weight: 700;
}

.classes-list-hero__title {
  width: min(698px, 100%);
  text-align: center;
}

.classes-list-hero__title h1 {
  margin: 0 0 13px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.classes-list-hero__title p {
  margin: 0;
  font-size: 20px;
  line-height: 1.52;
}

.classes-list-section {
  padding: 72px 0;
  background: #fff;
}

.classes-list-container {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

.classes-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 248px);
  gap: 58px 50px;
  justify-content: center;
}

.classes-list-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 248px;
  min-height: 310px;
  padding: 26px 27px;
  overflow: hidden;
  border: 1px solid var(--orange);
  border-radius: 24px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.classes-list-card:nth-child(4n + 1) {
  background: #f8f8f8;
}

.classes-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(240, 150, 0, 0.12);
}

.classes-list-card img {
  width: 194px;
  height: 151px;
  border-radius: 10px;
  object-fit: cover;
}

.classes-list-card h2 {
  margin: 20px 0 0;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
}

.classes-list-card p {
  margin: 27px 0 0;
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.classes-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-top: 72px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.classes-pagination a,
.classes-pagination span {
  color: #505050;
}

.classes-pagination .is-current {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 8px;
}

.classes-pagination__next {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  font-size: 28px;
  line-height: 1;
}

.classes-list-cta {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
}

.classes-list-cta .section-bg {
  object-fit: cover;
}

.classes-list-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(872px, calc(100% - 48px));
  margin-inline: auto;
  text-align: center;
}

.classes-list-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.575;
}

.classes-list-cta__buttons {
  display: grid;
  grid-template-columns: repeat(2, 416px);
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.classes-list-cta__buttons .button {
  width: 100%;
  min-height: 55px;
  font-size: 20px;
}

/* Figma lower class detail page */
.class-detail-page {
  overflow-x: hidden;
}

.class-detail-page .site-header__nav a[aria-current="page"],
.class-detail-page .site-footer__nav a[aria-current="page"] {
  color: var(--orange);
  font-weight: 700;
}

.class-detail-main {
  padding: 35px 0 64px;
}

.class-detail-container {
  display: flex;
  flex-direction: column;
  width: min(1140px, calc(100% - 48px));
  min-height: 1720px;
  margin-inline: auto;
}

.class-detail-breadcrumb {
  margin: 0 0 90px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
}

.class-detail-article {
  display: grid;
  gap: 41px;
}

.class-detail-title {
  display: grid;
  gap: 15px;
  width: min(910px, 100%);
}

.class-detail-title h1 {
  margin: 0;
  color: #090909;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.class-detail-title p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.3;
}

.class-detail-eyecatch {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 400px;
  padding: 43px 35px;
  border: 1px solid #666;
  border-radius: 20px;
  background: #fff;
}

.class-detail-eyecatch p,
.class-detail-content p {
  margin: 0;
  color: #000;
  font-size: 20px;
  line-height: 1.45;
}

.class-detail-content p {
  font-size: 24px;
  font-weight: 700;
}

.class-detail-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 247px;
  min-height: 54px;
  margin: auto auto 0;
  padding: 16px 42px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.class-detail-back span {
  font-size: 18px;
  line-height: 1;
}

.recruit-detail-page .class-detail-container {
  min-height: 1660px;
}

/* Figma lower contact page */
.contact-page {
  overflow-x: hidden;
}

.contact-page .site-header__nav a[aria-current="page"],
.contact-page .site-footer__nav a[aria-current="page"] {
  color: #fff;
}

.contact-page-main {
  padding: 54px 0 90px;
}

.contact-page-container {
  width: min(1140px, calc(100% - 48px));
  min-height: 1030px;
  margin-inline: auto;
}

.contact-page-breadcrumb {
  margin: 0 0 108px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
}

.contact-page-title {
  margin: 0 0 111px;
  text-align: center;
}

.contact-page-title p,
.contact-page-title h1 {
  margin: 0;
  color: var(--orange);
  font-weight: 700;
  line-height: 1.2;
}

.contact-page-title p {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 28px;
}

.contact-page-title h1 {
  margin-top: 9px;
  font-size: 26px;
}

.contact-form {
  display: grid;
  gap: 23px;
  width: min(600px, 100%);
  margin-inline: auto;
}

.contact-form__field {
  display: grid;
  gap: 10px;
}

.contact-form__field label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-form__field label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #f4f4f4;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.contact-form input {
  height: 52px;
  padding: 0 20px;
}

.contact-form textarea {
  min-height: 200px;
  padding: 17px 20px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  opacity: 1;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 0;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

/* Figma lower contact complete page */
.contact-complete-page {
  overflow-x: hidden;
}

.contact-complete-page .site-header__nav a[aria-current="page"],
.contact-complete-page .site-footer__nav a[aria-current="page"] {
  color: #fff;
}

.contact-complete-main {
  padding: 54px 0 72px;
}

.contact-complete-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1140px, calc(100% - 48px));
  min-height: 810px;
  margin-inline: auto;
}

.contact-complete-container .contact-page-breadcrumb {
  align-self: stretch;
  margin-bottom: 82px;
}

.contact-complete-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(900px, 100%);
  min-height: 590px;
  padding: 76px 48px;
  border-radius: 16px;
  background: #fff7ea;
  text-align: center;
}

.contact-complete-card h1 {
  margin: 0 0 67px;
  color: var(--orange);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-complete-card p {
  margin: 0;
  color: var(--orange);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-complete-card p + p {
  margin-top: 23px;
}

.contact-complete-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 240px;
  min-height: 54px;
  margin-top: 92px;
  padding: 15px 40px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.contact-complete-back span {
  font-size: 18px;
  line-height: 1;
}

/* Figma lower media/news list page */
.news-list-page {
  overflow-x: hidden;
}

.news-list-page .site-header__nav a[aria-current="page"],
.news-list-page .site-footer__nav a[aria-current="page"] {
  color: var(--orange);
  font-weight: 700;
}

.news-list-hero {
  position: relative;
  height: 303px;
  overflow: hidden;
  padding: 14px 150px 80px;
  background: #fff;
}

.news-list-hero .section-bg {
  opacity: 0.6;
  object-fit: cover;
  object-position: center 58%;
}

.news-list-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 73px;
  width: min(1140px, 100%);
  margin-inline: auto;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.news-list-breadcrumb {
  width: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.news-list-breadcrumb span {
  font-weight: 700;
}

.news-list-hero__title {
  width: min(698px, 100%);
  text-align: center;
}

.news-list-hero__title h1 {
  margin: 0 0 13px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.news-list-hero__title p {
  margin: 0;
  font-size: 20px;
  line-height: 1.44;
}

.news-list-section {
  padding: 72px 0;
  background: #fff;
}

.news-list-container {
  width: min(1142px, calc(100% - 48px));
  margin-inline: auto;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 340px);
  gap: 75px 60px;
  justify-content: center;
}

.news-list-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 340px;
  min-height: 300px;
  padding: 18px 25px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--pale-green);
  color: inherit;
  text-decoration: none;
}

.news-list-card img {
  width: 100%;
  height: 189px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
}

.news-list-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
}

.news-list-card time {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.news-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-top: 63px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.news-pagination a,
.news-pagination span {
  color: #505050;
}

.news-pagination .is-current {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 8px;
}

.news-pagination__next {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  font-size: 28px;
  line-height: 1;
}

.news-list-cta {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
}

.news-list-cta .section-bg {
  object-fit: cover;
}

.news-list-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(872px, calc(100% - 48px));
  margin-inline: auto;
  text-align: center;
}

.news-list-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.575;
}

.news-list-cta__buttons {
  display: grid;
  grid-template-columns: repeat(2, 416px);
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.news-list-cta__buttons .button {
  width: 100%;
  min-height: 55px;
  font-size: 20px;
}

@media (max-width: 1180px) {
  .classes-list-hero {
    padding-inline: 48px;
  }

  .classes-list-grid {
    grid-template-columns: repeat(3, 248px);
  }

  .classes-list-cta__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .class-detail-container {
    min-height: 1400px;
  }

  .news-list-hero {
    padding-inline: 48px;
  }

  .news-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-list-card {
    width: 100%;
  }

  .news-list-cta__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .classes-list-hero {
    height: auto;
    min-height: 300px;
    padding: 16px 24px 54px;
  }

  .classes-list-hero__inner {
    gap: 60px;
  }

  .classes-list-hero__title h1 {
    font-size: 32px;
  }

  .classes-list-hero__title p {
    font-size: 17px;
  }

  .classes-list-section {
    padding: 56px 0;
  }

  .classes-list-grid {
    grid-template-columns: repeat(2, minmax(0, 248px));
    gap: 32px 28px;
  }

  .classes-pagination {
    margin-top: 56px;
  }

  .classes-list-cta h2 {
    font-size: 26px;
  }

  .class-detail-main {
    padding: 28px 0 54px;
  }

  .class-detail-container {
    min-height: 980px;
  }

  .class-detail-breadcrumb {
    margin-bottom: 56px;
  }

  .class-detail-title h1 {
    font-size: 32px;
  }

  .class-detail-eyecatch {
    height: 320px;
  }

  .news-list-hero {
    height: auto;
    min-height: 300px;
    padding: 16px 24px 54px;
  }

  .news-list-hero__inner {
    gap: 60px;
  }

  .news-list-hero__title h1 {
    font-size: 32px;
  }

  .news-list-hero__title p {
    font-size: 17px;
  }

  .news-list-section {
    padding: 56px 0;
  }

  .news-list-grid {
    grid-template-columns: repeat(2, minmax(0, 340px));
    gap: 34px 28px;
  }

  .news-pagination {
    margin-top: 56px;
  }

  .news-list-cta h2 {
    font-size: 26px;
  }
}

@media (max-width: 560px) {
  .classes-list-hero {
    min-height: 282px;
    padding: 14px 20px 42px;
  }

  .classes-list-hero .section-bg {
    object-position: center;
  }

  .classes-list-hero__inner {
    gap: 52px;
  }

  .classes-list-breadcrumb {
    font-size: 12px;
  }

  .classes-list-hero__title h1 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .classes-list-hero__title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .classes-list-container,
  .classes-list-cta__inner {
    width: min(342px, calc(100% - 40px));
  }

  .classes-list-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .classes-list-card {
    width: 100%;
    min-height: auto;
    padding: 22px 24px;
  }

  .classes-list-card img {
    width: 100%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 194 / 151;
  }

  .classes-list-card h2 {
    margin-top: 16px;
    font-size: 22px;
  }

  .classes-list-card p {
    margin-top: 12px;
    font-size: 14px;
  }

  .classes-pagination {
    gap: 15px;
    margin-top: 42px;
    font-size: 16px;
  }

  .classes-list-cta {
    padding: 44px 0;
  }

  .classes-list-cta h2 {
    font-size: 23px;
    line-height: 1.55;
  }

  .classes-list-cta__buttons {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .classes-list-cta__buttons .button {
    min-height: 56px;
    font-size: 18px;
  }

  .class-detail-main {
    padding: 24px 0 42px;
  }

  .class-detail-container {
    width: min(342px, calc(100% - 40px));
    min-height: 820px;
  }

  .class-detail-breadcrumb {
    margin-bottom: 44px;
    font-size: 12px;
  }

  .class-detail-article {
    gap: 30px;
  }

  .class-detail-title {
    gap: 10px;
  }

  .class-detail-title h1 {
    font-size: 30px;
  }

  .class-detail-title p {
    font-size: 14px;
  }

  .class-detail-eyecatch {
    height: 240px;
    padding: 24px;
    border-radius: 16px;
  }

  .class-detail-eyecatch p {
    font-size: 16px;
  }

  .class-detail-content p {
    font-size: 20px;
  }

  .class-detail-back {
    width: min(247px, 100%);
    margin-top: 80px;
  }

  .news-list-hero {
    min-height: 282px;
    padding: 14px 20px 42px;
  }

  .news-list-hero__inner {
    gap: 52px;
  }

  .news-list-breadcrumb {
    font-size: 12px;
  }

  .news-list-hero__title h1 {
    margin-bottom: 10px;
    font-size: 27px;
  }

  .news-list-hero__title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .news-list-container,
  .news-list-cta__inner {
    width: min(342px, calc(100% - 40px));
  }

  .news-list-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .news-list-card {
    min-height: auto;
    padding: 18px 20px;
  }

  .news-list-card img {
    height: auto;
    aspect-ratio: 290 / 189;
  }

  .news-list-card h2 {
    font-size: 21px;
  }

  .news-list-card time {
    font-size: 14px;
  }

  .news-pagination {
    gap: 15px;
    margin-top: 42px;
    font-size: 16px;
  }

  .news-list-cta {
    padding: 44px 0;
  }

  .news-list-cta h2 {
    font-size: 23px;
    line-height: 1.55;
  }

  .news-list-cta__buttons {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-list-cta__buttons .button {
    min-height: 56px;
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .contact-page-main {
    padding: 32px 0 70px;
  }

  .contact-page-container {
    width: min(100% - 48px, 600px);
    min-height: 940px;
  }

  .contact-page-breadcrumb {
    margin-bottom: 78px;
  }

  .contact-page-title {
    margin-bottom: 70px;
  }

  .contact-complete-main {
    padding: 32px 0 70px;
  }

  .contact-complete-container {
    width: min(100% - 48px, 900px);
    min-height: 720px;
  }

  .contact-complete-container .contact-page-breadcrumb {
    margin-bottom: 64px;
  }

  .contact-complete-card {
    min-height: 460px;
    padding: 58px 32px;
  }

  .contact-complete-card h1 {
    margin-bottom: 44px;
    font-size: 28px;
  }

  .contact-complete-card p {
    font-size: 22px;
  }

  .contact-complete-back {
    margin-top: 68px;
  }
}

@media (max-width: 560px) {
  .contact-page-main {
    padding: 28px 0 64px;
  }

  .contact-page-container {
    width: calc(100% - 48px);
    min-height: 880px;
  }

  .contact-page-breadcrumb {
    margin-bottom: 72px;
    font-size: 13px;
  }

  .contact-page-title {
    margin-bottom: 62px;
  }

  .contact-page-title p {
    font-size: 26px;
  }

  .contact-page-title h1 {
    font-size: 24px;
  }

  .contact-form {
    gap: 20px;
  }

  .contact-form__field label {
    font-size: 15px;
  }

  .contact-form input {
    height: 50px;
    padding-inline: 18px;
    font-size: 15px;
  }

  .contact-form textarea {
    min-height: 180px;
    padding: 16px 18px;
    font-size: 15px;
  }

  .contact-form__submit {
    min-height: 56px;
    font-size: 17px;
  }

  .contact-complete-main {
    padding: 28px 0 64px;
  }

  .contact-complete-container {
    width: calc(100% - 48px);
    min-height: 690px;
  }

  .contact-complete-container .contact-page-breadcrumb {
    margin-bottom: 58px;
    font-size: 13px;
  }

  .contact-complete-card {
    min-height: 390px;
    padding: 44px 24px;
    border-radius: 14px;
  }

  .contact-complete-card h1 {
    margin-bottom: 34px;
    font-size: 24px;
  }

  .contact-complete-card p {
    font-size: 18px;
  }

  .contact-complete-card p + p {
    margin-top: 18px;
  }

  .contact-complete-back {
    width: 220px;
    min-height: 54px;
    margin-top: 54px;
    font-size: 15px;
  }
}

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

.container {
  width: min(var(--container), calc(100% - var(--side) * 2));
  margin-inline: auto;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.section-title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-title p {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.section-title h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.55;
}

.section-title span {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 240px;
  min-height: 55px;
  padding: 13px 23px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 18px rgba(240, 150, 0, 0.18);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.button span {
  display: grid;
  place-items: center;
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--orange);
  background: #fff;
  font-size: 0;
  line-height: 1;
}

.button span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translate(-62%, -50%) rotate(45deg);
}

.button--green {
  background: var(--green);
  box-shadow: 0 10px 18px rgba(138, 197, 31, 0.2);
}

.button--green span {
  color: var(--green);
}

.button--small {
  min-width: 142px;
  min-height: 52px;
  padding-block: 12px;
  font-size: 16px;
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
  padding-inline: var(--side);
}

.site-header__logo {
  flex: 0 0 auto;
  width: 273px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 14px;
  white-space: nowrap;
}

.site-header__nav a:not(.button):hover,
.site-footer__nav a:not(.button):hover {
  color: var(--orange);
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.site-header__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  border-radius: 99px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .site-header__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .site-header__toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 832px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 174px;
}

.hero h1 {
  width: min(520px, 100%);
  margin: 0 0 22px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.35;
}

.hero p {
  width: min(362px, 100%);
  margin: 0;
  padding: 15px 25px;
  border-radius: var(--radius);
  background: #fef2e2;
  font-size: 20px;
  font-weight: 350;
  line-height: 1.5;
}

.problem {
  position: relative;
  padding: 40px 0 28px;
  overflow: hidden;
}

.problem__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.problem__inner {
  position: relative;
  z-index: 1;
}

.problem__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 540px));
  justify-content: center;
  gap: 55px;
  margin-top: 19px;
}

.check-card {
  margin: 0;
  padding: 19px 29px;
  border: 1px solid #e4e4e4;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.04);
  list-style: none;
}

.check-card li {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 57px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  line-height: 1.7;
}

.check-card li:last-child {
  border-bottom: 0;
}

.problem__cards .check-card:nth-child(2) li:last-child {
  white-space: nowrap;
}

.check-card li::before {
  content: "笨・;
  flex: 0 0 auto;
  color: var(--green);
  font-weight: 900;
}

.problem__message {
  width: min(286px, 72vw);
  height: auto;
  margin: 28px auto 0;
  object-fit: contain;
}

.about,
.classes,
.profile,
.voice,
.media,
.faq,
.recruit,
.contact {
  position: relative;
  overflow: hidden;
}

.about {
  padding: 70px 0;
}

.about .section-bg {
  opacity: 1;
  object-fit: cover;
  object-position: center;
}

.about__bg--mobile {
  display: none;
}

.about__inner,
.classes .container,
.voice .container,
.media .container {
  position: relative;
  z-index: 1;
}

.about__body {
  display: grid;
  grid-template-columns: minmax(360px, 625px) minmax(0, 518px);
  align-items: center;
  margin-top: 18px;
}

.about__photo {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.about__text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.62;
}

.about__banner {
  width: min(946px, 100%);
  height: auto;
  margin: 6px auto 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.classes {
  padding: 70px 0;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
  margin-top: 57px;
}

.class-card {
  padding: 26px 27px;
  border: 1px solid var(--orange);
  border-radius: 24px;
  background: #fff;
  text-align: center;
}

.class-card:first-child {
  background: #f8f8f8;
}

.class-card img {
  width: 100%;
  aspect-ratio: 194 / 151;
  border-radius: 10px;
  object-fit: cover;
}

.class-card h3 {
  margin: 20px 0 18px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
}

.class-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.classes__button {
  display: flex;
  width: fit-content;
  min-width: 176px;
  min-height: 48px;
  margin: 52px auto 0;
  padding: 10px 28px;
}

.profile {
  padding: 88px 0 70px;
}

.profile__body {
  display: grid;
  grid-template-columns: minmax(300px, 429px) minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin-top: 42px;
}

.profile__photo {
  width: 100%;
  min-height: 520px;
  border-radius: 24px;
  object-fit: cover;
}

.profile__content {
  min-height: 540px;
  padding: 56px 50px;
  border-radius: 24px;
  background: #f8fbf4 url("assets/classes-texture.webp") center / cover no-repeat;
}

.profile__catch {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.55;
}

.profile__content h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.profile__content p {
  margin: 0 0 24px;
}

.profile__content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile__content li {
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--green);
  background: #fff;
  font-weight: 700;
}

.career {
  width: min(1042px, 100%);
  margin: 56px auto 0;
}

.career h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.career dl {
  margin: 0;
  padding: 24px 34px;
  border-radius: var(--radius);
  background: #f7faef;
}

.career div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid #dfeacb;
}

.career div:last-child {
  border-bottom: 0;
}

.career dt {
  color: var(--green);
  font-weight: 700;
}

.career dd {
  margin: 0;
}

.profile--old {
  display: none;
}

.profile--fixed {
  padding: 70px 0 56px;
  background: #fff;
}

.profile--fixed .profile__inner {
  width: min(1120px, calc(100% - var(--side) * 2));
}

.profile--fixed .profile__body {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: start;
  gap: 56px;
  margin-top: 28px;
}

.profile__figure {
  position: relative;
  margin: 0;
  padding-bottom: 0;
}

.profile--fixed .profile__figure > .profile__photo:not(.profile__photo--local) {
  display: none;
}

.profile--fixed .profile__photo {
  width: 420px;
  height: auto;
  min-height: 0;
  margin-inline: auto;
  border-radius: 0;
  object-fit: contain;
}

.profile__name {
  display: none;
}

.profile__name strong {
  display: block;
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.profile__name span {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.profile--fixed .profile__content {
  position: relative;
  min-height: 0;
  padding: 34px 0 0;
  border-radius: 0;
  background: transparent;
}

.profile--fixed .profile__content > *:not(.profile__circle) {
  position: relative;
  z-index: 1;
}

.profile__circle {
  display: none;
}

.profile__text-panel {
  width: min(100%, 760px);
  margin-inline: auto;
  padding: 34px 28px 10px;
  border-radius: 18px;
  background: #fff8ec;
}

.profile--fixed .profile__catch {
  margin: 0 0 28px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}

.profile--fixed .profile__content p:not(.profile__catch) {
  width: 100%;
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}

.profile--fixed .profile__text-panel p:last-child {
  margin-bottom: 0;
}

.profile__licenses {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.profile__licenses h3 {
  order: 1;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.profile__licenses-image {
  order: 2;
  width: min(100%, 740px);
  height: auto;
}

.profile--fixed .profile__licenses ul {
  order: 3;
  display: none;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile--fixed .profile__licenses li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid #e4f2d4;
  border-radius: 999px;
  color: var(--text);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 5px 12px rgba(138, 197, 31, 0.08);
}

.profile--fixed .profile__licenses li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #edf6e2;
}

.profile--fixed .career {
  width: min(100%, 980px);
  margin: 44px auto 0;
}

.profile--fixed .career h3 {
  margin: 0 0 12px 54px;
  font-size: 16px;
  font-weight: 700;
}

.career__body {
  position: relative;
  display: block;
  min-height: 278px;
}

.career__table-image {
  display: none;
}

.profile--fixed .career dl {
  width: 720px;
  max-width: 720px;
  margin: 0 auto 0 54px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.profile--fixed .career dl > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid #cbe5a7;
}

.profile--fixed .career dl > div:last-child {
  border-bottom: 0;
}

.profile--fixed .career dt,
.profile--fixed .career dd {
  min-height: 39px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.profile--fixed .career dt {
  display: flex;
  align-items: center;
  color: var(--text);
  background: #edf6e2;
}

.profile--fixed .career dd {
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--text);
}

.career__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.career__table-wrap {
  position: relative;
  display: none !important;
  width: 100%;
}

.career__table-link {
  display: none;
}

.career__photo {
  position: absolute;
  right: 42px;
  bottom: 20px;
  width: 156px;
  height: 156px;
  border-radius: 0;
  object-fit: contain;
}

.voice {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 8% 24%, rgba(138, 197, 31, 0.13) 0 76px, transparent 78px),
    radial-gradient(circle at 23% 92%, rgba(255, 218, 66, 0.32) 0 130px, transparent 132px),
    radial-gradient(circle at 87% 88%, rgba(245, 175, 193, 0.22) 0 88px, transparent 90px),
    #fff;
}

.voice::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  width: min(100%, 1500px);
  height: 330px;
  border: 6px solid rgba(138, 197, 31, 0.12);
  border-radius: 90px;
  transform: translateX(-50%);
  pointer-events: none;
}

.voice::after {
  content: "";
  position: absolute;
  top: 108px;
  left: max(24px, calc(50% - 690px));
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(138, 197, 31, 0.12) url("data:image/svg+xml,%3Csvg%20width%3D%2290%22%20height%3D%2290%22%20viewBox%3D%220%200%2090%2090%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M45%2017L73%2070H17L45%2017Z%22%20fill%3D%22%238AC51F%22/%3E%3Cpath%20d%3D%22M45%2043L57%2070H33L45%2043Z%22%20fill%3D%22white%22/%3E%3C/svg%3E") center / 92px 92px no-repeat;
  pointer-events: none;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-top: 46px;
  position: relative;
  z-index: 1;
}

.voice-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.voice-card img {
  width: 100%;
  aspect-ratio: 340 / 188;
  border-radius: var(--radius);
  object-fit: cover;
}

.voice-card p {
  min-height: 170px;
  margin: 0;
  padding: 28px 24px;
  border-radius: 24px;
  background: #f2f5f9;
  font-size: 16px;
  line-height: 1.8;
}

.voice-card:nth-child(2) p {
  background: var(--cream);
}

.voice-card:nth-child(3) p {
  background: var(--pale-green);
}

.media {
  padding: 70px 0;
}

.media .section-bg {
  opacity: 0.5;
}

.media__names {
  position: relative;
  z-index: 1;
  margin: 39px 0 87px;
  padding: 15px 31px;
  border-radius: var(--radius);
  background: #fff7e8;
  font-size: 24px;
  line-height: 1.68;
  text-align: center;
}

.media-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
}

.media-card {
  padding: 18px 25px;
  border-radius: var(--radius);
  background: var(--pale-green);
}

.media-card img {
  width: 100%;
  aspect-ratio: 290 / 189;
  border-radius: var(--radius);
  object-fit: cover;
}

.media-card h3 {
  margin: 10px 0 2px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
}

.media-card time {
  font-size: 16px;
}

.media .button {
  display: flex;
  width: fit-content;
  margin: 40px auto 0;
}

.faq {
  padding: 70px 0;
}

.faq-list {
  display: grid;
  gap: 19px;
  margin-top: 43px;
}

.faq-item {
  padding: 24px 42px;
  border-radius: 18px;
  background: var(--cream);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.recruit {
  padding: 40px 0;
  background: var(--pale-green);
}

.recruit__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  border: 1px solid #eff7e6;
  border-radius: 32px;
  background: #fff;
}

.recruit .button {
  margin-top: 22px;
}

.contact {
  min-height: 495px;
}

.contact .section-bg {
  opacity: 1;
  object-fit: cover;
  object-position: center;
}

.contact__bg--mobile {
  display: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 324px minmax(360px, 552px) 377px;
  align-items: center;
  justify-content: center;
  min-height: 495px;
  padding-inline: clamp(20px, 6.4vw, 93px);
}

.contact__content {
  text-align: center;
}

.contact__content h2 {
  margin: 0 0 61px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.575;
}

.contact__buttons {
  display: grid;
  gap: 28px;
  width: min(396px, 100%);
  margin-inline: auto;
}

.contact__buttons .button {
  width: 100%;
}

.contact__person {
  width: 100%;
  object-fit: contain;
}

.site-footer {
  padding: 15px 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: 0 40px;
  width: calc(100% - var(--side) * 2);
  max-width: 1140px;
  margin-inline: auto;
}

.home-page .site-footer__inner {
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 0 40px;
  width: calc(100% - var(--side) * 2);
  max-width: 1140px;
  margin-inline: auto;
}

.site-footer__brand {
  display: grid;
  justify-items: center;
  gap: 11px;
}

.site-footer__qr {
  width: 124px;
  height: 124px;
  object-fit: cover;
}

.site-footer__instagram {
  width: 28px;
  height: 28px;
}

.site-footer__instagram-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  line-height: 0;
}

.site-footer__address {
  margin: 32px 0 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
  white-space: nowrap;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
  font-size: 14px;
  white-space: nowrap;
}

.site-footer__copy {
  grid-column: 1 / -1;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1180px) {
  :root {
    --side: 32px;
  }

  .site-header__logo {
    width: 220px;
  }

  .site-header__nav,
  .site-footer__nav {
    gap: 16px;
  }

  .about__body,
  .profile__body,
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact__person--right {
    display: none;
  }

  .class-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    gap: 30px;
  }

  .site-footer__inner {
    gap: 0 40px;
  }
}

@media (max-width: 900px) {
  :root {
    --side: 20px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-header__toggle {
    display: block;
  }

  .site-header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 72px);
    padding: 16px 20px 24px;
    overflow: auto;
    border-top: 1px solid #eee;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-open .site-header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header__nav a {
    padding: 12px 0;
  }

  .site-header__nav .button {
    margin-top: 10px;
  }

  .hero {
    min-height: 650px;
  }

  .hero__bg {
    object-position: 60% center;
  }

  .hero__inner {
    padding-top: 285px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 17px;
  }

  .problem__cards,
  .about__body,
  .profile__body,
  .voice-grid,
  .media-grid,
  .contact__inner,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__address {
    text-align: center;
    white-space: normal;
  }

  .problem__cards {
    gap: 20px;
  }

  .problem__cards .check-card:nth-child(2) li:last-child {
    white-space: normal;
  }

  .about,
  .classes,
  .profile,
  .voice,
  .media,
  .faq {
    padding: 56px 0;
  }

  .about__text p {
    font-size: 17px;
  }

  .profile__photo {
    min-height: 420px;
  }

  .profile__content {
    min-height: 0;
    padding: 32px 24px;
  }

  .profile__content li {
    border-radius: 16px;
  }

  .media__names {
    margin-bottom: 48px;
    font-size: 18px;
  }

  .contact__inner {
    padding-block: 48px;
  }

  .contact__person {
    width: min(280px, 80%);
    margin-inline: auto;
  }

  .contact__content h2 {
    margin-bottom: 32px;
    font-size: 26px;
  }

  .site-footer__inner {
    justify-items: center;
    gap: 28px;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .mobile-br {
    display: block;
  }

  .mobile-nowrap {
    white-space: nowrap;
  }

  .section-title p {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 25px;
    line-height: 1.45;
  }

  .button {
    width: 100%;
    min-width: 0;
    font-size: 17px;
  }

  .button--small {
    width: auto;
    min-width: 142px;
  }

  .classes__button {
    width: fit-content;
    min-width: 176px;
  }

  .site-header__logo {
    width: 170px;
  }

  .hero {
    min-height: 540px;
  }

  .hero__inner {
    padding-top: 22px;
  }

  .hero h1 {
    width: min(315px, 86vw);
    margin-bottom: 14px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.32;
  }

  .hero__bg {
    object-position: 62% center;
  }

  .hero p {
    width: min(236px, 68vw);
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.65;
  }

  .hero__accent--orange {
    color: var(--orange);
  }

  .hero__accent--green {
    color: var(--green);
  }

  .check-card {
    padding: 14px 20px;
  }

  .check-card li {
    align-items: flex-start;
    min-height: auto;
    padding: 12px 0;
  }

  .about__photo {
    min-height: 300px;
  }

  .about__banner {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .class-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 34px;
  }

  .profile__catch {
    font-size: 23px;
  }

  .career dl {
    padding: 18px;
  }

  .career div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .voice-card p {
    min-height: auto;
  }

  .media-card h3 {
    font-size: 20px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .recruit__box {
    padding: 32px 20px;
  }

  .contact__person--left {
    display: none;
  }

  .contact__content h2 {
    font-size: 22px;
  }

  .contact__lead {
    display: inline-block;
    white-space: nowrap;
    font-size: clamp(18px, 5.1vw, 22px);
  }

  .site-footer__inner,
  .home-page .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    width: calc(100% - 40px);
    max-width: 390px;
    gap: 24px;
  }

  .site-footer__brand,
  .home-page .site-footer__brand {
    width: 100%;
  }

  .site-footer__address,
  .home-page .site-footer__address {
    margin-top: 24px;
    text-align: center;
    white-space: normal;
  }

  .site-footer__nav,
  .home-page .site-footer__nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 14px;
    white-space: normal;
  }

  .site-footer__nav .button,
  .home-page .site-footer__nav .button {
    width: auto;
    min-width: 180px;
  }
}

@media (max-width: 900px) {
  .profile--fixed {
    padding: 64px 0 48px;
  }

  .profile--fixed .profile__body {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  .profile--fixed .profile__photo {
    width: min(320px, 100%);
    height: auto;
  }

  .profile--fixed .profile__content {
    padding-top: 18px;
    background: transparent;
  }

  .profile__text-panel {
    width: min(100%, 760px);
    padding: 30px 26px 10px;
  }

  .profile__circle {
    top: -220px;
    left: 50%;
    right: auto;
    width: 940px;
    height: 790px;
    transform: translateX(-50%);
  }

  .profile--fixed .profile__catch {
    font-size: 32px;
  }

  .profile--fixed .career dl {
    width: 100%;
  }

  .profile--fixed .career h3 {
    margin-left: 0;
  }

  .career__body {
    display: block;
    gap: 24px;
    min-height: 0;
    overflow: visible;
  }

  .career__table-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .profile--fixed .career dl {
    display: none;
  }

  .career__photo {
    position: static;
    display: block;
    width: 150px;
    height: 150px;
    margin: 18px auto 0;
  }
}

@media (max-width: 560px) {
  .profile--fixed .profile__inner {
    width: min(100% - 40px, 1000px);
  }

  .profile__name {
    width: min(288px, 92%);
  }

  .profile__name strong {
    font-size: 24px;
  }

  .profile__name span {
    font-size: 15px;
  }

  .profile--fixed .profile__content p:not(.profile__catch) {
    font-size: 15px;
  }

  .profile__text-panel {
    padding: 24px 20px 8px;
  }

  .profile--fixed .profile__catch {
    font-size: 28px;
  }

  .profile--fixed .profile__licenses ul {
    display: none;
    grid-template-columns: 1fr;
  }

  .profile--fixed .career dl > div {
    grid-template-columns: 92px 1fr;
  }

  .profile--fixed .career {
    width: 100%;
  }

  .profile--fixed .career h3 {
    margin-left: 0;
  }

  .career__body {
    display: block;
    min-height: 0;
    overflow: visible;
  }

  .career__table-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .profile--fixed .career dl {
    display: none;
  }

  .career__photo {
    display: block;
    width: 150px;
    height: 150px;
    margin: 18px auto 0;
  }

  .profile--fixed .career dt,
  .profile--fixed .career dd {
    padding: 9px 10px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .profile--fixed .career {
    width: min(100%, calc(100vw - 40px));
    margin: 36px auto 0;
  }

  .profile--fixed .career h3 {
    margin: 0 0 14px;
  }

  .profile--fixed .career .career__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 0;
    overflow: visible;
  }

  .career__table-wrap {
    display: block !important;
    order: 1;
    line-height: 0;
  }

  .profile--fixed .career .career__table-image {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    object-fit: contain;
  }

  .career__table-link {
    position: absolute;
    z-index: 2;
    top: 35%;
    left: 0;
    right: 0;
    display: block;
    height: 14%;
    cursor: pointer;
  }

  .profile--fixed .career dl {
    display: none;
  }

  .profile--fixed .career .career__photo {
    position: static;
    inset: auto;
    display: block;
    order: 2;
    width: 132px;
    height: 132px;
    margin: 18px auto 0;
    border-radius: 50%;
    object-fit: contain;
  }
}

/* Fixed voice section */
.voice--old {
  display: none;
}

.voice--fixed {
  position: relative;
  padding: 94px 0 86px;
  overflow: hidden;
  background: #fff url("assets/voice-bg.webp") center / cover no-repeat;
}

.voice--fixed::before {
  content: none;
}

.voice--fixed::after {
  content: none;
}

.voice--fixed .container {
  position: relative;
  z-index: 1;
}

.voice--fixed .section-title {
  margin-bottom: 44px;
}

.voice--fixed .voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
  margin-top: 0;
}

.voice--fixed .voice-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.voice--fixed .voice-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
}

.voice--fixed .voice-card p {
  height: 248px;
  margin: 0;
  padding: 28px 30px;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.85;
  color: var(--text);
  box-shadow: none;
}

.voice--fixed .voice-card:nth-child(1) p {
  background: #fff1f6;
}

.voice--fixed .voice-card:nth-child(2) p {
  background: #f1f4f8;
}

.voice--fixed .voice-card:nth-child(3) p {
  background: #fff8ec;
}

@media (max-width: 900px) {
  .contact__bg--desktop {
    display: none;
  }

  .contact__bg--mobile {
    display: block;
  }

  .about__bg--desktop {
    display: none;
  }

  .about__bg--mobile {
    display: block;
  }

  .about .section-bg {
    object-fit: cover;
    object-position: top center;
  }

  .voice--fixed {
    padding: 76px 0 64px;
    background-image: url("assets/voice-mobile-bg.webp");
    background-position: top center;
    background-size: cover;
  }

  .voice--fixed::before {
    content: none;
  }

  .voice--fixed::after {
    content: none;
  }

  .voice--fixed .voice-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .voice--fixed .voice-card {
    gap: 14px;
  }

  .voice--fixed .voice-card img {
    height: auto;
    max-height: 230px;
  }

  .voice--fixed .voice-card p {
    height: auto;
    min-height: auto;
    padding: 22px 24px;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .voice--fixed::before {
    content: none;
  }

  .voice--fixed::after {
    content: none;
  }

  .voice--fixed .voice-card img {
    max-height: 230px;
  }
}

/* Figma lower about page */
.figma-about-page {
  overflow-x: hidden;
}

.figma-about-page .site-header__nav a[aria-current="page"],
.figma-about-page .site-footer__nav a[aria-current="page"] {
  color: var(--orange);
  font-weight: 700;
}

.figma-about-container {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

.figma-about-hero {
  position: relative;
  height: 303px;
  overflow: hidden;
  padding: 12px 150px 82px;
}

.figma-about-hero .section-bg {
  opacity: 0.5;
  object-fit: cover;
  object-position: center 100%;
}

.figma-about-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 74px;
  width: min(1140px, 100%);
  margin-inline: auto;
  color: #fff;
}

.figma-about-breadcrumb {
  width: 100%;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}

.figma-about-breadcrumb span {
  font-weight: 700;
}

.figma-about-hero__title {
  width: min(633px, 100%);
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.figma-about-hero__title h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.figma-about-hero__title p {
  margin: 0;
  font-size: 20px;
  line-height: 1.52;
}

.figma-about-diversity {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 77px;
}

.figma-about-diversity .section-bg {
  object-fit: cover;
}

.figma-about-diversity__bg--mobile {
  display: none;
}

.figma-about-diversity__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(1213px, 100%);
}

.figma-about-diversity__text {
  width: 632px;
  margin-right: -37px;
}

.figma-about-diversity__text h2 {
  width: 501px;
  margin: 0 0 29px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.05em;
}

.figma-about-diversity__text p {
  margin: 0 0 0;
  font-size: 20px;
  line-height: 1.72;
}

.figma-about-diversity__text p + p {
  margin-top: 8px;
}

.figma-about-diversity__photo {
  width: 618px;
  height: 475px;
  object-fit: contain;
}

.figma-about-feature,
.figma-about-program {
  position: relative;
  overflow: hidden;
}

.figma-about-feature {
  padding: 70px 0;
}

.figma-about-feature .section-bg,
.figma-about-program .section-bg {
  object-fit: cover;
  opacity: 0.5;
}

.figma-about-heading {
  width: min(675px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.figma-about-heading p {
  margin: 0 0 19px;
  color: var(--green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.06em;
}

.figma-about-heading h2 {
  margin: 0 0 31px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.58;
}

.figma-about-heading span {
  display: block;
  font-size: 20px;
  line-height: 1.44;
}

.figma-about-feature__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.figma-about-feature__cards article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 182px;
  padding: 6px 35px 13px;
  border: 1px solid #d9d9d9;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 12px rgba(31, 111, 74, 0.07);
}

.figma-about-feature__cards img {
  width: 97px;
  height: 97px;
  object-fit: contain;
}

.figma-about-feature__cards article:nth-child(3) img,
.figma-about-feature__cards article:nth-child(4) img {
  width: 103px;
  height: 103px;
}

.figma-about-feature__cards h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.43;
  text-align: center;
}

.figma-about-program {
  padding: 70px 0 35px;
}

.figma-about-heading--program {
  margin-bottom: 39px;
}

.figma-program-list {
  display: flex;
  flex-direction: column;
  gap: 67px;
}

.figma-program-card {
  display: grid;
  grid-template-columns: 478px 549px;
  gap: 52px;
  align-items: center;
  min-height: 474px;
  padding: 28px 22px 29px 39px;
  border: 1px solid var(--green);
  border-radius: 30px;
  background: #fff;
}

.figma-program-card--reverse {
  grid-template-columns: 549px 508px;
  gap: 47px;
  padding: 26px 15px 30px 21px;
}

.figma-program-card--reverse .figma-program-card__text {
  order: 2;
}

.figma-program-card--reverse > img {
  order: 1;
}

.figma-program-card h3 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.27;
}

.figma-program-card__lead {
  margin: 0 0 19px;
  font-size: 20px;
  line-height: 1.44;
}

.figma-program-card p:not(.figma-program-card__lead) {
  margin: 43px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.figma-program-card > img {
  width: 549px;
  height: auto;
  aspect-ratio: 549 / 417;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.figma-program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.figma-program-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf6e2;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}

.figma-program-tags .tag-row-break {
  display: none;
}

.figma-program-note {
  width: min(578px, 100%);
  margin: 26px auto 0;
  font-size: 16px;
  line-height: 1.46;
}

.figma-about-cta {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
}

.figma-about-cta .section-bg {
  object-fit: cover;
  object-position: center;
}

.figma-about-cta__inner {
  position: relative;
  z-index: 1;
  width: min(872px, calc(100% - 48px));
  margin-inline: auto;
  text-align: center;
}

.figma-about-cta h2 {
  margin: 0 0 22px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.58;
}

.figma-about-cta__buttons {
  display: flex;
  gap: 24px;
}

.figma-about-cta__buttons .button {
  flex: 1;
  height: 55px;
}

@media (max-width: 900px) {
  .figma-about-hero {
    height: auto;
    padding: 24px 24px 64px;
  }

  .figma-about-hero__inner {
    gap: 52px;
  }

  .figma-about-diversity {
    padding: 64px 24px;
  }

  .figma-about-diversity__bg--desktop {
    display: none;
  }

  .figma-about-diversity__bg--mobile {
    display: block;
    object-position: top center;
  }

  .figma-about-diversity__inner {
    flex-direction: column;
    gap: 28px;
  }

  .figma-about-diversity__text {
    width: 100%;
    margin-right: 0;
  }

  .figma-about-diversity__text h2 {
    width: 100%;
  }

  .figma-about-diversity__photo {
    width: min(100%, 618px);
    height: auto;
  }

  .figma-about-feature__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .figma-program-card,
  .figma-program-card--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }

  .figma-program-card--reverse .figma-program-card__text,
  .figma-program-card--reverse > img {
    order: initial;
  }

  .figma-program-card > img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 560px) {
  .figma-about-page,
  .figma-about-page main,
  .figma-about-page section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .figma-about-hero__title,
  .figma-about-diversity__text,
  .figma-about-heading,
  .figma-program-card__text,
  .figma-about-cta__inner {
    min-width: 0;
    max-width: 100%;
  }

  .figma-about-container,
  .figma-about-hero__title,
  .figma-about-diversity__inner,
  .figma-about-diversity__text,
  .figma-about-diversity__text h2,
  .figma-about-heading,
  .figma-program-card,
  .figma-about-cta__inner {
    width: calc(100vw - 48px) !important;
  }

  .figma-about-diversity__photo,
  .figma-program-card > img {
    width: calc(100vw - 48px);
    max-width: 100%;
  }

  .figma-about-diversity__text,
  .figma-about-diversity__text h2,
  .figma-about-heading {
    width: calc(100vw - 48px) !important;
    margin-inline: auto;
  }

  .figma-about-hero__title p,
  .figma-about-diversity__text h2,
  .figma-about-diversity__text p,
  .figma-about-heading span,
  .figma-program-card h3,
  .figma-program-card p,
  .figma-about-cta h2 {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }

  .figma-about-hero__title h1 {
    font-size: 30px;
  }

  .figma-about-hero__title p,
  .figma-about-diversity__text p,
  .figma-about-heading span,
  .figma-program-card__lead {
    font-size: 16px;
  }

  .figma-about-diversity__text h2 {
    font-size: 29px;
  }

  .figma-about-heading h2,
  .figma-program-card h3,
  .figma-about-cta h2 {
    font-size: 25px;
  }

  .figma-about-feature {
    padding: 54px 0;
  }

  .figma-about-feature__cards {
    grid-template-columns: 1fr;
  }

  .figma-about-feature__cards article {
    height: auto;
    min-height: 170px;
  }

  .figma-about-program {
    padding: 54px 0 34px;
  }

  .figma-program-list {
    gap: 34px;
  }

  .figma-program-tags span {
    padding-inline: 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  .figma-program-tags .tag-row-break {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    min-height: 0;
    height: 0;
    padding: 0;
    background: transparent;
  }

  .figma-program-card p:not(.figma-program-card__lead) {
    margin-top: 22px;
  }

  .figma-about-cta__buttons {
    flex-direction: column;
    gap: 16px;
  }
}

