@charset "UTF-8";
:root {
  --color-primary: #ff5041;
  --color-primary-dark: #cc4034;
  --color-secondary: #003194;
  --color-secondary-dark: #00193b;
  --color-accent: #e1b800;
  --color-button-overlay: #eecf45;
  --color-alert: #da251d;
  --color-white: #ffffff;
  --color-white-soft: #fff;
  --color-black: #000000;
  --color-black-soft: #222222;
  --color-black-soft-rgb: 34, 34, 34;
  --color-gray: #f6f6f6;
  --color-gray-50: #f7f7f7;
  --color-gray-75: #f7f9fe;
  --color-gray-100: #f4f4f4;
  --color-gray-125: #f6f5f4;
  --color-gray-150: #f4f8fd;
  --color-gray-200: #e5e5e5;
  --color-gray-250: #ece7e1;
  --color-gray-300: #e4e4e4;
  --color-gray-350: #e6e6e6;
  --color-gray-400: #e0e0e0;
  --color-gray-425: #dfdfdf;
  --color-gray-450: #dddddd;
  --color-gray-500: #d9d9d9;
  --color-gray-600: #d1d1d1;
  --color-gray-650: #d9d9d9;
  --color-gray-700: #bfbfbf;
  --color-gray-750: #c4c4c4;
  --color-gray-800: #bcbcbc;
  --color-gray-850: #ababab;
  --color-gray-900: #c6c6c6;
  --color-gray-950: #818181;
  --color-gray-960: #828282;
  --color-gray-975: #707070;
  --color-link-blue: #015ac8;
  --color-link-blue-alt: #005ac8;
  --color-accent-red: #ff5041;
  --color-accent-red-2: #ff4f3f;
  --color-accent-red-3: #ff5a45;
  --color-accent-red-4: #ff5245;
  --color-link-blue-2: #1f6fd8;
  --color-link-blue-3: #005fd0;
  --color-blue-strong: #1869d3;
  --color-blue-quiet: #1257cf;
  --color-blue-link: #015ac8;
  --color-blue-pale: #f6f8ff;
  --color-blue-pale-2: #fef0ed;
  --color-blue-border: #e8edf4;
  --color-blue-muted: #6b6b6b;
  --color-red-strong: #ff4d3f;
  --color-red-soft: #ff5a45;
  --color-red-mid: #ff5245;
  --color-red-pale: #fff5f2;
  --color-green-deep: #002a31;
  --color-green-deeper: #0b2331;
  --color-sand: #f7f1e3;
  --color-text-default: #754c24;
  --color-text-muted: #4a4a4a;
  --color-text-light: #bcbcbc;
  --color-text-subtle: #828282;
  --color-text-strong: #555555;
  --color-shadow-soft-rgb: 34, 34, 34;
  --color-shadow-blue-rgb: 0, 49, 148;
  --color-shadow-blue-2-rgb: 46, 112, 215;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Playfair Display", serif;
  --font-outfit: "Outfit", sans-serif;
}

html {
  scroll-behavior: smooth;
  color: var(--color-text-default);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  font-family: var(--font-sans), sans-serif;
  color: inherit;
  background: var(--color-white);
  font-feature-settings: "halt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

a:hover {
  opacity: 0.8;
}

main {
  flex-grow: 1;
}

img,
svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.main {
  position: relative;
  display: block;
  flex: 1 0 auto;
}

.inner--header {
  width: 126.6805555556vw;
}

body:not(.front-page) .inner--md {
  position: relative;
  width: 97.2222222222vw;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  body:not(.front-page) .inner--md {
    width: 88.4615384615vw;
  }
}

body:not(.front-page).page-contact .inner--md {
  position: relative;
  width: 68.7222222222vw;
  margin: 0 auto;
}

.inner--lg {
  width: 116.6666666667vw;
}

.pc-only-inline {
  display: inline !important;
}
@media screen and (max-width: 1300px) {
  .pc-only-inline {
    display: none !important;
  }
}

.sp-only-inline {
  display: none !important;
}
@media screen and (max-width: 1300px) {
  .sp-only-inline {
    display: inline !important;
  }
}

.pc-only-inline-block {
  display: inline-block !important;
}
@media screen and (max-width: 1300px) {
  .pc-only-inline-block {
    display: none !important;
  }
}

.sp-only-inline-block {
  display: none !important;
}
@media screen and (max-width: 1300px) {
  .sp-only-inline-block {
    display: inline-block !important;
  }
}

.pc-only-block {
  display: block !important;
}
@media screen and (max-width: 1300px) {
  .pc-only-block {
    display: none !important;
  }
}

.sp-only-block {
  display: none !important;
}
@media screen and (max-width: 1300px) {
  .sp-only-block {
    display: block !important;
  }
}

.pc-only-flex {
  display: flex !important;
}
@media screen and (max-width: 1300px) {
  .pc-only-flex {
    display: none !important;
  }
}

.sp-only-flex {
  display: none !important;
}
@media screen and (max-width: 1300px) {
  .sp-only-flex {
    display: flex !important;
  }
}

.hide-sp { /* check-ignore */ }
@media screen and (max-width: 1300px) {
  .hide-sp {
    display: none !important;
  }
}

@media screen and (max-width: 1300px) {
  .br-pc {
    display: none;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 991px) {
  .br-tab {
    display: inline;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 1300px) {
  .br-sp {
    display: inline;
  }
}

.hide {
  opacity: 0;
  pointer-events: none;
}

.transition-500 {
  transition: 0.5s;
}

.js-fadeUp,
.each-fadeUp li {
  opacity: 0;
  transform: translateY(2.0833333333vw);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp.is-inview,
.each-fadeUp li.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.js-fadeUp-mv {
  opacity: 0;
  transform: translateY(2.0833333333vw);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp-mv.is-inview {
  opacity: 1;
  transition-delay: 0.5s;
}

.font-en {
  font-family: var(--font-en);
  font-feature-settings: normal;
}

.font-outfit {
  font-family: var(--font-outfit);
  font-feature-settings: normal;
}

.lang-ja {
  font-feature-settings: normal;
}

.icon-list-item::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.common-ttl {
  font-weight: 700;
  font-size: 5.5555555556vw;
}
@media screen and (max-width: 1300px) {
  .common-ttl {
    font-size: 8.4615384615vw;
  }
}
.common-ttl--small {
  font-size: 3.6805555556vw;
}
@media screen and (max-width: 1300px) {
  .common-ttl--small {
    font-size: 8.4615384615vw;
  }
}

.section-title-common {
  text-align: center;
}

.section-title-common__eyebrow {
  color: var(--color-red-soft);
  font-size: 1.1111111111vw;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.section-title-common__title {
  color: var(--color-black-soft);
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  margin-top: 0.6944444444vw;
}

.section-title-common__lead {
  margin-top: 1.7361111111vw;
  color: var(--color-text-muted);
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.case-card {
  width: 30.5555555556vw;
  min-height: 29.1666666667vw;
  padding: 1.3888888889vw;
  background: var(--color-white-soft);
  box-shadow: 0 0.0694444444vw 1.3888888889vw rgba(0, 0, 0, 0.1019608);
}

.case-card__link {
  display: block;
  height: 100%;
  color: var(--color-black-soft);
  text-decoration: none;
}

.case-card__image {
  width: 27.7777777778vw;
  height: 19.4444444444vw;
}
.case-card__image img {
  height: 100%;
  object-fit: cover;
}

.case-card__body {
  padding: 2.0833333333vw 0 0 0.6944444444vw;
}

.case-card__title {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0;
  color: #000;
  font-size: 1.25vw;
  line-height: 1;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.case-card__tags {
  display: flex;
  align-items: center;
}

.case-card__tag {
  display: inline-block;
  margin-top: 1.875vw;
  color: var(--color-blue-link);
  font-size: 0.9722222222vw;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  cursor: pointer;
}
.case-card__tag::after {
  content: "";
  position: absolute;
  inset: 0;
}
.case-card__tag:hover {
  text-decoration: underline;
}

@media (max-width: 959px) {
  .case-card {
    width: 56.6666666667vw;
    height: 54.1025641026vw;
    padding: 2.5641025641vw;
  }
  .case-card__image {
    width: 51.5384615385vw;
    height: 36.1538461538vw;
  }
  .case-card__body {
    padding: 2.8205128205vw 0 0 1.2820512821vw;
  }
  .case-card__title {
    font-size: 2.3076923077vw;
    line-height: 3.8461538462vw;
    letter-spacing: 0.1em;
  }
  .case-card__tag {
    margin-top: 2.5641025641vw;
    font-size: 1.7948717949vw;
    letter-spacing: 0.1em;
    cursor: pointer;
  }
}
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 0.9027777778vw 1.875vw;
  border-radius: 69.375vw;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.25vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1300px) {
  .step-badge {
    padding: 1.33vw 4.27vw;
    font-size: 3.2vw;
  }
}

.step-badge + * {
  margin-top: -1.7361111111vw;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: transparent;
  height: 7.2916666667vw;
}
@media screen and (max-width: 1300px) {
  .header {
    height: auto;
  }
}

.header__inner {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  height: 7.2916666667vw;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6944444444vw;
}
@media screen and (max-width: 1300px) {
  .header__inner {
    align-items: flex-start;
    max-width: 100%;
    height: 20.5128205128vw;
    padding: 0 4.358974359vw;
    z-index: 40;
  }
}

.header__sns {
  position: absolute;
  top: 2.7777777778vw;
  left: 8.6805555556vw;
  width: 8.1498016251vw;
  height: 1.6666666667vw;
}
.header__sns-link {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__sns-link:nth-child(1) {
  top: 0;
  left: 0;
  width: 1.6666666667vw;
  height: 1.6578888893vw;
}
.header__sns-link:nth-child(2) {
  top: 0;
  left: 2.7083333333vw;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
.header__sns-link:nth-child(3) {
  top: 0.4166666667vw;
  left: 5.7638888889vw;
  width: 2.3859127363vw;
  height: 0.9027777778vw;
}
.header__sns-icon {
  height: 100%;
  object-fit: contain;
}
.header__logo {
  position: absolute;
  top: 2.7777777778vw;
  left: 39.5833333333vw;
  flex-shrink: 0;
  width: 20.8333333333vw;
  height: 2.2222222222vw;
}
@media screen and (max-width: 1300px) {
  .header__logo {
    top: 12.8205128205vw; /* header logo sp */
    left: 50%;
    width: 61.7948717949vw;
    height: auto;
    translate: -50% 0;
  }
}
.header__logo-link {
  display: block;
}
.header__logo-img {
  height: auto;
}
.header__menu-button {
  position: absolute;
  top: 2.50816981vw;
  left: calc(8.3333333333vw + 83.3333333333vw - 3.0555555556vw);
  right: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 3.0555555556vw;
  height: 2.4591504203vw;
  padding: 0;
  border: none;
  background: transparent;
  color: #f7931e;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .header__menu-button {
    position: fixed;
    top: 4.1025641026vw;
    left: calc((100vw - min(100vw, 100vw)) / 2 + 100vw - 10.2564102564vw - 7.4358974359vw);
    right: auto;
    z-index: 120;
    width: 7.4358974359vw;
    height: 5.3846153846vw;
    color: #8b5c2a;
  }
}
.header__menu-button-bars {
  display: block;
  position: relative;
  width: 2.5vw;
  height: 0.9722222222vw;
  margin-left: 0.2859751383vw;
}
.header__menu-button-bars::before, .header__menu-button-bars::after {
  content: "";
  position: absolute;
  right: 0;
  height: 0.1388888889vw;
  background: currentColor;
}
.header__menu-button-bars::before {
  top: 0;
  width: 2.5vw;
}
.header__menu-button-bars::after {
  top: 0.8333333333vw;
  width: 1.6666666667vw;
}
@media screen and (max-width: 1300px) {
  .header__menu-button-bars {
    width: 5.641025641vw;
    height: 2.5641025641vw;
    margin-left: 0.7692307692vw;
  }
  .header__menu-button-bars::before, .header__menu-button-bars::after {
    height: 0.5128205128vw;
  }
  .header__menu-button-bars::before {
    width: 5.641025641vw;
  }
  .header__menu-button-bars::after {
    top: 2.0512820513vw;
    width: 4.1025641026vw;
  }
}
.header__menu-button-text {
  width: 3.0555555556vw;
  height: 1.0784313414vw;
  margin-top: 0.4084968567vw;
  font-size: 0.9027777778vw;
  font-weight: 400;
  line-height: 0.9230769231;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .header__menu-button-text {
    width: 7.4358974359vw;
    height: auto;
    margin-top: 0.5128205128vw;
    font-size: 2.3076923077vw;
    line-height: 1;
  }
}

.header-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: 100dvh;
  min-height: 100%;
  background: linear-gradient(to right, #ffffff 0, #ffffff 13.8888888889vw, #fff4aa 13.8888888889vw, #fff4aa 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
@media screen and (max-width: 1300px) {
  .header-drawer {
    left: auto;
    right: 0;
    width: 100vw;
    background: #fff4aa;
  }
}
.header-drawer.is-open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: auto;
}
.header-drawer__close {
  position: absolute;
  top: 2.50816981vw;
  left: calc(8.3333333333vw + 83.3333333333vw - 3.0555555556vw);
  right: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 3.0555555556vw;
  height: 2.4591504203vw;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 1300px) {
  .header-drawer__close {
    top: 4.1025641026vw;
    left: calc((100vw - min(100vw, 100vw)) / 2 + 100vw - 10.2564102564vw - 7.4358974359vw);
    right: auto;
    width: 7.4358974359vw;
    height: 5.3846153846vw;
  }
}
.header-drawer__close-bars {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 2.5vw;
  height: 0.9722222222vw;
  margin-left: 0.2859751383vw;
}
@media screen and (max-width: 1300px) {
  .header-drawer__close-bars {
    width: 6.1538461538vw;
    height: 2.8205128205vw;
    margin-left: 0.2564102564vw;
  }
}
.header-drawer__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5vw;
  height: 0;
  border: none;
  border-top: 0.1388888889vw solid #754c24;
  background: transparent;
  transform-origin: center center;
}
.header-drawer__close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(24.62deg);
}
.header-drawer__close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-24.62deg);
}
@media screen and (max-width: 1300px) {
  .header-drawer__close-line {
    width: 6.78vw;
    border-top-width: 0.5128205128vw;
  }
  .header-drawer__close-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(24.62deg);
  }
  .header-drawer__close-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-24.62deg);
  }
}
.header-drawer__close-text {
  width: 3.0555555556vw;
  margin-top: 1.25vw;
  color: #754c24;
  font-size: 0.9027777778vw;
  font-weight: 400;
  line-height: 0.9230769231;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .header-drawer__close-text {
    display: none;
  }
}
.header-drawer__inner {
  display: grid;
  grid-template-columns: 13.8888888889vw 1fr;
  align-items: start;
  width: 100%;
  max-width: 100vw;
  margin: 6.1805555556vw auto 0;
}
@media screen and (max-width: 1300px) {
  .header-drawer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    max-width: none;
    margin: 16.4102564103vw 0 0;
    padding: 0 0 10.2564102564vw;
  }
}
.header-drawer__content {
  width: 16.5972222222vw;
  justify-self: center;
}
@media screen and (max-width: 1300px) {
  .header-drawer__content {
    display: contents;
  }
}
.header-drawer__links {
  width: 16.5972222222vw;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .header-drawer__links {
    order: 1;
    width: 100%;
  }
}
.header-drawer__links-item {
  margin: 0;
}
.header-drawer__link {
  display: block;
  color: #754c24;
  font-size: 1.3888888889vw;
  font-weight: 400;
  line-height: 3;
  letter-spacing: 0.0694444444vw;
}
@media screen and (max-width: 1300px) {
  .header-drawer__link {
    font-size: 3.8461538462vw;
    line-height: 3.3333333333;
    letter-spacing: 0.1923076923vw;
  }
}
.header-drawer__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 2.0610119237vw;
  height: 7.9422222222vw;
  margin-top: 21.3194444444vw;
  margin-left: 4.2361111111vw;
  justify-self: center;
  gap: 1.0416666667vw;
}
@media screen and (max-width: 1300px) {
  .header-drawer__sns {
    order: 2;
    flex-direction: row;
    align-items: flex-end;
    width: auto;
    height: auto;
    margin-top: 12.3076923077vw;
    gap: 7.6923076923vw;
  }
}
.header-drawer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-drawer__sns-link:nth-child(1) {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
@media screen and (max-width: 1300px) {
  .header-drawer__sns-link:nth-child(1) {
    width: auto;
    height: auto;
    margin-left: 0;
  }
}
.header-drawer__sns-link:nth-child(2) {
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}
@media screen and (max-width: 1300px) {
  .header-drawer__sns-link:nth-child(2) {
    width: auto;
    height: auto;
    margin-top: 0;
  }
}
.header-drawer__sns-link--line {
  width: 2.5vw;
  height: auto;
  margin-top: 1.0416666667vw;
  transform: rotate(-90deg);
  transform-origin: center;
  translate: 0 -0.2083333333vw;
}
@media screen and (max-width: 1300px) {
  .header-drawer__sns-link--line {
    width: 8.8095239493vw;
    height: auto;
    margin-top: 0;
    margin-left: 0;
    transform: none;
    translate: -0.4871794872vw -1.369231vw;
  }
}
.header-drawer__sns-icon {
  height: 100%;
  object-fit: contain;
}
.header-drawer__logo {
  display: none;
}
@media screen and (max-width: 1300px) {
  .header-drawer__logo {
    order: 3;
    display: flex;
    justify-content: center;
    width: 85.1282051282vw;
    margin-top: 16.489744vw;
    margin-left: 2.8205128205vw;
  }
}
.header-drawer__logo-img {
  height: auto;
}
.header-drawer__legal {
  width: 10.686111vw;
  margin: 1.7361111111vw auto 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .header-drawer__legal {
    order: 4;
    width: auto;
    margin: 19.25641vw 0 0;
  }
}
.header-drawer__legal-item {
  margin: 0;
}
.header-drawer__legal-item + .header-drawer__legal-item {
  margin-top: 0.9027777778vw;
}
@media screen and (max-width: 1300px) {
  .header-drawer__legal-item + .header-drawer__legal-item {
    margin-top: 3.8461538462vw;
  }
}
.header-drawer__legal-link {
  display: block;
  color: #754c24;
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.0416666667vw;
}
@media screen and (max-width: 1300px) {
  .header-drawer__legal-link {
    font-size: 3.0769230769vw;
    letter-spacing: 0.1538461538vw;
  }
}

.header-drawer-overlay {
  position: fixed;
  inset: 0;
  height: 100dvh;
  min-height: 100%;
  z-index: 100;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1300px) {
  .header-drawer-overlay {
    background: rgba(0, 0, 0, 0.4);
  }
}
.header-drawer-overlay.is-open {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 1300px) {
  .header-drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

html.is-drawer-open,
body.is-drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-drawer-open {
  touch-action: none;
}

.footer {
  background-color: var(--color-sand);
  background-image: url("../../img/common/bg_footer.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-text-default);
}
.footer__bar {
  display: none;
}
.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: 390fr 170fr 319fr 122fr 239fr 200fr;
  grid-template-rows: 12.1527777778vw auto auto;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding-top: 5vw;
  padding-bottom: 4.1666666667vw;
}
.footer__brand {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.footer__logo {
  display: block;
  width: 15.7638888889vw;
  height: auto;
}
.footer__tagline {
  margin: 1.6666666667vw 0 0;
  color: #f7931e;
  font-size: 0.9027777778vw;
  font-weight: 400;
  line-height: 1.5384615385;
  letter-spacing: 0.0451388889vw;
  text-align: center;
}
.footer__links {
  grid-column: 5;
  grid-row: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.footer__links-item {
  margin: 0;
}
.footer__link {
  display: block;
  font-size: 0.9027777778vw;
  font-weight: 400;
  line-height: 2.3076923077;
  letter-spacing: 0.0451388889vw;
}
.footer__divider {
  display: none;
}
.footer__sns {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  display: block;
}
.footer__sns::before {
  content: none;
}
.footer__sns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.472222vw 0;
  border-top: 0.0694444444vw solid;
}
.footer__sns-item + .footer__sns-item {
  border-bottom: 1px solid;
}
.footer__sns-item + .footer__sns-item::before {
  content: none;
}
.footer__sns-item + .footer__sns-item::after {
  margin-top: 1.4583333333vw;
}
.footer__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.966667vw;
  height: 1.966667vw;
}
.footer__sns-text {
  margin-top: 0.488889vw;
  font-size: 0.9027777778vw;
  font-weight: 400;
  line-height: 1.5384615385;
  letter-spacing: 0.0451388889vw;
  width: 101%;
}
.footer__info-wrap {
  grid-column: 1/-1;
  grid-row: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.2916666667vw;
  width: fit-content;
  margin: 10.7638888889vw auto 0;
}
.footer__legal {
  order: 2;
  display: flex;
  gap: 2.4305555556vw;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.footer__legal-item {
  margin: 0;
}
.footer__legal-link {
  display: block;
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.0416666667vw;
}
.footer__copyright {
  order: 1;
  width: 19.8611111111vw;
  margin: 0;
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.0416666667vw;
  text-align: center;
}

@media screen and (max-width: 1300px) {
  .footer {
    background-image: url("../../img/common/bg_footer_sp.webp");
    background-position: center top;
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-template-columns: none;
    grid-template-rows: none;
    width: 100vw;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10.2564102564vw 0 2.0512820513vw;
  }
  .footer__brand {
    order: 1;
    grid-column: auto;
    grid-row: auto;
    align-items: center;
    width: auto;
    margin: 0;
  }
  .footer__logo {
    width: 40.2564102564vw;
    height: auto;
  }
  .footer__tagline {
    display: none;
  }
  .footer__links {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin: 4.8717948718vw 0 0;
  }
  .footer__link {
    font-size: 3.8461538462vw;
    line-height: 2.3333333333;
    letter-spacing: 0.1923076923vw;
  }
  .footer__divider {
    display: block;
    width: 79.4871794872vw;
    max-width: calc(100% - 20.5128205128vw);
    height: 0.2564102564vw;
    background: var(--color-text-default);
  }
  .footer__divider:nth-child(3) {
    order: 3;
    margin-top: 5.1282051282vw;
  }
  .footer__divider:nth-child(5) {
    order: 5;
    margin-top: 0;
  }
  .footer__sns {
    order: 4;
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 79.4871794872vw;
    max-width: calc(100% - 20.5128205128vw);
    margin-top: 0;
  }
  .footer__sns::after {
    content: "";
    display: inline-block;
    width: 0.2564102564vw;
    height: 30.7692307692vw;
    background-color: var(--color-text-default);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: 0 -50%;
  }
  .footer__sns-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 38.4615384615vw;
    height: 35.641025641vw;
    text-align: center;
    border-top: none;
    border-bottom: none;
  }
  .footer__sns-item::before, .footer__sns-item::after {
    content: none;
  }
  .footer__sns-item + .footer__sns-item {
    margin-top: 0;
    border: none;
  }
  .footer__sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    translate: 0 2.0512820513vw;
  }
  .footer__sns-text {
    margin-top: 4.6153846154vw;
    width: 100%;
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1.6153846154;
    letter-spacing: 0.1666666667vw;
  }
  .footer__info-wrap {
    order: 6;
    grid-column: auto;
    grid-row: auto;
    display: block;
    gap: 0;
    width: auto;
    margin: 0;
  }
  .footer__legal {
    order: unset;
    display: block;
    margin: 3.8461538462vw 0 0;
  }
  .footer__legal-link {
    font-size: 3.0769230769vw;
    line-height: 2.375;
    letter-spacing: 0.1538461538vw;
  }
  .footer__copyright {
    order: unset;
    width: auto;
    margin-top: -1.0256410256vw;
    font-size: 3.0769230769vw;
    line-height: 2.3333333333;
    letter-spacing: 0.1538461538vw;
  }
}
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 20.8333333333vw;
  height: 5.5555555556vw;
  padding: 0 2.0833333333vw;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-decoration: none;
}
.button-primary__text {
  white-space: nowrap;
}
.button-primary__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  border-radius: 50%;
  background: var(--color-white);
  flex-shrink: 0;
}
.button-primary__icon::before {
  content: "";
  display: block;
  width: 0.4861111111vw;
  height: 0.7638888889vw;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='11' viewBox='0 0 7 11' fill='none'%3E%3Cpath d='M1 1L5.5 5.5L1 10' stroke='%23ff4d3f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
}

