.section-shader-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #fafafd;
}
.section-shader-bg--dark {
  background-color: #161414;
}
.section-shader-bg canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.contact-main, .company-main, .mei-section--light, .rec-faq, .rec-meister, .rec-section--light, .footer, .dark-tail-group, .sec-contact, .sec-company, .sec-recruit, .sec-business {
  position: relative;
  isolation: isolate;
}
.contact-main > *:not(.section-shader-bg), .company-main > *:not(.section-shader-bg), .mei-section--light > *:not(.section-shader-bg), .rec-faq > *:not(.section-shader-bg), .rec-meister > *:not(.section-shader-bg), .rec-section--light > *:not(.section-shader-bg), .footer > *:not(.section-shader-bg), .dark-tail-group > *:not(.section-shader-bg), .sec-contact > *:not(.section-shader-bg), .sec-company > *:not(.section-shader-bg), .sec-recruit > *:not(.section-shader-bg), .sec-business > *:not(.section-shader-bg) {
  position: relative;
  z-index: 1;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  background-color: #161414;
}

body {
  background-color: #161414;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.mauto {
  margin-left: auto;
  margin-right: auto;
}

.display-block {
  display: block;
}

.shader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 max(20px, 4.17vw);
  opacity: 0;
  transform: translateY(-10px);
  background-color: transparent;
  transition: opacity 1s ease, transform 1s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}
.header.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.header.is-scrolled {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }
}

.header-shader-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #161414;
}
.header-shader-bg canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: max(72px, 6.25vw);
}
@media (max-width: 768px) {
  .header__inner {
    height: 60px;
  }
}

.header__logo {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  line-height: 0;
}

.header__logo-img {
  height: 28px;
  width: auto;
  display: block;
  transition: opacity 0.4s ease;
}
@media (max-width: 768px) {
  .header__logo-img {
    height: 28px;
  }
}

.header__logo-img--dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.header.is-scrolled .header__logo-img--white {
  opacity: 0;
}
.header.is-scrolled .header__logo-img--dark {
  opacity: 1;
}

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

.header__nav-link {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #ffffff;
  transition: opacity 0.3s ease, color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.header__nav-link:not(.header__nav-link--recruit):not(.header__nav-link--contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.85, 0, 0.15, 1);
}
.header__nav-link:not(.header__nav-link--recruit):not(.header__nav-link--contact):hover::after, .header__nav-link:not(.header__nav-link--recruit):not(.header__nav-link--contact):focus-visible::after {
  transform: scaleX(1);
}
.header__nav-link--recruit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 41px;
  min-width: 140px;
  padding: 8px 20px;
  background: linear-gradient(129deg, #818181 46.28%, #ffffff 122.74%);
  border-radius: 0;
  font-weight: 400;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.header__nav-link--recruit:hover {
  opacity: 0.85;
}
.header__nav-link--contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 41px;
  min-width: 140px;
  padding: 8px 20px;
  border: 1px solid #ffffff;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.header__nav-link--contact:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header.is-scrolled .header__nav-link {
  color: #161414;
}
.header.is-scrolled .header__nav-link--recruit {
  color: #161414;
}
.header.is-scrolled .header__nav-link--contact {
  color: #161414;
  border-color: #161414;
}
.header.is-scrolled .header__nav-link--contact:hover {
  background: rgba(0, 0, 0, 0.05);
}
.header.is-scrolled .hamburger__icon span {
  background: #161414;
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 250;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger__icon {
  position: relative;
  width: 24px;
  height: 14px;
  display: block;
}
.hamburger__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease;
}
.hamburger__icon span:nth-child(1) {
  top: 0;
}
.hamburger__icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger__icon span:nth-child(3) {
  bottom: 0;
}

.hamburger.is-open .hamburger__icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-open .hamburger__icon span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__icon span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 240;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 0.7s;
}
.sp-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}

.sp-menu__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.sp-menu.is-open .sp-menu__bg {
  opacity: 1;
}

.sp-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 560px;
  background: #121212;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.85, 0, 0.15, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
}
.sp-menu.is-open .sp-menu__panel {
  transform: translateX(0);
}

.sp-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 32px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-menu__top-label {
  font-family: "Inria Serif", serif;
  font-size: 14px;
  letter-spacing: 0.6em;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.sp-menu__top-label:hover {
  opacity: 0.7;
}

.sp-menu__close {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.4s ease;
  -webkit-tap-highlight-color: transparent;
}
.sp-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #ffffff;
  transition: background 0.3s ease;
}
.sp-menu__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sp-menu__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp-menu__close:hover {
  background: #ffffff;
  transform: rotate(90deg);
}
.sp-menu__close:hover span {
  background: #000000;
}

.sp-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0 24px;
}
.sp-menu__nav::-webkit-scrollbar {
  display: none;
}

.sp-menu__item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 32px;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, opacity 1s cubic-bezier(0.85, 0, 0.15, 1), transform 1s cubic-bezier(0.85, 0, 0.15, 1);
  opacity: 0;
  transform: translateX(48px);
}
.sp-menu.is-open .sp-menu__item {
  opacity: 1;
  transform: translateX(0);
}
.sp-menu__item:nth-child(1) {
  transition-delay: 0.3s, 0.3s;
}
.sp-menu__item:nth-child(2) {
  transition-delay: 0.4s, 0.4s;
}
.sp-menu__item:nth-child(3) {
  transition-delay: 0.5s, 0.5s;
}
.sp-menu__item:nth-child(4) {
  transition-delay: 0.6s, 0.6s;
}
.sp-menu__item:nth-child(5) {
  transition-delay: 0.7s, 0.7s;
}
.sp-menu__item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.sp-menu__item--contact {
  margin-top: auto;
  justify-content: center;
}

.sp-menu__num {
  font-family: "Inria Serif", serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  opacity: 0.4;
}

.sp-menu__title {
  font-family: "Inria Serif", serif;
  font-size: 26px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
}

.sp-menu__footer {
  padding: 28px 32px 36px;
  font-family: "Inria Serif", serif;
  font-size: 9px;
  letter-spacing: 0.5em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.fv-anim {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  pointer-events: auto;
  transition: opacity 1.2s ease, filter 1.2s ease;
}
.fv-anim.is-disabled {
  display: none;
}
.fv-anim.fade-out {
  opacity: 0;
  filter: blur(20px);
}
.fv-anim.hidden {
  display: none;
}

.fv-anim__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 1;
}
.fv-anim__canvas.is-active {
  opacity: 1;
}
.fv-anim__canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.fv-anim__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(28px, 8vw, 120px);
  width: 100%;
  max-width: 900px;
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.fv-anim__content.is-leaving {
  opacity: 0;
  filter: blur(14px);
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .fv-anim__content {
    padding: 0 35px;
  }
}

.fv-anim__btn {
  position: absolute;
  bottom: max(48px, 5vh);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 16px 46px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease, background-color 0.5s cubic-bezier(0.2, 1, 0.3, 1), color 0.5s cubic-bezier(0.2, 1, 0.3, 1), letter-spacing 0.5s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}
.fv-anim__btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  letter-spacing: 0.42em;
}
.fv-anim__btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .fv-anim__btn {
    padding: 14px 38px;
    font-size: 11px;
  }
}

.fv-anim__fade {
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.85s ease-in;
  z-index: 4;
  pointer-events: none;
}
.fv-anim__fade.is-active {
  opacity: 1;
}

.fv-anim__sub {
  font-family: "Inria Serif", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .fv-anim__sub {
    font-size: 12px;
    letter-spacing: 0.6em;
    color: #808080;
    margin-bottom: 28px;
  }
}

.fv-anim__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(36px, 5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.18;
}
@media (max-width: 768px) {
  .fv-anim__title {
    font-size: 22px;
  }
}

.fv-anim__spacer {
  height: 40px;
}
@media (max-width: 768px) {
  .fv-anim__spacer {
    height: 28px;
  }
}

.fv-anim__spacer--sm {
  height: 20px;
}
@media (max-width: 768px) {
  .fv-anim__spacer--sm {
    height: 14px;
  }
}

.fv-anim__body {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .fv-anim__body {
    font-size: 16px;
    line-height: 1.9;
  }
}
.fv-anim__body--bold {
  font-size: 28px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(248, 250, 252, 0.05);
}
@media (max-width: 768px) {
  .fv-anim__body--bold {
    font-size: 20px;
  }
}

.fv-line {
  opacity: 0;
  filter: blur(12px);
  transform: scale(0.97);
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), filter 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: opacity, filter, transform;
}
.fv-line.is-visible {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

.main-content {
  opacity: 0;
  transition: opacity 1.5s ease;
}
.main-content.is-visible {
  opacity: 1;
}

.fv {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  margin: 0;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fv {
    grid-template-columns: minmax(180px, 1fr) minmax(260px, 52vw);
    column-gap: 24px;
    padding-left: max(20px, 4vw);
    padding-right: max(12px, 1.5vw);
  }
}
@media (max-width: 768px) {
  .fv {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    align-items: stretch;
    justify-items: stretch;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    background-color: transparent;
  }
}

.fv__photo {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 59.4%;
  max-width: none;
  justify-self: end;
  align-self: center;
  height: 64vh;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv__photo {
    grid-row: 2;
    grid-column: 1;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 313/280;
    border: none;
    justify-self: center;
    align-self: start;
    z-index: 0;
  }
  .fv__photo::after {
    display: none;
  }
}

.fv__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
@media (max-width: 768px) {
  .fv__photo-img {
    object-position: 50% 50%;
  }
}

.fv__inner {
  width: 40.6%;
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-left: 13%;
}
@media (max-width: 768px) {
  .fv__inner {
    grid-row: 2;
    grid-column: 1;
    align-self: end;
    justify-self: center;
    width: calc(100% - 40px);
    box-sizing: border-box;
    padding: 0 24px 28px;
    margin: 0;
    z-index: 2;
    pointer-events: none;
    color: #ffffff;
  }
}

.fv__content {
  padding: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .fv__content {
    padding: 0;
    text-align: left;
  }
}

.fv__established {
  font-family: "Inria Serif", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6em;
  color: #ffffff;
  margin-bottom: max(48px, 6.67vw);
}

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

.fv__established--mobile {
  display: none;
}
@media (max-width: 768px) {
  .fv__established--mobile {
    display: block;
    grid-row: 1;
    grid-column: 1;
    justify-self: center;
    text-align: center;
    margin: 0;
    padding: 16vh 16px 28px;
    color: #808080;
    font-size: 12px;
    letter-spacing: 0.55em;
  }
}

.fv__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(32px, 3.075vw);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: max(38px, 3.63vw);
}
@media (max-width: 768px) {
  .fv__title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
  }
}

.fv__spacer {
  height: 48px;
}
@media (max-width: 768px) {
  .fv__spacer {
    height: 0;
    display: none;
  }
}

.fv__tagline {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1.35;
}
@media (max-width: 768px) {
  .fv__tagline {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    line-height: 1.7;
  }
}

