@keyframes arrow-fly-through {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(150%);
    opacity: 0;
  }
  55% {
    transform: translateX(-150%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes poyon {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(0.92);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes poyon-soft {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.08);
  }
  70% {
    transform: scale(0.96);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes poyon-in {
  0% {
    opacity: 0;
    scale: 0.85;
  }
  60% {
    opacity: 1;
    scale: 1.05;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.js-reveal {
  opacity: 0;
  transition: opacity 0.7s ease-out, translate 0.7s ease-out, scale 0.7s ease-out;
}
.js-reveal[data-reveal=fade-up] {
  translate: 0 40px;
}
.js-reveal[data-reveal=poyon-in] {
  scale: 0.85;
}
.js-reveal.is-in-view {
  opacity: 1;
  translate: none;
  scale: none;
}
.js-reveal[data-reveal=poyon-in].is-in-view {
  animation: poyon-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.js-reveal-stagger > * {
  opacity: 0;
  transition: opacity 0.6s ease-out, translate 0.6s ease-out, scale 0.6s ease-out;
}

.js-reveal-stagger[data-reveal=fade-up] > * {
  translate: 0 30px;
}

.js-reveal-stagger[data-reveal=poyon-in] > * {
  scale: 0.9;
}

.js-reveal-stagger.is-in-view > * {
  opacity: 1;
  translate: none;
  scale: none;
}

.js-reveal-stagger[data-reveal=poyon-in].is-in-view > * {
  animation: poyon-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.js-reveal-stagger.is-in-view > *:nth-child(1) {
  transition-delay: 0s;
  animation-delay: 0s;
}

.js-reveal-stagger.is-in-view > *:nth-child(2) {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.js-reveal-stagger.is-in-view > *:nth-child(3) {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.js-reveal-stagger.is-in-view > *:nth-child(4) {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.js-reveal-stagger.is-in-view > *:nth-child(5) {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.js-reveal-stagger.is-in-view > *:nth-child(6) {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.js-reveal.is-in-view-instant,
.js-reveal-stagger.is-in-view-instant > * {
  opacity: 1;
  translate: none;
  scale: none;
  animation: none;
  transition: none;
}

.js-reveal.is-revealed,
.js-reveal-stagger.is-revealed > * {
  opacity: 1;
  translate: none;
  scale: none;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal-stagger > * {
    opacity: 1 !important;
    translate: none !important;
    scale: none !important;
    animation: none !important;
    transition: none !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: calc(40px + env(safe-area-inset-top)) calc(40px + env(safe-area-inset-right)) calc(40px + env(safe-area-inset-bottom)) calc(40px + env(safe-area-inset-left));
  position: relative;
  overflow-anchor: none;
  overflow-x: clip;
  font-family: "M PLUS 1p", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #222222;
  background-color: #fafaf8;
  line-height: 1.6;
}

.frame {
  pointer-events: none;
  z-index: 100;
}
.frame--fixed {
  position: fixed;
  top: env(safe-area-inset-top);
  left: env(safe-area-inset-left);
  right: env(safe-area-inset-right);
  height: 40px;
  background-color: #00a37f;
}
.frame--end {
  position: absolute;
  left: env(safe-area-inset-left);
  right: env(safe-area-inset-right);
  bottom: env(safe-area-inset-bottom);
  height: 40px;
  background-color: #008064;
}

.frame-sides {
  position: fixed;
  top: env(safe-area-inset-top);
  left: env(safe-area-inset-left);
  right: env(safe-area-inset-right);
  height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  z-index: 99;
  pointer-events: none;
}
.frame-sides__strip {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background-image: linear-gradient(to bottom, #00a37f, #008064);
}
.frame-sides__strip--left {
  left: 0;
}
.frame-sides__strip--right {
  right: 0;
}

.frame__corner {
  position: absolute;
  width: 40px;
  height: 40px;
}
.frame__corner--tl {
  top: 40px;
  left: 40px;
  background-color: #00a37f;
  -webkit-mask: radial-gradient(circle at 100% 100%, transparent 39.5px, #000 40.5px);
  mask: radial-gradient(circle at 100% 100%, transparent 39.5px, #000 40.5px);
}
.frame__corner--tr {
  top: 40px;
  right: 40px;
  background-color: #00a37f;
  -webkit-mask: radial-gradient(circle at 0% 100%, transparent 39.5px, #000 40.5px);
  mask: radial-gradient(circle at 0% 100%, transparent 39.5px, #000 40.5px);
}
.frame__corner--bl {
  bottom: 100%;
  left: 40px;
  background-color: #008064;
  -webkit-mask: radial-gradient(circle at 100% 0%, transparent 39.5px, #000 40.5px);
  mask: radial-gradient(circle at 100% 0%, transparent 39.5px, #000 40.5px);
}
.frame__corner--br {
  bottom: 100%;
  right: 40px;
  background-color: #008064;
  -webkit-mask: radial-gradient(circle at 0% 0%, transparent 39.5px, #000 40.5px);
  mask: radial-gradient(circle at 0% 0%, transparent 39.5px, #000 40.5px);
}

.header {
  position: relative;
  z-index: 95;
  padding: 2rem 0 0;
}
.header__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.header__tagline {
  margin: 0;
  padding: 0.6em 2.2em;
  border-radius: 9999px;
  background: linear-gradient(to right, #00a37f, #008064);
  color: #fff;
  font-size: 1.075rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  white-space: nowrap;
}
.header__title {
  margin: 0;
}
.header__logo {
  display: block;
  width: 406px;
  height: auto;
}
.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-link {
  color: #222222;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.15s;
}
.header__nav-link:hover {
  color: #008064;
}
.header__actions {
  display: flex;
  align-items: flex-end;
}
.header__mail {
  display: block;
  width: 44px;
  height: 44px;
  margin-right: 24px;
}
.header__mail:hover {
  animation: poyon 0.45s ease-out;
}
.header__mail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__mail:hover img {
  content: url("img/mail-button-hover.png");
}
.header__hamburger {
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(to bottom, #00a37f, #008064);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: filter 0.15s, background 0.2s ease;
}
.header__hamburger:hover {
  animation: poyon 0.45s ease-out;
}
.header__hamburger:hover {
  filter: brightness(1.05);
}
.header__hamburger:active {
  transform: translateY(1px);
}
.header__hamburger-line {
  display: block;
  width: 28px;
  height: 4px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.header__hamburger[aria-expanded=true] {
  background: linear-gradient(to bottom, #6d87a3, #536a7f);
}
.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #fff;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.menu-overlay--page {
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(40px + 220px);
}
@media (max-width: 768px) {
  .menu-overlay--page {
    padding-top: calc(40px + 120px);
  }
}
.menu-overlay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.menu-overlay__list a {
  color: #222222;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.menu-overlay__list a:hover {
  color: #00a37f;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4em;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background-color: #008064;
  overscroll-behavior-y: none;
}

section[id] {
  scroll-margin-top: 200px;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.privacy-modal.is-open {
  display: block;
}
.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.privacy-modal__close {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}
.privacy-modal__close::before, .privacy-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 5px;
  background: #00a37f;
  border-radius: 3px;
  transform-origin: center;
}
.privacy-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.privacy-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.privacy-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(960px, 100vw - 200px);
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}
.privacy-modal__content {
  color: #222222;
  line-height: 1.8;
}
.privacy-modal__content h2 {
  margin: 0 0 1.5rem;
  font-size: 1.375rem;
  font-weight: 500;
}
.privacy-modal__content h3 {
  margin: 1.75rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}
.privacy-modal__content p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
}
.privacy-modal__content ul {
  margin: 0 0 1rem;
  padding-left: 1.5em;
  font-size: 0.875rem;
}
.privacy-modal__content ul li {
  margin-bottom: 0.25em;
}
.privacy-modal__meta {
  margin-top: 2rem !important;
  color: #777;
  font-size: 0.75rem !important;
}

.hero {
  position: relative;
  width: 100%;
  height: 718px;
  max-height: 718px;
  margin-bottom: 2rem;
  overflow: clip;
  overflow-clip-margin: 80px;
}

.hero__photos {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 550px;
}

.hero-lane {
  position: absolute;
  left: 0;
  right: 0;
}

.hero-lane--top {
  top: 0;
  height: 200px;
  z-index: 1;
}

.hero-lane--middle {
  top: 105px;
  height: 340px;
  z-index: 2;
}

.hero-lane--bottom {
  top: 350px;
  height: 200px;
  z-index: 1;
}

.hero-lane--top .hero-photo,
.hero-lane--bottom .hero-photo {
  cursor: default;
  pointer-events: none;
}

.hero__copy-wrap {
  position: absolute;
  top: 550px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1080px;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  z-index: 2;
  pointer-events: none;
}

.hero__cta,
.hero__copy-right {
  pointer-events: auto;
}

.hero__copy-left {
  position: relative;
  flex-shrink: 0;
  align-self: stretch;
  width: 184px;
}

.hero__cta {
  position: absolute;
  left: 0;
  bottom: 55px;
  width: 184px;
}
.hero__cta:hover {
  animation: poyon-soft 0.45s ease-out;
}
.hero__cta img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__cta:hover img {
  content: url("img/contact-icon-hover.png");
}

.hero__copy-right {
  flex: 1;
  align-self: flex-start;
  text-align: right;
}

.hero-photo {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  cursor: pointer;
  will-change: transform;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 12px);
  border-radius: 16px;
  background: linear-gradient(to bottom, #00a37f, #008064);
  z-index: -1;
  pointer-events: none;
}
.hero-photo > img:not(.hero-photo__fukidashi) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.hero-photo__fukidashi {
  position: absolute;
  top: -40px;
  right: -5px;
  width: 140px;
  height: auto;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.7);
  transform-origin: bottom left;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
}
.hero-photo__description {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.hero-photo__description-title {
  margin: 0 0 0.4rem;
  color: #008064;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.3;
}
.hero-photo__description-body {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.hero-photo.is-bubble-visible {
  z-index: 1;
}
.hero-photo.is-bubble-visible .hero-photo__fukidashi {
  opacity: 1;
  transform: scale(1);
}
.hero-photo:hover {
  z-index: 20;
}
.hero-photo:hover .hero-photo__fukidashi {
  opacity: 1;
  transform: scale(1);
}
.hero-photo:hover .hero-photo__description {
  opacity: 1;
}

.hero-photo--photo::after,
.hero-photo--works::after,
.hero-photo--game::after {
  background: linear-gradient(to bottom, #6d87a3, #536a7f);
}

.main {
  padding: 0 1.5rem;
}

.main--page {
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .main--page {
    padding-top: 4rem;
  }
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container--narrow {
  max-width: 960px;
}

.section {
  margin-bottom: 2rem;
}
.section__text {
  margin: 0;
}
.section h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}
.section p {
  margin: 0 0 1rem;
}
.section p:last-child {
  margin-bottom: 0;
}
.section ul {
  margin: 0 0 1rem 1.5em;
  padding: 0;
}
.section ul li {
  margin-bottom: 0.25em;
}
.section a {
  color: #008064;
  text-decoration: underline;
}

.page-title {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  color: #0066cc;
}

.page-meta {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: #777;
}

.contact {
  margin: 7.5rem 0;
}

.contact__inner {
  max-width: 960px;
  margin: 0 auto;
}

.contact__title {
  margin: 0.25rem 0 0.75rem;
  font-size: 2.25rem;
  font-weight: 500;
  text-align: center;
  color: #222222;
  line-height: 1.4;
}

.contact__lead {
  margin: 0 0 3rem;
  font-size: 1rem;
  text-align: center;
  line-height: 1.9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__field {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 1.1rem 1.5rem;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.contact-form__field:focus-within {
  border-color: #00a37f;
}
.contact-form__field--textarea {
  align-items: start;
}
.contact-form__field--textarea .contact-form__field-head {
  padding-top: 0.5em;
}
.contact-form__field--agree {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-form__field-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.contact-form__field-body {
  min-width: 0;
}

.contact-form__label {
  font-weight: 500;
  font-size: 1rem;
  color: #222222;
}

.contact-form__badge {
  display: inline-block;
  flex-shrink: 0;
  align-self: center;
  padding: 0.3em 0.9em;
  border-radius: 9999px;
  background: #008064;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.contact-form__input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  color: #222222;
}
.contact-form__input::placeholder {
  color: #c8c8c8;
}
.contact-form__input:focus {
  outline: none;
}
.contact-form__input--textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}
.contact-form__input--select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 1.8em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23008b6f'><path d='M4 6l4 4 4-4z'/></svg>") right center/14px no-repeat;
}
.contact-form__input--date {
  font-family: inherit;
  color: #222222;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23008b6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 22px;
  padding-right: 32px;
}
.contact-form__input--date::placeholder {
  color: #c8c8c8;
}

.contact-form__date-wrapper {
  position: relative;
}

.contact-form__date-picker {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.contact-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.contact-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 1rem;
}
.contact-form__radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25em;
  height: 1.25em;
  margin: 0;
  border: 2px solid #00a37f;
  border-radius: 50%;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-image 0.15s ease;
}
.contact-form__radio input[type=radio]:checked {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='4.5' fill='%2300ae8a'/></svg>");
}

.contact-form__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  cursor: pointer;
  font-size: 1rem;
}
.contact-form__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25em;
  height: 1.25em;
  margin: 0;
  border: 2px solid #00a37f;
  border-radius: 4px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}
.contact-form__checkbox input[type=checkbox]:checked {
  background-color: #00a37f;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11.5L2.5 7.5 4 6l2.5 2.5L12 3l1.5 1.5z'/></svg>");
}

.contact-form__checkbox-text a {
  color: #008064;
  text-decoration: underline;
}

.contact-form__submit {
  align-self: center;
  margin-top: 2rem;
  width: 400px;
  height: 80px;
  padding: 0 2rem;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(to bottom, #00a37f, #008064);
  color: #fff;
  font: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: filter 0.15s, transform 0.05s;
}
.contact-form__submit:hover {
  filter: brightness(1.06);
}
.contact-form__submit:active {
  transform: translateY(1px);
}
@media (hover: hover) {
  .contact-form__submit:not(:disabled):hover {
    animation: poyon-soft 0.45s ease-out;
  }
}
.contact-form__submit:disabled {
  cursor: not-allowed;
  filter: none;
  transform: none;
}
.contact-form__submit:disabled:hover, .contact-form__submit:disabled:active {
  filter: none;
  transform: none;
}
.contact-form__submit:disabled .contact-form__submit-text {
  opacity: 0.4;
}

.contact-form__submit-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #008064;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
}

.contact-form__submit-arrow-glyph {
  display: inline-block;
  line-height: 1;
}
.contact-form__submit-arrow-glyph.is-enter {
  animation: arrow-fly-through 0.45s ease-in-out;
}
.contact-form__submit-arrow-glyph.is-leave {
  animation: arrow-fly-through 0.45s ease-in-out;
  animation-direction: reverse;
}

.contact-form__status {
  min-height: 1.25em;
  margin: 1rem 0 0;
  font-size: 0.875rem;
  text-align: center;
}
.contact-form__status[data-status=success] {
  color: #008064;
}
.contact-form__status[data-status=error] {
  color: #c00;
}
.contact-form__status[data-status=pending] {
  color: #777;
}

.section-label {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: #fff;
  margin: 0 0 0.75em;
  opacity: 0.9;
}
.section-label--dark {
  color: #008064;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0 0 2rem;
  line-height: 1.4;
  color: #fff;
}
.section-title--dark {
  color: #222222;
}

.section-lead {
  text-align: center;
  max-width: 640px;
  margin: -0.5rem auto 2rem;
  font-size: 1rem;
  opacity: 0.9;
}

.text-accent {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.text-accent-dark {
  color: #008064;
}

.panel-green {
  max-width: 1080px;
  margin: 7.5rem auto;
  padding: 70px 1.5rem;
  border-radius: 32px;
  background: linear-gradient(to bottom, #00a37f, #008064);
  color: #fff;
}
.panel-green__inner {
  max-width: 960px;
  margin: 0 auto;
}

.hero-copy__title {
  margin: 0;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-copy__accent {
  color: #008064;
}

.scroll-hint {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0;
  padding: 1rem 0 0;
  color: #00a37f;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.scroll-hint__label {
  display: block;
}

.scroll-hint__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-top: 0.5em;
  background: #00a37f;
  border-radius: 50%;
  position: relative;
}

.scroll-hint__arrow {
  width: 16px;
  height: 16px;
  margin-top: -4px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

.scroll-hint + .panel-green {
  margin-top: -28px;
}

.group-business__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .group-business__layout {
    grid-template-columns: 1fr;
  }
}

.group-business__text .section-label,
.group-business__text .section-title,
.group-business__text .section-lead {
  text-align: left;
}
.group-business__text .section-lead {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.group-cards {
  display: grid;
  grid-template-columns: repeat(3, 200px);
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0;
  align-items: start;
}
.group-cards .group-card:nth-child(1) {
  translate: 0 -30px;
}
.group-cards .group-card:nth-child(2) {
  translate: 0 40px;
}
.group-cards .group-card:nth-child(3) {
  translate: 0 10px;
}

.group-card {
  position: relative;
  width: 200px;
  height: 200px;
  background: #fff;
  color: #222222;
  border-radius: 16px;
  padding: 18px 24px;
  text-decoration: none;
  display: grid;
  grid-template-rows: 1fr auto;
}
.group-card:hover {
  animation: poyon-soft 0.45s ease-out;
}
.group-card:hover .group-card__arrow {
  transform: scale(1.2);
}
.group-card__arrow-glyph.is-enter {
  animation: arrow-fly-through 0.45s ease-in-out;
}
.group-card__arrow-glyph.is-leave {
  animation: arrow-fly-through 0.45s ease-in-out;
  animation-direction: reverse;
}
.group-card__logo {
  display: block;
  height: auto;
  place-self: center;
}
.group-card__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.group-card__title {
  display: block;
  max-width: calc(100% - 30px);
  height: auto;
}
.group-card__arrow {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #008064;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  -webkit-text-stroke: 0.5px currentColor;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.group-card__arrow-glyph {
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 0;
}
.group-card--toreca .group-card__logo {
  width: 130px;
}
.group-card--game .group-card__logo {
  width: 95px;
}
.group-card--emberz .group-card__logo {
  width: 153px;
}
.group-card--toreca .group-card__title {
  width: 115px;
}
.group-card--game .group-card__title {
  width: 115px;
}
.group-card--emberz .group-card__title {
  width: 90px;
}
.group-card--game .group-card__arrow {
  background: #536a7f;
}
.group-card--emberz .group-card__arrow {
  background: #bc9048;
}

.courses {
  margin: 7.5rem 0;
}

.courses-cards {
  display: grid;
  grid-template-columns: repeat(2, 432px);
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.course-card__media {
  position: relative;
  margin-bottom: 1.5rem;
}
.course-card__media img {
  display: block;
  width: 432px;
  height: 243px;
  object-fit: cover;
  border-radius: 16px;
}
.course-card__tags {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}
.course-card__title {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0 0 2rem;
  color: #222222;
  font-size: 1.0625rem;
}
.course-card__title-icon {
  flex: 0 0 auto;
  display: block;
  height: 32px;
  width: auto;
}
.course-card__title-text {
  line-height: 1.2;
}
.course-card__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}
.course-card__list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.2em;
}
.course-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.course-tag {
  display: inline-block;
  padding: 0.3em 1em;
  border-radius: 9999px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.course-card--toreca .course-tag {
  background: linear-gradient(to bottom, #00a37f, #008064);
}

.course-card--game .course-tag {
  background: linear-gradient(to bottom, #6d87a3, #536a7f);
}

.course-card--toreca .course-card__media {
  position: relative;
}
.course-card--toreca .course-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 12px);
  border-radius: 16px;
  background: linear-gradient(to bottom, #00a37f, #008064);
  z-index: -1;
  pointer-events: none;
}

.course-card--game .course-card__media {
  position: relative;
}
.course-card--game .course-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 12px);
  border-radius: 16px;
  background: linear-gradient(to bottom, #6d87a3, #536a7f);
  z-index: -1;
  pointer-events: none;
}

.course-card--toreca .course-card__list li::before {
  background: linear-gradient(to bottom, #00a37f, #008064);
}

.course-card--game .course-card__list li::before {
  background: linear-gradient(to bottom, #6d87a3, #536a7f);
}

.why-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.why-block--reverse .why-block__images {
  order: 2;
}
.why-block__images {
  position: relative;
  width: 100%;
  height: 360px;
}
.why-block__images img {
  position: absolute;
  object-fit: cover;
  border-radius: 16px;
}
.why-block__images img:first-of-type:not(:only-of-type) {
  top: 0;
  left: 0;
  width: 362px;
  height: 289px;
}
.why-block__images img:nth-of-type(2) {
  bottom: 0;
  right: 0;
  width: 180px;
  height: 144px;
}
.why-block__images img:only-of-type {
  top: 0;
  left: 0;
  width: 418px;
  height: 334px;
}
.why-block__images:has(img:only-of-type) {
  height: 334px;
}
.why-block__number {
  position: absolute;
  top: 0.25rem;
  left: 0.5rem;
  z-index: 2;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #00a37f;
  opacity: 0.8;
}
.why-block__content {
  position: relative;
}
.why-block__title {
  margin: 0 0 1.5rem;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 2;
}
.why-block__title-marker {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(to right, #fbc667, #c39b52);
  background-repeat: no-repeat;
  background-size: 100% 0.35em;
  background-position: 0 92%;
}
.why-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-block__list li {
  padding-left: 1.75em;
  margin-bottom: 0.5em;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
}
.why-block__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("img/list-style1.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.facility {
  margin: 7.5rem 0;
}

.facility-grid {
  position: relative;
  margin-top: 2rem;
}

.facility-map {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 640px;
  height: 600px;
  position: relative;
}
.facility-map::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(12px, 12px);
  border-radius: 16px;
  background: linear-gradient(to bottom, #00a37f, #008064);
  z-index: -1;
  pointer-events: none;
}
.facility-map__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.875rem;
  overflow: hidden;
}
.facility-map__inner iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.facility-map__inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-info {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 480px;
  background: linear-gradient(to bottom, #00a37f, #008064);
  color: #fff;
  border-radius: 24px;
  padding: 2rem 2.25rem;
  z-index: 2;
}
.facility-info__logo {
  display: block;
  width: 275px;
  height: auto;
  margin: 0 auto 1.5rem;
}
.facility-info__list {
  margin: 0;
}
.facility-info__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 0.875rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.facility-info__row:first-child {
  border-top: none;
  padding-top: 0;
}
.facility-info__row:last-child {
  padding-bottom: 0;
}
.facility-info__row dt {
  margin: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
}
.facility-info__row dd {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
}
.facility-info__pin {
  display: inline-block;
  height: 1.1em;
  width: auto;
  margin-left: 0.25em;
  vertical-align: -0.15em;
}

.cta {
  max-width: 960px;
  text-align: center;
}
.cta .panel-green__inner {
  max-width: 880px;
}

.cta__title {
  font-size: 1.625rem;
  margin: 0 0 0.5rem;
  text-align: center;
}

.cta__lead {
  margin: 0 0 2rem;
  font-size: 1rem;
  opacity: 0.9;
  text-align: center;
}

.cta-cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.cta-card {
  background: #fff;
  color: #222222;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: translate 0.2s ease, filter 0.15s ease;
}
.cta-card--line:hover, .cta-card--mail:hover {
  animation: poyon-soft 0.45s ease-out;
}
.cta-card--line:hover, .cta-card--mail:hover {
  filter: brightness(1.02);
  translate: 0 -1px;
}
.cta-card__arrow {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #00a37f, #008064);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  overflow: hidden;
}
.cta-card__arrow-glyph {
  display: inline-block;
  line-height: 1;
  position: relative;
  top: 0;
}
.cta-card__arrow-glyph.is-enter {
  animation: arrow-fly-through 0.45s ease-in-out;
}
.cta-card__arrow-glyph.is-leave {
  animation: arrow-fly-through 0.45s ease-in-out;
  animation-direction: reverse;
}

.cta-card--tel {
  display: block;
  width: 100%;
  padding: 24px 32px;
  border-radius: 24px;
  margin-bottom: 1.25rem;
  text-align: center;
}
.cta-card--tel .cta-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
}
.cta-card--tel .cta-card__icon {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: auto;
}
.cta-card--tel .cta-card__name {
  font-size: 1.25rem;
  color: #222222;
}
.cta-card--tel .cta-card__arrow {
  display: none;
}
.cta-card--tel .cta-card__body {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}
.cta-card--tel .cta-card__number {
  color: #00a37f;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.cta-card--tel .cta-card__hours {
  color: #222222;
  font-size: 0.875rem;
}

.cta-card--line,
.cta-card--mail {
  flex: 1 1 0;
  max-width: 360px;
  height: 64px;
  padding: 0 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-card--line .cta-card__main,
.cta-card--mail .cta-card__main {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-card--line .cta-card__icon,
.cta-card--mail .cta-card__icon {
  flex: 0 0 auto;
  height: auto;
}
.cta-card--line .cta-card__label,
.cta-card--mail .cta-card__label {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 500;
  color: #00a37f;
}

.cta-card--line .cta-card__icon {
  width: 32px;
}

.cta-card--mail .cta-card__icon {
  width: 30px;
}

.cta-disclaimer {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

.photo-strip {
  margin: 0 0 7.5rem;
  padding: 1.25rem 0 2rem;
}

.photo-strip__item.swiper-slide {
  width: 240px;
}

.photo-strip__item {
  position: relative;
}
.photo-strip__item::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(10px, 10px);
  border-radius: 12px;
  background: linear-gradient(to bottom, #00a37f, #008064);
  z-index: -1;
  pointer-events: none;
}
.photo-strip__item--down {
  transform: translateY(20px) !important;
}
.photo-strip__item--up {
  transform: translateY(-20px) !important;
}
.photo-strip__item img {
  display: block;
  width: 240px;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
}

.photo-strip .swiper-wrapper {
  transition-timing-function: linear !important;
}

.faq {
  margin: 7.5rem 0 5rem;
}

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 740px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .faq__layout {
    grid-template-columns: 1fr;
  }
}

.faq__intro .section-label,
.faq__intro .section-title {
  text-align: left;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  padding: 1.5rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font: inherit;
  color: inherit;
}

.faq-item__text {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
}

.faq-item__badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
}
.faq-item__badge--q {
  background: linear-gradient(to bottom, #00a37f, #008064);
  color: #fff;
}
.faq-item__badge--a {
  background: #fff;
  border: 2px solid #00a37f;
  color: #00a37f;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  color: #000;
  transition: color 0.3s ease;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-item__icon::before {
  transform: translate(-50%, -50%);
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__question[aria-expanded=true] .faq-item__icon {
  color: #00a37f;
}

.faq-item__question[aria-expanded=true] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}
.faq-item__answer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: #e5e5e5;
}

.faq-item__answer-text {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  padding-top: 0.3em;
}

.footer {
  padding: 3rem 2rem 1.5rem;
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  align-self: flex-end;
}
.footer__links li {
  padding: 0 1.25rem;
}
.footer__links li:first-child {
  padding-left: 0;
  border-right: 1px solid #d0d0d0;
}
.footer__links li:last-child {
  padding-right: 0;
}
.footer__links a {
  color: #222222;
  text-decoration: none;
  font-size: 1rem;
}
.footer__links a:hover {
  color: #008064;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}
.footer__logo {
  display: block;
  width: 320px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
.footer__info {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer__info-row {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.footer__info-row dt {
  flex: 0 0 4.5em;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  font-size: 0.75rem;
  color: #008064;
  white-space: nowrap;
  font-weight: 500;
  border-bottom: 1px solid #d0d0d0;
}
.footer__info-row dt::after {
  content: "";
}
.footer__info-row dd {
  margin: 0;
  text-align: left;
  font-size: 0.8125rem;
  color: #222222;
  line-height: 1.6;
  border-bottom: 1px solid #d0d0d0;
}
.footer__copy {
  margin: 0;
  text-align: center;
  font-size: 0.8125rem;
  color: #008064;
  letter-spacing: 0.05em;
}

.back-to-top {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 90;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(to bottom, #00a37f, #008064);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .back-to-top {
    right: 2rem;
    bottom: 2rem;
  }
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (hover: hover) {
  .back-to-top:hover:hover {
    animation: soft 0.45s ease-out;
  }
}
.back-to-top__arrow {
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateX(-3px) rotate(-45deg) translate(2px, 2px);
}
.back-to-top__label {
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

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

.br-sp {
  display: none;
}
@media (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

@media (max-width: 768px) {
  body {
    padding: 16px;
  }
  .frame--fixed {
    height: 16px;
  }
  .frame--end {
    height: 16px;
  }
  .frame-sides__strip {
    width: 16px;
  }
  .frame__corner {
    width: 16px;
    height: 16px;
  }
  .frame__corner--tl {
    top: 16px;
    left: 16px;
    -webkit-mask: radial-gradient(circle at 100% 100%, transparent 15.5px, #000 16.5px);
    mask: radial-gradient(circle at 100% 100%, transparent 15.5px, #000 16.5px);
  }
  .frame__corner--tr {
    top: 16px;
    right: 16px;
    -webkit-mask: radial-gradient(circle at 0% 100%, transparent 15.5px, #000 16.5px);
    mask: radial-gradient(circle at 0% 100%, transparent 15.5px, #000 16.5px);
  }
  .frame__corner--bl {
    left: 16px;
    -webkit-mask: radial-gradient(circle at 100% 0%, transparent 15.5px, #000 16.5px);
    mask: radial-gradient(circle at 100% 0%, transparent 15.5px, #000 16.5px);
  }
  .frame__corner--br {
    right: 16px;
    -webkit-mask: radial-gradient(circle at 0% 0%, transparent 15.5px, #000 16.5px);
    mask: radial-gradient(circle at 0% 0%, transparent 15.5px, #000 16.5px);
  }
  section[id] {
    scroll-margin-top: 110px;
  }
  .header {
    padding: 0.75rem 0 0;
  }
  .header__inner {
    padding: 0 0.75rem;
    gap: 0.5rem;
  }
  .header__brand {
    gap: 0.25rem;
  }
  .header__tagline {
    font-size: 0.625rem;
    padding: 0.4em 1em;
    letter-spacing: 0.04em;
  }
  .header__logo {
    width: 180px;
    content: url("img/title-logo-sp-header.png");
  }
  .header__nav-list {
    display: none;
  }
  .header__mail {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  .header__hamburger {
    width: 50px;
    height: 50px;
    gap: 5px;
  }
  .header__hamburger-line {
    width: 22px;
    height: 3px;
  }
  .header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hero {
    height: 630px;
    max-height: 630px;
    overflow-clip-margin: 30px;
  }
  .hero__photos {
    top: 30px;
    height: 520px;
  }
  .hero-lane--top {
    top: 0;
    height: 190px;
  }
  .hero-lane--middle {
    top: 100px;
    height: 320px;
  }
  .hero-lane--bottom {
    top: 330px;
    height: 190px;
  }
  .hero__copy-wrap {
    top: 550px;
    padding: 0 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .hero__copy-left {
    display: none;
  }
  .hero__copy-right {
    align-self: center;
    text-align: center;
    width: 100%;
  }
  .hero-copy__title {
    font-size: 2rem;
    line-height: 1.4;
  }
  .courses, .facility, .panel-green, .contact, .faq {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .photo-strip {
    margin-bottom: 5rem;
  }
  .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .section-label {
    font-size: 0.75rem;
  }
  .section-lead {
    font-size: 0.875rem;
  }
  .panel-green {
    padding: 2.5rem 1rem;
    border-radius: 16px;
  }
  .group-business__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .group-business__text .section-label,
  .group-business__text .section-title,
  .group-business__text .section-lead {
    text-align: center;
  }
  .group-cards {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 1rem;
  }
  .group-cards .group-card:nth-child(1),
  .group-cards .group-card:nth-child(2),
  .group-cards .group-card:nth-child(3) {
    translate: none;
  }
  .group-card {
    width: 66vw;
    height: 23.1vw;
    max-width: 320px;
    max-height: 112px;
    padding: 3.2vw 4vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3vw;
    margin: 0 auto;
  }
  .group-card__bottom {
    flex: 1;
    gap: 1.5vw;
  }
  .group-card--toreca .group-card__logo,
  .group-card--game .group-card__logo,
  .group-card--emberz .group-card__logo {
    width: 21vw;
    height: 14vw;
    object-fit: contain;
  }
  .group-card--toreca .group-card__logo {
    content: url("img/torecacamp-sp.png");
  }
  .group-card--game .group-card__logo {
    content: url("img/game-camp-sp.png");
  }
  .group-card--emberz .group-card__logo {
    content: url("img/emberz-sp.png");
  }
  .group-card--toreca .group-card__title,
  .group-card--game .group-card__title,
  .group-card--emberz .group-card__title {
    width: 26vw;
    height: 11vw;
    max-width: none;
    object-fit: contain;
  }
  .group-card--toreca .group-card__title {
    content: url("img/torecacamp2-sp.png");
  }
  .group-card--game .group-card__title {
    content: url("img/game-camp2-sp.png");
  }
  .group-card--emberz .group-card__title {
    content: url("img/emberz2-sp.png");
  }
  .courses-cards {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 2rem;
  }
  .course-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .course-card__tags {
    flex-wrap: nowrap;
    gap: 0.25rem;
  }
  .course-tag {
    font-size: 0.6875rem;
    padding: 0.25em 0.6em;
  }
  .course-card__title {
    font-size: 1rem;
  }
  .why-block {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .why-block--reverse .why-block__images {
    order: 0;
  }
  .why-block__images {
    height: 200px;
  }
  .why-block__images img:first-of-type:not(:only-of-type) {
    width: 70%;
    height: 150px;
  }
  .why-block__images img:nth-of-type(2) {
    width: 50%;
    height: 100px;
  }
  .why-block__images:has(img:only-of-type) {
    height: 200px;
  }
  .why-block__images img:only-of-type {
    width: 100%;
    height: 200px;
  }
  .why-block__title {
    font-size: 1.3rem;
  }
  .why-block__number {
    font-size: 3rem;
  }
  .why-block__list {
    font-size: 0.875rem;
  }
  .facility-grid {
    position: static;
  }
  .facility-map {
    width: 100%;
    height: 240px;
  }
  .facility-info {
    position: relative;
    z-index: 1;
    transform: none;
    width: 66vw;
    max-width: 320px;
    padding: 1.5rem;
    border-radius: 16px;
    margin: -30px auto 0;
  }
  .facility-info__logo {
    width: 200px;
  }
  .facility-info__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    font-size: 0.875rem;
    padding: 0.6rem 0;
  }
  .cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cta__title {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  .cta__lead {
    font-size: 0.875rem;
  }
  .cta-cards {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .cta-card--line,
  .cta-card--mail {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
  .cta-card--tel {
    padding: 18px;
  }
  .cta-card--tel .cta-card__head {
    padding: 12px 16px;
    border-radius: 999px;
    background: #008064;
    color: #fff;
    gap: 10px;
    margin-bottom: 12px;
    box-shadow: none;
    transition: transform 0.2s ease, filter 0.15s ease;
  }
  .cta-card--tel .cta-card__head:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
  }
  .cta-card--tel .cta-card__icon {
    filter: brightness(0) invert(1);
  }
  .cta-card--tel .cta-card__name {
    color: #fff;
  }
  .cta-card--tel .cta-card__arrow {
    background: #fff;
    color: #008064;
  }
  .cta-card--tel .cta-card__name {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
  }
  .cta-card--tel .cta-card__arrow {
    display: flex;
  }
  .cta-card--tel .cta-card__body {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .cta-card--tel .cta-card__number {
    font-size: 1.6rem;
  }
  .cta-disclaimer {
    font-size: 0.75rem;
  }
  .contact__title {
    font-size: 1.5rem;
  }
  .contact__lead {
    font-size: 0.875rem;
  }
  .contact-form__field {
    grid-template-columns: 1fr;
    align-items: stretch;
    row-gap: 0.5rem;
  }
  .contact-form__label {
    white-space: nowrap;
  }
  .contact-form__submit {
    width: 100%;
  }
  .photo-strip__item.swiper-slide {
    width: 150px;
  }
  .photo-strip__item img {
    width: 150px;
    height: 150px;
  }
  .photo-strip__item--down {
    transform: translateY(14px) !important;
  }
  .photo-strip__item--up {
    transform: translateY(-14px) !important;
  }
  .faq__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .faq__intro .section-label,
  .faq__intro .section-title {
    text-align: center;
  }
  .footer {
    padding: 2rem 1rem;
  }
  .footer__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__brand {
    order: 1;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .footer__links {
    order: 2;
  }
  .footer__logo {
    max-width: 100%;
  }
  .footer__info {
    margin: 0 auto;
  }
  .footer__info-row {
    justify-content: flex-start;
  }
  .privacy-modal__dialog {
    width: 80vw;
    max-height: 80vh;
    padding: 1.5rem;
  }
  .privacy-modal__close {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
  .privacy-modal__close::before, .privacy-modal__close::after {
    width: 26px;
    height: 4px;
  }
}