.page-header-simple {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 26.3888888889vw;
}

.page-header-simple__bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  font-size: 25vw;
  font-weight: 700;
  line-height: 1;
  color: rgba(34, 34, 34, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  translate: -51.2% -61%;
  letter-spacing: -0.034em;
}

.page-header-simple__title {
  margin-top: 4%;
}

.page-header-simple__title--ja {
  font-size: 4.1666666667vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--color-black-soft);
}

.page-header-simple__title--en {
  color: var(--color-red-soft);
  font-size: 1.3888888889vw;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  margin-top: 1.0416666667vw;
}

@media (max-width: 959px) {
  .page-header-simple {
    padding: 10.2564102564vw 0 7.6923076923vw;
  }
  .page-header-simple__bg-word {
    font-size: 33.3333333333vw;
  }
  .page-header-simple__title {
    font-size: 9.2307692308vw;
  }
  .page-header-simple__eyebrow {
    font-size: 3.5897435897vw;
  }
}
.front-page {
  background: var(--color-white);
}

.front-fv-concept {
  position: relative;
  background-image: url("../../img/front-page/fv/bg_fv.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.front-kv {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding-inline: 8.3333333333vw;
  box-sizing: border-box;
}

.front-kv__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 32.6388888889vw 44.4444444444vw;
  column-gap: 6.25vw;
  align-items: start;
  width: 100%;
  max-width: 83.3333333333vw;
  margin: 1.2vw 0 0;
}

.front-kv__title {
  order: 1;
  grid-column: 1;
  width: 32.6388888889vw;
  margin-top: 1.1805555556vw;
  font-size: 2.7777777778vw;
  font-weight: 400;
  line-height: 4.8611111111vw;
  letter-spacing: 0.2291666667vw;
}

.front-kv__program {
  order: 2;
  grid-column: 1;
  margin-top: 1.3vw;
  color: #f7931e;
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.3888888889vw;
  letter-spacing: 0.0486111111vw;
}

.front-kv__lead {
  order: 4;
  grid-column: 1;
  margin-top: 10.063889vw;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.9444444444vw;
  letter-spacing: 0.0520833333vw;
}

.front-kv__logo-picture {
  display: contents;
}

.front-kv__logo {
  order: 3;
  position: absolute;
  top: 21.311111vw;
  left: -14.611111vw;
  z-index: 3;
  width: 67.3611111111vw;
  height: 7.2916666667vw;
}

.front-kv__image-wrap {
  order: 5;
  grid-column: 2;
  grid-row: 1/span 5;
  position: relative;
  z-index: 2;
  display: block;
  justify-self: end;
  width: 100%;
  max-width: 44.4444444444vw;
}

.front-kv__image-wrap .slick-list {
  width: 100%;
}

.front-kv__image-wrap .slick-track {
  display: flex;
}

.front-kv__slide {
  width: 44.4444444444vw;
}

.front-kv__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.front-kv__image {
  object-fit: cover;
}

.front-kv__badges {
  order: 5;
  grid-column: 1;
  display: flex;
  gap: 1.3888888889vw;
  margin-top: 2.0833333333vw;
}

.front-kv__badge {
  flex: 0 0 6.9444444444vw;
  height: 6.9444444444vw;
}

.front-kv__button {
  order: 6;
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25vw;
  width: 27.7777777778vw;
  height: 4.1666666667vw;
  color: #fff;
  background: #754c24;
  border-radius: 69.375vw;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.0555555556vw;
  margin: 2.7777777778vw auto 2.7777777778vw;
}

.front-instructor {
  padding: 5.394444vw 0 0;
}

.front-instructor__inner {
  width: 55.5555555556vw;
  margin: 0 auto;
}

.front-instructor__title {
  font-size: 2.0833333333vw;
  font-weight: 400;
  line-height: 2.3611111111vw;
  letter-spacing: 0.1736111111vw;
  text-align: center;
}

.front-instructor__lead {
  margin: 1.4583333333vw 0 0;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.1111111111vw;
  letter-spacing: 0.0555555556vw;
  text-align: center;
}

.front-instructor__item {
  width: 39.5833333333vw;
  margin: 2.977778vw auto 0;
}

.front-instructor__item + .front-instructor__item {
  margin-top: 4.4444444444vw;
}

.front-instructor__label-ja {
  margin: 0;
  font-size: 0.9027777778vw;
  font-weight: 500;
  line-height: 1.8055555556vw;
  letter-spacing: 0.0451388889vw;
  text-align: center;
}

.front-instructor__label-en {
  margin: -0.2083333333vw 0 0;
  color: #f7931e;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 2.2222222222vw;
  text-align: center;
}

.front-instructor__item picture {
  display: block;
  width: 39.5833333333vw;
  height: 27.7777777778vw;
  margin-top: 1.4583333333vw;
  overflow: hidden;
}

.front-instructor__image {
  height: 100%;
  object-fit: cover;
}

.front-instructor__roman {
  margin: 1.1805555556vw 0 0;
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 2.2222222222vw;
  text-align: center;
}

.front-instructor__name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1111111111vw;
  margin: 1.3194444444vw auto 0 10.8333333333vw;
}

.front-instructor__name span {
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: 1.7361111111vw;
  letter-spacing: 0.1875vw;
}

.front-instructor__name strong {
  font-size: 1.6666666667vw;
  font-weight: 500;
  line-height: 1.7361111111vw;
  letter-spacing: 0.0833333333vw;
}

.front-instructor__sns {
  display: flex;
  justify-content: center;
  gap: 0.9027777778vw;
  margin-top: 1.3888888889vw;
}

.front-instructor__sns-link {
  display: block;
}

.front-instructor__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}

.front-instructor__message-label {
  margin: 1.6666666667vw 0 0;
  color: #f7931e;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.0416666667vw;
  text-align: center;
}

.front-instructor__message-title {
  margin: 1.4583333333vw 0 0;
  font-size: 1.5277777778vw;
  font-weight: 500;
  line-height: 2.2222222222vw;
  letter-spacing: 0.125vw;
}

.front-instructor__message-text {
  margin: 1.3888888889vw 0 0;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.7361111111vw;
  letter-spacing: 0.0451388889vw;
}

.front-instructor__profile {
  padding: 0.9027777778vw 0.7638888889vw;
  margin-top: 1.3888888889vw;
  background: #fff6de;
}

.front-instructor__profile-title {
  margin: 0;
  color: #f7931e;
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.0416666667vw;
  text-align: center;
}

.front-instructor__profile-text {
  margin: 0.4861111111vw 0 0;
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.5277777778vw;
  letter-spacing: 0.0375vw;
}

.front-instructor__profile-text strong {
  font-weight: 500;
}

.front-special-instructor {
  display: grid;
  grid-template-columns: 100%;
  background: #f2eee4;
}

.front-special-instructor > picture {
  display: block;
  grid-row: 2;
  grid-column: 1;
  width: 100%;
  height: 34.1666666667vw;
  overflow: hidden;
}

.front-special-instructor__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.front-special-instructor__logo {
  grid-row: 2;
  grid-column: 1;
  align-self: start;
  justify-self: start;
  width: 15.7638888889vw;
  height: auto;
  margin-top: 11.8055555556vw;
  margin-left: 41.0416666667vw;
  z-index: 1;
}

.front-instructor > picture {
  display: block;
  width: 100%;
  height: 34.1666666667vw;
  margin-top: 5.1388888889vw;
  overflow: hidden;
}

.front-instructor__hero {
  height: 100%;
  object-fit: cover;
}