.fv__tagline-line {
  font-size: max(20px, 1.96vw);
  letter-spacing: 0.02em;
  line-height: max(38px, 3.63vw);
}
@media (max-width: 768px) {
  .fv__tagline-line {
    font-size: 14px;
    line-height: 1.7;
    display: inline;
  }
}
.fv__tagline-line--accent {
  font-size: max(28px, 2.656vw);
  line-height: max(46px, 4.51vw);
  margin-top: 0;
}
@media (max-width: 768px) {
  .fv__tagline-line--accent {
    font-size: 19px;
    line-height: 1.7;
    margin-top: 0;
    font-weight: 700;
    display: inline;
  }
}

.fv__scroll-down {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .fv__scroll-down {
    position: relative;
    grid-row: 3;
    grid-column: 1;
    bottom: auto;
    left: auto;
    transform: none;
    justify-self: center;
    align-self: center;
    margin: 32px 0 32px;
    gap: 14px;
  }
}

.fv__scroll-text {
  font-family: "Inria Serif", serif;
  font-size: 12px;
  letter-spacing: 0.6em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .fv__scroll-text {
    font-size: 10px;
    letter-spacing: 0.6em;
  }
}

.fv__scroll-line {
  width: 1px;
  height: max(56px, 6.18vw);
  background: rgba(255, 255, 255, 0.35);
  animation: scrollBounce 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .fv__scroll-line {
    height: 56px;
  }
}

@keyframes scrollBounce {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.section-num {
  font-family: "Inria Serif", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.6em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .section-num {
    font-size: 11px;
    letter-spacing: 0.55em;
    margin-bottom: 12px;
  }
}
.section-num--dark {
  color: #161414;
}
.section-num--on-photo {
  color: #ffffff;
  margin-bottom: 18px;
}
.section-num--on-dark {
  color: rgba(255, 255, 255, 0.85);
}

.placeholder-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #222 0%, #2a2a2a 50%, #1e1e1e 100%);
  position: relative;
}
.placeholder-img::after {
  content: attr(aria-label);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.1em;
}

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 117px;
  height: 117px;
  perspective: 1200px;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .btn-circle {
    width: 100px;
    height: 100px;
  }
}
.btn-circle:hover .btn-circle__inner, .btn-circle:focus-visible .btn-circle__inner {
  transform: rotateY(900deg);
}
.btn-circle:active .btn-circle__inner {
  transform: rotateY(900deg) scale(0.94);
  transition: transform 0.2s ease;
}

.btn-circle__inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.btn-circle__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  background: transparent;
}
.btn-circle__face::before {
  content: "";
  position: absolute;
  inset: 3.5px;
  border-radius: 50%;
  z-index: 0;
}
.btn-circle__face--front {
  border: 1px solid #868686;
  transform: rotateY(0deg);
}
.btn-circle__face--front::before {
  background: #ffffff;
}
.btn-circle__face--front .btn-circle__text {
  color: #161414;
}
.btn-circle__face--back {
  border: 1px solid #ffffff;
  transform: rotateY(180deg);
}
.btn-circle__face--back::before {
  background: linear-gradient(129deg, #818181 46.28%, #ffffff 122.74%);
}
.btn-circle__face--back .btn-circle__text {
  color: #ffffff;
}

.btn-circle__text {
  position: relative;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: capitalize;
  text-align: center;
  line-height: 1.35;
  white-space: normal;
}
@media (max-width: 768px) {
  .btn-circle__text {
    font-size: 12px;
    letter-spacing: 0.3em;
  }
}

.btn-circle--dark .btn-circle__face--front {
  border: 1px solid #868686;
}
.btn-circle--dark .btn-circle__face--front::before {
  background: linear-gradient(129deg, #818181 46.28%, #ffffff 122.74%);
}
.btn-circle--dark .btn-circle__face--front .btn-circle__text {
  color: #ffffff;
}
.btn-circle--dark .btn-circle__face--back {
  border: 1px solid #161414;
}
.btn-circle--dark .btn-circle__face--back::before {
  background: #161414;
}
.btn-circle--dark .btn-circle__face--back .btn-circle__text {
  color: #ffffff;
}

@media (hover: none) {
  .btn-circle:hover .btn-circle__inner,
  .btn-circle:focus-visible .btn-circle__inner,
  .btn-circle:active .btn-circle__inner {
    transform: rotateY(180deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-circle__inner {
    transition: transform 0.25s ease;
  }
  .btn-circle:hover .btn-circle__inner,
  .btn-circle:focus-visible .btn-circle__inner,
  .btn-circle:active .btn-circle__inner {
    transform: rotateY(180deg);
  }
}
.reveal-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sec-history {
  position: relative;
  z-index: 2;
  padding: 0;
}
@media (max-width: 768px) {
  .sec-history {
    padding: 0 0 60px;
  }
}

.sec-history__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 0;
  min-height: max(560px, 49.72vw);
}
@media (max-width: 768px) {
  .sec-history__inner {
    flex-direction: column;
    min-height: 0;
    position: relative;
  }
}

.sec-history__label-sp,
.sec-history__title-sp,
.sec-history__btn-sp {
  display: none;
}

.sec-history__visual {
  position: relative;
  flex: 0 0 44.1%;
  max-width: none;
  min-height: max(560px, 49.72vw);
  overflow: hidden;
}
.sec-history__visual img {
  position: absolute;
  left: 0;
  top: -14%;
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: 50% 38%;
}
@media (max-width: 768px) {
  .sec-history__visual img {
    position: relative;
    top: 0;
    height: 480px;
    min-height: 280px;
    object-position: 50% 28%;
  }
}
.sec-history__visual .section-num--on-photo {
  position: absolute;
  left: max(24px, 8.333vw);
  top: max(40px, 6.94vw);
  z-index: 2;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sec-history__visual {
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 0;
    order: 2;
    margin-top: -64px;
    z-index: 1;
  }
}

.sec-history__visual-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

.sec-history__title--on-photo {
  position: absolute;
  left: max(24px, 8.333vw);
  top: max(56px, 10.69vw);
  z-index: 2;
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(32px, 4.17vw);
  font-weight: 400;
  line-height: max(42px, 5.56vw);
  color: #ffffff;
}
@media (max-width: 768px) {
  .sec-history__title--on-photo {
    display: none;
  }
}

@media (max-width: 768px) {
  .sec-history__btn-sp {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -110%);
    z-index: 3;
    margin: 0 !important;
  }
}

.sec-history__aside {
  position: relative;
  flex: 1;
  padding: max(40px, 6.94vw) max(28px, 5.56vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec-history__aside {
    padding: 56px 28px 0;
    order: 1;
    align-items: center;
    text-align: center;
    overflow: visible;
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .sec-history__label-sp {
    display: block;
    font-family: "Inria Serif", serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.55em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 14px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .sec-history__title-sp {
    display: block;
    margin: 0 0 72px;
    font-family: "Zen Old Mincho", "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
    text-align: center;
  }
}

.sec-history__year {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-52%, -50%);
  margin: 0;
  font-family: "Roboto Serif", serif;
  font-size: max(96px, 11.11vw);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .sec-history__year {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: -30px;
    transform: translateX(-50%);
    font-size: 180px;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.25);
    z-index: 3;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .sec-history__label-pc {
    display: none;
  }
}

.sec-history__quote-area {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: max(24px, 2.78vw);
  margin-left: auto;
  max-width: max(480px, 39vw);
  width: 100%;
}
@media (max-width: 768px) {
  .sec-history__quote-area {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: 0;
    max-width: none;
    gap: 0;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  .sec-history__btn-pc {
    display: none;
  }
}

.sec-history__quote-area-inner {
  position: relative;
}

.sec-history__quote {
  position: relative;
  z-index: 1;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(20px, 1.94vw);
  font-weight: 400;
  line-height: max(40px, 4.03vw);
  color: #ffffff;
  text-align: center;
  max-width: max(420px, 35vw);
}
@media (max-width: 768px) {
  .sec-history__quote {
    font-size: 22px;
    line-height: 1.75;
    font-weight: 400;
    max-width: none;
    z-index: 4;
  }
}

.sec-business {
  z-index: 2;
  background-color: #fafafd;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 1px, rgba(0, 0, 0, 0.018) 1px, rgba(0, 0, 0, 0.018) 2px), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><defs><filter id='a'><feTurbulence type='fractalNoise' baseFrequency='0.014 0.020' numOctaves='3' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85, 0 0 0 0 0.87, 0 0 0 0 0.89, 0 0 0 0.6 0'/></filter><filter id='b'><feTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='2' seed='13' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.74, 0 0 0 0 0.77, 0 0 0 0 0.80, 0 0 0 0.45 0'/></filter><filter id='c'><feTurbulence type='fractalNoise' baseFrequency='0.18' numOctaves='1' seed='29' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.22 0'/></filter><filter id='d'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0.06 0'/></filter></defs><rect width='800' height='800' fill='rgb(250,250,253)'/><rect width='800' height='800' filter='url(%23a)'/><rect width='800' height='800' filter='url(%23b)'/><rect width='800' height='800' filter='url(%23c)'/><rect width='800' height='800' filter='url(%23d)'/></svg>");
  background-repeat: repeat, repeat;
  background-size: auto, 800px 800px;
  background-attachment: scroll;
  color: #161414;
  padding: max(72px, 9.72vw) 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec-business {
    padding: 102px 0 100px;
  }
}

.sec-business__inner {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  position: relative;
  min-height: max(480px, 38.89vw);
}
@media (max-width: 768px) {
  .sec-business__inner {
    flex-direction: column;
    min-height: 0;
  }
}

.sec-business__content {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 40px max(28px, 8.333vw);
}
@media (max-width: 768px) {
  .sec-business__content {
    padding: 0 35px;
    z-index: 2;
  }
}

.sec-business__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(32px, 4.17vw);
  font-weight: 400;
  line-height: max(44px, 5.56vw);
  margin-bottom: max(24px, 2.08vw);
  color: #161414;
}
@media (max-width: 768px) {
  .sec-business__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 22px;
  }
}

.sec-business__text {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(15px, 1.25vw);
  font-weight: 400;
  line-height: max(26px, 2.15vw);
  color: #161414;
  margin-bottom: 44px;
  max-width: max(360px, 35vw);
}
@media (max-width: 768px) {
  .sec-business__text {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 36px;
    max-width: none;
  }
}

.sec-business__image {
  position: absolute;
  right: max(28px, 5.76vw);
  top: 0;
  transform: translateY(-50%);
  width: 62.5vw;
  max-height: max(420px, 41.67vw);
  opacity: 0.25;
  pointer-events: none;
}
.sec-business__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.sec-business__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .sec-business__image {
    position: absolute;
    right: -80px;
    top: 0;
    transform: none;
    width: 100%;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 0 24px;
    box-sizing: border-box;
    opacity: 0.55;
    z-index: 0;
  }
  .sec-business__image picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .sec-business__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

.sec-recruit {
  z-index: 2;
  background: transparent;
  padding: max(72px, 9.72vw) 0;
}
@media (max-width: 768px) {
  .sec-recruit {
    padding: 72px 0 20px;
  }
}

.sec-recruit__inner {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0 max(28px, 8.333vw);
}
@media (max-width: 768px) {
  .sec-recruit__inner {
    flex-direction: column;
    padding: 0;
    position: relative;
  }
}

.sec-recruit__content {
  flex: 1;
}
@media (max-width: 768px) {
  .sec-recruit__content {
    padding: 0 36px;
  }
}

.sec-recruit__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(32px, 4.17vw);
  font-weight: 400;
  line-height: max(44px, 5.56vw);
  margin-bottom: max(24px, 2.22vw);
}
@media (max-width: 768px) {
  .sec-recruit__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 45px;
  }
}

.sec-recruit__text {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(15px, 1.25vw);
  font-weight: 400;
  line-height: max(26px, 2.15vw);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: max(28px, 2.78vw);
  max-width: max(360px, 33.33vw);
}
@media (max-width: 768px) {
  .sec-recruit__text {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 28px;
    max-width: none;
  }
}

.btn-recruit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
  min-height: 70px;
  width: 252px;
  padding: 0 36px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: #ffffff;
  border: 0.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  transition: opacity 0.3s ease;
  margin-left: 80px;
  margin-top: 100px;
}
.btn-recruit::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: linear-gradient(129deg, #818181 46.28%, #ffffff 122.74%);
  z-index: -1;
  pointer-events: none;
}
.btn-recruit:hover {
  opacity: 0.92;
}

