@charset "UTF-8";
/* Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

html {
  font-size: 16px;
}

body {
  background-color: #FFFFFF;
  color: #191B1F;
  font-family: "Zen Kaku Gothic New", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    overscroll-behavior: none;
  }
}

p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  margin-bottom: 1.5em;
}

small {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #191B1F;
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

a {
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
a:hover {
  opacity: 0.7;
}

.l-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .l-container {
    max-width: 100%;
  }
}

.l-section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 40px 0;
  }
}

.u-text-center {
  text-align: center;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

.u-bg-dark {
  background-color: #000 !important;
}

.u-text-white {
  color: #fff !important;
}
.u-text-white h1,
.u-text-white h2,
.u-text-white h3,
.u-text-white h4,
.u-text-white h5,
.u-text-white h6 {
  color: #fff !important;
}

.u-text-accent {
  color: #DAE001 !important;
}

.u-fw-bold {
  font-weight: 700 !important;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  transition: background 0.4s cubic-bezier(0.25, 1, 0.5, 1), backdrop-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  /* Adjust for WordPress Admin Bar */
}
@media (max-width: 768px) {
  .l-header {
    padding: 0.3rem 0;
  }
}
.l-header.is-menu-open {
  backdrop-filter: none;
  z-index: 1003;
}
@media (min-width: 768px) {
  .l-header {
    transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
body.admin-bar .l-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .l-header {
    top: 46px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  position: relative;
  z-index: 1000;
}
.l-header__logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  .l-header__logo img {
    height: 30px;
  }
}
.l-header__logo-link {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .l-header__logo-link {
    gap: 8px;
  }
}
.l-header__logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #191B1F;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .l-header__logo-text {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }
}

.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1001;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.l-header__nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-header__nav.is-active .l-header__nav-link {
  color: #191b1f !important;
}
@media (min-width: 768px) {
  .l-header__nav {
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(-10px);
  }
  .l-header__nav:not(.is-active) {
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.6s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-header__nav.is-active {
    transform: translateY(0);
  }
}
body.admin-bar .l-header__nav .l-header__nav-inner {
  padding-top: calc(84px + env(safe-area-inset-top, 0px));
}
@media (max-width: 782px) {
  body.admin-bar .l-header__nav .l-header__nav-inner {
    padding-top: calc(98px + env(safe-area-inset-top, 0px));
  }
}

@media (min-width: 768px) {
  .l-header__nav.is-active .l-header__nav-inner {
    opacity: 1;
    transform: translateY(0);
  }
}

.l-header__nav-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  max-height: 100dvh;
  margin: 0 auto;
  padding: calc(52px + env(safe-area-inset-top, 0px)) 20px calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 50px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
@media (max-width: 767px) {
  .l-header__nav-inner {
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
  }
}
@media (max-width: 767px) {
  .l-header__nav-inner {
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    grid-template-areas: "cta" "links" "special" "sns";
    gap: clamp(10px, 2vh, 20px);
    height: 100%;
    min-height: 0;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}
@media (min-width: 768px) {
  .l-header__nav-inner {
    display: flex;
    flex-direction: column;
    padding: 72px 40px 24px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
  }
}
.l-header__nav-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .l-header__nav-row {
    grid-area: links;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    order: unset;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .l-header__nav-row {
    gap: 28px 56px;
  }
}
.l-header__nav-row .l-header__nav-label {
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .l-header__nav-row .l-header__nav-label {
    padding-bottom: 10px;
  }
}
.l-header__nav-row .l-header__nav-list {
  gap: 10px;
}
@media (min-width: 768px) {
  .l-header__nav-row .l-header__nav-list {
    gap: 16px;
  }
}
.l-header__nav-section {
  width: 100%;
}
.l-header__nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 4px;
  display: block;
  text-align: left;
}
@media (min-width: 768px) {
  .l-header__nav-label {
    font-size: 0.875rem;
    padding-bottom: 6px;
  }
}
.l-header__nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .l-header__nav-list {
    gap: 10px;
  }
}
.l-header__nav-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__nav-list li::before {
  content: none !important;
  display: none !important;
}
.l-header__nav-special {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .l-header__nav-special {
    gap: 20px 24px;
  }
}
@media (max-width: 767px) {
  .l-header__nav-special {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.l-header__nav-special-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: #191b1f;
  transition: all 0.3s ease;
  align-items: center;
}
@media (max-width: 767px) {
  .l-header__nav-special-item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.l-header__nav-special-item:hover {
  opacity: 0.8;
}
.l-header__nav-special-item:hover .l-header__nav-special-img img {
  transform: scale(1.05);
}
.l-header__nav-special-item span {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 767px) {
  .l-header__nav-special-item span {
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .l-header__nav-special-item span {
    font-size: 1.0625rem;
  }
}
.l-header__nav-special-img {
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  background-color: #eee;
  width: 100%;
  max-width: 72px;
}
@media (max-width: 767px) {
  .l-header__nav-special-img {
    width: 80px;
    max-width: 80px;
    flex-shrink: 0;
    border-radius: 8px;
  }
}
@media (min-width: 768px) {
  .l-header__nav-special-img {
    max-width: 250px;
    width: 100%;
    border-radius: 8px;
  }
}
.l-header__nav-special-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.l-header__nav-section--special {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .l-header__nav-section--special {
    grid-area: special;
    order: unset;
    flex: none;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
}
.l-header__nav-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: auto;
  margin-bottom: 20px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .l-header__nav-bottom {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .l-header__nav-bottom {
    display: contents;
  }
}
.l-header__nav-cta {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .l-header__nav-cta {
    grid-area: cta;
    order: unset;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .l-header__nav-cta .c-button {
    width: 100%;
    border-radius: 8px;
    padding: 10px 8px;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    min-height: 0;
  }
  .l-header__nav-cta .c-button span:first-child {
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
  }
  .l-header__nav-cta .c-button .c-button__arrow {
    display: none;
  }
  .l-header__nav-cta .c-button--secondary {
    background-color: #29b5b2;
    color: #fff;
  }
  .l-header__nav-cta .c-button:not(.l-header__nav-cta .c-button--secondary) {
    background-color: #dae001;
    color: #191b1f;
  }
}
.l-header__nav-sns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .l-header__nav-sns {
    grid-area: sns;
    order: unset;
    margin-top: 0;
    margin-bottom: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-self: end;
  }
}
.l-header__nav-sns-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #191b1f;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
.l-header__nav-sns-link:hover {
  border-bottom-color: #191b1f;
  opacity: 0.7 !important;
}
.l-header__nav-sns-link .c-external-icon {
  opacity: 0.6;
  transition: transform 0.3s ease;
}
.l-header__nav-sns-link:hover .c-external-icon {
  transform: translate(2px, -2px);
  opacity: 1;
}
.l-header__nav-link {
  color: #191b1f;
  transition: color 0.3s ease;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 2px;
  line-height: 1.35;
}
@media (min-width: 768px) {
  .l-header__nav-link {
    font-size: 1.0625rem;
  }
}
.l-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #DAE001;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-header__nav-link:hover::after {
  width: 100%;
}
.l-header.is-theme-dark, .l-header.is-theme-light {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}
.l-header.is-theme-dark .l-header__nav-link, .l-header.is-theme-light .l-header__nav-link {
  color: #191b1f;
}
.l-header.is-theme-dark .l-header__hamburger span, .l-header.is-theme-light .l-header__hamburger span {
  background-color: #191b1f;
}
.l-header__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: 2rem;
  opacity: 1;
  transition: opacity 0.4s ease;
}
@media (min-width: 768px) {
  .l-header__cta {
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
@media (max-width: 767px) {
  .l-header__cta {
    display: none;
  }
}
.l-header.is-menu-open .l-header__cta {
  opacity: 0;
  pointer-events: none;
}
.l-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
  padding: 0;
}
.l-header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #191b1f;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}
@media (min-width: 768px) {
  .l-header__hamburger span {
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
}
.l-header__hamburger.is-active span {
  background-color: #191b1f !important;
}
.l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

@media (max-width: 767px) and (max-height: 740px) {
  .l-header__nav-inner {
    padding-top: calc(64px + env(safe-area-inset-top, 0px));
    gap: clamp(8px, 1.5vh, 14px);
  }
  .l-header__nav-cta .c-button {
    padding: 8px 6px !important;
  }
  .l-header__nav-cta .c-button span:first-child {
    font-size: 0.75rem !important;
  }
  .l-header__nav-special {
    gap: 12px !important;
  }
  .l-header__nav-special-img {
    width: 64px !important;
    max-width: 64px !important;
  }
  .l-header__nav-special-item span {
    font-size: 1rem !important;
  }
  .l-header__nav-link {
    font-size: 0.875rem !important;
  }
}
@media (max-width: 767px) and (max-height: 640px) {
  .l-header__nav-inner {
    padding-top: calc(56px + env(safe-area-inset-top, 0px));
  }
  .l-header__nav-special-img {
    width: 52px !important;
    max-width: 52px !important;
  }
  .l-header__nav-special {
    gap: 8px !important;
  }
  .l-header__nav-special-item span {
    font-size: 0.875rem !important;
  }
}
.l-footer {
  background-color: #FFFFFF;
  color: #191B1F;
  padding: 80px 0 40px;
  border-top: 1px solid #E5E7EB;
  display: block;
  width: 100%;
}
.l-footer .l-container {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .l-footer .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.l-footer__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .l-footer__inner {
    margin-bottom: 40px;
  }
}
.l-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.l-footer__logo {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.l-footer__logo img {
  height: 48px;
  width: auto;
}
.l-footer__address {
  font-style: normal;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #191B1F;
  margin-top: 8px;
}
.l-footer__tel {
  font-size: 1.0625rem;
  color: #191B1F;
  display: inline-block;
}
.l-footer__logo-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #191B1F;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}
.l-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(25, 27, 31, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .l-footer__bottom {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
  }
}
.l-footer__copyright {
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 0;
}
.l-footer__sns {
  display: flex;
  gap: 24px;
  align-items: center;
}
.l-footer__sns-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #191B1F;
  transition: all 0.3s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  text-decoration: none;
}
.l-footer__sns-link:hover {
  border-bottom-color: #191B1F;
  opacity: 0.7 !important;
}
.l-footer__sns-link .c-external-icon {
  opacity: 0.6;
  transition: transform 0.3s ease;
}
.l-footer__sns-link:hover .c-external-icon {
  transform: translate(2px, -2px);
  opacity: 1;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 32px;
  background-color: #DAE001;
  color: #191B1F;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
.c-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(25, 27, 31, 0.1);
  opacity: 1 !important;
}
.c-button:hover .c-button__arrow {
  transform: translateX(10px);
}
.c-button__arrow {
  width: 24px;
  height: 1px;
  background-color: currentColor;
  position: relative;
  transition: transform 0.3s ease;
  display: inline-block;
}
.c-button__arrow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.c-button--large {
  padding: 16px 48px;
  font-size: 1.1rem;
  border-radius: 40px;
}

.c-button--outline {
  background-color: transparent !important;
  color: #29b5b2;
  border: 1px solid #29b5b2;
  box-shadow: none !important;
}
.c-button--outline:hover {
  background-color: #29b5b2 !important;
  color: #fff !important;
  border-color: #29b5b2 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 30px rgba(41, 181, 178, 0.2) !important;
}

.c-button--secondary {
  background-color: #29b5b2;
  color: #fff;
}
.c-button--secondary:hover {
  box-shadow: 0 15px 40px rgba(41, 181, 178, 0.3);
}

.c-breadcrumb {
  position: relative;
  z-index: 5;
  padding: 1.5rem 0;
  background-color: #FFFFFF;
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-breadcrumb__item {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 500;
  color: #6B7280;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 0.75rem;
  font-size: 0.7rem;
  opacity: 0.4;
  font-weight: 400;
}
.c-breadcrumb__item a {
  color: #191B1F;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-breadcrumb__item a:hover {
  color: #DAE001;
}
.c-breadcrumb__item:last-child {
  color: #6B7280;
}

.c-page-hero {
  position: relative;
  z-index: 5;
  background-color: #fff;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
}
@media (max-width: 768px) {
  .c-page-hero {
    height: auto;
    min-height: 200px;
    padding: 120px 0 60px;
  }
}
.c-page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.c-page-hero__label {
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #DAE001;
  margin-bottom: 1rem;
}
.c-page-hero__title {
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.c-page-hero__desc {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  font-weight: 500;
}
@media (max-width: 768px) {
  .c-page-hero__desc {
    font-size: 0.875rem;
  }
}
.c-page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("../img/common/header_img.webp");
  background-size: cover;
  background-position: center;
}
.c-page-hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.c-background-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1;
  pointer-events: none;
  width: 60vw;
  max-width: 900px;
  height: auto;
  opacity: 0.12;
  will-change: transform, opacity;
}
.c-background-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.c-background-logo .JS_LogoSharp {
  opacity: 0;
  will-change: opacity;
}
.c-background-logo .JS_LogoBlur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 1;
  filter: blur(10px);
  will-change: opacity;
}
@media (max-width: 768px) {
  .c-background-logo {
    width: 85vw;
  }
}

.p-culture .c-background-logo,
.p-culture .p-top__center-logo,
.p-story .c-background-logo,
.p-story .p-top__center-logo,
.p-event-detail .c-background-logo,
.p-event-detail .p-top__center-logo,
.p-requirements-detail .c-background-logo,
.p-requirements-detail .p-top__center-logo,
.p-blog-detail .c-background-logo,
.p-blog-detail .p-top__center-logo {
  display: none !important;
}

.c-pagination {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .c-pagination {
    margin-top: 60px;
    gap: 8px;
  }
}
.c-pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-pagination__item.is-active .c-pagination__link {
  background-color: #27B5B2;
  color: #fff;
  border-color: #27B5B2;
}
.c-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  background-color: #fff;
  color: #191B1F;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.c-pagination__link:hover {
  border-color: #27B5B2;
  color: #27B5B2;
}
@media (max-width: 768px) {
  .c-pagination__link {
    width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
}
.c-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}
.c-pagination__arrow:hover {
  border-color: #27B5B2;
}
.c-pagination__arrow:hover::after {
  border-color: #27B5B2;
}
.c-pagination__arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #6B7280;
  border-right: 2px solid #6B7280;
  transition: border-color 0.3s ease;
}
.c-pagination__arrow--prev::after {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.c-pagination__arrow--next::after {
  transform: rotate(45deg);
  margin-right: 4px;
}
.c-pagination__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 768px) {
  .c-pagination__arrow {
    width: 36px;
    height: 36px;
  }
}

.p-scroll-story-container {
  position: relative;
  height: 650vh;
}

.p-hero--3d {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
  z-index: 1;
}
.p-hero--3d::after {
  display: none;
}

.p-hero__dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  opacity: 0;
  z-index: 12;
  pointer-events: none;
  will-change: opacity;
}