.front-special-instructor__inner {
  width: 55.5555555556vw;
  margin: 0 auto;
  padding-top: 4.1666666667vw;
  padding-bottom: 7.994444vw;
}

.front-special-instructor__label-ja {
  margin: 0;
  font-size: 0.9027777778vw;
  font-weight: 500;
  line-height: 1.8055555556vw;
  letter-spacing: 0.0451388889vw;
  text-align: center;
}

.front-special-instructor__title {
  margin: -0.2083333333vw 0 0;
  color: #f7931e;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 2.2222222222vw;
  text-align: center;
}

.front-special-instructor__card {
  display: flex;
  gap: 2.2222222222vw;
  margin-top: 3.6111111111vw;
}

.front-special-instructor__card + .front-special-instructor__card {
  margin-top: 5.1388888889vw;
}

.front-special-instructor__card--last {
  margin-top: 4.8611111111vw;
}

.front-special-instructor__profile,
.front-special-instructor__content {
  width: 26.6666666667vw;
}

.front-special-instructor__roman {
  margin: 0;
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 2.2222222222vw;
}

.front-special-instructor__name-row {
  display: flex;
  align-items: center;
  margin-top: 0.5555555556vw;
}

.front-special-instructor__name-row--nomiyama {
  margin-top: 0.9027777778vw;
}

.front-special-instructor__role {
  margin: 0;
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: 1.636111vw;
  letter-spacing: 0.0486111111vw;
}

.front-special-instructor__name {
  margin: 0 0 0 1.8055555556vw;
  font-size: 1.6666666667vw;
  font-weight: 500;
  line-height: 1.7361111111vw;
  letter-spacing: 0.0833333333vw;
}

.front-special-instructor__name--single {
  margin: 0.5555555556vw 0 0;
}

.front-special-instructor__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.5694444444vw;
}

.front-special-instructor__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}

.front-special-instructor__photo {
  height: 24.0277777778vw;
  margin-top: 0.9722222222vw;
  object-fit: cover;
}

.front-special-instructor__content {
  padding-top: 1.5277777778vw;
}

.front-special-instructor__summary {
  margin: 0;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.8055555556vw;
  letter-spacing: 0.0555555556vw;
}

.front-special-instructor__message-label {
  margin: 1.9444444444vw 0 0;
  color: #f7931e;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.0416666667vw;
}

.front-special-instructor__message-title {
  margin: 0.5555555556vw 0 0;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.8055555556vw;
  letter-spacing: 0.0555555556vw;
}

.front-special-instructor__message-text {
  margin: 0.2777777778vw 0 0;
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.5972222222vw;
  letter-spacing: 0.0097222222vw;
}

.front-special-instructor__achievement {
  padding: 0.6944444444vw 0.7638888889vw 0.625vw;
  margin-top: 0.8333333333vw;
  background: #fff;
}

.front-special-instructor__achievement-text {
  margin: 0;
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.3888888889vw;
  letter-spacing: 0.0777777778vw;
}

.front-special-instructor__achievement-text strong {
  font-weight: 500;
}

.front-special-instructor__profile-title {
  display: none;
  margin: 1.9444444444vw 0 0;
  color: #f7931e;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.0416666667vw;
  letter-spacing: 0;
}

/* ========================================
   Section 02: CONCEPT (Insight Journey)
======================================== */
.front-about__inner {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 4.566667vw 0 4.691667vw;
}

.front-about__photos {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  left: 0;
}

.front-about__photo {
  position: absolute;
}

.front-about__photo--left {
  top: 10.9722222222vw;
  left: 13.8888888889vw;
  width: 22.6388888889vw;
}

.front-about__photo--right {
  top: 13.5416666667vw;
  right: 13.8888888889vw;
  width: 15.4861111111vw;
}

.front-about__text {
  text-align: center;
}

.front-about__eyebrow {
  margin: 0 auto;
  color: #f7931e;
  font-size: 1.6666666667vw;
  font-weight: 500;
  line-height: 2.2222222222vw;
  letter-spacing: 0;
}

.front-about__en-title {
  margin-top: 2.5vw;
  color: #f7931e;
  font-size: 2.7777777778vw;
  font-weight: 300;
  line-height: 2.0833333333vw;
  letter-spacing: 1.1111111111vw;
  text-align: center;
}

.front-about__title {
  margin: 3.2638888889vw auto 0;
  font-size: 1.9444444444vw;
  font-weight: 400;
  line-height: 3.3333333333vw;
  letter-spacing: 0.1597222222vw;
}

.front-about__description {
  margin: 0.9027777778vw auto 0;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 2.6388888889vw;
  letter-spacing: 0.0555555556vw;
}

/* ========================================
   Section 03: こんな方に (Target)
======================================== */
.front-target {
  position: relative;
  background: #fccb00;
  padding: 0.6944444444vw 0;
}

.front-target__inner {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 3.372222vw 0 3.8194444444vw;
  background: url("../../img/front-page/target/bg_target.webp") no-repeat center/cover;
}

.front-target__title {
  width: 28.3333333333vw;
  margin: 0 auto;
  text-align: center;
  font-size: 2.2222222222vw;
  font-weight: 400;
  line-height: 2.0833333333vw;
  letter-spacing: 0.1805555556vw;
}

.front-target__title::after {
  content: "";
  display: block;
  width: 27.7777777778vw;
  height: 0.0694444444vw;
  margin: 0.9027777778vw auto 0;
  background: #754c24;
}

.front-target__columns {
  display: flex;
  align-items: flex-start;
  margin-top: 3.9583333333vw;
}

.front-target__column {
  width: 37.5vw;
  box-sizing: border-box;
  box-shadow: 0 0.2777777778vw 2.7777777778vw rgba(252, 203, 0, 0.5);
}

.front-target__column--now {
  padding: 1.6666666667vw 2.7777777778vw 3.3333333333vw;
  background: var(--color-white);
  margin-left: 13.8888888889vw;
  border-radius: 0 0.2777777778vw 0.2777777778vw 0;
}

.front-target__column--future {
  padding: 2.2916666667vw 5.5555555556vw 2.9861111111vw;
  background: #fffaee;
  margin-left: -2.7777777778vw;
  margin-top: 4.1666666667vw;
  border-radius: 0 0.2777777778vw 0.2777777778vw 0;
}

.front-target__column > div {
  display: flex;
  align-items: baseline;
}

.front-target__column-en {
  display: inline-block;
  margin: 0;
  color: #f7931e;
  font-size: 2.2222222222vw;
  font-weight: 500;
  line-height: 2.2222222222vw;
  letter-spacing: -0.1388888889vw;
}

.front-target__column--future .front-target__column-en {
  font-size: 2.0833333333vw;
  line-height: 2.2222222222vw;
}

.front-target__column-title {
  display: inline-block;
  margin: 0;
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.0625vw;
}

.front-target__column-en + .front-target__column-title {
  margin-left: 1.088889vw;
}

.front-target__column > div + .front-target__list {
  margin-top: 2.175vw;
}

.front-target__column--future .front-target__list {
  margin-top: 2.2916666667vw;
}

.front-target__list li {
  position: relative;
  padding-left: 2.5vw;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.8055555556vw;
  letter-spacing: 0.0555555556vw;
}

.front-target__column--future .front-target__list li {
  padding-left: 2.5vw;
}

.front-target__list li + li {
  margin-top: 1.0416666667vw;
}

.front-target__column--future .front-target__list li:nth-child(n+6) {
  margin-top: 1.3888888889vw;
}

.front-target__list strong {
  font-weight: 700;
}

.front-target__column--now .front-target__list li::before {
  content: "";
  position: absolute;
  left: 0.1388888889vw;
  top: 0.4166666667vw;
  width: 1.3888888889vw;
  height: 1.25vw;
  background-image: url("../../img/front-page/target/icon_sankaku.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.front-target__column--future .front-target__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2777777778vw;
  width: 1.7361111111vw;
  height: 1.7361111111vw;
  border: 1px solid #f7931e;
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
}

.front-what-instructor {
  background-color: var(--color-white);
  background-image: url("../../img/front-page/what/bg_what_inst.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.front-what {
  background: transparent;
}

.front-what__inner {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 4.1666666667vw 0 4.1666666667vw;
}

.front-what__lead {
  margin: 0;
  font-size: 1.5277777778vw;
  font-weight: 400;
  line-height: 1.59;
  letter-spacing: 0.0763888889vw;
  text-align: center;
}

.front-what__item {
  width: 55.5555555556vw;
  margin: 3.6111111111vw auto 0;
  padding: 1.7361111111vw 3.4722222222vw 1.683333vw 3.6111111111vw;
  border: 0.0694444444vw solid #754c24;
  border-radius: 0.8333333333vw;
}

.front-what__item + .front-what__item {
  margin-top: 1.3888888889vw;
}

.front-what__label {
  margin: 0;
  color: #f7931e;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
  text-align: center;
}

.front-what__stats {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1388888889vw;
  margin: -0.4861111111vw 1.3888888889vw 0 auto;
}

.front-what__item:nth-of-type(2) .front-what__stats {
  margin-right: 2.0138888889vw;
  gap: 0.3472222222vw;
}

.front-what__item:nth-of-type(3) .front-what__stats {
  margin: -0.3472222222vw 2.0833333333vw 0 auto;
  gap: 0.4861111111vw;
}

.front-what__number {
  font-size: 4.8611111111vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.front-what__unit {
  margin-left: 0.3472222222vw;
  font-size: 1.0416666667vw;
  font-weight: 400;
  letter-spacing: 0;
  translate: 0 -0.625vw;
}

.front-what__title {
  margin: 1.1111111111vw 0 0;
  font-size: 1.6666666667vw;
  font-weight: 400;
  line-height: 1.33;
  letter-spacing: 0.0833333333vw;
  text-align: center;
}

.front-what__content {
  display: flex;
  align-items: flex-start;
  gap: 2.6388888889vw;
  margin-top: 1.9444444444vw;
}

.front-what__desc {
  width: 27.7777777778vw;
  margin: 0;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1215277778vw;
}

.front-what__thumb {
  flex-shrink: 0;
  margin-top: 0.5555555556vw;
  width: 17.9166666667vw;
}

.front-what__final-img {
  width: 72.2222222222vw;
  margin: 3.4722222222vw auto 0;
}

/* ========================================
   NEWS Section
======================================== */
.front-news {
  padding: 3.4722222222vw 0 5.697222vw;
  text-align: center;
}

.front-news__head {
  position: relative;
}

.front-news__en {
  margin: 0;
  color: #f7931e;
  font-size: 3.4722222222vw;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
}

.front-news__title {
  margin: 0.7638888889vw 0 0;
  font-size: 1.9444444444vw;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.0972222222vw;
}

.front-news__button {
  margin-top: 4.758333vw;
}

.front-news__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27.9166666667vw;
  height: 4.1666666667vw;
  background: #f7931e;
  color: #fff;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.0555555556vw;
  text-decoration: none;
  border-radius: 694.375vw;
  text-align: center;
  margin: 0 auto;
}

.front-news__link:hover {
  background: #e07d0a;
}

/* ========================================
   Section 05: STUDENT STORIES
======================================== */
.front-student {
  background: var(--color-white);
  padding: 3.966667vw 0 0;
}

.front-student__head {
  text-align: center;
}

.front-student__en {
  margin: 0;
  color: #f7931e;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
}

.front-student__title {
  margin: 1.1111111111vw 0 0;
  font-size: 1.9444444444vw;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.0972222222vw;
}

.front-student__list {
  margin-top: 7.2222222222vw;
}

.front-student__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 55.5555555556vw;
  margin: 0 auto;
}

.front-student__item + .front-student__item {
  margin-top: 5.5555555556vw;
}

.front-student__photo {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 24.5833333333vw;
  height: 29.8611111111vw;
  margin-top: 0;
  overflow: hidden;
}

.front-student__photo picture {
  display: block;
  height: 100%;
}

.front-student__photo img {
  height: 100%;
  object-fit: cover;
}

.front-student__card {
  width: 32.9166666667vw;
  margin-left: -2.0138888889vw;
  margin-top: 5.1388888889vw;
  padding: 1.8055555556vw 4.3055555556vw 2.7083333333vw 4.3055555556vw;
  background: #fff6de;
}

.front-student__grade {
  margin: 0;
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: 1.86;
  letter-spacing: 0.0486111111vw;
  text-align: center;
}

.front-student__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1111111111vw;
  margin-top: 0.2777777778vw;
}

.front-student__name + .front-student__sns {
  width: 1.738889vw;
  height: auto;
  margin: 0.916667vw auto 0;
}

.front-student__name-text {
  color: #f7931e;
  font-size: 1.9444444444vw;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0.0972222222vw;
}

.front-student__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.6666666667vw;
  height: 1.6666666667vw;
}

.front-student__sns:hover {
  opacity: 0.8;
}

.front-student__lead {
  margin: 1.336111vw 0 0;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.625;
  letter-spacing: 0.0555555556vw;
}

.front-student__body {
  margin: 0.4861111111vw 0 0;
}

.front-student__text {
  margin: 0;
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.57;
  letter-spacing: 0.0486111111vw;
}

.front-student__text + .front-student__text {
  margin-top: 1.5277777778vw;
  font-weight: 500;
}

.front-student__label {
  color: #f7931e;
  font-weight: 500;
  margin-right: 0.4861111111vw;
}

.front-student__label::after {
  content: "";
  display: inline-block;
  width: 0.0694444444vw;
  height: 0.9722222222vw;
  margin-left: 0.5555555556vw;
  background-color: #f7931e;
  vertical-align: middle;
}

.front-student__photos {
  display: flex;
  justify-content: center;
  gap: 1.9444444444vw;
  width: 72.2222222222vw;
  margin: 7.0138888889vw auto 0;
}

.front-student__photos-item:first-child {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.front-student__photos-item:first-child picture {
  display: block;
  height: 100%;
}

.front-student__photos-item:first-child img {
  height: 100%;
  object-fit: cover;
}

.front-student__photos-item:last-child picture {
  display: block;
}

.front-student__photos-item:last-child img {
  object-fit: cover;
}

/* ========================================
   Section - VOICE
======================================== */
.front-voice {
  background: var(--color-white);
  padding: 4.05vw 0 0;
}

.front-voice__head {
  text-align: center;
}

.front-voice__en {
  margin: 0;
  color: #f7931e;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
}

.front-voice__title {
  margin: 1.1111111111vw 0 0;
  color: #754c24;
  font-size: 1.9444444444vw;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.0972222222vw;
}

.front-voice__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3888888889vw;
  width: 55.5555555556vw;
  margin: 2.8vw auto 0;
}

.front-voice__grid-item {
  position: relative;
  box-sizing: border-box;
  width: 27.0833333333vw;
  min-height: 15.9722222222vw;
  padding: 0.8333333333vw 1.3888888889vw 0.8333333333vw;
  color: #754c24;
  background: linear-gradient(90deg, #ffe191 0%, #fccb00 100%);
}

.front-voice__grid-head {
  display: flex;
  align-items: flex-start;
  gap: 1.1111111111vw;
}

.front-voice__grid-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  border-radius: 50%;
}