@media (max-width: 768px) {
  .btn-recruit--pc {
    display: none;
  }
}

.btn-recruit--sp {
  display: none;
}
@media (max-width: 768px) {
  .btn-recruit--sp {
    display: flex;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    width: 250px;
    max-width: 360px;
    min-width: 0;
    min-height: 60px;
    font-size: 22px;
    z-index: 5;
  }
}

.sec-recruit__image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}
.sec-recruit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
@media (max-width: 768px) {
  .sec-recruit__image img {
    min-height: 220px;
  }
}
@media (max-width: 768px) {
  .sec-recruit__image {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
  }
}

.sec-company {
  z-index: 2;
  background-color: #fafafd;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 1px, rgba(0, 0, 0, 0.018) 1px, rgba(0, 0, 0, 0.018) 2px), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><defs><filter id='a'><feTurbulence type='fractalNoise' baseFrequency='0.014 0.020' numOctaves='3' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85, 0 0 0 0 0.87, 0 0 0 0 0.89, 0 0 0 0.6 0'/></filter><filter id='b'><feTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='2' seed='13' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.74, 0 0 0 0 0.77, 0 0 0 0 0.80, 0 0 0 0.45 0'/></filter><filter id='c'><feTurbulence type='fractalNoise' baseFrequency='0.18' numOctaves='1' seed='29' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.22 0'/></filter><filter id='d'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0.06 0'/></filter></defs><rect width='800' height='800' fill='rgb(250,250,253)'/><rect width='800' height='800' filter='url(%23a)'/><rect width='800' height='800' filter='url(%23b)'/><rect width='800' height='800' filter='url(%23c)'/><rect width='800' height='800' filter='url(%23d)'/></svg>");
  background-repeat: repeat, repeat;
  background-size: auto, 800px 800px;
  background-attachment: scroll;
  color: #161414;
  padding: max(72px, 9.72vw) 0;
}
@media (max-width: 768px) {
  .sec-company {
    padding: 72px 0 80px;
  }
}

.sec-company__inner {
  width: 100%;
  margin: 0;
  padding: 0 max(28px, 8.333vw);
}
.sec-company__inner .section-num--dark {
  margin-bottom: 20px;
}

.sec-company__row {
  display: grid;
  grid-template-columns: 46% 37% 17%;
  gap: 32px 0;
  align-items: start;
}
@media (max-width: 768px) {
  .sec-company__row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.sec-company__title {
  grid-column: 1;
  grid-row: 1;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: max(32px, 4.17vw);
  font-weight: 400;
  line-height: max(44px, 5.56vw);
  margin: 0;
  color: #161414;
}
@media (max-width: 768px) {
  .sec-company__title {
    font-size: 28px;
    font-weight: 700;
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 8px;
    line-height: 45px;
  }
}

.company-table {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  max-width: none;
  border-collapse: collapse;
  margin: 0;
}
@media (max-width: 768px) {
  .company-table {
    grid-column: 1;
    grid-row: auto;
    max-width: none;
    margin-bottom: 16px;
  }
}
.company-table tr {
  border-bottom: none;
}
.company-table th,
.company-table td {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 31px;
  padding: 15px 0;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 768px) {
  .company-table th,
  .company-table td {
    font-size: 14px;
    line-height: 45px;
    padding: 0;
  }
}
.company-table th {
  width: max(110px, 10.35vw);
  font-weight: 700;
  color: #161414;
  white-space: nowrap;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .company-table th {
    width: 118px;
    padding-right: 16px;
  }
}
.company-table td {
  color: #161414;
}

.sec-company__btn-wrap {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  justify-self: start;
}
@media (max-width: 768px) {
  .sec-company__btn-wrap {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    margin-top: 16px;
  }
}

.sec-contact {
  z-index: 2;
  background: transparent;
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .sec-contact {
    padding: 10px 0 60px;
  }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  min-width: 232px;
  padding: 0 48px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 4px;
  color: #ffffff;
  border-radius: 0;
  border: none;
  background: linear-gradient(129deg, #818181 46.28%, #ffffff 122.74%);
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .btn-contact {
    width: 100%;
    max-width: 232px;
    font-size: 20px;
    padding: 0 24px;
  }
}
.btn-contact:hover {
  opacity: 0.9;
}

.dark-tail-group {
  position: relative;
  z-index: 2;
  background: transparent;
}

.footer {
  z-index: 2;
  background: transparent;
  padding: 72px 0 48px;
}
@media (max-width: 768px) {
  .footer {
    padding: 48px 48px 36px;
  }
}

.footer__inner {
  width: 100%;
  margin: 0;
  padding: 0 max(28px, 8.333vw);
  text-align: center;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 0;
    text-align: center;
  }
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 48px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
}

.footer__logo {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .footer__logo {
    margin: 0 auto;
  }
}

.footer__logo-img {
  height: clamp(28px, 4vw, 40px);
  width: auto;
  margin: 0;
  opacity: 1;
}
@media (max-width: 768px) {
  .footer__logo-img {
    height: 22px;
    margin: 0 auto;
  }
}

.footer__col-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}
@media (max-width: 768px) {
  .footer__col-nav {
    align-items: flex-start;
    gap: 24px;
  }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 36px;
}
@media (max-width: 768px) {
  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

.footer__nav-link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.footer__nav-link:hover {
  opacity: 0.65;
}
@media (max-width: 768px) {
  .footer__nav-link {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
}

.footer__privacy {
  margin-bottom: 0;
}
.footer__privacy a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #7f7f7f;
  transition: opacity 0.3s ease;
}
.footer__privacy a:hover {
  opacity: 0.85;
  color: #7f7f7f;
}
@media (max-width: 768px) {
  .footer__privacy a {
    font-size: 13px;
  }
}

.footer__copy {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 10px;
    line-height: 2;
  }
}

.touch-indicator {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  z-index: 9999;
  will-change: transform, opacity;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  -webkit-backdrop-filter: brightness(1.15) contrast(1.08) saturate(1.2);
  backdrop-filter: brightness(1.15) contrast(1.08) saturate(1.2) url(#touchIndicatorDisplacement);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 40%, rgba(255, 255, 255, 0) 70%);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.04), inset 0 0 1px 0.5px rgba(255, 255, 255, 0.32), inset 0 -5px 15px rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.16);
  transition: opacity 0.2s ease, transform 0.12s cubic-bezier(0.2, 0, 0.2, 1);
}
.touch-indicator::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 25%;
  width: 10%;
  height: 10%;
  background: #ffffff;
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0.25;
}
.touch-indicator.active {
  opacity: 1;
}
.touch-indicator.is-releasing {
  opacity: 0 !important;
  transform: translate3d(var(--tx), var(--ty), 0) scale(1.3) !important;
  transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.history-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background-color: #0d0d0d;
  color: #ffffff;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.history-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s ease, visibility 0s linear 0s;
}

.history-modal__label {
  position: fixed;
  top: max(28px, 2.5vw);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10010;
  margin: 0;
  font-family: "Inria Serif", serif;
  font-size: clamp(11px, 0.9vw, 14px);
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.history-modal__close {
  position: fixed;
  top: max(20px, 1.8vw);
  right: max(20px, 1.8vw);
  z-index: 10020;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.history-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: rotate(90deg);
}
.history-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #ffffff;
}
.history-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.history-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.history-modal__nav {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10005;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 36px);
  width: 90px;
  padding: 24px 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
@media (max-width: 768px) {
  .history-modal__nav {
    width: 56px;
    gap: 14px;
  }
}

.history-modal__nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 4px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.history-modal__nav-item::after {
  content: "";
  width: 2px;
  height: 32px;
  background: rgba(192, 192, 192, 0.25);
  transition: background 0.5s ease, height 0.5s ease, box-shadow 0.5s ease, width 0.5s ease;
}
.history-modal__nav-item .history-modal__nav-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Inria Serif", serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(192, 192, 192, 0.45);
  transition: color 0.5s ease, font-size 0.5s ease, text-shadow 0.5s ease;
}
.history-modal__nav-item:hover .history-modal__nav-label {
  color: rgba(255, 255, 255, 0.85);
}
.history-modal__nav-item:hover::after {
  background: rgba(255, 255, 255, 0.55);
}
.history-modal__nav-item.is-active .history-modal__nav-label {
  color: #f1f5f9;
  font-size: 15px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.history-modal__nav-item.is-active::after {
  width: 4px;
  height: 44px;
  background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
  box-shadow: 0 0 12px rgba(203, 213, 225, 0.55);
}

.history-modal__scroll {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.history-modal__container {
  position: relative;
  width: 100%;
  height: 900vh;
}

.history-modal__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.history-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 1s;
}
.history-scene.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
  z-index: 10;
}

.history-scene--intro {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.history-scene__intro-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  max-width: 500px;
  text-align: left;
}

.history-scene__intro-text {
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}

.history-scene__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.42) saturate(0.85);
  z-index: 0;
}

.history-scene[data-era="1916"] .history-scene__bg {
  background-image: url("../images/top/ayumi-01.jpg");
}

.history-scene[data-era="1953"] .history-scene__bg {
  background-image: url("../images/top/ayumi-02.jpg");
}

.history-scene[data-era="1988"] .history-scene__bg {
  background-image: url("../images/top/ayumi-03.jpg");
}

.history-scene[data-era="2023"] .history-scene__bg {
  background-image: url("../images/top/ayumi-04.jpg");
}

@media (max-width: 768px) {
  .history-scene[data-era="1916"] .history-scene__bg {
    background-image: url("../images/top/ayumi_sp-01.jpg");
  }
  .history-scene[data-era="1953"] .history-scene__bg {
    background-image: url("../images/top/ayumi_sp-02.jpg");
  }
  .history-scene[data-era="1988"] .history-scene__bg {
    background-image: url("../images/top/ayumi_sp-03.jpg");
  }
  .history-scene[data-era="2023"] .history-scene__bg {
    background-image: url("../images/top/ayumi_sp-04.jpg");
  }
}
.history-scene__year-block {
  position: absolute;
  left: max(40px, 8.33vw);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: max-content;
  max-width: 50%;
}