.p-hero__bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.p-hero__aura-rotate-container {
  display: none;
}

.p-hero__aura-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-hero__aura-wrapper--1 {
  animation: aura-float-1 20s infinite alternate ease-in-out;
}
.p-hero__aura-wrapper--2 {
  animation: aura-float-2 25s infinite alternate-reverse ease-in-out;
}

.p-hero__aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.8;
  will-change: transform;
}
.p-hero__aura--1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(218, 224, 1, 0.8) 0%, rgba(218, 224, 1, 0) 70%);
  top: 20%;
  left: 20%;
}
.p-hero__aura--2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(218, 224, 1, 0.7) 0%, rgba(218, 224, 1, 0) 70%);
  bottom: 20%;
  right: 20%;
}

@keyframes aura-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes aura-float-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(80px, 40px) scale(1.1);
  }
}
@keyframes aura-float-2 {
  0% {
    transform: translate(0, 0) scale(1.1);
  }
  100% {
    transform: translate(-60px, -80px) scale(1);
  }
}
@keyframes grain-animation {
  0%, 100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-2%, -1%);
  }
  20% {
    transform: translate(-3%, 2%);
  }
  30% {
    transform: translate(2%, -3%);
  }
  40% {
    transform: translate(-2%, 4%);
  }
  50% {
    transform: translate(-3%, 2%);
  }
  60% {
    transform: translate(4%, 0);
  }
  70% {
    transform: translate(0, 3%);
  }
  80% {
    transform: translate(-4%, 0);
  }
  90% {
    transform: translate(3%, 2%);
  }
}
.p-hero__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.p-hero__light-opening {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 100;
  pointer-events: none;
  animation: iris-light-reveal 2.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.p-hero__light-opening::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #fff9e0;
  border-radius: 50%;
  box-shadow: 0 0 200px 100px #fff9e0, 0 0 400px 200px rgba(218, 224, 1, 0.3);
  opacity: 0;
  animation: iris-light-glow 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.p-hero__label {
  display: none;
}

.p-hero__first-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.p-hero__main-visual {
  width: 90vw;
  max-width: none;
  margin: 0 auto;
  opacity: 0;
  filter: blur(20px);
  transform: translateY(30px);
  animation: resolutionRise 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
}
.p-hero__main-visual img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .p-hero__main-visual {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-hero__banners {
  position: fixed;
  bottom: 100px;
  right: 60px;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 150;
  pointer-events: auto;
  transition: opacity 0.4s ease-out;
  opacity: 0;
  will-change: opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 0;
}
.p-hero__banners.is-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .p-hero__banners {
    bottom: 0;
    left: 0;
    right: auto;
    width: auto;
    align-items: center;
    gap: 8px;
  }
}

.p-hero__banners--close {
  position: absolute;
  right: 0;
  top: -15px;
  cursor: pointer;
  pointer-events: all;
}
@media (max-width: 768px) {
  .p-hero__banners--close {
    top: -10px;
    right: 15px;
  }
  .p-hero__banners--close img {
    width: 25px;
    height: auto;
  }
}

.p-hero__banners-label {
  display: block;
  width: 100%;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #2e89aa;
  margin-bottom: 0;
  line-height: 1;
  opacity: 1;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-hero__banners-label {
    font-size: 0.7rem;
    text-align: center;
  }
}

.p-hero__banners-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .p-hero__banners-items {
    flex-direction: row;
    gap: 0;
    align-items: center;
  }
}

.p-hero__banner-item {
  width: 280px;
  height: 168px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  overflow: hidden;
  pointer-events: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.p-hero__banner-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  pointer-events: none;
}
.p-hero__banner-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .p-hero__banner-item {
    width: 50vw !important;
    height: auto !important;
    font-size: 0.8rem;
  }
}

@keyframes resolutionRise {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroBgZoom {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scrollLine {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}
@keyframes iris-light-reveal {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes iris-light-glow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(20);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(40);
  }
}
.p-discovery {
  padding: 60px 0;
  background-color: #F4F7F9;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-discovery {
    padding: 40px 0;
  }
}
.p-discovery__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 768px) {
  .p-discovery__inner {
    flex-direction: column;
    gap: 64px;
  }
}
.p-discovery__text-content {
  flex: 1;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 1.2s ease-out;
}
.p-discovery__text-content.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.p-discovery__sub {
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #6B7280;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.p-discovery__title {
  font-size: clamp(2.25rem, 8vw, 3.75rem);
  margin-bottom: 32px;
}
.p-discovery__title span {
  color: #DAE001;
  background: linear-gradient(transparent 70%, rgba(218, 224, 1, 0.3) 70%);
}
.p-discovery__desc {
  color: #6B7280;
}
.p-discovery__visual {
  flex: 1.2;
  position: relative;
  height: 600px;
}
@media (max-width: 768px) {
  .p-discovery__visual {
    width: 100%;
    height: 450px;
  }
}
.p-discovery__member-group {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-discovery__member {
  position: absolute;
  width: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  opacity: 0;
  filter: blur(20px);
  transform: scale(0.9) translateZ(0);
  transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-discovery__member img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.p-discovery__member:hover img {
  transform: scale(1.05);
}
.p-discovery__member.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1) translateZ(0);
}
.p-discovery__member--01 {
  top: 0;
  left: 10%;
  z-index: 3;
  transition-delay: 0.2s;
}
.p-discovery__member--02 {
  top: 20%;
  right: 5%;
  z-index: 2;
  transition-delay: 0.5s;
}
.p-discovery__member--03 {
  bottom: 0;
  left: 20%;
  z-index: 4;
  transition-delay: 0.8s;
}
.p-discovery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(25, 27, 31, 0.8);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-gallery-sticky-wrapper {
  height: 300vh;
  position: relative;
  margin-top: -150vh;
  background-color: transparent;
  z-index: 20;
  overflow-x: clip;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-gallery-sticky-wrapper {
    overflow-x: visible;
  }
}

.p-gallery-reveal {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-gallery-reveal {
    height: 100svh;
    padding: 40px 0;
  }
}
.p-gallery-reveal__message {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s ease;
}
.p-gallery-reveal__message.is-fadeout {
  opacity: 0;
  pointer-events: none;
}
.p-gallery-reveal__message.is-hidden {
  display: none;
}
.p-gallery-reveal__message--content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}
.p-gallery-reveal__message__text-lead, .p-gallery-reveal__message__text-body p, .p-gallery-reveal__message__text-highlight {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 1.2em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.p-gallery-reveal__message__text-lead.is-visible, .p-gallery-reveal__message__text-body p.is-visible, .p-gallery-reveal__message__text-highlight.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .p-gallery-reveal__message__text-lead, .p-gallery-reveal__message__text-body p, .p-gallery-reveal__message__text-highlight {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}
.p-gallery-reveal__message__text-lead {
  margin-bottom: 1em;
}
.p-gallery-reveal__message__skip {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.5em 1.4em;
  cursor: pointer;
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, background 0.2s ease;
}
.p-gallery-reveal__message__skip:hover {
  background: rgba(255, 255, 255, 0.25);
}
.p-gallery-reveal__grid {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .p-gallery-reveal__grid {
    height: 100svh;
    min-height: 100svh;
  }
}
.p-gallery-reveal__item {
  position: absolute;
  background-color: #e8e8e8;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item {
    transform: none;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }
  .p-gallery-reveal__item.is-revealed {
    opacity: 1;
    transition: opacity 0.25s ease;
  }
}
.p-gallery-reveal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item img {
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
  }
}
.p-gallery-reveal__item:nth-child(1) {
  z-index: 9;
  top: -2%;
  left: -2%;
  width: 28%;
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(1) {
    width: 45%;
    left: -5%;
    top: 5%;
  }
}
.p-gallery-reveal__item:nth-child(2) {
  z-index: 7;
  top: 2%;
  left: 28%;
  width: 25%;
  aspect-ratio: 3/4;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(2) {
    width: 50%;
    left: 45%;
    top: 5%;
  }
}
.p-gallery-reveal__item:nth-child(3) {
  z-index: 8;
  top: 5%;
  left: 55%;
  width: 32%;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(3) {
    width: 55%;
    left: -10%;
    top: 30%;
  }
}
.p-gallery-reveal__item:nth-child(4) {
  z-index: 3;
  top: 20%;
  left: 85%;
  width: 18%;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(4) {
    width: 40%;
    left: 65%;
    top: 25%;
  }
}
.p-gallery-reveal__item:nth-child(5) {
  z-index: 6;
  top: 48%;
  left: -2%;
  width: 18%;
  aspect-ratio: 4/5;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(5) {
    width: 32%;
    left: 35%;
    top: 35%;
  }
}
.p-gallery-reveal__item:nth-child(6) {
  z-index: 9;
  top: 38%;
  left: 18%;
  width: 38%;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(6) {
    width: 55%;
    left: 50%;
    top: 50%;
  }
}
.p-gallery-reveal__item:nth-child(7) {
  z-index: 5;
  top: 25%;
  left: 58%;
  width: 28%;
  aspect-ratio: 3/4;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(7) {
    width: 52%;
    left: 5%;
    top: 48%;
  }
}
.p-gallery-reveal__item:nth-child(8) {
  z-index: 5;
  top: 72%;
  left: 25%;
  width: 25%;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(8) {
    width: 45%;
    left: 45%;
    top: 68%;
  }
}
.p-gallery-reveal__item:nth-child(9) {
  z-index: 2;
  top: 72%;
  left: 68%;
  width: 25%;
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(9) {
    width: 42%;
    left: 0%;
    top: 75%;
  }
}
.p-gallery-reveal__item:nth-child(10) {
  z-index: 10 !important;
  top: 68%;
  left: 72%;
  width: 28%;
  aspect-ratio: 1/1;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(10) {
    width: 40%;
    left: 60%;
    top: 82%;
  }
}
.p-gallery-reveal__item:nth-child(11) {
  z-index: 8;
  top: 62%;
  left: 20%;
  width: 42%;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(11) {
    width: 65%;
    left: 15%;
    top: 70%;
  }
}
.p-gallery-reveal__item:nth-child(12) {
  z-index: 3;
  top: 66%;
  left: 60%;
  width: 45%;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .p-gallery-reveal__item:nth-child(12) {
    width: 70%;
    left: 40%;
    top: 80%;
  }
}
.p-gallery-reveal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  pointer-events: none;
}
.p-gallery-reveal__title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.4;
  color: #191b1f;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease-out;
}
.p-gallery-reveal__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-top__center-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  z-index: 1;
  pointer-events: none;
  width: 60vw;
  max-width: 900px;
  height: auto;
  opacity: 0.12;
  transition: opacity 0.5s ease;
  will-change: transform, opacity;
}
.p-top__center-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-top__center-logo .JS_LogoSharp {
  opacity: 1;
  will-change: opacity;
}
.p-top__center-logo .JS_LogoBlur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  filter: blur(10px);
  will-change: opacity;
}
@media (max-width: 768px) {
  .p-top__center-logo {
    width: 85vw;
  }
}

.p-fv-message-sticky-wrapper {
  position: relative;
  height: 400vh;
}

.p-fv-message {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  z-index: 15;
  background: transparent;
}

.p-fv-message__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
  pointer-events: none;
  will-change: background;
}