.front-voice__grid-icon img {
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.front-voice__grid-wrap {
  width: 12.0833333333vw;
}

.front-voice__grid-item:first-child .front-voice__grid-wrap {
  width: 17.6388888889vw;
}

.front-voice__grid-catch {
  margin: 0.4861111111vw 0 0;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.5333333333;
  letter-spacing: 0.0520833333vw;
}

.front-voice__grid-name {
  margin: 0.4166666667vw 0 0;
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: 1.6428571429;
  letter-spacing: 0.0486111111vw;
}

.front-voice__grid-body {
  width: 23.9583333333vw;
  margin: 1.5972222222vw 0 0 0.3472222222vw;
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: 0.0486111111vw;
}

/* PC */
.front-voice__photos {
  width: 56.0416666667vw;
  margin: 9.019444vw auto 0;
  translate: -3.4722222222vw 0;
}
.front-voice__photos picture {
  display: block;
}
.front-voice__photos img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
   Section 06: CURRICULUM
======================================== */
.front-curriculum {
  background: linear-gradient(180deg, #ffe6c4 0%, #fdf3ab 100%);
  padding: 4.3055555556vw 0 6.875vw;
}

.front-curriculum__inner {
  width: 55.5555555556vw;
  margin: 0 auto;
}

.front-curriculum__head {
  text-align: center;
  margin-top: 2.2916666667vw;
}

.front-curriculum__logo {
  width: 49.5833333333vw;
  margin: 0 0 0 4.0972222222vw;
}

.front-curriculum__title {
  margin: 0;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.17;
  letter-spacing: 0.1041666667vw;
}

.front-curriculum__lead {
  margin: 1.3888888889vw 0 0;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1180555556vw;
}

.front-curriculum__course {
  margin-top: 2.0833333333vw;
}

.front-curriculum__course + .front-curriculum__course {
  margin-top: 2.7777777778vw;
}

.front-curriculum__band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 7.6388888889vw;
  border-radius: 0.6944444444vw 0.6944444444vw 0 0;
  background: #754c24;
}

.front-curriculum__band-title {
  display: flex;
  gap: 1.25vw;
  margin: 0.7638888889vw 0 0;
  color: var(--color-white);
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0.1041666667vw;
}

.front-curriculum__band-sub {
  margin: 0.4861111111vw 0 0;
  color: var(--color-white);
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.0520833333vw;
}

.front-curriculum__card {
  position: relative;
  margin-top: 0;
  padding: 1.8055555556vw 2.2916666667vw 2.9861111111vw;
  border-radius: 0 0 0.6944444444vw 0.6944444444vw;
  background: var(--color-white);
}

.front-curriculum__card.front-curriculum__card--half {
  padding: 0.9722222222vw 0 2.7777777778vw;
}

.front-curriculum__license {
  position: absolute;
  top: 0.625vw;
  right: 3.0555555556vw;
  display: flex;
  gap: 0.7638888889vw;
}

.front-curriculum__license img {
  flex: 0 0 5.5555555556vw;
  height: 5.5555555556vw;
  object-fit: contain;
}

.front-curriculum__card-lead {
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.0208333333vw;
}

.front-curriculum__card.front-curriculum__card--half .front-curriculum__card-lead {
  text-align: center;
}

.front-curriculum__step {
  margin-top: 2.2916666667vw;
}

.front-curriculum__step + .front-curriculum__step {
  margin-top: 2.7083333333vw;
}

.front-curriculum__step-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.7777777778vw;
  background: #f7931e;
  border-top: 1px solid #754c24;
  border-bottom: 1px solid #754c24;
}

.front-curriculum__step-title {
  margin: 0;
  color: var(--color-white);
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 0.0625vw;
}

.front-curriculum__step:nth-of-type(4) .front-curriculum__step-title {
  font-size: 1.1111111111vw;
}

.front-curriculum__step-body {
  display: flex;
  align-items: flex-start;
  gap: 0.9722222222vw;
  margin-top: 1.6666666667vw;
}

.front-curriculum__step:nth-of-type(4) .front-curriculum__step-body {
  margin-top: 1.5972222222vw;
}

.front-curriculum__step-desc {
  width: 37.2222222222vw;
  margin: 0;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.53;
  letter-spacing: 0.09375vw;
}

.front-curriculum__badge {
  order: -1;
  width: 12.5vw;
  flex-shrink: 0;
  margin: 0;
  color: #f7931e;
  background: #fffaee;
  border: 1px solid #f7931e;
  border-radius: 69.375vw;
  font-size: 1.1111111111vw;
  font-weight: 500;
  letter-spacing: 0.0555555556vw;
  text-align: center;
}

.front-curriculum__badge.front-curriculum__badge--1line {
  padding: 0.7638888889vw 0;
  line-height: 1;
}

.front-curriculum__badge.front-curriculum__badge--2line {
  padding: 0.7638888889vw 0;
  line-height: 1.38;
  border-radius: 1.5277777778vw;
}

.front-curriculum__badge-detail {
  display: block;
  margin-top: 0.1388888889vw;
}

.front-curriculum__cols {
  display: flex;
  justify-content: space-between;
  gap: 2.0833333333vw;
  margin-top: 1.6666666667vw;
}

.front-curriculum__col {
  width: 24.3055555556vw;
  background: #f5f5f5;
  border-top: 1px solid #754c24;
  border-bottom: 1px solid #754c24;
  padding-bottom: 1.8055555556vw;
}

.front-curriculum__col-title {
  padding: 0.7638888889vw 0 0.4166666667vw;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.39;
  letter-spacing: 0.0902777778vw;
  border-bottom: 1px dashed #754c24;
  text-align: center;
}

.front-curriculum__col-text {
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.67;
  padding: 1.1111111111vw 1.1805555556vw 0;
  height: 12.6388888889vw;
}

.front-curriculum__thumbs {
  display: flex;
  justify-content: center;
  gap: 1.25vw;
}

.front-curriculum__step + .front-curriculum__step .front-curriculum__thumbs {
  margin-top: 1.0416666667vw;
  gap: 1.25vw;
}

.front-curriculum__thumbs--half {
  margin-top: 2.0833333333vw;
}

.front-curriculum__step:nth-child(4) .front-curriculum__thumb,
.front-curriculum__step:nth-child(5) .front-curriculum__thumb,
.front-curriculum__thumbs--half .front-curriculum__thumb {
  width: 16.1805555556vw;
}

.front-curriculum__col .front-curriculum__thumb {
  width: 16.1111111111vw;
  margin: 1.0416666667vw auto 0;
  translate: 0.5555555556vw;
}

.front-curriculum__thumb img {
  object-fit: cover;
}

/* ========================================
   Section - PLAN (コース・料金)
======================================== */
.front-price {
  background: #fffaee;
}

.front-price__inner {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 4.2361111111vw 0 10.2777777778vw;
  text-align: center;
}

.front-price__eyebrow {
  margin: 0;
  color: #f7931e;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.07;
}

.front-price__title {
  margin: 4.3055555556vw 0 0;
  font-size: 1.9444444444vw;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.0972222222vw;
}

.front-price__lead {
  margin: 0.8333333333vw 0 0;
  font-size: 1.1111111111vw;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.0555555556vw;
}

.front-price__band {
  width: 39.5833333333vw;
  margin: 1.3888888889vw auto 0;
  font-size: 1.1111111111vw;
  font-weight: 500;
  letter-spacing: 0.0555555556vw;
}

/* PC */
.front-price__band-label {
  padding: 0.4861111111vw 0 0.5555555556vw;
  color: var(--color-white);
  background: #f7931e;
  line-height: 1.4;
  font-size: 1.0416666667vw;
}

.front-price__band-text {
  margin: 0;
  padding: 0.6944444444vw 0 0.4861111111vw;
  color: #f7931e;
  border-right: 1px dashed #f7931e;
  border-bottom: 1px dashed #f7931e;
  border-left: 1px dashed #f7931e;
  line-height: 1.4;
}

.front-price__plans {
  margin-top: 2.0138888889vw;
}

.front-price__plan + .front-price__plan {
  margin-top: 1.1111111111vw;
  padding-bottom: 1.6666666667vw;
}

.front-price__plan {
  width: 39.5833333333vw;
  margin: 0 auto;
  padding-bottom: 2.9861111111vw;
  border-bottom: 1px dashed #754c24;
}

.front-price__plan-name {
  margin: 0;
  font-size: 1.6666666667vw;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.0833333333vw;
}

.front-price__plan-name--sm {
  font-size: 1.3888888889vw;
  line-height: 1.6;
  letter-spacing: 0.0694444444vw;
}

.front-price__plan-note {
  font-size: 0.9722222222vw;
  letter-spacing: 0.0486111111vw;
}

.front-price__regular {
  display: flex;
  justify-content: center;
  gap: 0.9722222222vw;
  margin: 0.6944444444vw 0 0;
  color: #8f8f8f;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.0520833333vw;
}

.front-price__regular-price {
  text-decoration: line-through;
}

.front-price__discount {
  color: #f7931e;
}

.front-price__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4166666667vw;
  margin: 1.25vw 0 0;
}

.front-price__num {
  font-size: 2.4305555556vw;
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: 0.1215277778vw;
}

.front-price__yen {
  font-size: 1.0416666667vw;
  font-weight: 500;
  letter-spacing: 0.0520833333vw;
}

.front-price__tax {
  margin: 0.6944444444vw 0 0;
  font-size: 1.0416666667vw;
  font-weight: 500;
  letter-spacing: 0.0520833333vw;
}

.front-price__notice {
  margin: 0.8333333333vw 0 0;
  color: #8f8f8f;
  font-size: 0.9722222222vw;
  font-weight: 400;
  line-height: 1.43;
}

.front-price__photo {
  position: relative;
  margin-top: 0;
  height: 34.1666666667vw;
  overflow: hidden;
}

.front-price__photo::after {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(247, 147, 30, 0.24);
  content: "";
  pointer-events: none;
}

.front-price__photo img {
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Section - FAQ (よくある質問)
======================================== */
.front-faq {
  background: #f2eee4;
}

/* PC */
.front-faq__inner {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 4.1666666667vw 0 6.9444444444vw;
}

.front-faq__head {
  text-align: center;
}

.front-faq__en {
  margin: 0;
  color: #f7931e;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
}

.front-faq__title {
  margin: 0.9027777778vw 0 0;
  font-size: 1.9444444444vw;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.0972222222vw;
}

.front-faq__list {
  width: 55.5555555556vw;
  margin: 2.7777777778vw auto 0;
}

.front-faq__item {
  background: var(--color-white);
  border: 1px solid #f7931e;
  border-radius: 0.6944444444vw;
  overflow: hidden;
}

.front-faq__item + .front-faq__item {
  margin-top: 0.625vw;
}

.front-faq__q {
  display: flex;
  align-items: baseline;
  gap: 1.5277777778vw;
  padding: 1.3194444444vw 1.6666666667vw 1.7361111111vw;
  cursor: pointer;
  list-style: none;
}

.front-faq__q::-webkit-details-marker {
  display: none;
}

.front-faq__q-mark {
  color: #f7931e;
  font-size: 1.6666666667vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.0833333333vw;
}

.front-faq__q-text {
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.0625vw;
}

.front-faq__a {
  display: flex;
  align-items: flex-start;
  gap: 1.5277777778vw;
  padding: 0.6944444444vw 1.6666666667vw 1.875vw;
  background: #fff6de;
}

.front-faq__a-mark {
  color: #f7931e;
  font-size: 1.6666666667vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.0833333333vw;
}

.front-faq__a-text {
  margin: 0;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03125vw;
}

/* ========================================
   Section - お問い合わせ (Contact)
======================================== */
.front-contact__inner {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 3.4722222222vw 0 7.091667vw;
}

.front-contact__head {
  text-align: center;
}

.front-contact__en {
  margin: 0;
  color: #f7931e;
  font-size: 3.4722222222vw;
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: 0;
}

.front-contact__title {
  margin: 0.9027777778vw 0 0;
  font-size: 1.9444444444vw;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.0972222222vw;
}

.front-contact__buttons {
  width: 39.5833333333vw;
  margin: 5.061111vw auto 0;
}

.front-contact__form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39.5833333333vw;
  height: 6.9444444444vw;
  border-radius: 0.3472222222vw;
  background: #ffe191;
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.0694444444vw;
  transition: 0.3s ease;
}

.front-contact__form:hover {
  opacity: 0.8;
}

.front-contact__sub {
  display: flex;
  gap: 1.0416666667vw;
  margin-top: 1.0416666667vw;
}

.front-contact__sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 19.2361111111vw;
  height: 6.9444444444vw;
  border-radius: 0.3472222222vw;
  background: #fff4aa;
  transition: 0.3s ease;
}

.front-contact__sns:hover {
  opacity: 0.8;
}

.front-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9444444444vw;
  height: 1.9444444444vw;
  translate: 0 0.2083333333vw;
}

.front-contact__sns-text {
  margin-top: 0.6944444444vw;
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.0486111111vw;
  translate: 0 0.625vw;
}

.front-vision {
  background: #f7931e;
  padding: 1.6666666667vw 0 2.6388888889vw;
}

.front-vision .inner--md {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.front-vision__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.front-vision__welcome {
  color: #ffe191;
  font-size: 2.7777777778vw;
  font-weight: 400;
  line-height: 1;
}

.front-vision__head picture {
  display: block;
  width: 38.8888888889vw;
  margin-top: 1.6666666667vw;
}

.front-vision__logo {
  filter: brightness(0) invert(1);
}

.front-vision__title {
  margin-top: 1.5277777778vw;
  color: var(--color-white);
  font-size: 1.5277777778vw;
  font-weight: 400;
  line-height: 1.59;
  letter-spacing: 0.1527777778vw;
  text-align: center;
}

.front-vision__lead {
  margin-top: 1.3888888889vw;
  color: var(--color-white);
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.0520833333vw;
  text-align: center;
}

.front-vision__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 39.5833333333vw;
  height: 9.375vw;
  margin-top: 1.25vw;
  border-radius: 0.3472222222vw;
  background: #fff6de;
  transition: 0.3s ease;
  padding-top: 1.5972222222vw;
}

.front-vision__card:hover {
  opacity: 0.8;
}

.front-vision__card-title {
  font-size: 2.0138888889vw;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1006944444vw;
}

.front-vision__card-text {
  margin-top: 0.8333333333vw;
  color: #06c755;
  font-size: 0.9722222222vw;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 0.0486111111vw;
}

.front-vision__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9444444444vw;
  height: 1.9444444444vw;
  margin-top: 1.0416666667vw;
  translate: 0 -0.6944444444vw;
}

.front-vision__note {
  margin-top: 1.1111111111vw;
  color: #fff6de;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.0520833333vw;
}

.front-vision__contact-text {
  margin-top: 1.1111111111vw;
  color: #fff6de;
  font-size: 1.1111111111vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.0555555556vw;
  text-align: center;
}

.front-vision__contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.8611111111vw;
  height: 3.8888888889vw;
  margin-top: 1.1805555556vw;
  border: 1px solid #fff6de;
  border-radius: 0.4166666667vw;
  color: var(--color-white);
  font-size: 0.9722222222vw;
  font-weight: 700;
  line-height: 1.2;
  transition: 0.3s ease;
}

.front-vision__contact-button:hover {
  opacity: 0.8;
}

.front-footer-people {
  width: 100%;
}

.front-footer-people picture {
  display: block;
}

.front-special-instructor__card--last .front-special-instructor__name {
  margin-left: 0;
  margin-top: 0.6944444444vw;
  letter-spacing: 0.2083333333vw;
}

.front-contact__sns + .front-contact__sns .front-contact__icon {
  width: 2.2222222222vw;
  height: 2.2222222222vw;
}

.front-special-instructor__card.front-special-instructor__card--nomiyama {
  border-bottom: 0.0694444444vw solid;
  padding-bottom: 4.8611111111vw;
}

.front-special-instructor__name-row--nomiyama .front-special-instructor__name {
  margin-left: 2.0833333333vw;
  margin-top: 0.2777777778vw;
}

.front-special-instructor__name-row--nomiyama .front-special-instructor__sns-link {
  margin-left: 3.0555555556vw;
  margin-top: 0.2777777778vw;
}

.front-special-instructor__card--nomiyama .front-special-instructor__photo {
  margin-top: 0.3472222222vw;
}

.front-special-instructor__card--nomiyama .front-special-instructor__message-label {
  margin-top: 0.9027777778vw;
}

.front-special-instructor__card--nomiyama .front-special-instructor__message-text {
  letter-spacing: 0.0416666667vw;
}

.front-special-instructor__card--nomiyama .front-special-instructor__achievement {
  margin-top: 0.6944444444vw;
  padding: 0.5555555556vw 0.7638888889vw;
}

.front-voice__grid-item:nth-of-type(3), .front-voice__grid-item:nth-of-type(4) {
  padding-bottom: 0.0694444444vw;
}

.front-voice__grid-item:nth-of-type(5), .front-voice__grid-item:nth-of-type(6) {
  padding-bottom: 0.4166666667vw;
}