.history-scene__year {
  margin: 0 0 max(20px, 1.7vw);
  font-family: "Roboto Serif", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(80px, 13.5vw, 200px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.25);
}

.history-scene__title {
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.78vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.history-scene__detail {
  position: absolute;
  right: max(180px, 10vw);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(280px, 32vw, 460px);
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(15px, 0.97vw, 18px);
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}
.history-scene__detail p {
  margin: 0;
}

.history-scene__events {
  position: absolute;
  right: max(130px, 9vw);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: clamp(300px, 36vw, 520px);
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
}
.history-scene__events li {
  display: flex;
  gap: 1.2em;
  align-items: flex-start;
  padding: 0.85em 0;
}
.history-scene__events li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.history-scene__events--compact li {
  padding: 0.55em 0;
}

.history-scene__event-year {
  flex-shrink: 0;
  display: inline-block;
  min-width: 4.5em;
  font-family: "Inria Serif", serif;
  letter-spacing: 0.05em;
}

.history-scene__event-text {
  flex: 1;
}

@media (max-width: 768px) {
  .history-modal__nav {
    display: none;
  }
  .history-modal__close {
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
  }
  .history-modal__label {
    top: 14vh;
    font-size: 12px;
    letter-spacing: 0.5em;
  }
  .history-scene--intro {
    align-items: flex-start;
    padding: 24vh 36px 6vh;
  }
  .history-scene__intro-wrap {
    gap: 1.4em;
    max-width: 100%;
  }
  .history-scene__intro-text {
    font-size: 14px;
    line-height: 2;
  }
  .history-scene:not(.history-scene--intro) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 14vh 28px 4vh;
    text-align: center;
  }
  .history-scene__year-block {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
  .history-scene__year {
    font-size: 160px;
    line-height: 0.95;
    color: rgba(255, 255, 255, 0.25);
    margin: 0 0 4px;
    letter-spacing: 0.02em;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
  .history-scene__title {
    font-size: 30px;
    padding-top: 40px;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
  }
  .history-scene__detail,
  .history-scene__events {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
    margin: 5vh 0 0;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 4px;
    text-align: left;
    font-size: 14px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.92);
  }
  .history-scene__events {
    font-size: 13px;
  }
  .history-scene__events li {
    padding: 0.55em 0;
    gap: 0.8em;
  }
  .history-scene__event-year {
    min-width: 4em;
  }
}
.btn-circle--gradient .btn-circle__face--front {
  border: 1px solid #ffffff;
}
.btn-circle--gradient .btn-circle__face--front::before {
  background: linear-gradient(129deg, #818181 46.28%, #ffffff 122.74%);
}
.btn-circle--gradient .btn-circle__face--front .btn-circle__text {
  color: #161414;
}
.btn-circle--gradient .btn-circle__face--back {
  border: 1px solid #ffffff;
}
.btn-circle--gradient .btn-circle__face--back::before {
  background: #161414;
}
.btn-circle--gradient .btn-circle__face--back .btn-circle__text {
  color: #ffffff;
}

.page-recruit {
  background: #161414;
  color: #ffffff;
}
.page-recruit .recruit-main {
  position: relative;
  z-index: 2;
}
.page-recruit .footer {
  position: relative;
  z-index: 2;
}

.rec-section {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
}
@media (max-width: 768px) {
  .rec-section {
    padding: 64px 0;
  }
}
.rec-section--dark {
  background: transparent;
  color: #ffffff;
}
.rec-section--light {
  background-color: #fafafd;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 1px, rgba(0, 0, 0, 0.018) 1px, rgba(0, 0, 0, 0.018) 2px), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><defs><filter id='a'><feTurbulence type='fractalNoise' baseFrequency='0.014 0.020' numOctaves='3' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85, 0 0 0 0 0.87, 0 0 0 0 0.89, 0 0 0 0.6 0'/></filter><filter id='b'><feTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='2' seed='13' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.74, 0 0 0 0 0.77, 0 0 0 0 0.80, 0 0 0 0.45 0'/></filter><filter id='c'><feTurbulence type='fractalNoise' baseFrequency='0.18' numOctaves='1' seed='29' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.22 0'/></filter><filter id='d'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0.06 0'/></filter></defs><rect width='800' height='800' fill='rgb(250,250,253)'/><rect width='800' height='800' filter='url(%23a)'/><rect width='800' height='800' filter='url(%23b)'/><rect width='800' height='800' filter='url(%23c)'/><rect width='800' height='800' filter='url(%23d)'/></svg>");
  background-repeat: repeat, repeat;
  background-size: auto, 800px 800px;
  background-attachment: scroll;
  color: #161414;
}

.rec-section__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(28px, 5vw);
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .rec-section__inner {
    padding: 0 28px;
  }
}

.rec-section__num {
  font-family: "Inria Serif", serif;
  font-size: 12px;
  letter-spacing: 0.6em;
  color: #ffffff;
  margin: 0 0 16px;
}
.rec-section__num--dark {
  color: #161414;
}
@media (max-width: 768px) {
  .rec-section__num {
    font-size: 11px;
    letter-spacing: 0.55em;
    margin-bottom: 12px;
  }
}

.rec-section__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 auto 28px;
}
.rec-section__title--dark {
  color: #161414;
}
@media (max-width: 768px) {
  .rec-section__title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.rec-section__line {
  display: block;
  width: clamp(220px, 35vw, 500px);
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
.rec-section__line--dark {
  background: linear-gradient(90deg, rgba(22, 20, 20, 0.85) 0%, rgba(22, 20, 20, 0) 100%);
}
@media (max-width: 768px) {
  .rec-section__line {
    width: 269px;
  }
}

.rec-fv {
  position: relative;
  width: 100%;
  color: #ffffff;
  overflow: hidden;
  padding-top: 90px;
}
@media (max-width: 768px) {
  .rec-fv {
    padding-top: 61px;
  }
}

.rec-fv__inner {
  position: relative;
  width: 100%;
  height: clamp(720px, 60vw, 945px);
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .rec-fv__inner {
    height: 880px;
  }
}

.rec-fv__title {
  position: absolute;
  top: clamp(24px, 2.22vw, 32px);
  left: max(28px, 8.333vw);
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: clamp(40px, 4.5vw, 65px);
  letter-spacing: 0.5em;
  color: #808080;
  line-height: 1;
  margin: 0;
  z-index: 3;
}
@media (max-width: 768px) {
  .rec-fv__title {
    top: 23px;
    left: 25px;
    font-size: 39px;
    letter-spacing: 0.35em;
  }
}

.rec-fv__logomark {
  position: absolute;
  top: max(56px, 4vw);
  left: 41.4%;
  width: 46.25%;
  aspect-ratio: 666/630;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}
.rec-fv__logomark canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.rec-fv__logomark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .rec-fv__logomark {
    top: 0;
    left: -8%;
    width: 120%;
    opacity: 0.7;
  }
}

.rec-fv__photos {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.rec-fv__photo {
  position: absolute;
  overflow: hidden;
  height: clamp(72px, 7.5vw, 108px);
  width: clamp(220px, 27vw, 390px);
}
.rec-fv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rec-fv__photo--1 {
  top: clamp(232px, 20.2vw, 291px);
  left: max(28px, 8.333vw);
}
.rec-fv__photo--1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 20, 0.3);
}
.rec-fv__photo--2 {
  top: clamp(330px, 28.96vw, 417px);
  left: clamp(140px, 12.78vw, 184px);
}
.rec-fv__photo--3 {
  top: clamp(432px, 37.7vw, 543px);
  left: max(28px, 8.333vw);
}
.rec-fv__photo--3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 20, 0.2);
}
@media (max-width: 768px) {
  .rec-fv__photo {
    height: 89px;
    width: 322px;
  }
  .rec-fv__photo--1 {
    top: 370px;
    left: 0;
  }
  .rec-fv__photo--2 {
    top: 465px;
    left: 53px;
  }
  .rec-fv__photo--3 {
    top: 560px;
    left: 0;
  }
}

.rec-fv__entry {
  position: absolute;
  top: clamp(380px, 35.14vw, 506px);
  right: clamp(40px, 8vw, 165px);
  width: clamp(150px, 13.26vw, 191px);
  height: clamp(150px, 13.26vw, 191px);
  z-index: 4;
}
@media (max-width: 768px) {
  .rec-fv__entry {
    top: 430px;
    right: 30px;
    width: 80px;
    height: 80px;
  }
}

.btn-circle--entry .btn-circle__face::before {
  inset: 3.5px;
}
.btn-circle--entry .btn-circle__face--front {
  border: 1.5px solid #ffffff;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.btn-circle--entry .btn-circle__face--front::before {
  background: rgba(255, 255, 255, 0.2);
}
.btn-circle--entry .btn-circle__face--front .btn-circle__text {
  color: #ffffff;
  font-family: "ZCOOL XiaoWei", "Inria Serif", serif;
  font-size: clamp(20px, 1.94vw, 28px);
  letter-spacing: 0.35em;
}
.btn-circle--entry .btn-circle__face--back {
  border: 1px solid #ffffff;
}
.btn-circle--entry .btn-circle__face--back::before {
  background: #ffffff;
}
.btn-circle--entry .btn-circle__face--back .btn-circle__text {
  color: #161414;
  font-family: "ZCOOL XiaoWei", "Inria Serif", serif;
  font-size: clamp(20px, 1.94vw, 28px);
  letter-spacing: 0.35em;
}
@media (max-width: 768px) {
  .btn-circle--entry .btn-circle__face--front .btn-circle__text,
  .btn-circle--entry .btn-circle__face--back .btn-circle__text {
    font-size: 14px;
    letter-spacing: 0.3em;
  }
}

.rec-fv__scroll {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 3;
}
@media (max-width: 768px) {
  .rec-fv__scroll {
    bottom: 24px;
  }
}

.rec-fv__scroll-text {
  font-family: "Inria Serif", serif;
  font-size: 12px;
  letter-spacing: 0.6em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .rec-fv__scroll-text {
    font-size: 10px;
  }
}

.rec-fv__scroll-line {
  display: block;
  width: 2px;
  height: 89px;
  background: #ffffff;
  animation: rec-scroll-line 2s ease-in-out infinite;
}