.p-fv-message__container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  text-align: left;
  color: #ffffff;
  will-change: transform;
}
@media (max-width: 768px) {
  .p-fv-message__container {
    padding: 0 20px;
  }
}

.p-fv-message__lead {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #DAE001;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .p-fv-message__lead {
    margin-bottom: 3rem;
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
}

.p-fv-message__body {
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}
.p-fv-message__body p {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1.4rem;
}
@media (max-width: 768px) {
  .p-fv-message__body {
    line-height: 2;
  }
  .p-fv-message__body p {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
}
.p-fv-message__body p:last-child {
  margin-bottom: 0;
}

.p-fv-message__highlight {
  font-weight: 700;
  color: #DAE001 !important;
  margin-top: 2.5rem !important;
  letter-spacing: 0.1em;
}

.p-fv-message__anim-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-fv-message__anim-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-top-philosophy {
  text-align: left;
  text-align: left;
}
.p-top-philosophy__inner {
  width: 100%;
  margin: 0;
}
.p-top-philosophy__label {
  margin-top: 0;
  margin-bottom: 2.5rem;
  display: block;
}
.p-top-philosophy__label img {
  height: 60px;
  width: auto;
  margin: 0;
  display: block;
}
@media (max-width: 768px) {
  .p-top-philosophy__label img {
    height: 36px;
  }
}
.p-top-philosophy__header-group {
  display: inline-block;
  width: fit-content;
  max-width: 320px;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .p-top-philosophy__header-group {
    margin-bottom: 2rem;
    width: 80%;
    max-width: 240px;
  }
}
.p-top-philosophy__title {
  margin-bottom: 1rem;
  color: #fff;
}
.p-top-philosophy__title img {
  width: 100%;
  height: auto;
  display: block;
}
.p-top-philosophy__subtitle {
  font-size: clamp(0.875rem, 2vw, 1.0625rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
.p-top-philosophy__subtitle span {
  color: #DAE001;
}
.p-top-philosophy__text {
  font-size: 1.0625rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 500;
}
.p-top-philosophy__text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-top-philosophy__text br {
    display: none;
  }
}

.p-top-about {
  background-color: #000;
  padding: 120px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.p-top-about .l-container {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 768px) {
  .p-top-about .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .p-top-about {
    padding: 80px 0;
  }
}
.p-top-about__row {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1200px) {
  .p-top-about__row {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .p-top-about__row {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.p-top-about__business-label {
  margin-top: 0;
  margin-bottom: 2.5rem;
  display: block;
}
.p-top-about__business-label img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .p-top-about__business-label img {
    height: 36px;
  }
}
.p-top-about__business-desc {
  margin-bottom: 3.5rem;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-top-about__business-desc p {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-top-about__business-desc {
    margin-bottom: 2.5rem;
  }
}
.p-top-about__business-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-bottom: 60px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-top-about__business-grid {
    gap: 2px;
    margin-bottom: 40px;
  }
}
.p-top-about__business-btn-area {
  text-align: left;
}
@media (max-width: 768px) {
  .p-top-about__business-btn-area {
    text-align: center;
  }
}

.c-business-card {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  perspective: 1000px;
  height: 100px;
}
@media (max-width: 768px) {
  .c-business-card {
    height: 70px;
  }
}
.c-business-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}
.c-business-card:hover .c-business-card__inner {
  transform: rotateX(180deg);
}
.c-business-card__front, .c-business-card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .c-business-card__front, .c-business-card__back {
    padding: 0 16px;
  }
}
.c-business-card__front {
  background-color: #fff;
  z-index: 2;
}
.c-business-card__back {
  background-color: #fff;
  color: #27B5B2;
  transform: rotateX(180deg);
  justify-content: center;
  overflow: hidden;
}
.c-business-card__back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/logo_circle.webp");
  background-repeat: no-repeat;
  background-size: 450px 450px;
  background-position: center -22px;
  opacity: 1;
}
@media (max-width: 768px) {
  .c-business-card__back::before {
    background-size: 320px 320px;
  }
}
.c-business-card__back-btn {
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding: 6px 16px;
  border: 1px solid #27B5B2;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #27B5B2;
  background-color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .c-business-card__back-btn {
    padding: 4px 10px;
    font-size: 0.625rem;
  }
}
.c-business-card--01 .c-business-card__back::before {
  background-position: center -22px;
}
@media (max-width: 768px) {
  .c-business-card--01 .c-business-card__back::before {
    background-position: center -17px;
  }
}
.c-business-card--02 .c-business-card__back::before {
  background-position: center -124px;
}
@media (max-width: 768px) {
  .c-business-card--02 .c-business-card__back::before {
    background-position: center -89px;
  }
}
.c-business-card--03 .c-business-card__back::before {
  background-position: center -226px;
}
@media (max-width: 768px) {
  .c-business-card--03 .c-business-card__back::before {
    background-position: center -161px;
  }
}
.c-business-card--04 .c-business-card__back::before {
  background-position: center -328px;
}
@media (max-width: 768px) {
  .c-business-card--04 .c-business-card__back::before {
    background-position: center -233px;
  }
}
.c-business-card__content {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .c-business-card__content {
    gap: 16px;
  }
}
.c-business-card__icon {
  width: 120px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .c-business-card__icon {
    width: 80px;
    height: 30px;
  }
}
.c-business-card__label {
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .c-business-card__label {
    font-size: 0.875rem;
  }
}

html {
  scroll-behavior: smooth;
}

.p-business-nav {
  padding: 60px 0 40px;
}
@media (max-width: 768px) {
  .p-business-nav {
    padding: 40px 0 20px;
  }
}
.p-business-nav__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-business-nav__header {
    margin-bottom: 40px;
  }
}
.p-business-nav__lead {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.2;
  color: #191B1F;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-business-nav__lead {
    font-size: 0.95rem;
    line-height: 2;
    text-align: left;
    display: inline-block;
  }
}
.p-business-nav__visual {
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
}
.p-business-nav__visual img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .p-business-nav__visual {
    margin-bottom: 60px;
  }
}
.p-business-nav__list {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .p-business-nav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    justify-items: center;
  }
}
.p-business-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}
.p-business-nav__item:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -40px;
  color: #E5E7EB;
  font-weight: 400;
  font-size: 1.5rem;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-business-nav__item:not(:last-child)::after {
    display: none;
  }
}
.p-business-nav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #191B1F;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: center;
}
.p-business-nav__link-logo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-business-nav__link-logo img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .p-business-nav__link-logo {
    height: 40px;
  }
  .p-business-nav__link-logo img {
    max-width: 120px;
  }
}
.p-business-nav__link-text {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-business-nav__link-text {
    font-size: 0.85rem;
  }
}
.p-business-nav__link-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #E5E7EB;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-business-nav__link-arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}
@media (max-width: 768px) {
  .p-business-nav__link-arrow {
    width: 30px;
    height: 30px;
  }
}
.p-business-nav__link:hover {
  color: #DAE001;
  transform: translateY(-4px);
}
.p-business-nav__link:hover .p-business-nav__link-arrow {
  background-color: #DAE001;
  border-color: #DAE001;
  color: #fff;
  transform: rotate(360deg);
}
.p-business-company--c1 .p-business-company__section-title::after {
  background-color: #897902;
}
.p-business-company--c1 .p-business-company__reason-label {
  color: #897902;
}
.p-business-company--c1 .p-business-company__desc-title {
  color: #897902;
}
.p-business-company--c1 .p-business-company__card {
  border-color: #897902;
  border-width: 2px;
}
.p-business-company--c1 .p-business-company__card .p-business-company__card-click-icon {
  background-color: #897902;
}
.p-business-company--c2 .p-business-company__section-title::after {
  background-color: #AC1731;
}
.p-business-company--c2 .p-business-company__reason-label {
  color: #AC1731;
}
.p-business-company--c2 .p-business-company__desc-title {
  color: #AC1731;
}
.p-business-company--c2 .p-business-company__card {
  border-color: #AC1731;
  border-width: 2px;
}
.p-business-company--c2 .p-business-company__card .p-business-company__card-click-icon {
  background-color: #AC1731;
}
.p-business-company--c3 .p-business-company__section-title::after {
  background-color: #009FE8;
}
.p-business-company--c3 .p-business-company__reason-label {
  color: #009FE8;
}
.p-business-company--c3 .p-business-company__desc-title {
  color: #009FE8;
}
.p-business-company--c3 .p-business-company__card {
  border-color: #009FE8;
  border-width: 2px;
}
.p-business-company--c3 .p-business-company__card .p-business-company__card-click-icon {
  background-color: #009FE8;
}
.p-business-company--c4 .p-business-company__section-title::after {
  background-color: #27B5B2;
}
.p-business-company--c4 .p-business-company__reason-label {
  color: #27B5B2;
}
.p-business-company--c4 .p-business-company__desc-title {
  color: #27B5B2;
}
.p-business-company--c4 .p-business-company__card {
  border-color: #27B5B2;
  border-width: 2px;
}
.p-business-company--c4 .p-business-company__card .p-business-company__card-click-icon {
  background-color: #27B5B2;
}
.p-business-company.l-section {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .p-business-company.l-section {
    padding-top: 64px;
    padding-bottom: 10px;
  }
}
.p-business-company + .p-business-company {
  padding-top: 20px;
}
@media (max-width: 768px) {
  .p-business-company + .p-business-company {
    padding-top: 10px;
  }
}
.p-business-company--last {
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .p-business-company--last {
    padding-bottom: 64px;
  }
}
.p-business-company__box-outer {
  position: relative;
}
.p-business-company__box {
  position: relative;
  background-color: #fff;
  padding: 80px 60px;
  border-radius: 40px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
@media (max-width: 768px) {
  .p-business-company__box {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
.p-business-company__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-business-company__header {
    margin-bottom: 60px;
  }
}
.p-business-company__logo {
  margin-bottom: 24px;
}
.p-business-company__logo img {
  height: 60px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-business-company__logo img {
    height: 40px;
  }
}
.p-business-company__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #191B1F;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-business-company__title {
    font-size: 1.5rem;
  }
}
.p-business-company__subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: #DAE001;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-business-company__subtitle {
    font-size: 0.9rem;
  }
}
.p-business-company__body {
  margin: 0 auto;
}
.p-business-company__desc {
  margin-bottom: 40px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
}
.p-business-company__desc-item {
  margin-bottom: 80px;
}
.p-business-company__desc-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-business-company__desc-item {
    margin-bottom: 60px;
  }
}
.p-business-company__desc p {
  margin-bottom: 1.5em;
}
.p-business-company__desc p:last-child {
  margin-bottom: 0;
}
.p-business-company__desc-title {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  color: #191B1F;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .p-business-company__desc {
    margin-bottom: 32px;
    font-size: 0.9375rem;
  }
}
.p-business-company__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 16px;
}
.p-business-company__section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #DAE001;
}
@media (max-width: 768px) {
  .p-business-company__section-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}