.front-voice__grid-item:nth-of-type(5) .front-voice__grid-body, .front-voice__grid-item:nth-of-type(6) .front-voice__grid-body {
  margin-top: 0.6944444444vw;
}

@media screen and (max-width: 1300px) {
  .front-page {
    width: 100vw;
    margin: 0 auto;
  }
  .front-fv-concept {
    background-image: url("../../img/front-page/fv/bg_fv_sp.webp");
    background-size: 100% auto;
    background-position: left top;
  }
  .front-kv {
    width: 100%;
    max-width: 100vw;
    height: 222.8205128205vw;
    padding-inline: 0;
  }
  .front-kv__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100vw;
    margin: 0 auto;
    padding-top: 3.8461538462vw;
  }
  .front-kv__title {
    order: 2;
    position: relative;
    width: 100%;
    font-size: 6.1538461538vw;
    line-height: 1.67;
    letter-spacing: 0.5128205128vw;
    text-align: center;
    margin: 2.451282vw auto 0;
  }
  .front-kv__program {
    order: 4;
    font-size: 3.3333333333vw;
    line-height: 1.5;
    letter-spacing: 0.2564102564vw;
    text-align: center;
    margin: 4.258974vw auto 0;
  }
  .front-kv__lead {
    order: 3;
    font-size: 3.5897435897vw;
    line-height: 1.86;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 4.158974vw auto 0;
  }
  .front-kv__logo {
    order: 5;
    position: relative;
    top: auto;
    left: auto;
    width: 79.4871794872vw;
    height: 8.7179487179vw;
    margin: 2.889744vw auto 0;
  }
  .front-kv__image-wrap {
    order: 1;
    position: relative;
    grid-column: auto;
    grid-row: auto;
    width: 79.4871794872vw;
    height: 70.2564102564vw;
    max-width: none;
    margin: 0 auto;
    overflow: hidden;
  }
  .front-kv__image-wrap .slick-list {
    width: 100%;
    height: 100%;
  }
  .front-kv__image-wrap .slick-track {
    height: 100%;
  }
  .front-kv__slide {
    width: 79.4871794872vw;
    height: 70.2564102564vw;
  }
  .front-kv__image {
    width: 79.4871794872vw;
    height: 70.2564102564vw;
  }
  .front-kv__badges {
    order: 7;
    position: relative;
    justify-content: center;
    gap: 5.1282051282vw;
    margin-top: 6.4102564103vw;
  }
  .front-kv__badge {
    flex: 0 0 25.641025641vw;
    height: 25.641025641vw;
  }
  .front-kv__button {
    order: 5;
    position: relative;
    gap: 3.0769230769vw;
    width: 61.5384615385vw;
    height: 11.2820512821vw;
    margin: 6.623077vw auto 0;
    font-size: 3.8461538462vw;
    letter-spacing: -0.1282051282vw;
  }
  .front-about__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 6.6666666667vw 0 0;
  }
  .front-about__photos {
    order: 2;
    position: relative;
    height: auto;
    margin-top: 6.6666666667vw;
  }
  .front-about__photo {
    position: relative;
  }
  .front-about__photo--left {
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    max-width: 100%;
    margin: 0 auto;
  }
  .front-about__photo--right {
    display: none;
  }
  .front-about__text {
    order: 1;
    width: 84.6153846154vw;
    margin: 0 auto;
  }
  .front-about__eyebrow {
    font-size: 5.641025641vw;
    line-height: 1.45;
  }
  .front-about__en-title {
    margin-top: 6.6666666667vw;
    font-size: 7.6923076923vw;
    line-height: 1.2;
    letter-spacing: 0px;
  }
  .front-about__title {
    margin-top: 4.1025641026vw;
    font-size: 4.8717948718vw;
    line-height: 1.8;
    letter-spacing: 0.4871794872vw;
    text-align: left;
    padding-left: 15.641025641vw;
  }
  .front-about__description {
    margin-top: 3.5897435897vw;
    font-size: 3.8461538462vw;
    line-height: 2.05;
    letter-spacing: 0.05em;
    text-align: left;
    padding-left: 15.3846153846vw;
  }
  .front-target {
    padding: 2.5641025641vw 0;
  }
  .front-target__inner {
    width: 100%;
    padding: 14.358974359vw 0 9.2307692308vw;
    background-size: cover;
  }
  .front-target__title {
    width: 82.0512820513vw;
    font-size: 5.641025641vw;
    line-height: 1.45;
    letter-spacing: 0.4871794872vw;
  }
  .front-target__title::after {
    width: 67.9487179487vw;
    margin-top: 1.7948717949vw;
  }
  .front-target__columns {
    flex-direction: column;
    width: 92.3076923077vw;
    margin: 6.1538461538vw auto 0 0;
  }
  .front-target__column {
    width: 100%;
  }
  .front-target__column--now,
  .front-target__column--future {
    margin-left: 0;
    border-radius: 1.0256410256vw;
  }
  .front-target__column--now {
    padding: 5.3846153846vw 7.1794871795vw 18.7179487179vw 12.8205128205vw;
    border-radius: 0 1.0256410256vw 1.0256410256vw 0;
  }
  .front-target__column--future {
    margin-left: 7.6923076923vw;
    margin-top: -11.2820512821vw;
    padding: 10.2564102564vw 7.1794871795vw 6.1538461538vw 10.2564102564vw;
    border-radius: 1.0256410256vw 0 0 1.0256410256vw;
  }
  .front-target__column-en,
  .front-target__column--future .front-target__column-en {
    font-size: 7.6923076923vw;
    line-height: 1.1;
  }
  .front-target__column-title {
    font-size: 4.1025641026vw;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .front-target__column-en + .front-target__column-title {
    margin-left: 4.1025641026vw;
  }
  .front-target__column > div + .front-target__list, .front-target__column--future .front-target__list {
    margin-top: 4.8717948718vw;
    width: 94%;
  }
  .front-target__list li {
    padding-left: 6.4102564103vw;
    font-size: 3.5897435897vw;
    line-height: 1.6;
    letter-spacing: 0.1794871795vw;
  }
  .front-target__list li + li, .front-target__column--future .front-target__list li:nth-child(n+6) {
    margin-top: 3.3333333333vw;
  }
  .front-target__column--now .front-target__list li::before {
    top: 1.5384615385vw; /* icon adjust */
    width: 4.1025641026vw;
    height: 4.1025641026vw;
  }
  .front-target__column--future .front-target__list li::before {
    top: 1.0256410256vw; /* icon adjust */
    width: 4.6153846154vw;
    height: 4.6153846154vw;
  }
  .front-what__inner {
    width: 100%;
    padding: 7.9487179487vw 0 7.9487179487vw;
  }
  .front-what-instructor {
    background-image: url("../../img/front-page/what/bg_what_inst_sp.webp");
  }
  .front-what__lead {
    font-size: 5.641025641vw;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .front-what__item {
    width: 79.2307692308vw;
    margin-top: 7.1794871795vw;
    padding: 6.6666666667vw 5.641025641vw 6.9230769231vw;
    border-radius: 3.0769230769vw;
  }
  .front-what__item + .front-what__item {
    margin-top: 4.6153846154vw;
  }
  .front-what__label {
    font-size: 6.1538461538vw;
  }
  .front-what__stats {
    margin: 0px auto 0;
  }
  .front-what__item:nth-of-type(1) .front-what__stats {
    gap: 0px;
    translate: -2.5641025641vw -0.2564102564vw;
  }
  .front-what__item:nth-of-type(2) .front-what__stats {
    margin: 0px auto 0;
    gap: 2.0512820513vw;
    translate: -0.5128205128vw -0.2564102564vw;
  }
  .front-what__item:nth-of-type(3) .front-what__stats {
    margin: 0px auto 0;
    gap: 2.3076923077vw;
    translate: 1.0256410256vw -0.2564102564vw;
  }
  .front-what__number {
    font-size: 17.9487179487vw;
  }
  .front-what__unit {
    font-size: 3.8461538462vw;
    translate: 0 -2.0512820513vw;
  }
  .front-what__title {
    margin-top: 4.358974359vw;
    font-size: 4.6153846154vw;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }
  .front-what__item:nth-of-type(3) .front-what__title {
    margin-top: 6.1538461538vw;
  }
  .front-what__content {
    flex-direction: column;
    gap: 4.1025641026vw;
    margin-top: 5.641025641vw;
  }
  .front-what__item:nth-of-type(2) .front-what__content {
    gap: 6.1538461538vw;
    margin-top: 4.6153846154vw;
  }
  .front-what__item:nth-of-type(3) .front-what__content {
    gap: 7.4358974359vw;
  }
  .front-what__desc {
    width: 96%;
    font-size: 3.5897435897vw;
    line-height: 1.57;
    letter-spacing: 0.2564102564vw;
    margin: 0 auto;
  }
  .front-what__thumb {
    margin: 0 auto;
    width: 41.0256410256vw;
  }
  .front-what__final-img {
    width: 100%;
    margin-top: 9.7435897436vw;
  }
  .front-instructor {
    padding: 9.4871794872vw 0 0;
  }
  .front-instructor__inner {
    width: 82.0512820513vw;
  }
  .front-instructor__title {
    color: #754c24;
    font-size: 6.1538461538vw;
    line-height: 1.4167;
    letter-spacing: 0.3076923077vw;
    text-align: left;
    padding-left: 7.6923076923vw;
  }
  .front-instructor__lead {
    margin: 1.5384615385vw auto 0;
    color: #754c24;
    font-size: 3.8461538462vw;
    line-height: 1.6667;
    letter-spacing: 0.1923076923vw;
    text-align: left;
    padding-left: 7.6923076923vw;
  }
  .front-instructor__item {
    width: 100%;
    margin-top: 13.3333333333vw;
  }
  .front-instructor__item + .front-instructor__item {
    margin-top: 15.997436vw;
  }
  .front-instructor__label-ja {
    color: #754c24;
    font-size: 2.8205128205vw;
    line-height: 2.3636;
    letter-spacing: 0.141025641vw;
  }
  .front-instructor__label-en {
    margin-top: -2.0512820513vw;
    font-size: 6.1538461538vw;
    line-height: 1.3333;
  }
  .front-instructor__item picture {
    width: 79.4871794872vw;
    height: 61.2820512821vw;
    margin-top: 1.2820512821vw;
    overflow: hidden;
  }
  .front-instructor__image {
    height: 100%;
  }
  .front-instructor__roman {
    margin-top: 2.0512820513vw;
    color: #754c24;
    font-size: 5.1282051282vw;
    line-height: 1.6;
  }
  .front-instructor__name {
    gap: 4.1025641026vw;
    margin-top: 2.0512820513vw;
    text-align: left;
    justify-content: flex-start;
    margin-left: 11.2820512821vw;
    align-items: center;
  }
  .front-instructor__name span {
    color: #754c24;
    font-size: 3.5897435897vw;
    line-height: 1.7857;
    letter-spacing: 0.6153846154vw;
    translate: 0;
  }
  .front-instructor__name strong {
    color: #754c24;
    font-size: 5.1282051282vw;
    line-height: 1.25;
    letter-spacing: 0.2564102564vw;
  }
  .front-instructor__sns {
    gap: 3.0769230769vw;
    margin-top: 3.3333333333vw;
  }
  .front-instructor__sns-icon {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
  }
  .front-instructor__message-label {
    margin-top: 5.8974358974vw;
    font-size: 4.6153846154vw;
    line-height: 0.8333;
  }
  .front-instructor__message-title {
    color: #754c24;
    margin-top: 4.1025641026vw;
    font-size: 4.1025641026vw;
    line-height: 1.625;
    letter-spacing: 0.2051282051vw;
  }
  .front-instructor__message-text {
    color: #754c24;
    margin-top: 4.1025641026vw;
    font-size: 3.5897435897vw;
    line-height: 1.6429;
    letter-spacing: 0.0358974359vw;
    padding-right: 2.3076923077vw;
  }
  .front-instructor__profile {
    padding: 2.3076923077vw 2.5641025641vw 3.3333333333vw;
    margin-top: 5.641025641vw;
    width: 97%;
  }
  .front-instructor__profile-title {
    font-size: 4.6153846154vw;
    line-height: 0.8333;
  }
  .front-instructor__profile-text {
    color: #754c24;
    margin-top: 3.0769230769vw;
    font-size: 3.0769230769vw;
    line-height: 1.5;
    letter-spacing: 0.0307692308vw;
  }
  .front-instructor__item:nth-of-type(2) .front-instructor__message-label {
    margin-top: 5.8974358974vw;
  }
  .front-instructor__item:nth-of-type(2) .front-instructor__message-title {
    margin-top: 5.8974358974vw;
  }
  .front-instructor__item:nth-of-type(2) .front-instructor__profile {
    margin-top: 5.802564vw;
  }
  .front-instructor > picture {
    display: block;
    width: 100%;
    margin-top: 10.2564102564vw;
    height: auto;
  }
  .front-instructor__hero {
    height: auto;
  }
  .front-special-instructor > picture {
    height: auto;
    margin-top: 10.2564102564vw;
  }
  .front-special-instructor__bg {
    height: auto;
  }
  .front-special-instructor__logo {
    margin-top: 25.3846153846vw;
    margin-left: 41.0256410256vw;
    width: 15.641025641vw;
  }
  .front-special-instructor__inner {
    width: 100vw;
    max-width: 100%;
    padding-top: 7.6923076923vw;
    padding-bottom: 7.9487179487vw;
  }
  .front-special-instructor__label-ja {
    color: #754c24;
    font-size: 2.8205128205vw;
    line-height: 2.3636;
    letter-spacing: 0.141025641vw;
  }
  .front-special-instructor__title {
    margin-top: -2.0512820513vw;
    font-size: 5.1282051282vw;
    line-height: 1.6;
  }
  .front-special-instructor__card {
    width: 79.4871794872vw;
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    gap: 3.8461538462vw;
    margin-top: 1.2820512821vw;
  }
  .front-special-instructor__card + .front-special-instructor__card {
    margin-top: 13.0769230769vw;
  }
  .front-special-instructor__card--last {
    gap: 0;
    margin-top: 5.641025641vw;
    translate: 2.5641025641vw;
  }
  .front-special-instructor__profile,
  .front-special-instructor__content {
    width: 79.4871794872vw;
  }
  .front-special-instructor__profile {
    display: flex;
    flex-direction: column;
  }
  .front-special-instructor__roman {
    order: 2;
    margin-top: 3.3333333333vw;
    color: #754c24;
    font-size: 5.1282051282vw;
    line-height: 1.6;
    text-align: center;
  }
  .front-special-instructor__card--kurihara .front-special-instructor__name-row {
    display: flex;
    align-items: center;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.0512820513vw;
    gap: 2.3076923077vw;
  }
  .front-special-instructor__card--kurihara .front-special-instructor__role {
    color: #754c24;
    font-size: 3.5897435897vw;
    line-height: 1.7857;
    letter-spacing: 0.2564102564vw;
  }
  .front-special-instructor__card--kurihara .front-special-instructor__name {
    color: #754c24;
    margin-left: 0;
    font-size: 5.1282051282vw;
    line-height: 1.25;
    letter-spacing: 0.2564102564vw;
  }
  .front-special-instructor__card--kurihara .front-special-instructor__sns-link {
    flex-basis: 100%;
    margin: 1.2820512821vw auto 0 -1.0256410256vw;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__name-row,
  .front-special-instructor__name-row--nomiyama {
    display: flex;
    align-items: center;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.3076923077vw;
    column-gap: 0;
    row-gap: 0.5128205128vw;
    translate: 0;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__name-row .front-special-instructor__role,
  .front-special-instructor__name-row--nomiyama .front-special-instructor__role {
    flex-basis: 100%;
    text-align: center;
    color: #754c24;
    font-size: 3.5897435897vw;
    line-height: 1.7857;
    letter-spacing: 0.2564102564vw;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__name-row .front-special-instructor__role br,
  .front-special-instructor__name-row--nomiyama .front-special-instructor__role br {
    display: none;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__name-row .front-special-instructor__name,
  .front-special-instructor__name-row--nomiyama .front-special-instructor__name {
    margin-left: 0;
    font-size: 5.1282051282vw;
    line-height: 1.25;
    letter-spacing: 0.2564102564vw;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__name-row .front-special-instructor__sns-link,
  .front-special-instructor__name-row--nomiyama .front-special-instructor__sns-link {
    flex-basis: 100%;
    margin: 3.0769230769vw auto 0 -1.2820512821vw;
  }
  .front-special-instructor__sns-icon {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
  }
  .front-special-instructor__photo {
    order: 1;
    max-width: 51.2820512821vw;
    height: 46.1538461538vw;
    margin: 0 auto;
    object-fit: cover;
  }
  .front-special-instructor__content {
    padding-top: 0;
  }
  .front-special-instructor__summary {
    font-size: 4.1025641026vw;
    line-height: 1.625;
    letter-spacing: 0.3076923077vw;
    text-align: left;
  }
  .front-special-instructor__message-label {
    margin-top: 5.1282051282vw;
    font-size: 4.6153846154vw;
    line-height: 0.8333;
    text-align: center;
  }
  .front-special-instructor__message-title {
    color: #754c24;
    margin-top: 2.0512820513vw;
    font-size: 4.1025641026vw;
    line-height: 6.6666666667vw;
    letter-spacing: 0.2051282051vw;
    text-align: left;
  }
  .front-special-instructor__message-text {
    color: #754c24;
    margin-top: 1.0256410256vw;
    font-size: 3.5897435897vw;
    line-height: 1.6429;
    letter-spacing: 0.0358974359vw;
    text-align: left;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__message-text {
    margin-top: 3.376923vw;
  }
  .front-special-instructor__achievement {
    padding: 1.807692vw 2.8205128205vw 2.5641025641vw;
    margin-top: 3.0769230769vw;
  }
  .front-special-instructor__achievement-text {
    font-size: 3.0769230769vw;
    line-height: 1.48;
    margin-top: 3.0769230769vw;
  }
  .front-special-instructor__profile-title {
    display: block;
    margin-top: 0;
    font-size: 4.6153846154vw;
    text-align: center;
    line-height: 1;
  }
  .front-special-instructor__card--last::before {
    order: -2;
    content: "監修";
    color: #754c24;
    font-size: 2.8205128205vw;
    font-weight: 500;
    line-height: 2.3636;
    letter-spacing: 0.141025641vw;
    text-align: center;
  }
  .front-special-instructor__card--last::after {
    order: -1;
    content: "ACADEMIC SUPERVISOR";
    color: #f7931e;
    font-family: "Playfair Display", serif;
    font-size: 5.1282051282vw;
    font-weight: 500;
    line-height: 1.6;
    margin-top: -2.0512820513vw;
    text-align: center;
  }
  .front-special-instructor__card--last .front-special-instructor__profile {
    order: 1;
    margin-top: 0px;
  }
  .front-special-instructor__card--last .front-special-instructor__content {
    order: 2;
    margin-top: 7.641026vw;
    margin-left: -3.1538461538vw;
  }
  .front-special-instructor__card--last .front-special-instructor__photo {
    order: 3;
    margin-top: 1.2820512821vw;
    margin-right: auto;
    margin-left: auto;
  }
  .front-special-instructor__card--last .front-special-instructor__roman {
    order: 4;
    margin-top: 3.3333333333vw;
  }
  .front-special-instructor__card--last .front-special-instructor__name--single {
    order: 5;
    margin-top: 3.582051vw;
    font-size: 5.1282051282vw;
    text-align: center;
  }
  .front-special-instructor__card--last .front-special-instructor__achievement {
    margin-top: 2.764103vw;
    padding-bottom: 2.294872vw;
  }
  .front-special-instructor__card--last .front-special-instructor__achievement-text {
    margin-top: 2.8205128205vw;
    line-height: 1.5;
  }
  .front-price__photo {
    height: 87.1794871795vw;
  }
  .front-price__photo img {
    height: 100%;
    object-fit: cover;
  }
  .front-student {
    padding-top: 7.4358974359vw;
    padding-bottom: 6.4102564103vw;
  }
  .front-student__en {
    font-size: 6.1538461538vw;
  }
  .front-student__title {
    margin: 3.389744vw auto 0;
    font-size: 6.1538461538vw;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .front-student__list {
    margin-top: 8.335897vw;
  }
  .front-student__item {
    flex-direction: column;
    width: 89.7435897436vw;
  }
  .front-student__item + .front-student__item {
    margin-top: 10.7692307692vw;
  }
  .front-student__photo {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
  }
  .front-student__photo picture {
    width: 61.7%;
    translate: 0.794872vw 0px;
  }
  .front-student__card {
    width: 84.6153846154vw;
    margin: -20vw auto 0;
    padding: 26.166667vw 6.1538461538vw 6.4102564103vw;
    translate: 1.7948717949vw;
  }
  .front-student__grade {
    font-size: 2.8205128205vw;
    line-height: 1.8;
  }
  .front-student__name-text {
    font-size: 5.1282051282vw;
    margin-top: 1.5384615385vw;
  }
  .front-student__lead {
    margin-top: 5.735897vw;
    font-size: 4.146154vw;
    line-height: 1.65;
    letter-spacing: 0.392308vw;
    translate: 0.538462vw;
  }
  .front-student__body {
    margin-top: 0.5128205128vw;
    font-size: 3.3333333333vw;
    line-height: 1.75;
    translate: 0.438462vw;
  }
  .front-student__text {
    margin: 0;
    font-size: 3.5897435897vw;
    font-weight: 400;
    line-height: 1.57;
    letter-spacing: 0.2820512821vw;
  }
  .front-student__text + .front-student__text {
    margin-top: 5.641025641vw;
    font-weight: 500;
  }
  .front-student__label {
    padding-right: 1.7948717949vw;
    letter-spacing: 0.258974vw;
  }
  .front-student__label::after {
    height: 3.3333333333vw;
    margin-left: 1.5384615385vw;
    translate: 0 -0.5128205128vw;
  }
  .front-student__photos {
    display: none;
  }
  .front-curriculum {
    background-image: url("../../img/front-page/curriculum/bg_curriculum_sp.webp?t=1782014171230");
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    padding: 14.358974359vw 0 7.6923076923vw;
  }
  .front-curriculum__inner {
    width: 89.7435897436vw;
  }
  .front-curriculum__logo {
    width: 92.3076923077vw;
    margin: 0 auto 0 -2.8205128205vw;
  }
  .front-curriculum__head {
    margin-top: 5.1282051282vw;
  }
  .front-curriculum__title {
    color: #754c24;
    font-size: 5.1282051282vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.2564102564vw;
  }
  .front-curriculum__lead {
    width: 74.1025641026vw;
    margin: 3.3333333333vw auto 0;
    color: #754c24;
    font-size: 3.8461538462vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1923076923vw;
  }
  .front-curriculum__course {
    width: 89.7435897436vw;
    margin: 5.641025641vw auto 0;
  }
  .front-curriculum__course:nth-of-type(2) {
    margin-top: 6.9230769231vw;
  }
  .front-curriculum__course:nth-of-type(4) {
    margin-top: 6.9230769231vw;
  }
  .front-curriculum__band {
    height: 28.2051282051vw;
    border-radius: 2.5641025641vw 2.5641025641vw 0 0;
  }
  .front-curriculum__band-title {
    justify-content: center;
    gap: 3.0769230769vw;
    margin-top: 0;
    font-size: 5.1282051282vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.2564102564vw;
    text-align: center;
  }
  .front-curriculum__course:nth-of-type(2) .front-curriculum__band-title {
    margin: 3.0769230769vw auto 0 14.1025641026vw;
  }
  .front-curriculum__course:nth-of-type(4) .front-curriculum__band-title {
    margin: 2.8205128205vw auto 0 14.1025641026vw;
  }
  .front-curriculum__band-sub {
    margin-top: 0;
    font-size: 3.3333333333vw;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.1666666667vw;
  }
  .front-curriculum__course:nth-of-type(2) .front-curriculum__band-sub {
    margin: 0 auto 0 21.5384615385vw;
    font-size: 3.3333333333vw;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.1666666667vw;
  }
  .front-curriculum__course:nth-of-type(4) .front-curriculum__band-sub {
    margin-left: -4.1025641026vw;
  }
  .front-curriculum__card {
    padding: 1.7948717949vw 5.1282051282vw 7.6923076923vw;
    border-radius: 0 0 2.5641025641vw 2.5641025641vw;
  }
  .front-curriculum__card.front-curriculum__card--half {
    padding: 5.641025641vw 4.8717948718vw 7.6923076923vw 6.9230769231vw;
    border-radius: 0 0 2.5641025641vw 2.5641025641vw;
  }
  .front-curriculum__card.front-curriculum__card--half .front-curriculum__card-lead {
    text-align: left;
    letter-spacing: 0.0769230769vw;
  }
  .front-curriculum__license {
    position: relative;
    justify-content: center;
    gap: 4.1025641026vw;
    margin-top: 1.7948717949vw;
    top: auto;
    right: auto;
  }
  .front-curriculum__license img {
    flex: 0 0 15.3846153846vw;
    height: 15.3846153846vw;
  }
  .front-curriculum__card-lead {
    margin: 0;
    color: #754c24;
    font-size: 3.5897435897vw;
    font-weight: 500;
    line-height: 1.71;
    letter-spacing: 0.2564102564vw;
    text-align: left;
  }
  .front-curriculum__step {
    margin-top: 2.5641025641vw;
  }
  .front-curriculum__step + .front-curriculum__step {
    margin-top: 6.9230769231vw;
  }
  .front-curriculum__step + .front-curriculum__step + .front-curriculum__step {
    margin-top: 7.4358974359vw;
  }
  .front-curriculum__step-bar {
    height: auto;
    padding: 0.7692307692vw 0;
  }
  .front-curriculum__step-title {
    font-size: 4.1025641026vw;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.2051282051vw;
    text-align: center;
  }
  .front-curriculum__step:nth-of-type(4) .front-curriculum__step-title {
    font-size: 4.1025641026vw;
  }
  .front-curriculum__step-body {
    flex-direction: column;
    gap: 3.5897435897vw;
    margin-top: 3.3333333333vw;
  }
  .front-curriculum__step:nth-of-type(4) .front-curriculum__step-body {
    margin-top: 3.0769230769vw;
  }
  .front-curriculum__step-desc {
    width: 100%;
    font-size: 3.8461538462vw;
    font-weight: 500;
    line-height: 1.53;
    letter-spacing: 0.3461538462vw;
    text-align: left;
    padding: 0 2.5641025641vw;
  }
  .front-curriculum__badge {
    order: -1;
    width: 46.1538461538vw;
    margin: 0 auto;
    border-radius: 4.6153846154vw;
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1.69;
    letter-spacing: 0.1666666667vw;
    padding: 0.5128205128vw 0;
  }
  .front-curriculum__badge.front-curriculum__badge--2line {
    padding: 0.7638888889vw 0;
    line-height: 1.38;
    border-radius: 4.6153846154vw;
  }
  .front-curriculum__badge.front-curriculum__badge--1line {
    padding: 1.5384615385vw 0;
    line-height: 1;
  }
  .front-curriculum__step:nth-of-type(4) .front-curriculum__badge.front-curriculum__badge--1line {
    width: 25.641025641vw;
  }
  .front-curriculum__badge-detail {
    display: inline-block;
    margin: 0 0 0 1.5384615385vw;
  }
  .front-curriculum__cols {
    flex-direction: column;
    gap: 0;
    margin-top: 3.0769230769vw;
  }
  .front-curriculum__col {
    width: 100%;
    padding-bottom: 1.7948717949vw;
    background: #f5f5f5;
  }
  .front-curriculum__col + .front-curriculum__col {
    border-top: none;
  }
  .front-curriculum__col-title {
    padding: 2.5641025641vw 0 1.5384615385vw;
    font-size: 4.1025641026vw;
    font-weight: 400;
    line-height: 1.56;
    letter-spacing: 0.2051282051vw;
    background: #fff;
  }
  .front-curriculum__col-text {
    height: auto;
    padding: 1.0256410256vw 4.1025641026vw 0 2.3076923077vw;
    font-size: 3.3333333333vw;
    font-weight: 400;
    line-height: 1.69;
    letter-spacing: 0;
    text-align: left;
  }
  .front-curriculum__thumbs {
    gap: 0;
    margin-top: 6.1538461538vw;
  }
  .front-curriculum__thumb {
    width: 51.2820512821vw;
    margin: 1.5384615385vw auto 0;
  }
  .front-curriculum__step:nth-child(4) .front-curriculum__thumb {
    width: 51.2820512821vw;
    margin: 4.851282vw auto 0;
  }
  .front-curriculum__step:nth-child(5) .front-curriculum__thumb {
    width: 51.2820512821vw;
    margin-top: 4.964103vw;
  }
  .front-curriculum__thumbs--half .front-curriculum__thumb {
    width: 51.2820512821vw;
    margin-top: 1.5384615385vw;
  }
  .front-curriculum__thumbs.front-curriculum__thumbs--half {
    margin-top: 1.7948717949vw;
  }
  .front-price__inner {
    width: 100%;
    padding: 6.6666666667vw 10.2564102564vw 6.9230769231vw;
  }
  .front-price__eyebrow {
    font-size: 6.1538461538vw;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 0;
  }
  .front-price__title {
    margin-top: 6.9230769231vw;
    color: #754c24;
    font-size: 5.1282051282vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.2564102564vw;
  }
  .front-price__lead {
    width: 74.1025641026vw;
    margin: 3.3333333333vw auto 0;
    color: #754c24;
    font-size: 3.8461538462vw;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2179487179vw;
    padding: 0 2.5641025641vw;
  }
  .front-price__band {
    width: 79.4871794872vw;
    margin-top: 3.3333333333vw;
  }
  .front-price__band-label {
    padding: 1.0256410256vw 2.5641025641vw;
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.1153846154vw;
  }
  .front-price__band-text {
    padding: 2.0512820513vw 2.5641025641vw 2.5641025641vw;
    font-size: 3.5897435897vw;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.1794871795vw;
  }
  .front-price__plans {
    margin-top: 4.358974359vw;
  }
  .front-price__plan {
    width: 79.4871794872vw;
    padding-bottom: 4.358974359vw;
  }
  .front-price__plan + .front-price__plan {
    padding-bottom: 4.1025641026vw;
    margin-top: 4.6153846154vw;
  }
  .front-price__plan-name {
    color: #754c24;
    font-size: 5.1282051282vw;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.2564102564vw;
  }
  .front-price__plan-note {
    font-size: 3.5897435897vw;
    font-weight: 500;
    line-height: 2.29;
    letter-spacing: 0.1794871795vw;
    margin-left: 1.0256410256vw;
  }
  .front-price__regular {
    flex-direction: column;
    gap: 0;
    margin-top: 1.7948717949vw;
    font-size: 3.0769230769vw;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.2820512821vw;
  }
  .front-price__amount {
    gap: 1.2820512821vw;
    margin-top: 2.5641025641vw;
    margin-left: -3.0769230769vw;
  }
  .front-price__num {
    color: #754c24;
    font-size: 7.6923076923vw;
    font-weight: 500;
    line-height: 1.07;
    letter-spacing: 0.3846153846vw;
  }
  .front-price__yen {
    color: #754c24;
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.1666666667vw;
  }
  .front-price__tax {
    margin-top: 1.5384615385vw;
    color: #754c24;
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 2.46;
    letter-spacing: 0.1666666667vw;
  }
  .front-price__notice {
    width: 79.4871794872vw;
    margin: 2.5641025641vw auto 0;
    font-size: 3.0769230769vw;
    font-weight: 400;
    line-height: 1.67;
    letter-spacing: 0;
    text-align: left;
  }
  .front-voice {
    padding: 8.2051282051vw 0 0;
  }
  .front-voice__en {
    font-size: 6.1538461538vw;
  }
  .front-voice__title {
    margin-top: 1.7948717949vw;
    font-size: 5.1282051282vw;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }
  .front-voice__grid {
    flex-direction: column;
    gap: 2.5641025641vw;
    width: 79.4871794872vw;
    margin-top: 4.6153846154vw;
  }
  .front-voice__grid-item {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 3.0769230769vw 5.1282051282vw 0;
    padding-bottom: 2.776923vw;
    background: linear-gradient(90deg, #ffe191 0%, #fccb00 100%);
    margin: 0;
    min-height: 48.7179487179vw;
  }
  .front-voice__grid-item:nth-child(n+3) {
    height: auto;
    padding-bottom: 2.8205128205vw;
  }
  .front-voice__grid-item:first-child {
    margin-top: 3.8461538462vw;
  }
  .front-voice__grid-head {
    gap: 3.5897435897vw;
  }
  .front-voice__grid-icon {
    width: 20.5128205128vw;
    height: 20.5128205128vw;
  }
  .front-voice__grid-wrap {
    width: auto;
  }
  .front-voice__grid-item:first-child .front-voice__grid-wrap {
    width: 100%;
  }
  .front-voice__grid-catch {
    margin: 1.7948717949vw 0 0;
    font-size: 3.8461538462vw;
    font-weight: 400;
    line-height: 1.5333333333;
    letter-spacing: 0.2435897436vw;
  }
  .front-voice__grid-name {
    margin: 1.2820512821vw 0 0 0.5128205128vw;
    font-size: 3.5897435897vw;
    font-weight: 500;
    line-height: 1.6428571429;
    letter-spacing: 0.1794871795vw;
  }
  .front-voice__grid-body {
    margin: 3.0769230769vw 0 0 1.2820512821vw;
    font-size: 3.3333333333vw;
    line-height: 1.45;
    letter-spacing: 0.2307692308vw;
    width: 97%;
  }
  .front-voice__photos {
    width: 84.6%;
    margin-top: 12.038462vw;
    translate: 0.7692307692vw;
  }
  .front-faq__inner {
    width: 100%;
    padding: 9.297436vw 0 19.4871794872vw;
  }
  .front-faq__en {
    font-size: 10.253846vw;
  }
  .front-faq__title {
    margin-top: 2.769231vw;
    font-size: 5.1282051282vw;
  }
  .front-faq__list {
    width: 89.7435897436vw;
    margin-top: 6.669231vw;
  }
  .front-faq__item {
    border-radius: 2.0512820513vw;
  }
  .front-faq__item + .front-faq__item {
    margin-top: 2.364103vw;
  }
  .front-faq__q, .front-faq__a {
    gap: 0.5128205128vw;
    padding: 2.5641025641vw 3.3333333333vw 3vw;
  }
  .front-faq__q-mark,
  .front-faq__a-mark {
    font-size: 5.641025641vw;
  }
  .front-faq__q-text {
    font-size: 3.8461538462vw;
    line-height: 1.65;
    letter-spacing: 0.04em;
  }
  .front-faq__a-text {
    font-size: 3.3333333333vw;
    line-height: 1.6;
    letter-spacing: 0.03em;
  }
  .front-contact__inner {
    width: 100%;
    padding: 16.6666666667vw 0 12.520513vw;
  }
  .front-contact__en {
    font-size: 7.6923076923vw;
  }
  .front-contact__title {
    margin-top: 2.094872vw;
    font-size: 3.8461538462vw;
  }
  .front-contact__buttons {
    width: 60.2564102564vw;
    margin-top: 5.1282051282vw;
  }
  .front-contact__form {
    width: 100%;
    height: 25.641025641vw;
    font-size: 3.5897435897vw;
    font-weight: 700;
  }
  .front-contact__sub {
    gap: 3.8461538462vw;
    margin-top: 5.1282051282vw;
  }
  .front-contact__sns {
    width: 43.5897435897vw;
    height: 25.641025641vw;
  }
  .front-contact__icon {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    translate: 0 -1.2820512821vw;
  }
  .front-contact__sns + .front-contact__sns .front-contact__icon {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    translate: 0 -1.2820512821vw;
  }
  .front-contact__sns-text {
    margin-top: 0;
    font-size: 3.3333333333vw;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-align: center;
    translate: 0 1.5384615385vw;
  }
  .front-vision {
    padding: 6.6666666667vw 0 6.1538461538vw;
  }
  .front-vision__welcome {
    font-size: 7.6923076923vw;
  }
  .front-vision__head picture {
    width: 100%;
    margin-top: 6.9230769231vw;
  }
  .front-vision__logo {
    filter: none;
  }
  .front-vision__title {
    width: 60.2564102564vw;
    margin-top: 4.6153846154vw;
    font-size: 4.8717948718vw;
    font-weight: 400;
    line-height: 1.8421052632;
    letter-spacing: 0.5256410256vw;
    text-align: left;
  }
  .front-vision__lead {
    width: 61.2820512821vw;
    margin-top: 3.5897435897vw;
    font-size: 3.8461538462vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.1923076923vw;
    text-align: left;
  }
  .front-vision__card {
    justify-content: flex-start;
    width: 60.2564102564vw;
    height: 30.7692307692vw;
    margin-top: 5.1282051282vw;
    padding-top: 0.7692307692vw;
    border-radius: 1.2820512821vw;
    background: #fff6de;
    box-shadow: 0.5128205128vw 0.5128205128vw 0.5128205128vw rgba(0, 0, 0, 0.15);
  }
  .front-vision__card-title {
    width: 43.0769230769vw;
    color: #754c24;
    font-size: 4.1025641026vw;
    font-weight: 700;
    line-height: 2.1875;
    letter-spacing: 0.2051282051vw;
    text-align: center;
  }
  .front-vision__card-text {
    width: 46.6666666667vw;
    margin-top: -0.2564102564vw;
    color: #06c755;
    font-size: 3.3333333333vw;
    font-weight: 700;
    line-height: 1.5384615385;
    letter-spacing: 0.141025641vw;
    text-align: center;
  }
  .front-vision__card-icon {
    width: 7.1794871795vw;
    height: 7.1794871795vw;
    margin-top: 1.5384615385vw;
    translate: 0;
  }
  .front-vision__note {
    width: 61.5384615385vw;
    margin-top: 2.5641025641vw;
    color: #fff6de;
    font-size: 3.5897435897vw;
    font-weight: 500;
    line-height: 2.1428571429;
    letter-spacing: 0.1794871795vw;
    text-align: center;
  }
  .front-vision__contact-text {
    width: 52.8205128205vw;
    margin-top: 6.1538461538vw;
    color: #fff6de;
    font-size: 3.5897435897vw;
    font-weight: 500;
    line-height: 1.7142857143;
    letter-spacing: 0.1794871795vw;
    text-align: center;
  }
  .front-vision__contact-button {
    width: 35.3846153846vw;
    height: 9.2307692308vw;
    margin-top: 4.8717948718vw;
    border: 1px solid #9fd813;
    border-radius: 1.5384615385vw;
    color: #ffffff;
    font-size: 3.5897435897vw;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 0.2564102564vw 0.5128205128vw rgba(0, 0, 0, 0.05);
  }
  .front-news {
    padding-top: 4.1025641026vw;
    padding-bottom: 11.0256410256vw;
  }
  .front-news__en {
    font-size: 7.6923076923vw;
  }
  .front-news__title {
    margin-top: 1.7948717949vw;
    font-size: 3.8461538462vw;
  }
  .front-news__button {
    margin-top: 5.641025641vw;
  }
  .front-news__link {
    width: 61.5384615385vw;
    height: 11.2820512821vw;
    font-size: 3.5897435897vw;
  }
  .front-target__column > div {
    gap: 0.2564102564vw;
  }
  .front-target__column--future .front-target__list li {
    padding-left: 6.4102564103vw;
  }
  .header__inner {
    align-items: flex-start;
    max-width: 100%;
    height: 21.7948717949vw;
    padding: 0 4.358974359vw;
    z-index: 40;
  }
  .front-what__item:nth-of-type(3) {
    padding-bottom: 5.1282051282vw;
  }
  .front-student__name + .front-student__sns {
    width: 6.1538461538vw;
    height: auto;
    margin: 2.638462vw auto 0;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__message-label {
    margin-top: 4.702778vw;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__achievement {
    margin-top: 3.3333333333vw;
    padding: 2.0512820513vw 3.0769230769vw 3.0769230769vw;
  }
  .front-special-instructor__card--nomiyama .front-special-instructor__achievement-text {
    margin-top: 2.0512820513vw;
  }
  .front-special-instructor__card.front-special-instructor__card--nomiyama {
    margin-top: 13.0769230769vw;
    padding-bottom: 15.3846153846vw;
  }
  .front-special-instructor__card.front-special-instructor__card--last {
    margin-top: 5.776923vw;
  }
  .front-instructor__item + .front-instructor__item .front-instructor__roman {
    margin-top: 1.0256410256vw;
  }
  .front-instructor__item + .front-instructor__item .front-instructor__name {
    margin-left: 16.6666666667vw;
    gap: 2.0512820513vw;
  }
  .front-instructor__item + .front-instructor__item .front-instructor__name span {
    letter-spacing: 0.315385vw;
  }
  .front-voice__grid-item:nth-of-type(5) .front-voice__grid-body, .front-voice__grid-item:nth-of-type(6) .front-voice__grid-body {
    margin-top: 3.194444vw;
  }
}
.contact-form {
  padding: 3.6805555556vw 0 7.9166666667vw;
  background: #fffaee;
}

.contact-complete-page {
  background: #fffaee;
}

body.page-contact .front-footer-people {
  border-top: 5px solid #f7931e;
}

body.page-contact .contact-form .inner--md {
  width: 39.6527777778vw;
}

.contact-form__inner {
  max-width: 39.6527777778vw;
  margin: 0 auto;
  margin-top: 1.1805555556vw;
}

.contact-form__heading {
  text-align: center;
  color: #84634b;
}

.contact-form__title-en {
  color: #ff9b22;
  font-size: 3.4722222222vw;
  font-weight: 500;
  line-height: 1;
}

.contact-form__title-ja {
  font-size: 1.9444444444vw;
  font-weight: 500;
  line-height: 1.0714285714;
  margin-top: 1.0416666667vw;
}

.contact-form__lead {
  color: #754c24;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0.14em;
  margin-top: 2.2916666667vw;
  text-align: left;
  display: block;
}

.contact-form__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 19.2361111111vw;
  height: 5.5555555556vw;
  margin: 2.7083333333vw auto 0;
  padding-top: 1.0416666667vw;
  border-radius: 0.3472222222vw;
  background: #fff4aa;
  box-sizing: border-box;
  text-decoration: none;
}

.contact-form__line-icon {
  flex: 0 0 1.9444444444vw;
  height: 1.9444444444vw;
  object-fit: contain;
}

.contact-form__line-text {
  display: block;
  margin-top: 0.4166666667vw;
  color: #754c24;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.4666666667;
  letter-spacing: 0.0520833333vw;
  text-align: center;
}

.contact-form__row + .contact-form__row {
  margin-top: 0.4166666667vw;
}

.contact-form__row:nth-of-type(6) {
  margin-top: 0.6944444444vw;
}

.contact-form__label {
  display: block;
  color: var(--color-text-default);
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0;
  margin-bottom: 0;
}

.contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.0555555556vw;
  height: 1.1805555556vw;
  margin-left: 0.5555555556vw;
  border-radius: 0.2777777778vw;
  color: #8f8f8f;
  font-size: 0.7638888889vw;
  font-weight: 500;
  line-height: 2.0909090909;
  letter-spacing: 0.0381944444vw;
  vertical-align: middle;
}

.contact-form__badge--required {
  background: #fccb00;
}

.contact-form__badge--optional {
  background: #d9d9d9;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  margin-top: 0.3472222222vw;
  border: 1px solid #a6a6a6;
  border-radius: 0.2777777778vw;
  background: var(--color-white);
  color: var(--color-text-default);
  font-size: 1.0416666667vw;
  outline: none;
  box-sizing: border-box;
}

.contact-form__input {
  height: 3.4722222222vw;
  padding: 0 1.1111111111vw;
}

.contact-form__textarea {
  height: 24.3055555556vw;
  padding: 0.9722222222vw 1.1111111111vw;
  resize: vertical;
}

.contact-form__submit {
  display: block;
  width: 16.6666666667vw;
  height: 3.0555555556vw;
  margin: 3.8888888889vw auto 0;
  padding: 0;
  border: 0;
  border-radius: 1.5277777778vw;
  background: #754c24;
  color: var(--color-white);
  font: inherit;
  font-size: 0.9722222222vw;
  font-weight: 500;
  line-height: 3.0555555556vw;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 1300px) {
  .contact-form {
    padding: 9.7435897436vw 0 44.8717948718vw;
  }
  body.page-contact .contact-form .inner--md {
    width: 82.3076923077vw;
  }
  .contact-form__inner {
    max-width: none;
    margin-top: 4.8717948718vw;
  }
  .contact-form__heading {
    margin-bottom: 0;
  }
  .contact-form__title-en {
    font-size: 10.7692307692vw;
  }
  .contact-form__title-ja {
    font-size: 5.641025641vw;
    margin-top: 2.5641025641vw;
  }
  .contact-form__lead {
    color: #754c24;
    font-size: 4.1025641026vw;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.2051282051vw;
    margin-top: 8.7179487179vw;
    text-align: left;
  }
  .contact-form__line {
    width: 51.2820512821vw;
    height: 20.5128205128vw;
    margin-top: 4.8717948718vw;
    padding-top: 2.8205128205vw;
    border-radius: 1.2820512821vw;
  }
  .contact-form__line-icon {
    flex: 0 0 10.2564102564vw;
    height: 10.2564102564vw;
  }
  .contact-form__line-text {
    margin-top: 1.0256410256vw;
    color: #754c24;
    font-size: 3.3333333333vw;
    font-weight: 500;
    line-height: 1.3846153846;
    letter-spacing: 0.1666666667vw;
  }
  .contact-form__row + .contact-form__row {
    margin-top: 3.3333333333vw;
  }
  .contact-form__row:nth-of-type(6) {
    margin-top: 5.641025641vw;
  }
  .contact-form__label {
    color: #754c24;
    font-size: 3.8461538462vw;
    font-weight: 400;
    line-height: 2.6666666667;
    letter-spacing: 0;
  }
  .contact-form__badge {
    width: 11.2820512821vw;
    height: 4.358974359vw;
    margin-left: 2.45vw;
    border-radius: 1.0256410256vw;
    color: #8f8f8f;
    font-size: 2.8205128205vw;
    font-weight: 500;
    line-height: 2.0909090909;
    letter-spacing: 0.141025641vw;
  }
  .contact-form__input,
  .contact-form__textarea {
    margin-top: 0.7692307692vw;
    border-color: #9b9b9b;
    border-radius: 1.0256410256vw;
  }
  .contact-form__input {
    height: 11.2820512821vw;
  }
  .contact-form__textarea {
    height: 76.9230769231vw;
  }
  .contact-form__submit {
    width: 61.5384615385vw;
    height: 11.2820512821vw;
    margin-top: 20.3564102564vw;
    border-radius: 5.641025641vw;
    font-size: 3.5897435897vw;
    line-height: 11.2820512821vw;
  }
}
.news-list {
  padding: 4.1666666667vw 0 8.125vw;
  background: var(--color-white);
}
@media screen and (max-width: 1300px) {
  .news-list {
    padding: 0 0 16.4102564103vw;
  }
}

.news-list__inner {
  width: 72.2222222222vw;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .news-list__inner {
    width: 79.4871794872vw;
  }
}

.news-list__heading {
  text-align: center;
}

.news-list__en {
  color: #f7931e;
  font-size: 3.4722222222vw;
  font-weight: 500;
  line-height: 0.64;
  letter-spacing: 0;
}
@media screen and (max-width: 1300px) {
  .news-list__en {
    font-size: 7.4358974359vw;
    line-height: 1;
  }
}

.news-list__title {
  margin-top: 1.8055555556vw;
  color: #754c24;
  font-size: 1.9444444444vw;
  font-weight: 500;
  line-height: 1.0714285714;
  letter-spacing: 0.0972222222vw;
}
@media screen and (max-width: 1300px) {
  .news-list__title {
    margin-top: 1.0256410256vw;
    font-size: 3.5897435897vw;
    line-height: 1.5;
    letter-spacing: 0.1794871795vw;
  }
}

.news-list__filter-label {
  margin-top: 2.2222222222vw;
  color: var(--color-text-default);
  font-size: 1.3888888889vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
}
@media screen and (max-width: 1300px) {
  .news-list__filter-label {
    margin-top: 6.1538461538vw;
    font-size: 3.0769230769vw;
    line-height: 1.5;
  }
}

.news-list__grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.8194444444vw;
  row-gap: 4.9305555556vw;
  margin-top: 2.2222222222vw;
}
@media screen and (max-width: 1300px) {
  .news-list__grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8.9743589744vw;
    margin-top: 6.4102564103vw;
  }
}

.news-list__filter-label + .news-list__grid {
  margin-top: 1.1111111111vw;
}
@media screen and (max-width: 1300px) {
  .news-list__filter-label + .news-list__grid {
    margin-top: 3.5897435897vw;
  }
}

.news-list__card {
  width: 21.5277777778vw;
}
@media screen and (max-width: 1300px) {
  .news-list__card {
    width: 100%;
  }
  .news-list__card:nth-child(n+11) {
    display: none;
  }
}

.news-list__link {
  display: block;
}

.news-list__thumb {
  width: 21.5277777778vw;
  height: 12.5vw;
  overflow: hidden;
  background: #fff4aa;
}
@media screen and (max-width: 1300px) {
  .news-list__thumb {
    width: 100%;
    height: 46.1538461538vw;
  }
}

.news-list__thumb img {
  height: 100%;
  object-fit: cover;
}

.news-list__card-title {
  margin-top: 0.6944444444vw;
  color: #754c24;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.5333333333;
  letter-spacing: 0.0520833333vw;
  height: 4.7916666666vw;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 1300px) {
  .news-list__card-title {
    margin-top: 2.8205128205vw;
    font-size: 3.0769230769vw;
    line-height: 1.6;
    letter-spacing: 0.1538461538vw;
    height: 14.7692307692vw;
  }
}

.news-list__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 0.8333333333vw;
}
@media screen and (max-width: 1300px) {
  .news-list__meta {
    margin-top: 2.0512820513vw;
  }
}

.news-list__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2083333333vw 0.8333333333vw;
  border-radius: 69.375vw;
  background: #fff4aa;
  color: #8f8f8f;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1.9166666667;
  letter-spacing: 0.0416666667vw;
}
@media screen and (max-width: 1300px) {
  .news-list__category {
    padding: 0.5128205128vw 2.5641025641vw;
    font-size: 2.5641025641vw;
    letter-spacing: 0.1282051282vw;
  }
}

.news-list__date {
  flex-shrink: 0;
  font-family: var(--font-outfit);
  color: #8f8f8f;
  font-size: 0.9027777778vw;
  font-weight: 400;
  line-height: 1.7692307692;
  letter-spacing: 0.0451388889vw;
}
@media screen and (max-width: 1300px) {
  .news-list__date {
    font-size: 2.5641025641vw;
    line-height: 1.7;
    letter-spacing: 0.1282051282vw;
  }
}

.news-list__pager {
  display: flex;
  justify-content: center;
  column-gap: 0.2083333333vw;
  margin-top: 7.0138888889vw;
}
@media screen and (max-width: 1300px) {
  .news-list__pager {
    column-gap: 0.7692307692vw;
    margin-top: 9.7435897436vw;
  }
}

.news-list__pager-link {
  display: flex;
  flex-shrink: 0;
  width: 1.3888888889vw;
  height: 1.3888888889vw;
  align-items: center;
  justify-content: center;
  background: #754c24;
  color: #fff4aa;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1.9166666667;
  letter-spacing: 0.0416666667vw;
}
@media screen and (max-width: 1300px) {
  .news-list__pager-link {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    font-size: 3.0769230769vw;
    letter-spacing: 0.1538461538vw;
  }
}

.news-list__pager-link.is-current {
  opacity: 1;
}

.news-single {
  padding-top: 4.1666666667vw;
  background: var(--color-white);
}

.news-single__inner {
  width: 39.6527777778vw;
  margin: 0 auto;
}

.news-single__hero {
  padding-bottom: 1.4583333333vw;
}

.news-single__label {
  color: #f7931e;
  font-size: 2.0833333333vw;
  font-weight: 500;
  line-height: 1.0666666667;
  text-align: center;
}

.news-single__title {
  width: 39.5833333333vw;
  margin: 6.1111111111vw auto 0;
  color: #754c24;
  font-size: 1.7361111111vw;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.news-single__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 1.3888888889vw;
  color: #8f8f8f;
  font-size: 0.9027777778vw;
  font-weight: 400;
  line-height: 1.7692307692;
  letter-spacing: 0.05em;
}

.news-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4166666667vw;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1300px) {
  .news-single__categories {
    gap: 1.0256410256vw;
  }
}

.news-single__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 1.1805555556vw;
  border-radius: 69.375vw;
  background: #fff4aa;
  color: #8f8f8f;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.news-single__category:hover {
  opacity: 0.8;
}

.news-single__meta-sub {
  display: flex;
  align-items: center;
  text-align: right;
}

.news-single__eyecatch {
  width: 39.6527777778vw;
  margin: 1.3888888889vw auto 0;
  overflow: hidden;
  aspect-ratio: 571/332;
}

.news-single__eyecatch img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

.news-single__lead {
  width: 39.6527777778vw;
  margin: 2.3611111111vw auto 0;
  color: #754c24;
  font-size: 1.3888888889vw;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.news-single__body {
  padding-bottom: 6.9444444444vw;
}

.news-single__inner--content {
  width: 39.6527777778vw;
}

.news-single__content {
  color: #754c24;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}

.news-single__content p + p {
  margin-top: 0;
}

.news-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4166666667vw;
  margin-top: 3.1944444444vw;
}

.news-single__tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.6805555556vw;
  min-height: 1.6666666667vw;
  padding: 0.0694444444vw 0.6944444444vw 0;
  border-radius: 0.2777777778vw;
  background: #d9d9d9;
  color: #8f8f8f;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1.9166666667;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.news-single__tags a:hover {
  opacity: 0.8;
}

.news-single__pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625vw;
  width: 21.4583333333vw;
  margin: 3.9583333333vw auto 0;
}

.news-single__pager-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.6666666667vw;
  background: #754c24;
  color: #fff4aa;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1.9166666667;
  letter-spacing: 0.05em;
}

.news-single__related {
  display: grid;
  grid-template-columns: repeat(3, 11.6666666667vw);
  gap: 1.1111111111vw 2.2916666667vw;
  width: 39.6527777778vw;
  margin: 5.5555555556vw auto 0;
}

.news-single__related-title {
  grid-column: 1/-1;
  color: #754c24;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.5333333333;
  letter-spacing: 0.05em;
}

.news-single__related-item {
  display: block;
  width: 11.6666666667vw;
  aspect-ratio: 168/120;
  background: #d9d9d9;
  overflow: hidden;
}
.news-single__related-item img {
  height: 100%;
  object-fit: cover;
}

.page-news-single .front-contact {
  display: none;
}

.news-contact {
  padding: 8.75vw 0 5.6944444444vw;
  background: var(--color-white);
  text-align: center;
}

.news-contact__inner {
  width: 29.1666666667vw;
  margin: 0 auto;
}

.news-contact__title {
  color: #f28f1a;
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1;
}

.news-contact__lead {
  margin-top: 0.6944444444vw;
  color: #7a5735;
  font-size: 1.1111111111vw;
  font-weight: 700;
}

.news-contact__form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 6.1111111111vw;
  margin-top: 2.5vw;
  border-radius: 0.2777777778vw;
  background: #ffe28c;
  color: #7a5735;
  font-size: 1.1111111111vw;
  font-weight: 700;
}