@keyframes rec-scroll-line {
  0%, 100% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    transform: scaleY(0.4);
    transform-origin: top;
  }
}
.rec-mission {
  text-align: center;
}
@media (min-width: 769px) {
  .rec-mission .rec-section__num,
  .rec-mission .rec-section__title {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 769px) {
  .rec-mission .rec-section__title {
    margin-bottom: 0;
  }
}

.rec-mission__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  text-align: left;
}
@media (max-width: 768px) {
  .rec-mission__head {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

.rec-mission__heading {
  width: 500px;
  max-width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .rec-mission__heading {
    width: auto;
  }
}

.rec-mission__line {
  display: block;
  width: 500px;
  max-width: 100%;
  height: 2px;
  margin: 28px 0 0;
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
@media (max-width: 768px) {
  .rec-mission__line {
    width: 269px;
    margin: 18px auto 0;
  }
}

.rec-mission__lead {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.94;
  color: #ffffff;
  margin: 0;
}
.rec-mission__lead p + p {
  margin-top: 1em;
}
@media (max-width: 768px) {
  .rec-mission__lead {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }
}

.rec-mission__pair {
  position: relative;
  width: 100%;
  margin-top: clamp(48px, 7vw, 96px);
  min-height: clamp(300px, 26vw, 360px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: clamp(16px, 2vw, 32px);
  padding: clamp(24px, 3vw, 56px) clamp(16px, 2.5vw, 40px);
}
@media (max-width: 768px) {
  .rec-mission__pair {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    min-height: 0;
    height: 372px;
    padding: 0;
    margin-top: 48px;
  }
}

.rec-mission__bg {
  pointer-events: none;
  z-index: 0;
}

.rec-mission__bg--pc {
  position: absolute;
  left: 0;
  width: 100%;
  height: 78%;
  display: block;
}
.rec-mission__bg--pc.rec-mission__bg--mission {
  top: 0;
  bottom: auto;
}
.rec-mission__bg--pc.rec-mission__bg--vision {
  top: auto;
  bottom: 0;
  transform: scale(-1, -1);
}
@media (max-width: 768px) {
  .rec-mission__bg--pc {
    display: none;
  }
}

.rec-mission__bg--sp {
  display: none;
}
@media (max-width: 768px) {
  .rec-mission__bg--sp {
    position: relative;
    display: block;
    grid-column: 1;
    width: 440px;
    height: 203px;
    align-self: stretch;
    justify-self: stretch;
  }
  .rec-mission__bg--sp.rec-mission__bg--mission {
    grid-row: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
  .rec-mission__bg--sp.rec-mission__bg--vision {
    grid-row: 2;
    transform: none;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.rec-mission__col {
  position: relative;
  z-index: 1;
}
.rec-mission__col--mission {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  align-self: start;
  text-align: left;
  max-width: 520px;
}
@media (max-width: 768px) {
  .rec-mission__col--mission {
    padding: 32px 55px 8px 8px;
  }
}
.rec-mission__col--vision {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  text-align: right;
  max-width: 520px;
}
@media (max-width: 768px) {
  .rec-mission__col--vision {
    padding: 8px 25px 8px 50px;
  }
}
@media (max-width: 768px) {
  .rec-mission__col {
    grid-column: 1;
    justify-self: stretch;
    align-self: stretch;
    max-width: none;
    text-align: center !important;
    background: none;
  }
}

.rec-mission__deco,
.rec-mission__statement {
  position: relative;
  z-index: 1;
}

.rec-mission__deco {
  font-family: "Molengo", "Inria Serif", serif;
  font-size: clamp(56px, 5.5vw, 80px);
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}
.rec-mission__col--vision .rec-mission__deco {
  text-align: right;
}
@media (max-width: 768px) {
  .rec-mission__deco {
    font-size: 60px;
    text-align: right !important;
  }
}

.rec-mission__statement {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(16px, 1.46vw, 21px);
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}
.rec-mission__statement span {
  display: block;
  font-size: 0.95em;
}
@media (max-width: 768px) {
  .rec-mission__statement {
    font-size: 15px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .rec-mission__statement.vision {
    text-align: left;
  }
}

.rec-member {
  text-align: center;
}
@media (min-width: 769px) {
  .rec-member .rec-section__num,
  .rec-member .rec-section__title {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 769px) {
  .rec-member .rec-section__title {
    margin-bottom: 0;
  }
}

.rec-member__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  text-align: left;
}
@media (max-width: 768px) {
  .rec-member__head {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

.rec-member__heading {
  width: 500px;
  max-width: 100%;
  margin-left: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .rec-member__heading {
    width: auto;
    margin: 0 auto;
    order: 1;
  }
}

.rec-member__line {
  display: block;
  width: 500px;
  max-width: 100%;
  height: 2px;
  margin: 28px 0 0;
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
@media (max-width: 768px) {
  .rec-member__line {
    width: 269px;
    margin: 18px auto 0;
  }
}

.rec-member__lead {
  max-width: 100%;
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.94;
  color: #161414;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rec-member__lead p {
  margin: 0;
}
@media (max-width: 768px) {
  .rec-member__lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
    order: 2;
    padding: 0;
    gap: 0;
  }
  .rec-member__lead br {
    display: none;
  }
}

.rec-member__list {
  list-style: none;
  margin: clamp(48px, 6vw, 80px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  max-width: 1100px;
}
@media (max-width: 768px) {
  .rec-member__list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
}

.rec-member__card {
  background: #161414;
  color: #ffffff;
  padding: 0 0 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 389px;
  position: relative;
}
@media (max-width: 768px) {
  .rec-member__card {
    min-height: 389px;
  }
}

.rec-member__name-bar {
  width: 75.5%;
  height: 40px;
  margin: 29px 0 0;
  padding: 0 19px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 0 9999px 9999px 0;
}
@media (max-width: 768px) {
  .rec-member__name-bar {
    width: 67.5%;
    height: 30px;
    margin: 34px 0 0;
    padding: 0 15px;
  }
}

.rec-member__name {
  font-family: "ZCOOL XiaoWei", "Inria Serif", serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.18em;
  color: #161414;
  white-space: pre;
  line-height: 1;
}
@media (max-width: 768px) {
  .rec-member__name {
    font-size: 18px;
    letter-spacing: 0.18em;
  }
}

.rec-member__cta {
  font-family: "ZCOOL XiaoWei", "Inria Serif", serif;
  font-size: 21px;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-align: center;
  margin: 106px 0 0;
}
@media (max-width: 768px) {
  .rec-member__cta {
    font-size: 16px;
    margin-top: 111px;
    letter-spacing: 0.18em;
  }
}

.rec-meister {
  text-align: center;
}
@media (min-width: 769px) {
  .rec-meister .rec-section__num,
  .rec-meister .rec-section__title {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 769px) {
  .rec-meister .rec-section__title {
    margin-bottom: 0;
  }
}

.rec-meister__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  text-align: left;
}
@media (max-width: 768px) {
  .rec-meister__head {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}

.rec-meister__heading {
  width: 500px;
  max-width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .rec-meister__heading {
    width: auto;
  }
}

.rec-meister__line {
  display: block;
  width: 500px;
  max-width: 100%;
  height: 2px;
  margin: 28px 0 0;
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
@media (max-width: 768px) {
  .rec-meister__line {
    width: 269px;
    margin: 18px auto 0;
  }
}

.rec-meister__body {
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.72;
  color: #ffffff;
  text-align: left;
}
@media (max-width: 768px) {
  .rec-meister__body p br {
    display: none;
  }
}
.rec-meister__body p + p {
  margin-top: 0.6em;
}
@media (max-width: 768px) {
  .rec-meister__body {
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }
}

.rec-meister__btn {
  margin: clamp(40px, 5vw, 64px) auto 0;
}
@media (max-width: 768px) {
  .rec-meister__btn {
    margin-top: 40px;
  }
}

.rec-numbers {
  text-align: center;
}

.rec-numbers__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px clamp(48px, 6vw, 96px);
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 920px;
  padding: 0;
}
@media (max-width: 768px) {
  .rec-numbers__grid {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 48px;
  }
}

.rec-numbers__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rec-numbers__item--wide {
  grid-column: 1/-1;
  max-width: 420px;
  margin: 0 auto;
}

.rec-numbers__label {
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 1.94vw, 28px);
  color: #161414;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 768px) {
  .rec-numbers__label {
    font-size: 22px;
  }
}

.rec-numbers__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0;
  line-height: 1;
}

.rec-numbers__big {
  font-family: "Roboto Serif", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(96px, 12.5vw, 180px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.rec-numbers__big--blue {
  color: #212767;
}
.rec-numbers__big--gray {
  color: #7d7d7d;
}
@media (max-width: 768px) {
  .rec-numbers__big {
    font-size: 135px;
  }
}

.rec-numbers__unit,
.rec-numbers__prefix {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.33vw, 48px);
  color: #161414;
}
@media (max-width: 768px) {
  .rec-numbers__unit,
  .rec-numbers__prefix {
    font-size: 32px;
  }
}

.rec-numbers__unit--blue {
  color: #212767;
}

.rec-numbers__prefix {
  align-self: center;
  margin-right: 4px;
}

.rec-numbers__divider {
  position: relative;
  z-index: 1;
  display: block;
  width: 80%;
  max-width: 363px;
  height: 16px;
  background: #d9d9d9;
  margin: -16px 0 14px;
}
@media (max-width: 768px) {
  .rec-numbers__divider {
    width: 100%;
    max-width: none;
    margin: -10px 0 10px;
  }
}

.rec-numbers__caption {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(18px, 1.67vw, 24px);
  color: #161414;
  margin: 0;
}
@media (max-width: 768px) {
  .rec-numbers__caption {
    font-size: 21px;
  }
}

.rec-recruitment {
  position: relative;
  background: #161414;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  padding: clamp(96px, 10vw, 145px) 0;
}
@media (max-width: 768px) {
  .rec-recruitment {
    padding: 80px 0;
  }
}

.rec-recruitment__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rec-recruitment__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rec-recruitment__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.rec-recruitment__inner {
  position: relative;
  z-index: 2;
}

.rec-recruitment__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(280px, 47vw, 687px);
  min-height: 134px;
  padding: 0 24px;
  margin-top: clamp(40px, 5vw, 64px);
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(30px, 2.4vw, 40px);
  color: #161414;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #ffffff;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.rec-recruitment__btn::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: #ffffff;
  z-index: 0;
  transition: opacity 0.3s ease;
}
.rec-recruitment__btn span, .rec-recruitment__btn::after {
  position: relative;
  z-index: 1;
}
.rec-recruitment__btn {
  color: #161414;
}
.rec-recruitment__btn:hover::before {
  opacity: 0.85;
}
@media (max-width: 768px) {
  .rec-recruitment__btn {
    width: 90%;
    max-width: 312px;
    min-height: 67px;
    margin-top: 56px;
    font-size: 18px;
  }
}

.rec-flow {
  text-align: center;
}

.rec-flow__lead {
  margin: 56px auto 48px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.94;
  color: #161414;
}
@media (max-width: 768px) {
  .rec-flow__lead {
    margin: 32px 0 32px;
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }
}

.rec-flow__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  column-gap: 0;
  row-gap: clamp(20px, 2vw, 28px);
}
.rec-flow__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(52px, 4.58vw, 66px);
  background: linear-gradient(90deg, #161414 0%, #212767 100%);
  z-index: 0;
}
@media (max-width: 768px) {
  .rec-flow__list::before {
    height: 100%;
    width: 53px;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #161414 0%, #212767 100%);
  }
}
@media (max-width: 768px) {
  .rec-flow__list {
    display: block;
  }
}

.rec-flow__item {
  display: contents;
}
@media (max-width: 768px) {
  .rec-flow__item {
    display: block;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #161414;
  }
  .rec-flow__item:first-child {
    border-top: 1px solid #161414;
  }
}

.rec-flow__step {
  grid-row: 1;
  position: relative;
  z-index: 1;
  height: clamp(52px, 4.58vw, 66px);
  margin: 0;
  padding: 0 clamp(12px, 1.5vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
}
.rec-flow__step::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: clamp(18px, 1.74vw, 26px);
  background: url("../images/recruit/flow_arrow.png") no-repeat center center;
  background-size: contain;
  transform: translateX(50%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .rec-flow__step {
    display: block;
    height: auto;
    padding-left: 80px;
    margin: 0 0 12px;
    background: none;
    color: #161414;
    font-size: 18px;
    text-align: left;
  }
  .rec-flow__step::after {
    display: none;
  }
}

.rec-flow__item:last-child .rec-flow__step::after {
  display: none;
}

.rec-flow__desc {
  grid-row: 2;
  margin: 0;
  padding: 0 clamp(8px, 1vw, 14px);
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(14px, 1.11vw, 16px);
  color: #161414;
  line-height: 1.94;
  text-align: left;
}
@media (max-width: 768px) {
  .rec-flow__desc {
    padding: 0 20px 0 80px;
    font-size: 13px;
    line-height: 2;
  }
}

.rec-faq {
  background: transparent;
  padding: clamp(96px, 9vw, 130px) 0 clamp(96px, 9vw, 140px);
}
@media (max-width: 768px) {
  .rec-faq {
    padding: 64px 0 80px;
  }
}

.rec-faq__panel {
  width: 100%;
  max-width: 1018px;
  background: #ffffff;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 100px) clamp(28px, 4vw, 80px) clamp(64px, 7vw, 120px);
  text-align: center;
  position: relative;
  color: #161414;
}
.rec-faq__panel .rec-section__line {
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
@media (max-width: 768px) {
  .rec-faq__panel {
    width: calc(100% - 40px);
    padding: 48px 28px 80px;
  }
}

.rec-faq__list {
  list-style: none;
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 0;
  text-align: left;
}

.rec-faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  position: relative;
}
@media (max-width: 768px) {
  .rec-faq__item {
    padding-bottom: 50px;
  }
}

.rec-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(16px, 1.46vw, 21px);
  color: #161414;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.3s ease;
}
.rec-faq__q:hover {
  color: #212767;
}
@media (max-width: 768px) {
  .rec-faq__q {
    padding: 22px 4px;
    font-size: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.rec-faq__q-text {
  flex: 1;
  line-height: 1.5;
}

.rec-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  display: inline-block;
  background: #212767;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .rec-faq__icon {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }
}
.rec-faq__icon::before, .rec-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.3s ease;
}
.rec-faq__icon::before {
  width: 14px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.rec-faq__icon::after {
  width: 1.5px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.rec-faq__q[aria-expanded=true] .rec-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.rec-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.rec-faq__a p {
  padding: 4px 8px 28px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.78;
  color: #161414;
  margin: 0;
}
@media (max-width: 768px) {
  .rec-faq__a p {
    padding: 4px 4px 22px;
    font-size: 14px;
    line-height: 1.85;
  }
}

.rec-faq__item.is-open .rec-faq__a {
  max-height: 600px;
}

.rec-faq__entry-wrap {
  width: 100%;
  text-align: center;
  background: #161414;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0 0;
}
@media (max-width: 768px) {
  .rec-faq__entry-wrap {
    padding: 64px 0 0;
  }
}

.rec-faq__entry {
  position: relative;
  display: inline-block;
  width: clamp(150px, 14.44vw, 208px);
  height: clamp(150px, 14.44vw, 208px);
  perspective: 1200px;
  border-radius: 50%;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .rec-faq__entry {
    width: 140px;
    height: 140px;
  }
}
.rec-faq__entry:hover .rec-faq__entry-inner, .rec-faq__entry:focus-visible .rec-faq__entry-inner {
  transform: rotateY(900deg);
}
.rec-faq__entry:active .rec-faq__entry-inner {
  transform: rotateY(900deg) scale(0.96);
  transition: transform 0.2s ease;
}

.rec-faq__entry-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.rec-faq__entry-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}
.rec-faq__entry-face::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  pointer-events: none;
}
.rec-faq__entry-face--front {
  background: #ffffff;
  transform: rotateY(0deg);
}
.rec-faq__entry-face--front::before {
  border: 1px solid rgba(22, 21, 20, 0.35);
}
.rec-faq__entry-face--front .rec-faq__entry-text {
  color: #161414;
}
.rec-faq__entry-face--back {
  background: linear-gradient(129deg, #818181 46.28%, #ffffff 122.74%);
  transform: rotateY(180deg);
}
.rec-faq__entry-face--back::before {
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.rec-faq__entry-face--back .rec-faq__entry-text {
  color: #ffffff;
}

.rec-faq__entry-text {
  position: relative;
  z-index: 1;
  font-family: "ZCOOL XiaoWei", "Inria Serif", serif;
  font-size: clamp(22px, 2.08vw, 30px);
  letter-spacing: 0.25em;
  line-height: 1;
}
@media (max-width: 768px) {
  .rec-faq__entry-text {
    font-size: 20px;
  }
}

@media (hover: none) {
  .rec-faq__entry:active .rec-faq__entry-inner {
    transition: none;
    transform: rotateY(180deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rec-faq__entry-inner {
    transition: none;
  }
  .rec-faq__entry:hover .rec-faq__entry-inner,
  .rec-faq__entry:focus-visible .rec-faq__entry-inner {
    transform: rotateY(180deg);
  }
}
.page-meister {
  background: #161414;
}

.meister-main {
  position: relative;
  z-index: 1;
}

.mei-section {
  position: relative;
  width: 100%;
  padding: clamp(96px, 9vw, 130px) 0 clamp(96px, 9vw, 130px);
}
@media (max-width: 768px) {
  .mei-section {
    padding: 64px 0 80px;
  }
}
.mei-section--dark {
  background: transparent;
  color: #ffffff;
}
.mei-section--light {
  background-color: #fafafd;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 1px, rgba(0, 0, 0, 0.018) 1px, rgba(0, 0, 0, 0.018) 2px), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><defs><filter id='a'><feTurbulence type='fractalNoise' baseFrequency='0.014 0.020' numOctaves='3' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85, 0 0 0 0 0.87, 0 0 0 0 0.89, 0 0 0 0.6 0'/></filter><filter id='b'><feTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='2' seed='13' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.74, 0 0 0 0 0.77, 0 0 0 0 0.80, 0 0 0 0.45 0'/></filter><filter id='c'><feTurbulence type='fractalNoise' baseFrequency='0.18' numOctaves='1' seed='29' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.22 0'/></filter><filter id='d'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0.06 0'/></filter></defs><rect width='800' height='800' fill='rgb(250,250,253)'/><rect width='800' height='800' filter='url(%23a)'/><rect width='800' height='800' filter='url(%23b)'/><rect width='800' height='800' filter='url(%23c)'/><rect width='800' height='800' filter='url(%23d)'/></svg>");
  background-repeat: repeat, repeat;
  background-size: auto, 800px 800px;
  background-attachment: scroll;
  color: #161414;
}

.mei-section__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(28px, 5vw);
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mei-section__inner {
    padding: 0 28px;
  }
}

.mei-section__num {
  font-family: "Inria Serif", serif;
  font-size: 12px;
  letter-spacing: 0.6em;
  color: #ffffff;
  margin: 0 0 16px;
}
.mei-section__num--dark {
  color: #161414;
}
.mei-section__num--center {
  text-align: center;
}
@media (max-width: 768px) {
  .mei-section__num {
    font-size: 11px;
    letter-spacing: 0.55em;
    margin-bottom: 12px;
  }
}

.mei-section__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 auto 28px;
}
.mei-section__title--dark {
  color: #161414;
}
.mei-section__title--center {
  text-align: center;
}
@media (max-width: 768px) {
  .mei-section__title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.mei-section__line {
  display: block;
  width: clamp(220px, 35vw, 500px);
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
.mei-section__line--dark {
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
.mei-section__line--center {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mei-section__line {
    width: 300px;
  }
}

.mei-fv {
  position: relative;
  width: 100%;
  color: #ffffff;
  padding: clamp(140px, 14vw, 200px) 0 clamp(96px, 9vw, 130px);
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .mei-fv {
    padding: 110px 0 64px;
  }
}

.mei-fv__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(28px, 5vw);
}
@media (max-width: 768px) {
  .mei-fv__inner {
    padding: 0 28px;
  }
}

.mei-fv__title {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 96px);
  letter-spacing: 0.4em;
  line-height: 1;
  color: #808080;
  margin: 0 0 clamp(56px, 6vw, 96px);
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .mei-fv__title {
    font-size: 39px;
    margin-bottom: 48px;
  }
}

.mei-fv__head {
  margin: 0 auto clamp(32px, 3.5vw, 48px);
}

.mei-fv__lead {
  margin: clamp(28px, 3vw, 40px) auto 0;
  max-width: 720px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .mei-fv__lead {
    font-size: 13px;
    line-height: 1.94;
    text-align: left;
    margin-top: 24px;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.mei-route {
  background: #ffffff;
}

.mei-route__lead {
  margin: clamp(32px, 4vw, 56px) auto clamp(48px, 6vw, 72px);
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(14px, 1.11vw, 16px);
  line-height: 2;
  color: #161414;
  text-align: center;
}
@media (max-width: 768px) {
  .mei-route__lead {
    font-size: 13px;
    margin: 24px auto 36px;
    line-height: 1.94;
    text-align: left;
  }
}

.mei-route__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 2.5vw, 36px);
  max-width: 1200px;
}
@media (max-width: 768px) {
  .mei-route__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.mei-route__card {
  position: relative;
  aspect-ratio: 542/488;
  perspective: 1600px;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .mei-route__card {
    aspect-ratio: 275/248;
    width: 90%;
    margin: 0 auto;
  }
}

.mei-route__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

@media (hover: hover) {
  .mei-route__card:hover .mei-route__inner,
  .mei-route__card:focus-within .mei-route__inner {
    transform: rotateY(180deg);
  }
}
.mei-route__card.is-flipped .mei-route__inner {
  transform: rotateY(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .mei-route__inner {
    transition: none;
  }
}
.mei-route__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mei-route__face--front {
  transform: rotateY(0deg);
}

.mei-route__face--back {
  transform: rotateY(180deg);
  background: #161514;
  color: #ffffff;
  padding: 0 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .mei-route__face--back {
    padding: 22px 20px;
  }
}

.mei-route__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mei-route__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.mei-route__card:hover .mei-route__bg img {
  transform: scale(1.04);
}

.mei-route__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 0 clamp(20px, 3vw, 40px);
}

.mei-route__label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.18em;
  margin: 0 0 clamp(14px, 1.4vw, 20px);
  color: #ffffff;
}
@media (max-width: 768px) {
  .mei-route__label {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.mei-route__bar {
  display: block;
  width: clamp(140px, 13vw, 187px);
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}
@media (max-width: 768px) {
  .mei-route__bar {
    width: 95px;
  }
}

.mei-route__bar--top {
  margin-bottom: clamp(14px, 1.4vw, 20px);
}
@media (max-width: 768px) {
  .mei-route__bar--top {
    margin-bottom: 10px;
  }
}

.mei-route__bar--bottom {
  margin-top: clamp(14px, 1.4vw, 20px);
}
@media (max-width: 768px) {
  .mei-route__bar--bottom {
    margin-top: 10px;
  }
}

.mei-route__name {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(32px, 2.5vw, 40px);
  letter-spacing: 0.32em;
  margin: 0;
  line-height: 1.2;
  color: #ffffff;
}
@media (max-width: 768px) {
  .mei-route__name {
    font-size: 20px;
    letter-spacing: 0.24em;
  }
}

.mei-route__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(96px, 11vw, 140px);
  height: clamp(96px, 11vw, 140px);
  margin-top: clamp(40px, 5vw, 72px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #161414;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.2em;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  outline: 1px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3.5px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s ease;
  pointer-events: none;
}
@media (max-width: 768px) {
  .mei-route__more {
    width: 76px;
    height: 76px;
    margin-top: 24px;
    font-size: 12px;
    outline-offset: 3px;
  }
}

.mei-route__card:hover .mei-route__more,
.mei-route__card:focus-within .mei-route__more {
  transform: scale(1.06);
  background: #ffffff;
}

.mei-route__back-label {
  position: absolute;
  top: clamp(18px, 1.74vw, 25px);
  right: clamp(20px, 1.81vw, 28px);
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 2.2vw, 30px);
  letter-spacing: 0.16em;
  z-index: 3;
  background: linear-gradient(to bottom right, #FFF 0%, #7A7A7A 50%) bottom right/50% 50% no-repeat, linear-gradient(to bottom left, #FFF 0%, #7A7A7A 50%) bottom left/50% 50% no-repeat, linear-gradient(to top left, #FFF 0%, #7A7A7A 50%) top left/50% 50% no-repeat, linear-gradient(to top right, #FFF 0%, #7A7A7A 50%) top right/50% 50% no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .mei-route__back-label {
    top: 16px;
    right: 18px;
    font-size: 14px;
  }
}

.mei-route__back-circle {
  position: absolute;
  top: clamp(20px, 1.74vw, 25px);
  left: clamp(20px, 2.01vw, 29px);
  width: clamp(160px, 16.9vw, 244px);
  height: clamp(160px, 16.9vw, 244px);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
}
.mei-route__back-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .mei-route__back-circle {
    top: 16px;
    left: 16px;
    width: 110px;
    height: 110px;
  }
}

.mei-route__back-name {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: #ffffff;
  z-index: 3;
  white-space: nowrap;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .mei-route__back-name {
    display: none;
  }
}

.mei-route__back-heading {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 600;
  font-size: clamp(15px, 1.5vw, 22px);
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: #ffffff;
  text-align: center;
  z-index: 3;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .mei-route__back-heading {
    font-size: 16px;
    text-align: left;
    width: 76%;
    margin-right: auto;
  }
}

.mei-route__back-desc {
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(12px, 1.04vw, 15px);
  line-height: 2;
  color: rgb(255, 255, 255);
  z-index: 3;
  text-align: left;
}
@media (min-width: 768px) {
  .mei-route__back-desc {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .mei-route__back-desc {
    font-size: 13px;
    line-height: 1.6;
  }
}

.mei-route__back-divider {
  margin: 16px auto;
  width: calc(100% - 20px);
  height: 4px;
  background: linear-gradient(90deg, #7D7D7D 0%, #161414 100%);
  z-index: 3;
  display: block;
}
@media (max-width: 768px) {
  .mei-route__back-divider {
    width: 100%;
    height: 2px;
    margin: 12px auto;
  }
}

.mei-route__back-suited {
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(12px, 1.04vw, 15px);
  line-height: 2;
  color: rgb(255, 255, 255);
  z-index: 3;
  text-align: left;
}
@media (min-width: 768px) {
  .mei-route__back-suited {
    padding: 0 10px;
  }
}
.mei-route__back-suited span {
  font-weight: 700;
  color: #ffffff;
}
@media (max-width: 768px) {
  .mei-route__back-suited {
    font-size: 13px;
    line-height: 1.6;
  }
}

.mei-meister__lead {
  margin: clamp(28px, 3.5vw, 48px) auto clamp(48px, 6vw, 80px);
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .mei-meister__lead {
    font-size: 14px;
    line-height: 1.94;
    text-align: left;
    margin: 24px auto 40px;
    padding: 0 15px;
  }
  .mei-meister__lead br {
    display: none;
  }
}

.mei-meister__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  max-width: 1000px;
}
@media (max-width: 768px) {
  .mei-meister__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

.mei-meister__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mei-meister__icon {
  width: clamp(120px, 12vw, 180x);
  height: clamp(120px, 12vw, 180px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mei-meister__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .mei-meister__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
  }
}

.mei-meister__name {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: 0.18em;
  color: #ffffff;
  margin: 0 0 6px;
}
@media (max-width: 768px) {
  .mei-meister__name {
    font-size: 18px;
    letter-spacing: 0.15em;
  }
}

.mei-meister__desc {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .mei-meister__desc {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    padding: 0 10px;
  }
}

.mei-evaluation__lead {
  margin: clamp(28px, 3.5vw, 48px) auto clamp(40px, 5vw, 72px);
  max-width: 760px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .mei-evaluation__lead {
    font-size: 14px;
    line-height: 1.94;
    text-align: left;
    margin: 24px auto 32px;
    padding: 0 10px;
  }
  .mei-evaluation__lead br {
    display: none;
  }
}

.mei-evaluation__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 64px);
}

.mei-evaluation__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(220px, 19vw, 282px);
  height: clamp(48px, 5vw, 60px);
  background: linear-gradient(129deg, #818181 46.28%, #ffffff 122.74%);
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.39vw, 20px);
  letter-spacing: 0.12em;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}
.mei-evaluation__btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .mei-evaluation__btn {
    width: 220px;
    height: 50px;
    font-size: 16px;
  }
}

.page-company {
  background: #fafafd;
  color: #161414;
}
.page-company .shader-container {
  display: none;
}
.page-company .header {
  background-color: transparent;
}

.company-main {
  z-index: 1;
  background-color: #fafafd;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 1px, rgba(0, 0, 0, 0.018) 1px, rgba(0, 0, 0, 0.018) 2px), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><defs><filter id='a'><feTurbulence type='fractalNoise' baseFrequency='0.014 0.020' numOctaves='3' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85, 0 0 0 0 0.87, 0 0 0 0 0.89, 0 0 0 0.6 0'/></filter><filter id='b'><feTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='2' seed='13' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.74, 0 0 0 0 0.77, 0 0 0 0 0.80, 0 0 0 0.45 0'/></filter><filter id='c'><feTurbulence type='fractalNoise' baseFrequency='0.18' numOctaves='1' seed='29' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.22 0'/></filter><filter id='d'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0.06 0'/></filter></defs><rect width='800' height='800' fill='rgb(250,250,253)'/><rect width='800' height='800' filter='url(%23a)'/><rect width='800' height='800' filter='url(%23b)'/><rect width='800' height='800' filter='url(%23c)'/><rect width='800' height='800' filter='url(%23d)'/></svg>");
  background-repeat: repeat, repeat;
  background-size: auto, 800px 800px;
  background-attachment: scroll;
}

.com-section {
  position: relative;
  width: 100%;
  padding: clamp(72px, 8vw, 120px) 0;
}
@media (max-width: 768px) {
  .com-section {
    padding: 56px 0;
  }
}

.com-section__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(28px, 5vw);
}
@media (max-width: 768px) {
  .com-section__inner {
    padding: 0 28px;
  }
}

.com-section__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #161414;
  margin: 0 auto 28px;
  text-align: center;
}
.com-section__title--center {
  text-align: center;
}
@media (max-width: 768px) {
  .com-section__title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.com-section__line {
  display: block;
  width: clamp(220px, 35vw, 500px);
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
.com-section__line--center {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .com-section__line {
    width: 269px;
  }
}

.com-fv {
  position: relative;
  width: 100%;
  color: #161414;
  padding: clamp(140px, 14vw, 200px) 0 clamp(56px, 6vw, 80px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .com-fv {
    padding: 96px 0 40px;
  }
}

.com-fv__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(28px, 5vw);
}
@media (max-width: 768px) {
  .com-fv__inner {
    padding: 0 28px;
  }
}

.com-fv__title {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 96px);
  letter-spacing: 0.4em;
  line-height: 1;
  color: #808080;
  margin: 0 0 clamp(56px, 6vw, 96px);
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .com-fv__title {
    font-size: 38px;
    letter-spacing: 0.12em;
    margin-bottom: 48px;
    text-align: center;
  }
}

.com-fv__head {
  margin: 0 auto;
  text-align: center;
}

.com-info {
  padding-top: clamp(40px, 4vw, 60px);
  padding-bottom: clamp(72px, 8vw, 120px);
}
@media (max-width: 768px) {
  .com-info {
    padding-top: 28px;
    padding-bottom: 56px;
  }
}

.com-info__list {
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  color: #161414;
}
@media (max-width: 768px) {
  .com-info__list {
    max-width: none;
  }
}

.com-info__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  column-gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding: clamp(14px, 1.4vw, 20px) 0;
}
@media (max-width: 768px) {
  .com-info__row {
    grid-template-columns: 96px 1fr;
    column-gap: 16px;
    padding: 14px 0;
  }
}

.com-info__term {
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
  color: rgba(22, 21, 20, 0.85);
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .com-info__term {
    font-size: 13px;
    line-height: 1.7;
  }
}

.com-info__desc {
  margin: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
  color: #161414;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .com-info__desc {
    font-size: 13px;
    line-height: 1.7;
  }
}

.com-info__items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.com-info__items li {
  margin: 0;
  padding: 0;
}
.com-info__items li + li {
  margin-top: 4px;
}

.com-info__items--locations li {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 12px;
  align-items: start;
}
@media (max-width: 768px) {
  .com-info__items--locations li {
    grid-template-columns: 70px 1fr;
    column-gap: 8px;
  }
}

.com-info__loc-name {
  font-weight: 700;
}

.com-info__loc-text {
  font-weight: 400;
}

.com-access {
  padding-top: clamp(40px, 4vw, 60px);
  padding-bottom: clamp(96px, 10vw, 160px);
}
@media (max-width: 768px) {
  .com-access {
    padding-top: 32px;
    padding-bottom: 80px;
  }
}

.com-access__locations {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 96px);
  margin-top: clamp(40px, 4.5vw, 64px);
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .com-access__locations {
    margin-top: 32px;
    gap: 48px;
  }
}

.com-access__grid {
  display: flex;
  gap: clamp(32px, 4vw, 64px);
  width: 100%;
}
@media (max-width: 768px) {
  .com-access__grid {
    flex-direction: column;
    gap: 24px;
  }
}

.com-access__info {
  flex: 1 1 0;
  min-width: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  color: #161414;
}

.com-access__heading {
  margin: 0 0 8px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18px);
  letter-spacing: 0.06em;
  color: #161414;
}
@media (max-width: 768px) {
  .com-access__heading {
    font-size: 14px;
  }
}

.com-access__address {
  margin: 0 0 18px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.8;
  color: #161414;
}
@media (max-width: 768px) {
  .com-access__address {
    font-size: 13px;
    margin-bottom: 14px;
  }
}

.com-access__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.com-access__list li {
  margin: 0;
  padding: 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 2;
  color: #161414;
}
@media (max-width: 768px) {
  .com-access__list li {
    font-size: 13px;
    line-height: 1.94;
  }
}

.com-access__map {
  flex: 0 0 50%;
  width: 50%;
  aspect-ratio: 473/299;
  background: rgba(22, 21, 20, 0.04);
  overflow: hidden;
  border: 1px solid rgba(22, 21, 20, 0.1);
}
.com-access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.1);
}
@media (max-width: 768px) {
  .com-access__map {
    aspect-ratio: 305/234;
    width: 100%;
  }
}

.page-contact,
.page-entry {
  background: #fafafd;
  color: #161414;
}
.page-contact .shader-container,
.page-entry .shader-container {
  display: none;
}
.page-contact .header,
.page-entry .header {
  background-color: transparent;
}

.contact-main {
  z-index: 1;
  background-color: #fafafd;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 1px, rgba(0, 0, 0, 0.018) 1px, rgba(0, 0, 0, 0.018) 2px), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='800' height='800'><defs><filter id='a'><feTurbulence type='fractalNoise' baseFrequency='0.014 0.020' numOctaves='3' seed='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85, 0 0 0 0 0.87, 0 0 0 0 0.89, 0 0 0 0.6 0'/></filter><filter id='b'><feTurbulence type='fractalNoise' baseFrequency='0.05' numOctaves='2' seed='13' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.74, 0 0 0 0 0.77, 0 0 0 0 0.80, 0 0 0 0.45 0'/></filter><filter id='c'><feTurbulence type='fractalNoise' baseFrequency='0.18' numOctaves='1' seed='29' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.22 0'/></filter><filter id='d'><feTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='1' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0 0.5, 0 0 0 0.06 0'/></filter></defs><rect width='800' height='800' fill='rgb(250,250,253)'/><rect width='800' height='800' filter='url(%23a)'/><rect width='800' height='800' filter='url(%23b)'/><rect width='800' height='800' filter='url(%23c)'/><rect width='800' height='800' filter='url(%23d)'/></svg>");
  background-repeat: repeat, repeat;
  background-size: auto, 800px 800px;
  background-attachment: scroll;
}

.con-section {
  position: relative;
  width: 100%;
  padding: clamp(48px, 5vw, 80px) 0 clamp(96px, 10vw, 160px);
}
@media (max-width: 768px) {
  .con-section {
    padding: 32px 0 80px;
  }
}

.con-section__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 max(28px, 5vw);
}
@media (max-width: 768px) {
  .con-section__inner {
    padding: 0 28px;
  }
}

.con-section__title {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(28px, 2.78vw, 40px);
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #161414;
  margin: 0 auto 28px;
  text-align: center;
}
.con-section__title--center {
  text-align: center;
}
@media (max-width: 768px) {
  .con-section__title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}

.con-section__line {
  display: block;
  width: clamp(220px, 35vw, 500px);
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, #808080 0%, rgba(22, 21, 20, 0) 100%);
}
.con-section__line--center {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .con-section__line {
    width: 269px;
  }
}

.con-fv {
  position: relative;
  width: 100%;
  color: #161414;
  padding: clamp(140px, 14vw, 200px) 0 clamp(40px, 4vw, 64px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .con-fv {
    padding: 96px 0 32px;
  }
}

.con-fv__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(28px, 5vw);
}
@media (max-width: 768px) {
  .con-fv__inner {
    padding: 0 28px;
  }
}

.con-fv__title {
  font-family: "Inria Serif", serif;
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 96px);
  letter-spacing: 0.4em;
  line-height: 1;
  color: #808080;
  margin: 0 0 clamp(56px, 6vw, 96px);
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .con-fv__title {
    font-size: 38px;
    letter-spacing: 0.12em;
    margin-bottom: 48px;
    text-align: center;
  }
}

.con-fv__head {
  margin: 0 auto;
  text-align: center;
}

.con-fv__lead {
  margin: clamp(28px, 3vw, 40px) auto 0;
  max-width: 720px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 2;
  color: #161414;
  text-align: center;
}
@media (max-width: 768px) {
  .con-fv__lead {
    font-size: 13px;
    line-height: 1.94;
    text-align: left;
    margin-top: 24px;
  }
}

.con-form-section {
  padding-top: clamp(40px, 4vw, 60px);
  padding-bottom: clamp(96px, 10vw, 160px);
}
@media (max-width: 768px) {
  .con-form-section {
    padding-top: 24px;
    padding-bottom: 64px;
  }
}

.con-form {
  width: 100%;
  max-width: 646px;
  margin: 0 auto;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  color: #161414;
}

.con-form__group {
  margin-bottom: clamp(20px, 1.7vw, 24px);
}
@media (max-width: 768px) {
  .con-form__group {
    margin-bottom: 18px;
  }
}

.con-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0 0 10px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(14px, 1.04vw, 15px);
  line-height: 1.6;
  color: #161414;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .con-form__label {
    font-size: 14px;
    gap: 10px;
  }
}