.p-business-company__reason {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-business-company__reason {
    margin-bottom: 60px;
  }
}
.p-business-company__reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .p-business-company__reason-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-business-company__reason-item {
  background-color: #f9f9f9;
  padding: 32px;
  border-radius: 20px;
  height: 100%;
}
.p-business-company__reason-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #DAE001;
  margin-bottom: 16px;
  display: block;
}
.p-business-company__reason-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.p-business-company__card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-business-company__card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .p-business-company__card-list {
    grid-template-columns: 1fr;
  }
}
.p-business-company__card-wrapper {
  height: 240px;
}
@media (max-width: 768px) {
  .p-business-company__card-wrapper {
    height: 200px;
  }
}
.p-business-company__card {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
.p-business-company__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.p-business-company__card:hover .p-business-company__card-click-icon {
  transform: translateY(-3px);
}
.p-business-company__card-number {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10rem;
  font-weight: 900;
  color: #ededed;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .p-business-company__card-number {
    font-size: 8rem;
  }
}
.p-business-company__card-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-business-company__card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.p-business-company__card-click {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-business-company__card-click-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.p-business-company__card-click-icon {
  width: 40px;
  height: 20px;
  background-color: #eee;
  border-radius: 40px 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  transition: transform 0.3s ease;
}
.p-business-company__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.p-business-company__modal.is-open {
  opacity: 1;
  visibility: visible;
}
.p-business-company__modal-content {
  background-color: #fff;
  width: 95%;
  max-width: 600px;
  padding: 60px 40px 40px;
  border-radius: 30px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  will-change: transform;
}
@media (max-width: 768px) {
  .p-business-company__modal-content {
    padding: 40px 24px 20px;
    border-radius: 20px;
  }
}
.p-business-company__modal.is-open .p-business-company__modal-content {
  transform: translateY(0);
}
.p-business-company__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 10;
}
.p-business-company__modal-close:hover {
  background-color: #eee;
  transform: rotate(90deg);
}
.p-business-company__modal-slider {
  display: flex;
  align-items: flex-start;
  overflow-x: hidden;
  scroll-snap-type: none;
  width: 100%;
  box-sizing: border-box;
  transition: height 0.3s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: scroll-position;
  scrollbar-width: none;
}
@media (max-width: 768px) {
  .p-business-company__modal-slider {
    overflow-x: hidden;
    overflow-y: hidden;
  }
}
.p-business-company__modal-slider::-webkit-scrollbar {
  display: none;
}
.p-business-company__modal-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  box-sizing: border-box;
  touch-action: pan-x;
}
.p-business-company__modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--accent-color, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 5;
}
@media (max-width: 768px) {
  .p-business-company__modal-nav {
    width: 36px;
    height: 36px;
  }
}
.p-business-company__modal-nav--prev {
  left: -25px;
}
@media (max-width: 768px) {
  .p-business-company__modal-nav--prev {
    left: -10px;
  }
}
.p-business-company__modal-nav--prev span {
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 4px;
}
.p-business-company__modal-nav--next {
  right: -25px;
}
@media (max-width: 768px) {
  .p-business-company__modal-nav--next {
    right: -10px;
  }
}
.p-business-company__modal-nav--next span {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-right: 4px;
}
.p-business-company__modal-nav:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.1);
}
.p-business-company__modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-business-company__modal-logo {
  width: 100%;
  max-width: 320px;
  height: 120px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-business-company__modal-logo {
    max-width: 200px;
    height: 80px;
    margin-bottom: 18px;
  }
}
.p-business-company__modal-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}
.p-business-company__modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #191B1F;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 768px) {
  .p-business-company__modal-title {
    font-size: 1.25rem;
  }
}
.p-business-company__modal-line {
  width: 40px;
  height: 2px;
  background-color: var(--accent-color, #DAE001);
  margin-bottom: 24px;
  pointer-events: none;
}
.p-business-company__modal-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #191B1F;
  white-space: pre-wrap;
  text-align: left;
  width: 100%;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
.p-business-company__modal-text strong {
  font-weight: 700;
  font-size: 1.25em;
  color: var(--accent-color);
}
.p-business-company__modal-btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  pointer-events: auto;
}
.p-business-company__modal-btn {
  background-color: var(--accent-color, #DAE001) !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.p-business-company__modal-btn .c-button__arrow {
  background-color: #fff !important;
}
.p-business-company__modal-btn .c-button__arrow::after {
  border-color: #fff !important;
}
.p-business-company__modal-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.p-business-company__modal-watermark {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}
.p-business-company__modal-watermark img {
  max-width: 120px;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  .p-business-company__modal-slider {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  .p-business-company__modal-slider * {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
  .p-business-company__modal-slider p,
  .p-business-company__modal-slider span,
  .p-business-company__modal-slider h2,
  .p-business-company__modal-slider h3,
  .p-business-company__modal-slider h4 {
    pointer-events: none;
  }
  .p-business-company__modal-slider a,
  .p-business-company__modal-slider button {
    pointer-events: auto;
  }
}
.p-requirements-list {
  position: relative;
  z-index: 5;
  padding: 80px 0 120px;
}
@media (max-width: 768px) {
  .p-requirements-list {
    padding: 60px 0 80px;
  }
}
.p-requirements-list__lead {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: left;
}
.p-requirements-list__lead p {
  font-size: 1.125rem;
  line-height: 2;
  color: #191B1F;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-requirements-list__lead p {
    font-size: 1rem;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .p-requirements-list__lead {
    margin-bottom: 48px;
  }
}
.p-requirements-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-requirements-list__grid {
    gap: 32px;
  }
}

.p-requirements-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
  color: #191B1F;
  height: 100%;
}
.p-requirements-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.p-requirements-card:hover .p-requirements-card__img {
  transform: scale(1.05);
}
.p-requirements-card:hover .c-button__arrow {
  transform: translateX(10px);
}
@media (max-width: 768px) {
  .p-requirements-card {
    flex-direction: column;
  }
}
.p-requirements-card__img-wrapper {
  flex: 0 0 40%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .p-requirements-card__img-wrapper {
    flex: none;
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.p-requirements-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (max-width: 768px) {
  .p-requirements-card__img {
    position: relative;
  }
}
.p-requirements-card__content {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
@media (max-width: 768px) {
  .p-requirements-card__content {
    padding: 32px 24px;
    justify-content: flex-start;
  }
}
.p-requirements-card__label {
  display: inline-block;
  color: #29b5b2;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.p-requirements-card__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .p-requirements-card__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}
.p-requirements-card__desc, .p-requirements-card__text {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 60px;
  color: #191B1F;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .p-requirements-card__desc, .p-requirements-card__text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
}
.p-requirements-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 32px;
  background-color: #27B5B2;
  border-radius: 100px;
  font-weight: 700;
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-top: auto;
  align-self: flex-end;
  transition: all 0.3s ease;
  opacity: 1 !important;
}
@media (max-width: 768px) {
  .p-requirements-card__btn {
    align-self: center;
    padding: 10px 28px;
  }
}
.p-requirements-card__btn:hover {
  background-color: #209391;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(39, 181, 178, 0.3);
}
.p-requirements-card__btn:hover .c-button__arrow {
  transform: translateX(4px);
}
.p-requirements-card__btn .c-button__arrow {
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: transform 0.3s ease;
}
.p-requirements-card__btn .c-button__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.p-top-requirements {
  padding: 160px 0;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.p-top-requirements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-top-requirements {
    padding: 40px 0 0;
  }
}
.p-top-requirements__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-top-requirements__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
    gap: 32px;
  }
}
.p-top-requirements__col--left {
  flex: 0 1 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-top-requirements__col--left {
    justify-content: flex-start;
    flex: none;
  }
}
.p-top-requirements__col--right {
  flex: 0 0 480px;
  width: 100%;
  display: flex;
}
@media (max-width: 768px) {
  .p-top-requirements__col--right {
    display: none;
  }
}
.p-top-requirements__btn-area {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .p-top-requirements__btn-area {
    text-align: center;
  }
}
.p-top-requirements__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 320px;
  min-height: 240px;
  overflow: visible;
  border-radius: 8px;
  box-shadow: none;
}
@media (max-width: 768px) {
  .p-top-requirements__image-wrapper {
    width: calc(100% + 40px);
    margin: 0 -20px;
    border-radius: 0;
    box-shadow: none;
    max-height: 300px;
  }
}
.p-top-requirements__slider {
  width: 100%;
  height: 380px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-requirements__slider {
    height: 300px;
  }
}
.p-top-requirements__slider-track {
  display: flex;
  height: 100%;
  width: 240%;
  animation: ticker 10s linear infinite;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-top-requirements__slider-track {
    width: 360%;
    animation-duration: 10s;
  }
}
.p-top-requirements__slider-track img {
  width: 16.6666%;
  height: 75%;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 32px;
}
@media (max-width: 768px) {
  .p-top-requirements__slider-track img {
    width: 16.6666%;
    margin-right: 12px;
    border-radius: 20px;
  }
}
.p-top-requirements__slider-track img:nth-child(even) {
  align-self: flex-end;
}
.p-top-requirements__title {
  margin-bottom: 2.5rem;
  display: block;
}
.p-top-requirements__title img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .p-top-requirements__title img {
    height: 36px;
  }
}
.p-top-requirements__desc {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-requirements-detail-table {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px;
  border-top: 1px solid #27B5B2;
}
@media (max-width: 768px) {
  .p-requirements-detail-table {
    margin-bottom: 48px;
  }
}
.p-requirements-detail-table__row {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #27B5B2;
}
@media (max-width: 768px) {
  .p-requirements-detail-table__row {
    flex-direction: column;
    padding: 24px 0;
  }
}
.p-requirements-detail-table__head {
  flex: 0 0 240px;
  padding-right: 60px;
  color: #27B5B2;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-requirements-detail-table__head {
    flex: none;
    padding-right: 0;
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
}
.p-requirements-detail-table__body {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #191B1F;
}
.p-requirements-detail-table__body p {
  margin-bottom: 1.5rem;
}
.p-requirements-detail-table__body p:last-child {
  margin-bottom: 0;
}
.p-requirements-detail-table__body .u-bold {
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.p-requirements-detail-table__body ul {
  list-style: none;
  padding: 0;
}
.p-requirements-detail-table__body ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5rem;
}
.p-requirements-detail-table__body ul li:last-child {
  margin-bottom: 0;
}
.p-requirements-detail-table__body ul li::before {
  content: "◎";
  position: absolute;
  left: 0;
  color: #191B1F;
}

.p-top-message {
  padding: 60px 0;
  background-color: #FFFFFF;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-message {
    padding: 40px 0;
  }
}
.p-top-message__inner {
  padding-left: 300px;
  padding-right: 60px;
  width: 100%;
  text-align: left;
}
@media (max-width: 768px) {
  .p-top-message__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.p-top-message__content {
  max-width: 900px;
}
.p-top-message__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: #191B1F;
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-top-message__title {
    margin-bottom: 32px;
  }
}
.p-top-message__text {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 2.2;
  color: #191B1F;
  margin-bottom: 64px;
  opacity: 0.9;
  text-align: left;
}
@media (max-width: 768px) {
  .p-top-message__text {
    margin-bottom: 48px;
  }
  .p-top-message__text br {
    display: none;
  }
}
.p-top-message__cta {
  display: flex;
  justify-content: flex-start;
}

.p-top-video-message {
  width: 100%;
  position: relative;
  background-color: #000000;
  z-index: 10;
  padding: 0 15px 160px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .p-top-video-message {
    padding: 0 15px 120px;
  }
}
@media (max-width: 768px) {
  .p-top-video-message {
    padding: 0 20px 80px;
  }
}
.p-top-video-message__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  left: auto;
  transform: none;
  aspect-ratio: 2.5/1;
  max-height: 700px;
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .p-top-video-message__container {
    aspect-ratio: 16/9;
    border-radius: 0;
  }
}
.p-top-video-message__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1;
}
.p-top-video-message__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.p-top-video-message__label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  padding: 0 15px;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-top-video-message__label {
    bottom: 24px;
    padding: 0 20px;
  }
}
.p-top-video-message__label img {
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  .p-top-video-message__label img {
    height: 36px;
  }
}
.p-top-video-message__center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.p-top-video-message__center-play svg {
  display: block;
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}
@media (max-width: 768px) {
  .p-top-video-message__center-play svg {
    width: 80px;
    height: 80px;
  }
}
.p-top-video-message__play-button {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.p-top-video-message__play-button.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 768px) {
  .p-top-video-message__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1 !important;
    pointer-events: none;
    width: 80px;
    height: 80px;
  }
}
.p-top-video-message__play-text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.1em;
}

.p-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.p-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.p-video-modal__inner {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
}
.p-video-modal__video {
  width: 100%;
  height: 100%;
  background-color: #000;
  outline: none;
}
.p-video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.p-video-modal__close::before, .p-video-modal__close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.p-video-modal__close::before {
  transform: rotate(45deg);
}
.p-video-modal__close::after {
  transform: rotate(-45deg);
}
.p-video-modal__close:hover::before {
  transform: rotate(45deg) scale(1.1);
}
.p-video-modal__close:hover::after {
  transform: rotate(-45deg) scale(1.1);
}