.news-contact__sns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1111111111vw;
  margin-top: 1.25vw;
}

.news-contact__sns-link {
  display: flex;
  min-height: 6.1111111111vw;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0.2777777778vw;
  background: #fff2ab;
  color: #7a5735;
  font-size: 0.9027777778vw;
  font-weight: 700;
  line-height: 1.4;
}

.news-contact__sns-icon {
  margin-bottom: 0.4861111111vw;
  color: #0cc35d;
  font-size: 0.9027777778vw;
  line-height: 1;
}

.news-cta {
  padding: 4.0277777778vw 0 4.8611111111vw;
  background: #ff9418;
  color: var(--color-white);
}

.news-cta__inner {
  width: 36.1111111111vw;
  margin: 0 auto;
  text-align: center;
}

.news-cta__welcome {
  font-size: 2.3611111111vw;
  font-weight: 400;
  line-height: 1;
}

.news-cta__logo {
  width: 20.1388888889vw;
  margin: 1.9444444444vw auto 0;
  filter: brightness(0) invert(1);
}

.news-cta__lead {
  margin-top: 2.6388888889vw;
  font-size: 1.5277777778vw;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.07em;
}

.news-cta__text {
  margin-top: 1.6666666667vw;
  font-size: 1.0416666667vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: left;
}