.con-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 2px 8px;
  background: #C8102E;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .con-form__badge {
    font-size: 10px;
    min-width: 36px;
  }
}

.con-form__input,
.con-form__textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.6;
  color: #161414;
  background: #ffffff;
  border: 1px solid rgba(22, 21, 20, 0.18);
  border-radius: 0;
  padding: 10px 14px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.con-form__input::placeholder,
.con-form__textarea::placeholder {
  color: rgba(22, 21, 20, 0.45);
}
.con-form__input:focus,
.con-form__textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(22, 21, 20, 0.6);
  box-shadow: 0 0 0 2px rgba(22, 21, 20, 0.1);
}
.con-form__input.is-error,
.con-form__textarea.is-error {
  border-color: #C8102E;
  background: rgba(255, 235, 235, 0.95);
}
@media (max-width: 768px) {
  .con-form__input,
  .con-form__textarea {
    font-size: 14px;
    padding: 9px 12px;
  }
}

.con-form__input {
  height: 41px;
}
@media (max-width: 768px) {
  .con-form__input {
    height: 38px;
  }
}

.con-form__textarea {
  height: 160px;
  resize: vertical;
  padding: 12px 14px;
}
@media (max-width: 768px) {
  .con-form__textarea {
    height: 177px;
    padding: 12px;
  }
}