.p-top-event {
  padding: 160px 0;
  position: relative;
  color: #333;
  overflow: hidden;
  z-index: 5;
}
.p-top-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-top-event {
    padding: 80px 0;
  }
}
.p-top-event__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .p-top-event__inner {
    padding: 0 20px;
  }
}
.p-top-event__title {
  margin-bottom: 2.5rem;
  text-align: left;
}
@media (max-width: 768px) {
  .p-top-event__title {
    margin-bottom: 40px;
  }
}
.p-top-event__title img {
  height: 60px;
  width: auto;
  display: block;
  filter: brightness(0);
}
@media (max-width: 768px) {
  .p-top-event__title img {
    height: 36px;
  }
}
.p-top-event__desc, .p-top-event__text {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 60px;
  color: #191B1F;
}
@media (max-width: 768px) {
  .p-top-event__desc, .p-top-event__text {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}
.p-top-event__list {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .p-top-event__list {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .p-top-event__list.is-sp-limit-1 .p-top-event__item:nth-child(n+2) {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .p-top-event__list.is-sp-limit-2 .p-top-event__item:nth-child(n+3) {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .p-top-event__list.is-sp-limit-3 .p-top-event__item:nth-child(n+4) {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .p-top-event__list.is-sp-limit-4 .p-top-event__item:nth-child(n+5) {
    display: none !important;
  }
}
.p-top-event__item {
  flex: 0 0 calc(25% - 18px);
  width: calc(25% - 18px);
}
.p-top-event__item:nth-child(1) {
  transform: translateY(calc(0 * -30px));
}
.p-top-event__item:nth-child(2) {
  transform: translateY(calc(1 * -30px));
}
.p-top-event__item:nth-child(3) {
  transform: translateY(calc(2 * -30px));
}
.p-top-event__item:nth-child(4) {
  transform: translateY(calc(3 * -30px));
}
@media (max-width: 768px) {
  .p-top-event__item {
    flex: none;
    width: 100%;
    transform: none !important;
  }
  .p-top-event__item:has(.is-closed) {
    display: none;
  }
}
.p-top-event__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #333;
  height: 100%;
}
.p-top-event__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.p-top-event__card-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.p-top-event__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-event__card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .p-top-event__card-body {
    padding: 16px;
  }
}
.p-top-event__card-date {
  display: block;
  font-size: 0.8125rem;
  color: #999;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-top-event__card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-top-event__btn-area {
  text-align: center;
  margin-top: -60px;
  position: relative;
}
@media (max-width: 768px) {
  .p-top-event__btn-area {
    margin-top: 40px;
  }
}
.p-top-event__btn-area .c-button {
  min-width: 240px;
}

.p-event-list {
  padding: 80px 0 120px;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .p-event-list {
    padding: 60px 0 80px;
  }
}
.p-event-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .p-event-list__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.p-event-list .p-top-event__card {
  height: 100%;
  transform: none !important;
  position: relative;
  background: #fff;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  border: 1px solid #E5E7EB;
}
.p-event-list .p-top-event__card:hover .p-event-card__status {
  transform: translateY(-4px);
}

.p-event-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.p-event-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-event-card__image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.is-closed .p-event-card__image-wrapper::after {
  opacity: 1;
}
.p-event-card__image-wrapper.is-no-image {
  background-color: #f4f7f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-event-card__image-wrapper.is-no-image::before {
  content: "NO IMAGE";
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  color: #999;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}
.p-event-card__image-wrapper.is-no-image img {
  display: none;
}
.p-event-card__status {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid transparent;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease;
}
.p-event-card__status--open {
  color: #27B5B2;
  border-color: #27B5B2;
}
.p-event-card__status--closing {
  color: #e65c5c;
  border-color: #e65c5c;
}
.p-event-card__status--new {
  color: #27B5B2;
  border-color: #27B5B2;
}
.p-event-card__status--closed {
  color: #666;
  border-color: #666;
}
.p-event-card__body {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 768px) {
  .p-event-card__body {
    padding: 24px 20px;
  }
}
.p-event-card__date {
  font-size: 0.8125rem;
  color: #999;
  margin-bottom: 12px;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  display: block;
  font-weight: 700;
}
.p-event-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #191B1F;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-event-card__title {
    font-size: 1rem;
  }
}
.p-event-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  background-color: #27B5B2;
  padding: 10px 28px;
  border-radius: 999px;
  letter-spacing: 0.15em;
  margin-top: auto;
  align-self: center;
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-event-card__btn:hover {
  background-color: #1e8b89;
  transform: translateY(-2px);
}
.p-event-card__arrow {
  width: 20px;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: transform 0.3s ease;
}
.p-event-card__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.p-event-card:hover .p-event-card__arrow {
  transform: translateX(4px);
}

.p-event-detail {
  position: relative;
  z-index: 5;
}
.p-event-detail__header {
  max-width: 1040px;
  margin: 0 auto 40px;
}
.p-event-detail__header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-event-detail__header-meta {
    gap: 12px;
    margin-bottom: 12px;
  }
}
.p-event-detail__header-meta .p-event-card__status {
  position: static;
  padding: 4px 12px;
}
.p-event-detail__date {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 700;
  color: #999;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-event-detail__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  color: #191B1F;
}
.p-event-detail__image {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  aspect-ratio: 1040/564;
}
@media (max-width: 768px) {
  .p-event-detail__image {
    margin-bottom: 40px;
  }
}
.p-event-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-event-detail-content {
  padding: 80px 0;
}
.p-event-detail-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px;
  border-top: 1px solid #27B5B2;
}
@media (max-width: 768px) {
  .p-event-detail-table {
    margin-bottom: 48px;
  }
}
.p-event-detail-table__row {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #27B5B2;
}
@media (max-width: 768px) {
  .p-event-detail-table__row {
    flex-direction: column;
    padding: 24px 0;
  }
}
.p-event-detail-table__head {
  flex: 0 0 240px;
  padding-right: 60px;
  color: #27B5B2;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-event-detail-table__head {
    flex: none;
    padding-right: 0;
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
}
.p-event-detail-table__body {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #191B1F;
}
.p-event-detail-table__body p {
  margin-bottom: 1rem;
}
.p-event-detail-table__body p:last-child {
  margin-bottom: 0;
}
.p-event-detail-post-content {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #191B1F;
}
.p-event-detail-post-content h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #191B1F;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #27B5B2;
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-event-detail-post-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #191B1F;
  margin: 32px 0 16px;
  padding-left: 12px;
  border-left: 4px solid #DAE001;
}
.p-event-detail-post-content p {
  margin-bottom: 1.5rem;
}
.p-event-detail-post-content ul, .p-event-detail-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5em;
}
.p-event-detail-post-content ul li, .p-event-detail-post-content ol li {
  margin-bottom: 0.5rem;
}
.p-event-detail-post-content ul li:last-child, .p-event-detail-post-content ol li:last-child {
  margin-bottom: 0;
}
.p-event-detail-post-content figure,
.p-event-detail-post-content .wp-block-image,
.p-event-detail-post-content .wp-block-gallery,
.p-event-detail-post-content .wp-block-media-text__media {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}
.p-event-detail-post-content img {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 32px 0;
  background-color: #FFFFFF;
}
.p-event-detail-post-content figure img,
.p-event-detail-post-content .wp-block-image img,
.p-event-detail-post-content .wp-block-gallery img,
.p-event-detail-post-content .wp-block-media-text__media img {
  margin: 0;
}
.p-event-detail-post-content figure img,
.p-event-detail-post-content .wp-block-image img {
  background-color: transparent;
}
.p-event-detail__nav {
  display: flex;
  align-items: center;
  max-width: 1040px;
  margin: 80px auto 0;
  padding-top: 40px;
  border-top: 1px solid #E5E7EB;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-event-detail__nav {
    margin-top: 60px;
  }
}
.p-event-detail__nav-prev, .p-event-detail__nav-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-decoration: none;
  color: #191B1F;
  transition: color 0.3s ease;
}
.p-event-detail__nav-prev:hover, .p-event-detail__nav-next:hover {
  color: #27B5B2;
}
.p-event-detail__nav-prev {
  margin-right: auto;
  justify-content: flex-start;
}
.p-event-detail__nav-next {
  margin-left: auto;
  justify-content: flex-end;
}

.p-top-recruit-special {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #000;
}
@media (max-width: 768px) {
  .p-top-recruit-special {
    padding: 80px 0;
  }
}
.p-top-recruit-special__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-top-recruit-special__video-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.p-top-recruit-special__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-recruit-special__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .p-top-recruit-special__inner {
    padding: 0 20px;
  }
}
.p-top-recruit-special__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .p-top-recruit-special__header {
    margin-bottom: 40px;
  }
}
.p-top-recruit-special__title {
  margin-bottom: 2.5rem;
  display: inline-block;
}
.p-top-recruit-special__title img {
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .p-top-recruit-special__title img {
    height: 36px;
  }
}
.p-top-recruit-special__desc {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-top-recruit-special__desc {
    font-size: 1rem;
  }
}
.p-top-recruit-special__grid {
  position: relative;
  perspective: 1500px;
}
@media (min-width: 769px) {
  .p-top-recruit-special__grid .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    transform: none !important;
    transition-timing-function: linear !important;
  }
}
@media (max-width: 768px) {
  .p-top-recruit-special__grid {
    padding: 0 0 40px;
    overflow: hidden;
  }
}
.p-top-recruit-special__card {
  display: block;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
}
@media (min-width: 769px) {
  .p-top-recruit-special__card:nth-child(1) {
    transform: rotateY(12deg) scale(0.98);
  }
  .p-top-recruit-special__card:nth-child(2) {
    transform: scale(0.93);
  }
  .p-top-recruit-special__card:nth-child(3) {
    transform: rotateY(-12deg) scale(0.98);
  }
}
.p-top-recruit-special__card:hover {
  opacity: 1;
}
@media (min-width: 769px) {
  .p-top-recruit-special__card:hover {
    transform: rotateY(0) scale(1.05) !important;
    z-index: 10;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  }
}
.p-top-recruit-special__card:hover .p-top-recruit-special__card-img img {
  transform: scale(1.1);
}
.p-top-recruit-special__card:hover .p-top-recruit-special__card-img::after {
  background: rgba(0, 0, 0, 0);
}
.p-top-recruit-special__pagination {
  display: none;
}
@media (max-width: 768px) {
  .p-top-recruit-special__pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    position: relative !important;
    bottom: auto !important;
  }
  .p-top-recruit-special__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 !important;
  }
  .p-top-recruit-special__pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
  }
}
.p-top-recruit-special__card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-top-recruit-special__card-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  z-index: 2;
}
.p-top-recruit-special__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.p-top-recruit-special__card-body {
  display: none;
}
.p-top-recruit-special__card-title {
  display: none;
}