.news-cta__button,
.news-cta__sub-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.75vw;
  border-radius: 0.2777777778vw;
  font-weight: 700;
}

.news-cta__button {
  width: 19.4444444444vw;
  margin-top: 2.0833333333vw;
  background: var(--color-white);
  color: #f28f1a;
  font-size: 1.0416666667vw;
}

.news-cta__note {
  margin-top: 2.0833333333vw;
  font-size: 0.9722222222vw;
  font-weight: 700;
}

.news-cta__sub-button {
  width: 12.2222222222vw;
  min-height: 2.6388888889vw;
  margin-top: 2.3611111111vw;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--color-white);
  font-size: 0.9027777778vw;
}

@media screen and (max-width: 1300px) {
  .news-single {
    padding-top: 20.5128205128vw;
  }
  .news-single__inner,
  .news-single__inner--content {
    width: 79.4871794872vw;
  }
  .news-single__hero {
    padding-bottom: 4.358974359vw;
  }
  .news-single__label {
    font-size: 6.1538461538vw;
  }
  .news-single__title {
    width: 100%;
    margin-top: 3.3333333333vw;
    padding-right: 0.7692307692vw;
    font-size: 3.8461538462vw;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.3076923077vw;
  }
  .news-single__meta {
    grid-template-columns: 1fr auto;
    gap: 1.2820512821vw 3.0769230769vw;
    width: 100%;
    margin-top: 2.5641025641vw;
    align-items: flex-start;
    font-size: 2.5641025641vw;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }
  .news-single__date {
    font-family: var(--font-outfit);
    font-size: 3.3333333333vw;
    font-weight: 400;
    letter-spacing: 0.1794871795vw;
    translate: 0 0.5128205128vw;
  }
  .news-single__author {
    font-size: 3.3333333333vw;
    font-weight: 400;
    margin-top: 1.7948717949vw;
    letter-spacing: 0.2051282051vw;
  }
  .news-single__meta-sub {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
  .news-single__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 4.6153846154vw;
    font-size: 3.0769230769vw;
  }
  .news-single__eyecatch {
    margin-top: 3.5897435897vw;
    width: 100%;
  }
  .news-single__lead {
    width: 96%;
    font-size: 3.8461538462vw;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.2820512821vw;
    margin: 4.6153846154vw auto 0 0;
  }
  .news-single__body {
    padding-bottom: 18.9743589744vw;
  }
  .news-single__content {
    font-size: 3.5897435897vw;
    line-height: 1.645;
    letter-spacing: 0.3076923077vw;
  }
  .news-single__content p + p {
    margin-top: 0.8em;
  }
  .news-single__tags {
    gap: 1.2820512821vw;
    margin-top: 7.4358974359vw;
  }
  .news-single__tags a {
    padding: 0px 2.5641025641vw;
    font-size: 3.0769230769vw;
    font-weight: 500;
  }
  .news-single__pager {
    gap: 2.5641025641vw;
    width: 79.4871794872vw;
    margin-top: 12.0512820513vw;
  }
  .news-single__pager-link {
    font-size: 3.0769230769vw;
    font-weight: 500;
    letter-spacing: 0.06em;
  }
  .news-single__related {
    grid-template-columns: repeat(2, 1fr);
    gap: 7.6923076923vw;
    width: 100%;
    margin-top: 23.0769230769vw;
  }
  .news-single__related-title {
    font-size: 3.0769230769vw;
    font-weight: 700;
  }
  .news-single__related-item {
    width: auto;
  }
  .news-single__related-item:nth-of-type(n + 3) {
    display: none;
  }
  .page-news-single .front-contact {
    display: block;
  }
  .news-contact {
    padding: 22.0512820513vw 0 14.8717948718vw;
  }
  .news-contact__inner {
    width: 64.1025641026vw;
  }
  .news-contact__title {
    font-size: 6.6666666667vw;
  }
  .news-contact__lead {
    margin-top: 1.5384615385vw;
    font-size: 3.0769230769vw;
  }
  .news-contact__form {
    min-height: 18.9743589744vw;
    margin-top: 6.9230769231vw;
    font-size: 2.8205128205vw;
  }
  .news-contact__sns {
    gap: 2.0512820513vw;
    margin-top: 2.5641025641vw;
  }
  .news-contact__sns-link {
    min-height: 16.6666666667vw;
    font-size: 2.5641025641vw;
  }
  .news-cta {
    padding: 8.7179487179vw 0 11.2820512821vw;
  }
  .news-cta__inner {
    width: 79.4871794872vw;
  }
  .news-cta__welcome {
    font-size: 6.9230769231vw;
  }
  .news-cta__logo {
    width: 69.2307692308vw;
    margin-top: 5.3846153846vw;
  }
  .news-cta__lead {
    margin-top: 7.1794871795vw;
    font-size: 4.1025641026vw;
  }
  .news-cta__text {
    margin-top: 4.1025641026vw;
    font-size: 2.8205128205vw;
  }
  .news-cta__button {
    width: 58.9743589744vw;
    min-height: 11.2820512821vw;
    margin-top: 5.641025641vw;
    font-size: 3.0769230769vw;
  }
  .news-cta__note {
    margin-top: 5.641025641vw;
    font-size: 2.5641025641vw;
  }
  .news-cta__sub-button {
    width: 34.8717948718vw;
    min-height: 7.6923076923vw;
    margin-top: 6.1538461538vw;
    font-size: 2.5641025641vw;
  }
}
.sitemap {
  padding: 2.0833333333vw 0 8.3333333333vw;
}