.con-form__radio-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 2vw, 28px);
  margin-top: 6px;
}
@media (max-width: 768px) {
  .con-form__radio-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .con-form__radio-row--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 12px;
    row-gap: 14px;
    align-items: center;
  }
}

.con-form__choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.con-form__choice input[type=radio],
.con-form__choice input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}
.con-form__choice--check {
  margin-top: 12px;
}
.con-form__choice:hover .con-form__choice-box {
  border-color: rgba(22, 21, 20, 0.6);
}

.con-form__choice-box {
  flex-shrink: 0;
  display: inline-block;
  width: 31px;
  height: 31px;
  background: #ffffff;
  border: 1px solid rgba(22, 21, 20, 0.18);
  border-radius: 0;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 768px) {
  .con-form__choice-box {
    width: 27px;
    height: 27px;
  }
}

.con-form__choice input[type=radio]:checked + .con-form__choice-box,
.con-form__choice input[type=checkbox]:checked + .con-form__choice-box {
  background: #161414;
}

.con-form__choice input[type=radio]:checked + .con-form__choice-box::after,
.con-form__choice input[type=checkbox]:checked + .con-form__choice-box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 10px;
  height: 18px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -55%) rotate(45deg);
}

.con-form__choice input:focus-visible + .con-form__choice-box {
  outline: 2px solid rgba(22, 21, 20, 0.7);
  outline-offset: 2px;
}