.p-culture {
  background-color: #f9f9e5;
}
.p-culture-systems {
  container-type: inline-size;
}
.p-culture-systems.l-section {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .p-culture-systems.l-section {
    padding-bottom: 10px;
  }
}
.p-culture-systems__header {
  text-align: center;
  margin-bottom: 60px;
}
.p-culture-systems__box-outer {
  position: relative;
}
.p-culture-systems__peek-img {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}
.p-culture-systems__peek-img--left {
  left: -150px;
}
@media (max-width: 1700px) {
  .p-culture-systems__peek-img--left {
    left: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
.p-culture-systems__peek-img--right {
  right: -150px;
  bottom: 400px;
}
@media (max-width: 1700px) {
  .p-culture-systems__peek-img--right {
    right: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
@media (max-width: 1600px) {
  .p-culture-systems__peek-img {
    display: none;
  }
}
.p-culture-systems__box {
  position: relative;
  flex: 1;
  background-color: #fff;
  padding: 80px 60px;
  border-radius: 32px;
}
@media (max-width: 768px) {
  .p-culture-systems__box {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
.p-culture-systems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .p-culture-systems__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-culture-systems__card-wrapper {
  perspective: 1000px;
  height: 240px;
}
@media (max-width: 768px) {
  .p-culture-systems__card-wrapper {
    height: 200px;
  }
}
.p-culture-systems__card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}
.p-culture-systems__card.is-flipped {
  transform: rotateX(180deg);
}
.p-culture-systems__card--c1 .p-culture-systems__card-front {
  border-color: #17BFAB;
}
.p-culture-systems__card--c1 .p-culture-systems__card-front .p-culture-systems__card-title {
  color: #17BFAB;
}
.p-culture-systems__card--c1 .p-culture-systems__card-front .p-culture-systems__card-click-icon {
  background-color: #17BFAB;
  color: #fff;
}
.p-culture-systems__card--c1 .p-culture-systems__card-back {
  background-color: #17BFAB;
}
.p-culture-systems__card--c2 .p-culture-systems__card-front {
  border-color: #2E236C;
}
.p-culture-systems__card--c2 .p-culture-systems__card-front .p-culture-systems__card-title {
  color: #2E236C;
}
.p-culture-systems__card--c2 .p-culture-systems__card-front .p-culture-systems__card-click-icon {
  background-color: #2E236C;
  color: #fff;
}
.p-culture-systems__card--c2 .p-culture-systems__card-back {
  background-color: #2E236C;
}
.p-culture-systems__card--c3 .p-culture-systems__card-front {
  border-color: #897902;
}
.p-culture-systems__card--c3 .p-culture-systems__card-front .p-culture-systems__card-title {
  color: #897902;
}
.p-culture-systems__card--c3 .p-culture-systems__card-front .p-culture-systems__card-click-icon {
  background-color: #897902;
  color: #fff;
}
.p-culture-systems__card--c3 .p-culture-systems__card-back {
  background-color: #897902;
}
.p-culture-systems__card--c4 .p-culture-systems__card-front {
  border-color: #D14D15;
}
.p-culture-systems__card--c4 .p-culture-systems__card-front .p-culture-systems__card-title {
  color: #D14D15;
}
.p-culture-systems__card--c4 .p-culture-systems__card-front .p-culture-systems__card-click-icon {
  background-color: #D14D15;
  color: #fff;
}
.p-culture-systems__card--c4 .p-culture-systems__card-back {
  background-color: #D14D15;
}
.p-culture-systems__card--c5 .p-culture-systems__card-front {
  border-color: #009fe8;
}
.p-culture-systems__card--c5 .p-culture-systems__card-front .p-culture-systems__card-title {
  color: #009fe8;
}
.p-culture-systems__card--c5 .p-culture-systems__card-front .p-culture-systems__card-click-icon {
  background-color: #009fe8;
  color: #fff;
}
.p-culture-systems__card--c5 .p-culture-systems__card-back {
  background-color: #009fe8;
}
.p-culture-systems__card--c6 .p-culture-systems__card-front {
  border-color: #ac1731;
}
.p-culture-systems__card--c6 .p-culture-systems__card-front .p-culture-systems__card-title {
  color: #ac1731;
}
.p-culture-systems__card--c6 .p-culture-systems__card-front .p-culture-systems__card-click-icon {
  background-color: #ac1731;
  color: #fff;
}
.p-culture-systems__card--c6 .p-culture-systems__card-back {
  background-color: #ac1731;
}
.p-culture-systems__card-front, .p-culture-systems__card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
@media (max-width: 768px) {
  .p-culture-systems__card-front, .p-culture-systems__card-back {
    padding: 20px;
  }
}
.p-culture-systems__card-front {
  background-color: #fff;
  border: 1px solid #E5E7EB;
}
.p-culture-systems__card-back {
  color: #fff;
  transform: rotateX(180deg);
}
.p-culture-systems__card-back * {
  color: #fff !important;
}
.p-culture-systems__card-title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .p-culture-systems__card-title {
    margin-bottom: 0.75rem;
  }
}
.p-culture-systems__card-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.8;
  text-align: center;
}
.p-culture-systems__card-click {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.p-culture-systems__card-click-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6B7280;
  margin-bottom: 4px;
  opacity: 0.6;
}
.p-culture-systems__card-click-icon {
  width: 60px;
  height: 30px;
  background-color: #DAE001;
  border-radius: 60px 60px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-top: 4px;
  transition: transform 0.3s ease;
  color: #fff;
}
.p-culture-systems__card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.p-culture-systems__card-icon--close {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.p-culture-training {
  container-type: inline-size;
}
.p-culture-training.l-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .p-culture-training.l-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.p-culture-training__box-outer {
  position: relative;
}
.p-culture-training__peek-img {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}
.p-culture-training__peek-img--img09 {
  left: -150px;
  bottom: 300px;
}
@media (max-width: 1700px) {
  .p-culture-training__peek-img--img09 {
    left: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
.p-culture-training__peek-img--img03 {
  right: -150px;
  bottom: 600px;
}
@media (max-width: 1700px) {
  .p-culture-training__peek-img--img03 {
    right: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
.p-culture-training__peek-img--img07 {
  right: -150px;
  bottom: 200px;
}
@media (max-width: 1700px) {
  .p-culture-training__peek-img--img07 {
    right: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
@media (max-width: 1600px) {
  .p-culture-training__peek-img {
    display: none;
  }
}
.p-culture-training__box {
  position: relative;
  background-color: #fff;
  padding: 80px 60px;
  border-radius: 32px;
}
@media (max-width: 768px) {
  .p-culture-training__box {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
.p-culture-training__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-culture-training__header {
    margin-bottom: 32px;
  }
}
.p-culture-training__lead {
  max-width: 800px;
  margin: 24px auto 0;
  line-height: 1.8;
  color: #6B7280;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.p-culture-training__table-wrapper {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .p-culture-training__table-wrapper {
    margin-top: 40px;
  }
}
.p-culture-training__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
.p-culture-training__table tr {
  border-bottom: 1px solid #E5E7EB;
}
.p-culture-training__table tr:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .p-culture-training__table tr {
    display: block;
  }
}
.p-culture-training__table th {
  width: 240px;
  background-color: #17BFAB;
  padding: 40px;
  text-align: left;
  vertical-align: middle;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-culture-training__table th {
    display: block;
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid rgba(218, 224, 1, 0.1);
  }
}
.p-culture-training__table td {
  padding: 40px;
}
@media (max-width: 768px) {
  .p-culture-training__table td {
    display: block;
    width: 100%;
    padding: 24px 20px;
  }
}
.p-culture-training__item:not(:last-child) {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px dashed #E5E7EB;
}
.p-culture-training__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #191B1F;
}
.p-culture-training__item-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #6B7280;
}
.p-culture-learning {
  background-color: #f9f9e5;
  container-type: inline-size;
}
.p-culture-learning.l-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .p-culture-learning.l-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.p-culture-learning__box-outer {
  position: relative;
}
.p-culture-learning__peek-img {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}
.p-culture-learning__peek-img--left {
  left: -150px;
  bottom: 200px;
}
@media (max-width: 1700px) {
  .p-culture-learning__peek-img--left {
    left: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
.p-culture-learning__peek-img--right {
  right: -150px;
}
@media (max-width: 1700px) {
  .p-culture-learning__peek-img--right {
    right: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
.p-culture-learning__peek-img--img03 {
  right: -150px;
  bottom: 600px;
}
@media (max-width: 1700px) {
  .p-culture-learning__peek-img--img03 {
    right: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
.p-culture-learning__peek-img--img09 {
  left: -150px;
  bottom: 300px;
}
@media (max-width: 1700px) {
  .p-culture-learning__peek-img--img09 {
    left: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
.p-culture-learning__peek-img--img07 {
  right: -150px;
  bottom: 200px;
}
@media (max-width: 1700px) {
  .p-culture-learning__peek-img--img07 {
    right: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
@media (max-width: 1600px) {
  .p-culture-learning__peek-img {
    display: none;
  }
}
.p-culture-learning__box {
  position: relative;
  background-color: #fff;
  padding: 80px 60px;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .p-culture-learning__box {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
.p-culture-learning__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-culture-learning__header {
    margin-bottom: 32px;
  }
}
.p-culture-learning__lead {
  max-width: 800px;
  margin: 24px auto 0;
  line-height: 2;
  color: #6B7280;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.p-culture-learning__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .p-culture-learning__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-culture-learning__item {
  position: relative;
  padding: 40px;
  background-color: #fff;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.p-culture-learning__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
@media (max-width: 768px) {
  .p-culture-learning__item {
    padding: 30px;
  }
}
.p-culture-learning__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.p-culture-learning__item-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #DAE001;
}
.p-culture-learning__item-text {
  line-height: 2;
  color: #6B7280;
  font-size: 1rem;
}
.p-culture-workstyles {
  container-type: inline-size;
}
.p-culture-workstyles.l-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .p-culture-workstyles.l-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.p-culture-workstyles__box-outer {
  position: relative;
}
.p-culture-workstyles__peek-img {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: auto;
  display: block;
  border-radius: 12px 12px 0 0;
}
.p-culture-workstyles__peek-img--img10 {
  left: -150px;
  bottom: 200px;
}
@media (max-width: 1700px) {
  .p-culture-workstyles__peek-img--img10 {
    left: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
.p-culture-workstyles__peek-img--img11 {
  right: -150px;
  bottom: 300px;
}
@media (max-width: 1700px) {
  .p-culture-workstyles__peek-img--img11 {
    right: calc((100cqw - 1400px) / 2 * -1 + 10px);
  }
}
@media (max-width: 1600px) {
  .p-culture-workstyles__peek-img {
    display: none;
  }
}
.p-culture-workstyles__box {
  position: relative;
  background-color: #fff;
  padding: 80px 60px;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .p-culture-workstyles__box {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
.p-culture-workstyles__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-culture-workstyles__header {
    margin-bottom: 32px;
  }
}
.p-culture-workstyles__lead {
  max-width: 800px;
  margin: 24px auto 0;
  line-height: 1.8;
  color: #6B7280;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.p-culture-workstyles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .p-culture-workstyles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.p-culture-workstyles__card-wrapper {
  perspective: 1000px;
  height: 280px;
}
@media (max-width: 768px) {
  .p-culture-workstyles__card-wrapper {
    height: 200px;
  }
}
.p-culture-workstyles__card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}
.p-culture-workstyles__card.is-flipped {
  transform: rotateX(180deg);
}
.p-culture-workstyles__card--w1 .p-culture-workstyles__card-front {
  border-color: #17BFAB;
}
.p-culture-workstyles__card--w1 .p-culture-workstyles__card-front .p-culture-workstyles__card-title {
  color: #17BFAB;
}
.p-culture-workstyles__card--w1 .p-culture-workstyles__card-front .p-culture-workstyles__card-click-icon {
  background-color: #17BFAB;
  color: #fff;
}
.p-culture-workstyles__card--w1 .p-culture-workstyles__card-back {
  background-color: #17BFAB;
}
.p-culture-workstyles__card--w2 .p-culture-workstyles__card-front {
  border-color: #E94E77;
}
.p-culture-workstyles__card--w2 .p-culture-workstyles__card-front .p-culture-workstyles__card-title {
  color: #E94E77;
}
.p-culture-workstyles__card--w2 .p-culture-workstyles__card-front .p-culture-workstyles__card-click-icon {
  background-color: #E94E77;
  color: #fff;
}
.p-culture-workstyles__card--w2 .p-culture-workstyles__card-back {
  background-color: #E94E77;
}
.p-culture-workstyles__card--w3 .p-culture-workstyles__card-front {
  border-color: #4A90E2;
}
.p-culture-workstyles__card--w3 .p-culture-workstyles__card-front .p-culture-workstyles__card-title {
  color: #4A90E2;
}
.p-culture-workstyles__card--w3 .p-culture-workstyles__card-front .p-culture-workstyles__card-click-icon {
  background-color: #4A90E2;
  color: #fff;
}
.p-culture-workstyles__card--w3 .p-culture-workstyles__card-back {
  background-color: #4A90E2;
}
.p-culture-workstyles__card--w4 .p-culture-workstyles__card-front {
  border-color: #F5A623;
}
.p-culture-workstyles__card--w4 .p-culture-workstyles__card-front .p-culture-workstyles__card-title {
  color: #F5A623;
}
.p-culture-workstyles__card--w4 .p-culture-workstyles__card-front .p-culture-workstyles__card-click-icon {
  background-color: #F5A623;
  color: #fff;
}
.p-culture-workstyles__card--w4 .p-culture-workstyles__card-back {
  background-color: #F5A623;
}
.p-culture-workstyles__card--w5 .p-culture-workstyles__card-front {
  border-color: #7ED321;
}
.p-culture-workstyles__card--w5 .p-culture-workstyles__card-front .p-culture-workstyles__card-title {
  color: #7ED321;
}
.p-culture-workstyles__card--w5 .p-culture-workstyles__card-front .p-culture-workstyles__card-click-icon {
  background-color: #7ED321;
  color: #fff;
}
.p-culture-workstyles__card--w5 .p-culture-workstyles__card-back {
  background-color: #7ED321;
}
.p-culture-workstyles__card--w6 .p-culture-workstyles__card-front {
  border-color: #9013FE;
}
.p-culture-workstyles__card--w6 .p-culture-workstyles__card-front .p-culture-workstyles__card-title {
  color: #9013FE;
}
.p-culture-workstyles__card--w6 .p-culture-workstyles__card-front .p-culture-workstyles__card-click-icon {
  background-color: #9013FE;
  color: #fff;
}
.p-culture-workstyles__card--w6 .p-culture-workstyles__card-back {
  background-color: #9013FE;
}
.p-culture-workstyles__card--w7 .p-culture-workstyles__card-front {
  border-color: #BD10E0;
}
.p-culture-workstyles__card--w7 .p-culture-workstyles__card-front .p-culture-workstyles__card-title {
  color: #BD10E0;
}
.p-culture-workstyles__card--w7 .p-culture-workstyles__card-front .p-culture-workstyles__card-click-icon {
  background-color: #BD10E0;
  color: #fff;
}
.p-culture-workstyles__card--w7 .p-culture-workstyles__card-back {
  background-color: #BD10E0;
}
.p-culture-workstyles__card--w8 .p-culture-workstyles__card-front {
  border-color: #50E3C2;
}
.p-culture-workstyles__card--w8 .p-culture-workstyles__card-front .p-culture-workstyles__card-title {
  color: #50E3C2;
}
.p-culture-workstyles__card--w8 .p-culture-workstyles__card-front .p-culture-workstyles__card-click-icon {
  background-color: #50E3C2;
  color: #fff;
}
.p-culture-workstyles__card--w8 .p-culture-workstyles__card-back {
  background-color: #50E3C2;
}
.p-culture-workstyles__card-front, .p-culture-workstyles__card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
@media (max-width: 768px) {
  .p-culture-workstyles__card-front, .p-culture-workstyles__card-back {
    padding: 20px;
  }
}
.p-culture-workstyles__card-front {
  background-color: #fff;
  border: 1px solid #E5E7EB;
}
.p-culture-workstyles__card-back {
  color: #fff;
  transform: rotateX(180deg);
}
.p-culture-workstyles__card-back * {
  color: #fff !important;
}
.p-culture-workstyles__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .p-culture-workstyles__card-title {
    font-size: 1rem;
  }
}
.p-culture-workstyles__card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
}
.p-culture-workstyles__card-click {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.p-culture-workstyles__card-click-text {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #6B7280;
  margin-bottom: 4px;
  opacity: 0.6;
}
.p-culture-workstyles__card-click-icon {
  width: 50px;
  height: 25px;
  background-color: #DAE001;
  border-radius: 50px 50px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.p-culture-workstyles__card-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.p-culture-workstyles__card-icon--close {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.p-culture-place.l-section {
  padding-top: 20px;
  padding-bottom: 160px;
}
@media (max-width: 768px) {
  .p-culture-place.l-section {
    padding-top: 10px;
    padding-bottom: 80px;
  }
}
.p-culture-place__box {
  background-color: #fff;
  padding: 80px 60px;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .p-culture-place__box {
    padding: 40px 20px;
    border-radius: 20px;
  }
}
.p-culture-place__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-culture-place__header {
    margin-bottom: 32px;
  }
}
.p-culture-place__lead {
  max-width: 800px;
  margin: 24px auto 0;
  line-height: 2;
  color: #6B7280;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.p-culture-place__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .p-culture-place__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-culture-place__item {
  position: relative;
  padding: 40px;
  background-color: #fff;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.p-culture-place__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
@media (max-width: 768px) {
  .p-culture-place__item {
    padding: 30px;
  }
}
.p-culture-place__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.p-culture-place__item-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #DAE001;
}
.p-culture-place__item-text {
  line-height: 2;
  color: #6B7280;
  font-size: 1rem;
}
.p-culture-welfare {
  background-color: #fff;
}
.p-culture-welfare__header {
  text-align: center;
  margin-bottom: 64px;
}
.p-culture-welfare__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .p-culture-welfare__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-culture-welfare__card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.p-culture-welfare__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.p-culture-welfare__icon {
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  display: block;
}
.p-culture-welfare__item-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.p-culture-welfare__item-text {
  color: #6B7280;
  line-height: 1.8;
  font-size: 0.9375rem;
}
.p-culture-office__inner {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 768px) {
  .p-culture-office__inner {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.p-culture-office__visual {
  flex: 1.2;
  position: relative;
  height: 500px;
}
@media (max-width: 768px) {
  .p-culture-office__visual {
    width: 100%;
    height: 350px;
  }
}
.p-culture-office__main-img {
  width: 80%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
.p-culture-office__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-culture-office__sub-img {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
@media (max-width: 768px) {
  .p-culture-office__sub-img {
    bottom: -20px;
    width: 60%;
  }
}
.p-culture-office__sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-culture-office__content {
  flex: 1;
}
.p-culture-office__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.p-culture-office__text {
  color: #6B7280;
  line-height: 2;
}

.c-section-title {
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #DAE001;
  margin-bottom: 0.5rem;
}

.c-section-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  margin: 0;
}

.l-section {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 64px 0;
  }
}

.p-story {
  background-color: #000;
  color: #fff;
}

.p-story-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: -2;
  overflow: hidden;
}
.p-story-bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-story-bg__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.c-page-hero--story {
  height: 100vh;
  min-height: 600px;
  background-color: transparent;
  overflow: visible;
}
.c-page-hero--story .c-page-hero__inner {
  text-align: left;
}
@media (max-width: 768px) {
  .c-page-hero--story {
    height: 80vh;
    min-height: 450px;
  }
}
.c-page-hero--story .c-page-hero__bg {
  display: none;
}

.p-story-hero__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.p-story-hero__image {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 100%;
}
@media (max-width: 768px) {
  .p-story-hero__image {
    max-width: 100%;
  }
}
.p-story-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-story-hero__image-bg {
  position: absolute;
  top: -350px;
  left: -300px;
  width: 2000px;
  max-width: none;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}
@media (max-width: 1024px) {
  .p-story-hero__image-bg {
    top: -200px;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-story-hero__image-bg {
    top: -100px;
    left: 0;
    width: 100%;
  }
}
.p-story-hero__image-bg img {
  width: 100%;
  height: auto;
  display: block;
}
.p-story-hero__desc {
  position: absolute;
  right: 0;
  bottom: -200px;
  z-index: 10;
  text-align: right;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .p-story-hero__desc {
    position: static;
    margin-top: 32px;
    text-align: right;
    font-size: 0.8125rem;
  }
}

.p-story {
  color: #fff;
}
.p-story__intro {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .p-story__intro {
    padding: 60px 0;
  }
}
.p-story__intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
}
@media (max-width: 768px) {
  .p-story__intro-text {
    font-size: 0.9375rem;
    text-align: left;
  }
}
.p-story__section {
  padding: 120px 0;
  background-color: transparent;
}
@media (max-width: 768px) {
  .p-story__section {
    padding: 60px 0;
  }
}
.p-story__section:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}
.p-story__section:nth-child(even) .p-story__grid {
  flex-direction: row-reverse;
}
.p-story__grid {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 768px) {
  .p-story__grid {
    flex-direction: column !important;
    gap: 40px;
  }
}
.p-story__image {
  flex: 0 0 35%;
  position: sticky;
  top: 120px;
}
@media (max-width: 768px) {
  .p-story__image {
    width: 100%;
    flex: none;
    position: static;
  }
}
.p-story__image-inner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
}
.p-story__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  transition: transform 0.8s ease;
}
.p-story__profile {
  text-align: center;
}
.p-story__profile .name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.p-story__profile .info {
  display: inline-block;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.p-story__content {
  flex: 1;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .p-story__content {
    width: 100%;
    padding-top: 0;
  }
}
.p-story .c-career-stairs {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 32px;
}
.p-story .c-career-stairs__step {
  width: 80px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 4px;
  text-align: center;
  line-height: 1.2;
}
.p-story .c-career-stairs__step--1 {
  height: 40px;
}
.p-story .c-career-stairs__step--2 {
  height: 70px;
}
.p-story .c-career-stairs__step--3 {
  height: 100px;
}
.p-story .c-career-stairs__step.is-active {
  background-color: #27B5B2;
  color: #000;
  box-shadow: 0 0 20px rgba(39, 181, 178, 0.4);
}
.p-story__step-img {
  width: 100%;
  margin-bottom: 64px;
}
.p-story__step-img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-story__milestone {
  margin-bottom: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.p-story__milestone:first-child {
  border-top: none;
  padding-top: 0;
}
.p-story__milestone:last-child {
  margin-bottom: 0;
}
.p-story__milestone-header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-story__milestone-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .p-story__milestone-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.p-story__milestone-meta .year {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 40px;
  letter-spacing: 0.1em;
}
.p-story__milestone-meta .dept {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
}
.p-story__heading {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .p-story__heading {
    font-size: 1.25rem;
  }
}
.p-story__text {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  text-align: justify;
}
@media (max-width: 768px) {
  .p-story__text {
    font-size: 0.9375rem;
  }
}
.p-story__intro {
  padding: 100px 0;
  text-align: center;
}
.p-story__intro-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .p-story__intro-title {
    margin-bottom: 40px;
  }
}
.p-story__nav {
  margin-top: 80px;
}
.p-story__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1280px;
}
@media (max-width: 1024px) {
  .p-story__nav-list {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }
}
.p-story__nav-item {
  width: 100%;
  position: relative;
  padding: 0 80px 0 0;
}
@media (max-width: 1200px) {
  .p-story__nav-item {
    padding: 0 40px 0 0;
  }
}
.p-story__nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1024px) {
  .p-story__nav-item::after {
    display: none;
  }
}
.p-story__nav-item:last-child::after {
  display: none;
}
@media (max-width: 768px) {
  .p-story__nav-item {
    padding: 0;
  }
}
.p-story__nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  text-align: left;
  transition: opacity 0.3s ease;
}
.p-story__nav-link:hover {
  opacity: 0.8;
}
.p-story__nav-link:hover .thumb img {
  transform: scale(1.05);
}
.p-story__nav-link .thumb {
  width: 120px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-story__nav-link .thumb {
    width: 90px;
    height: 90px;
  }
}
.p-story__nav-link .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.p-story__nav-link .info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p-story__nav-link .info .role {
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-story__nav-link .info .role {
    font-size: 0.8125rem;
    white-space: normal;
  }
}
.p-story__nav-link .info .year {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-story__nav-link .info .year {
    font-size: 0.8125rem;
    white-space: normal;
  }
}
.p-story__nav-link .info .name {
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  margin-top: 2px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-story__nav-link .info .name {
    font-size: 1.375rem;
    white-space: normal;
  }
}
.p-story__nav-link .arrow {
  margin-left: auto;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-story__nav-link .arrow {
    width: 10px;
    height: 10px;
  }
}
.p-story__nav-link:hover {
  opacity: 0.8;
}
.p-story__nav-link:hover .thumb img {
  transform: scale(1.05);
}
.p-story__nav-link:hover .arrow {
  transform: rotate(45deg) translate(4px, 4px);
}
.p-story__btn-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.p-story__btn-wrapper .c-button {
  min-width: 240px;
}

.p-blog-list {
  padding: 80px 0 120px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .p-blog-list {
    padding: 60px 0 80px;
  }
}
.p-blog-list__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-blog-list__container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .p-blog-list__container {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.p-blog-list__main {
  flex: 1;
  min-width: 0;
}
.p-blog-list__sidebar {
  width: 280px;
  position: sticky;
  top: 120px;
}
@media (max-width: 1024px) {
  .p-blog-list__sidebar {
    width: 100%;
    position: static;
  }
}
.p-blog-list__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1024px) {
  .p-blog-list__grid {
    gap: 24px;
  }
}

.p-blog-sidebar__title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #27B5B2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-blog-sidebar__title .u-ff-en {
  color: #27B5B2;
  letter-spacing: 0.1em;
}
.p-blog-sidebar__title-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B7280;
}
.p-blog-sidebar__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1024px) {
  .p-blog-sidebar__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}
.p-blog-sidebar__link {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #6B7280;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.p-blog-sidebar__link:hover {
  background: #eee;
  color: #27B5B2;
}
.p-blog-sidebar__link.is-active {
  background: #27B5B2;
  color: #fff;
  border-color: #27B5B2;
}
@media (max-width: 1024px) {
  .p-blog-sidebar__link {
    font-size: 0.8125rem;
    padding: 8px 16px;
  }
}

.p-blog-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E5E7EB;
  min-height: 180px;
  height: auto;
}
.p-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.p-blog-card:hover .p-blog-card__image img {
  transform: scale(1.05);
}
.p-blog-card:hover .p-blog-card__arrow {
  transform: translateX(4px);
}
@media (max-width: 767px) {
  .p-blog-card {
    flex-direction: column;
    height: auto;
  }
}
.p-blog-card__image {
  flex: 0 0 280px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .p-blog-card__image {
    flex: none;
    aspect-ratio: 16/9;
  }
}
.p-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-blog-card__body {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-blog-card__body {
    padding: 20px;
  }
}
.p-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.p-blog-card__date {
  font-size: 0.875rem;
  color: #6B7280;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
}
.p-blog-card__author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #191B1F;
  position: relative;
  padding-left: 18px;
  display: flex;
  align-items: center;
}
.p-blog-card__author::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.p-blog-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #27B5B2;
  background-color: #fff;
  border: 1px solid #27B5B2;
  padding: 2px 10px;
  border-radius: 4px;
}
.p-blog-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #191B1F;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-blog-card__title {
    font-size: 1.125rem;
  }
}
.p-blog-card__excerpt {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-blog-card__excerpt {
    display: none;
  }
}
.p-blog-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}
.p-blog-card__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 900;
  color: #27B5B2;
  letter-spacing: 0.1em;
}
.p-blog-card__arrow {
  width: 20px;
  height: 1px;
  background-color: #27B5B2;
  position: relative;
  transition: transform 0.3s ease;
}
.p-blog-card__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #27B5B2;
  border-right: 1px solid #27B5B2;
  transform: translateY(-50%) rotate(45deg);
}

.p-blog-detail-content {
  padding: 80px 0;
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .p-blog-detail-content {
    padding: 60px 0;
  }
}

.p-blog-detail__header {
  max-width: 1040px;
  margin: 0 auto 40px;
}
@media (max-width: 1024px) {
  .p-blog-detail__header {
    margin-bottom: 32px;
  }
}
.p-blog-detail__header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .p-blog-detail__header-meta {
    gap: 12px;
    margin-bottom: 12px;
  }
}
.p-blog-detail__date {
  font-size: 1rem;
  font-weight: 700;
  color: #999;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.p-blog-detail__author {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #27B5B2;
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
}
.p-blog-detail__author::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2339C5BB' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.p-blog-detail__category {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #27B5B2;
  background-color: #fff;
  border: 1px solid #27B5B2;
  padding: 4px 12px;
  border-radius: 4px;
}
.p-blog-detail__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #191B1F;
}
@media (max-width: 1024px) {
  .p-blog-detail__title {
    font-size: 1.75rem;
  }
}
.p-blog-detail__image {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  background-color: #FFFFFF;
}
@media (max-width: 1024px) {
  .p-blog-detail__image {
    margin-bottom: 40px;
  }
}
.p-blog-detail__image img {
  width: 100%;
  height: auto;
  display: block;
  background-color: #FFFFFF;
}
.p-blog-detail-post-content {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 2;
  color: #191B1F;
}
@media (max-width: 1024px) {
  .p-blog-detail-post-content {
    font-size: 1rem;
  }
}
.p-blog-detail-post-content p {
  margin-bottom: 1.5rem;
}
.p-blog-detail-post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #191B1F;
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #27B5B2;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1024px) {
  .p-blog-detail-post-content h3 {
    font-size: 1.25rem;
    margin: 32px 0 16px;
  }
}
.p-blog-detail-post-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #191B1F;
  margin: 32px 0 16px;
  padding-left: 12px;
  border-left: 4px solid #DAE001;
}
.p-blog-detail-post-content ul,
.p-blog-detail-post-content ol {
  margin-bottom: 2em;
  padding-left: 1.5em;
}
.p-blog-detail-post-content ul li,
.p-blog-detail-post-content ol li {
  margin-bottom: 0.5em;
}
.p-blog-detail-post-content ul li:last-child,
.p-blog-detail-post-content ol li:last-child {
  margin-bottom: 0;
}
.p-blog-detail-post-content ul li {
  list-style-type: disc;
}
.p-blog-detail-post-content ol li {
  list-style-type: decimal;
}
.p-blog-detail-post-content blockquote {
  margin: 3em 0;
  padding: 24px 32px;
  background: #f8f9fa;
  border-left: 4px solid #27B5B2;
  font-style: italic;
  position: relative;
}
@media (max-width: 1024px) {
  .p-blog-detail-post-content blockquote {
    padding: 20px;
    margin: 2em 0;
  }
}
.p-blog-detail-post-content blockquote p {
  margin-bottom: 0;
  color: #666;
}
.p-blog-detail-post-content table {
  width: 100%;
  margin: 3em 0;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
@media (max-width: 1024px) {
  .p-blog-detail-post-content table {
    margin: 2em 0;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.p-blog-detail-post-content table th,
.p-blog-detail-post-content table td {
  padding: 16px;
  border: 1px solid #E5E7EB;
  text-align: left;
}
.p-blog-detail-post-content table th {
  background-color: #f8f9fa;
  font-weight: 700;
  color: #27B5B2;
}
.p-blog-detail-post-content figure,
.p-blog-detail-post-content .wp-block-image,
.p-blog-detail-post-content .wp-block-gallery,
.p-blog-detail-post-content .wp-block-media-text__media {
  position: relative;
  z-index: 1;
  isolation: isolate;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  margin: 3em 0;
}
@media (max-width: 1024px) {
  .p-blog-detail-post-content figure,
  .p-blog-detail-post-content .wp-block-image,
  .p-blog-detail-post-content .wp-block-gallery,
  .p-blog-detail-post-content .wp-block-media-text__media {
    margin: 2em 0;
  }
}
.p-blog-detail-post-content figure img,
.p-blog-detail-post-content .wp-block-image img,
.p-blog-detail-post-content .wp-block-gallery img,
.p-blog-detail-post-content .wp-block-media-text__media img {
  margin: 0;
  background-color: transparent;
}
.p-blog-detail-post-content figure figcaption,
.p-blog-detail-post-content .wp-block-image figcaption,
.p-blog-detail-post-content .wp-block-gallery figcaption,
.p-blog-detail-post-content .wp-block-media-text__media figcaption {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #999;
  text-align: center;
  background-color: #FFFFFF;
}
.p-blog-detail-post-content img {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 32px 0;
  background-color: #FFFFFF;
}
.p-blog-detail-post-content figure img,
.p-blog-detail-post-content .wp-block-image img,
.p-blog-detail-post-content .wp-block-gallery img,
.p-blog-detail-post-content .wp-block-media-text__media img {
  margin: 0;
}
.p-blog-detail-post-content figure img,
.p-blog-detail-post-content .wp-block-image img {
  background-color: transparent;
}
.p-blog-detail-post-content hr {
  margin: 4em 0;
  border: none;
  border-top: 1px solid #E5E7EB;
}
@media (max-width: 1024px) {
  .p-blog-detail-post-content hr {
    margin: 3em 0;
  }
}
.p-blog-detail-post-content a {
  color: #27B5B2;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-blog-detail-post-content a:hover {
  opacity: 0.7;
}
.p-blog-detail__btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .p-blog-detail__btn-wrap {
    margin-top: 60px;
  }
}
.p-blog-detail__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1040px;
  margin: 80px auto 0;
  padding-top: 40px;
  border-top: 1px solid #E5E7EB;
  gap: 20px;
}
@media (max-width: 1024px) {
  .p-blog-detail__nav {
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 12px;
  }
}
.p-blog-detail__nav-item {
  flex: 1;
  max-width: 33.333%;
}
.p-blog-detail__nav-item.is-prev {
  text-align: left;
}
.p-blog-detail__nav-item.is-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .p-blog-detail__nav-item.is-list {
    order: 3;
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }
}
.p-blog-detail__nav-item.is-list .c-button {
  min-width: 180px;
  padding: 10px 24px;
  font-size: 0.8125rem;
}
@media (max-width: 1024px) {
  .p-blog-detail__nav-item.is-list .c-button {
    min-width: 200px;
  }
}
.p-blog-detail__nav-item.is-next {
  text-align: right;
}
.p-blog-detail__nav-item.is-next .p-blog-detail__nav-label {
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .p-blog-detail__nav-item {
    max-width: 48%;
  }
}
.p-blog-detail__nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #191B1F;
  transition: color 0.3s ease;
}
.p-blog-detail__nav-link:hover {
  color: #27B5B2;
}
.p-blog-detail__nav-link:hover .p-blog-detail__nav-arrow {
  transform: translateX(-4px);
}
.p-blog-detail__nav-link:hover.is-next .p-blog-detail__nav-arrow {
  transform: translateX(4px);
}
.p-blog-detail__nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1024px) {
  .p-blog-detail__nav-label {
    margin-bottom: 0;
    font-size: 0.6875rem;
  }
}
.p-blog-detail__nav-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .p-blog-detail__nav-title {
    display: none;
  }
}
.p-blog-detail__nav-arrow {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
.p-blog-detail-related {
  position: relative;
  z-index: 5;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .p-blog-detail-related {
    padding: 60px 0;
  }
}
.p-blog-detail-related__header {
  margin-bottom: 40px;
  text-align: center;
}
.p-blog-detail-related__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}
.p-blog-detail-related__grid .p-blog-card {
  background: #fff;
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
  border: 1px solid #E5E7EB;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
@media (min-width: 768px) {
  .p-blog-detail-related__grid .p-blog-card {
    min-height: 200px !important;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .p-blog-detail-related__grid .p-blog-card {
    height: auto !important;
  }
}
.p-blog-detail-related__grid .p-blog-card__image {
  background-color: #FFFFFF;
}
.p-blog-detail-related__grid .p-blog-card__no-image {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 700;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  background-color: #e8e8e8;
}
.p-blog-detail-related__grid .p-blog-card__body {
  justify-content: flex-start !important;
  background-color: #fff;
}
.p-blog-detail-related__grid .p-blog-card__title {
  -webkit-line-clamp: none !important;
  height: auto !important;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .p-blog-detail-related__grid .p-blog-card__title {
    margin-bottom: 16px !important;
  }
}
.p-blog-detail-related__grid .p-blog-card__footer {
  margin-top: auto !important;
}
@media (max-width: 767px) {
  .p-blog-detail-related__grid {
    gap: 20px;
  }
}

.p-form {
  max-width: 900px;
  margin: 0 auto;
}
.p-form__intro {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1.0625rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-form__intro {
    margin-bottom: 40px;
    text-align: left;
    font-size: 0.9375rem;
  }
}
.p-form__list {
  width: 100%;
}
.p-form__item {
  display: flex;
  border-bottom: 1px solid #E5E7EB;
}
.p-form__item:first-child {
  border-top: 1px solid #E5E7EB;
}
@media (max-width: 768px) {
  .p-form__item {
    display: block;
    padding: 24px 0;
  }
}
.p-form__head {
  width: 30%;
  padding: 32px 20px;
  background-color: #fcfcfc;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .p-form__head {
    width: 100%;
    padding: 0 0 12px;
    background-color: transparent;
    display: block;
  }
}
.p-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9375rem;
}
.p-form__label .c-tag-required {
  font-size: 0.6875rem;
  background-color: #e74c3c;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 500;
}
.p-form__data {
  width: 70%;
  padding: 32px 20px;
  margin: 0;
}
@media (max-width: 768px) {
  .p-form__data {
    width: 100%;
    padding: 0;
  }
}
.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form select,
.p-form textarea {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}
@media (max-width: 768px) {
  .p-form input[type=text],
  .p-form input[type=email],
  .p-form input[type=tel],
  .p-form select,
  .p-form textarea {
    font-size: 0.9375rem;
    padding: 12px 14px;
  }
}
.p-form input[type=text]:focus,
.p-form input[type=email]:focus,
.p-form input[type=tel]:focus,
.p-form select:focus,
.p-form textarea:focus {
  outline: none;
  border-color: #27B5B2;
  box-shadow: 0 0 0 4px rgba(39, 181, 178, 0.08);
  background-color: #fff;
}
.p-form input[type=text]::placeholder,
.p-form input[type=email]::placeholder,
.p-form input[type=tel]::placeholder,
.p-form select::placeholder,
.p-form textarea::placeholder {
  color: #bbb;
}
.p-form textarea {
  height: 200px;
  resize: vertical;
}
.p-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  appearance: none;
}
.p-form__radio-group {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .p-form__radio-group {
    gap: 20px;
  }
}
.p-form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
}
.p-form__radio input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}
.p-form__privacy {
  margin: 60px 0 40px;
  text-align: center;
}
.p-form__privacy-box {
  max-width: 600px;
  height: 150px;
  margin: 24px auto;
  padding: 20px;
  border: 1px solid #E5E7EB;
  overflow-y: auto;
  background-color: #f8f8f8;
  font-size: 0.8125rem;
  line-height: 1.6;
  text-align: left;
}
.p-form__privacy-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9375rem;
}
.p-form__privacy-check input {
  width: 18px;
  height: 18px;
}
.p-form__submit {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.p-form__submit .c-button {
  min-width: 280px;
  border: none;
  cursor: pointer;
}
.p-form__submit .c-button--back {
  background-color: #999;
}
.p-form__submit .c-button--back::after {
  display: none;
}
@media (max-width: 768px) {
  .p-form__submit {
    flex-direction: column;
  }
  .p-form__submit .c-button {
    width: 100%;
    min-width: 0;
  }
}
.p-form__confirm {
  display: none;
}
.p-form__confirm.is-active {
  display: block;
}
.p-form__confirm .p-form__data {
  font-weight: 500;
  line-height: 1.6;
  white-space: pre-wrap;
}
.p-form.is-confirm .p-form__input-view {
  display: none;
}
.p-form.is-confirm .p-form__confirm {
  display: block;
}

.p-thanks-btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.p-top-cta {
  padding: 160px 0;
  position: relative;
  z-index: 5;
}
.p-top-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -1;
}
@media (max-width: 768px) {
  .p-top-cta {
    padding: 80px 0;
  }
}
.p-top-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .p-top-cta__inner {
    padding: 0 20px;
  }
}
.p-top-cta__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .p-top-cta__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-top-cta__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-cta__card {
    padding: 60px 20px;
  }
}
.p-top-cta__card--requirements {
  background-color: #29b5b2;
  color: #fff;
}
.p-top-cta__card--contact {
  background-color: #DAE001;
  color: #333;
}
.p-top-cta__card::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background-image: url("../img/top/iris.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-top-cta__card::after {
    width: 200px;
    height: 200px;
  }
}
.p-top-cta__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.p-top-cta__card:hover .c-button__arrow {
  transform: translateX(10px);
}
.p-top-cta__card-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.8;
  position: relative;
  z-index: 5;
}
.p-top-cta__card-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  color: inherit;
}
@media (max-width: 768px) {
  .p-top-cta__card-title {
    font-size: 1.5rem;
  }
}
.p-top-cta__card--requirements .p-top-cta__card-btn {
  background-color: #fff;
  color: #29b5b2;
}
.p-top-cta__card--contact .p-top-cta__card-btn {
  background-color: #333;
  color: #DAE001;
}