.sitemap__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5.5555555556vw;
  width: 62.5vw;
  margin: 0 auto;
}

.sitemap__heading {
  padding-bottom: 1.25vw;
  border-bottom: 1px solid var(--color-gray-350);
  color: #7a5735;
  font-size: 1.6666666667vw;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.sitemap__list {
  margin-top: 1.5277777778vw;
}

.sitemap__item + .sitemap__item {
  margin-top: 1.1111111111vw;
}

.sitemap__item a {
  position: relative;
  display: inline-block;
  padding-left: 1.25vw;
  color: var(--color-black-soft);
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.sitemap__item a::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.4166666667vw;
  height: 0.4166666667vw;
  border-radius: 50%;
  background: #f28f1a;
  content: "";
}

@media screen and (max-width: 1300px) {
  .sitemap {
    padding: 0 0 20.5128205128vw;
  }
  .sitemap__inner {
    grid-template-columns: 1fr;
    gap: 11.2820512821vw;
    width: 88.4615384615vw;
  }
  .sitemap__heading {
    padding-bottom: 3.5897435897vw;
    font-size: 5.1282051282vw;
  }
  .sitemap__list {
    margin-top: 4.6153846154vw;
  }
  .sitemap__item + .sitemap__item {
    margin-top: 3.3333333333vw;
  }
  .sitemap__item a {
    font-size: 3.5897435897vw;
  }
}