.con-form__choice-text {
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(13px, 1vw, 15px);
  color: #161414;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .con-form__choice-text {
    font-size: 14px;
  }
}

.con-form__policy-title {
  margin: clamp(18px, 1.6vw, 22px) 0 8px;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 15px);
  color: #161414;
}

.con-form__policy {
  width: 100%;
  height: 211px;
  box-sizing: border-box;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(22, 21, 20, 0.18);
  color: #161414;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(12px, 0.9vw, 13px);
  line-height: 1.85;
  overflow-y: auto;
}
.con-form__policy p {
  margin: 0 0 10px;
}
.con-form__policy p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .con-form__policy {
    height: 177px;
    padding: 14px;
    font-size: 12px;
  }
}

.con-form__submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 4vw, 56px);
}
@media (max-width: 768px) {
  .con-form__submit-wrap {
    margin-top: 32px;
  }
}

.con-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(140px, 12vw, 145px);
  height: clamp(44px, 3.5vw, 46px);
  padding: 0 28px;
  background: #161414;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(14px, 1.11vw, 16px);
  letter-spacing: 0.16em;
  line-height: 1;
  border: 1px solid #161414;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.con-form__submit span {
  position: relative;
  z-index: 1;
}
.con-form__submit:hover {
  background: #ffffff;
  color: #161414;
  border-color: #161414;
}
.con-form__submit:active {
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .con-form__submit {
    min-width: 142px;
    height: 44px;
    font-size: 15px;
  }
}

.con-form__error {
  margin: 6px 0 0;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: 12px;
  line-height: 1.5;
  color: #C8102E;
  letter-spacing: 0.04em;
}

.con-form__hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.con-form__summary-error {
  margin: clamp(20px, 2vw, 28px) 0 0;
  padding: 14px 18px;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.4);
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-size: clamp(13px, 1vw, 14px);
  line-height: 1.7;
  color: #C8102E;
  letter-spacing: 0.04em;
  text-align: center;
}

.con-form__submit {
  position: relative;
}
.con-form__submit-text {
  position: relative;
  z-index: 1;
  transition: opacity 0.2s ease;
}
.con-form__submit-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  opacity: 0;
  pointer-events: none;
  animation: con-form-spin 0.8s linear infinite;
}
.con-form__submit.is-submitting {
  cursor: wait;
  opacity: 0.85;
}
.con-form__submit.is-submitting:hover {
  background: #161414;
  color: #ffffff;
  border-color: #161414;
}
.con-form__submit.is-submitting .con-form__submit-text {
  opacity: 0;
}
.con-form__submit.is-submitting .con-form__submit-loader {
  opacity: 1;
}
.con-form__submit.is-submitting:hover .con-form__submit-loader {
  border-top-color: #ffffff;
}
@keyframes con-form-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.con-thanks__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(8px, 2vw, 32px);
}

.con-thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(220px, 22vw, 280px);
  height: clamp(46px, 3.5vw, 50px);
  padding: 0 32px;
  background: #161414;
  color: #ffffff;
  font-family: "Zen Old Mincho", "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(14px, 1.11vw, 16px);
  letter-spacing: 0.16em;
  line-height: 1;
  border: 1px solid #161414;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.con-thanks__btn:hover {
  background: #ffffff;
  color: #161414;
  border-color: #161414;
}
.con-thanks__btn:active {
  transform: translateY(1px);
}
@media (max-width: 768px) {
  .con-thanks__btn {
    min-width: 220px;
    height: 46px;
    font-size: 14px;
  }
}

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