.p-related {
  padding-top: 100px !important;
  background-color: transparent;
  position: relative;
  z-index: 5;
}
.p-related__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-related__header {
    margin-bottom: 40px;
  }
}
.p-related__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-related__list {
    gap: 12px;
  }
}
.p-related__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(25, 27, 31, 0.05);
}
@media (max-width: 768px) {
  .p-related__item {
    padding: 18px 20px;
  }
}
.p-related__item:hover {
  background-color: #f9f9f9;
  transform: translateX(4px);
}
.p-related__item:hover .p-related__item-title {
  color: #DAE001;
}
.p-related__item:hover .c-button__arrow {
  transform: translateX(4px);
}
.p-related__item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #191B1F;
  transition: color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 4px 0;
}
@media (max-width: 768px) {
  .p-related__item-title {
    font-size: 1rem;
  }
}
.p-related__item-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #191B1F;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-related__item-btn {
    font-size: 0.75rem;
  }
}
.p-related__item-btn .c-button__arrow {
  width: 24px;
  height: 1px;
  background-color: currentColor;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-related__item-btn .c-button__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.p-404-content {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
}
@media (max-width: 768px) {
  .p-404-content {
    padding: 80px 0;
  }
}

.p-404__number {
  font-size: 10rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #f0f0f0;
  margin-bottom: -40px;
  letter-spacing: -0.05em;
}
@media (max-width: 768px) {
  .p-404__number {
    font-size: 6rem;
    margin-bottom: -20px;
  }
}
.p-404__title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .p-404__title {
    font-size: 1.75rem;
  }
}
.p-404__desc {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .p-404__desc {
    font-size: 0.9375rem;
    margin-bottom: 40px;
  }
}
.p-404__btn {
  display: flex;
  justify-content: center;
}

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