:root {
  --color-primary: #e60012;
  --color-primary-dark: #af0512;
  --color-secondary: #2c2c2c;
  --color-text-base: #000;
  --color-text-oncolor: #fff;
  --color-bg-primary: #fff;
  --color-bg-secondary: #f5f5f5;
  --color-border: #dedede;
  --font-base: "Roboto", "Noto Sans JP", sans-serif;
  --header-height: 64px;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

html.is-loading,
html.is-loading body {
  overflow: hidden;
  height: 100%;
}

body {
  font-family: var(--font-base);
  font-feature-settings: "palt";
  letter-spacing: .05em;
  line-height: var(--line-height-base);
  color: var(--color-secondary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--color-bg-primary);
}

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

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

ul {
  list-style: none;
}

.text-accent {
  color: var(--color-primary);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.js-reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(8px);
  transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1s cubic-bezier(.22, 1, .36, 1), filter 1s cubic-bezier(.22, 1, .36, 1);
}

.js-reveal.is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.js-reveal--static,
.js-reveal--static.is-revealed {
  transform: none;
  filter: none;
}

.js-reveal--delay-1 {
  transition-delay: .12s;
}

.js-reveal--delay-2 {
  transition-delay: .24s;
}

.js-reveal--delay-3 {
  transition-delay: .36s;
}

.js-reveal--delay-4 {
  transition-delay: .48s;
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Common
   ========================================================================== */
.btn {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: opacity .2s ease;
}

.btn:hover {
  opacity: .8;
}

.btn__text-wrap {
  padding: 0 8px;
}

.btn--primary {
  color: var(--color-text-oncolor);
  min-width: 200px;
  height: 64px;
  padding: 8px 16px 10px;
  background: linear-gradient(165deg, var(--color-primary) 23%, var(--color-primary-dark) 77%);
}

.btn__arrow {
  width: 20px;
  height: 20px;
  transition: transform .2s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--sm {
  font-size: 13px;
  min-width: auto;
  height: 32px;
  padding: 8px;
}

.btn--outline {
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--color-primary);
  padding: 8px 16px;
  border: 2px solid var(--color-primary);
  border-radius: 40px;
}

.section-heading {
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
  padding: 0 0 0 24px;
}

.header__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 4px;
}

.header__logo img {
  width: 136px;
  height: 32px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}

.header__list {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__list a {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  transition: color .3s ease;
}

.header__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.header__list a:hover {
  color: var(--color-primary);
}

.header__list a:hover::after {
  transform: scaleX(1);
}

.header__cta {
  align-self: stretch;
  height: auto;
}

.header__right {
  display: none;
  align-items: center;
  gap: 8px;
}

.header__cta-sp {
  display: none;
}

/* Hamburger (SP only) */
.hamburger {
  position: relative;
  z-index: 200;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 40px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-secondary);
  transition: transform .25s ease, opacity .25s ease, width .25s ease;
}

.hamburger span:last-child {
  align-self: flex-end;
  width: 20px;
  margin-right: 6px;
}

.hamburger.is-active span {
  width: 28px;
  align-self: center;
  margin-right: 0;
}

.hamburger.is-active span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.is-active span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-overlay {
  display: none;
}

/* ==========================================================================
   Loading
   ========================================================================== */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(26, 26, 26, .96);
}

.loading.is-peeling {
  animation: loading-peel 1s ease forwards;
  pointer-events: none;
}

@keyframes loading-peel {
  0% {
    transform: translateY(0);
    opacity: 1;
    animation-timing-function: cubic-bezier(.3, 0, .64, 1);
  }

  25% {
    transform: translateY(52px);
    opacity: 1;
    animation-timing-function: cubic-bezier(.55, 0, .85, .3);
  }

  62% {
    transform: translateY(-100%);
    opacity: 1;
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.loading__text {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(12px);
  transition: opacity 1.3s cubic-bezier(.22, 1, .36, 1), transform 1.3s cubic-bezier(.22, 1, .36, 1), filter 1.3s cubic-bezier(.22, 1, .36, 1);
}

.loading.is-text-visible .loading__text {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.loading__text--pc {
  max-width: 676px;
  width: 100%;
  height: auto;
}

.loading__text--sp {
  display: none;
}

/* ==========================================================================
   FV
   ========================================================================== */
.fv {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto 16px;
  padding: 112px 24px 64px;
}

.fv__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.fv__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: auto;
  height: 754px;
  background: url("../assets/images/bg-logo.svg") no-repeat center / contain;
  opacity: .04;
  top: -268px;
}

.fv__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: auto;
  height: 100%;
  aspect-ratio: 1280 / 1536;
}

.fv__image-pc {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fv__image-sp {
  display: none;
}

.fv__jga {
  position: absolute;
  right: 28px;
  bottom: 12px;
  z-index: 2;
  width: 200px;
  height: 52px;
}

.fv__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  max-width: 1240px;
}

.fv__main-copy {
  width: 760px;
  height: auto;
}

.fv__main-copy-sp {
  display: none;
}

.fv__sub-copy {
  width: 625px;
  height: auto;
  margin: 0 0 0 8px;
}

.fv__sub-copy-sp {
  display: none;
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  display: flex;
  min-height: 585px;
  background: var(--color-secondary);
}

.section-heading--about {
  width: 200px;
  height: 62px;
}

.about__image {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 24px 80px;
  background: linear-gradient(238deg, rgba(255, 255, 255, .08) 1%, rgba(255, 255, 255, 0) 40%);
}

.about__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  aspect-ratio: 122 / 585;
  background: url("../assets/images/section-triangle.svg") no-repeat center / contain;
  transform: translateX(-99%);
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 520px;
}

.about__text {
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__title {
  font-weight: 700;
  font-size: 28px;
  color: var(--color-text-oncolor);
}

.about__body {
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   Concept
   ========================================================================== */
.concept {
  position: relative;
  padding: 0 24px;
  background: var(--color-bg-primary);
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 2px;
  background: var(--color-primary);
}

.concept::before {
  top: 0;
  left: 0;
}

.concept::after {
  right: 0;
  bottom: 0;
}

.concept__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.concept__text {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  padding-bottom: 20px;
}

.section-heading--concept {
  width: 264px;
  height: 62px;
}

.concept__body {
  font-weight: 600;
  font-size: 18px;
}

.concept__image {
  flex-shrink: 0;
  width: 100%;
  max-width: 496px;
}

.concept__image-pc {
  width: 100%;
  height: auto;
}

.concept__image-sp {
  display: none;
}

/* ==========================================================================
   Supervisor
   ========================================================================== */
.supervisor {
  position: relative;
  overflow: hidden;
  padding: 64px 24px;
  background: var(--color-bg-secondary);
}

.supervisor__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
}

.supervisor__image-wrap {
  display: flex;
  flex: 1;
  justify-content: center;
}

.supervisor__shape {
  position: absolute;
  top: 0;
  left: calc(50% - 286px);
  z-index: 0;
  height: 100%;
  width: auto;
  aspect-ratio: 526 / 686;
  pointer-events: none;
  transform: translateX(-68%);
}

.supervisor__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 309px;
  height: 412px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

.supervisor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supervisor__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0 0 0;
}

.section-heading--supervisor {
  width: 352px;
  height: 62px;
}

.supervisor__profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 0 2px;
}

.supervisor__name {
  font-weight: 700;
  font-size: 36px;
}

.supervisor__bio {
  font-weight: 600;
  font-size: 14px;
}

.supervisor__comment {
  font-size: 13px;
  color: var(--color-secondary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 0;
}

.supervisor__comment-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.supervisor__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

.supervisor__divider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 1px;
  background: var(--color-primary);
}

.supervisor__divider--top::after {
  left: 0;
}

.supervisor__divider--bottom::after {
  right: 0;
}

/* ==========================================================================
   Program
   ========================================================================== */
.program {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 56px 0 64px;
  background: var(--color-bg-primary);
}

.program__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.section-heading--program {
  width: 296px;
  height: 62px;
}

.program__note {
  font-weight: 500;
  font-size: 12px;
  color: var(--color-secondary);
}

.program__list {
  width: 100%;
  padding: 0 20px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.program__items {
  display: flex;
  width: 100%;
  margin-top: -1px;
}

.program__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-left: -1px;
  padding: 40px;
  border: 1px solid var(--color-border);
}

.program__item:first-child {
  margin-left: 0;
}

.program__illust {
  width: 100%;
  max-width: 240px;
  height: auto;
}

.program__illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.program__item-title {
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}

.program__item-sub {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.program__seminar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: -1px;
  margin-bottom: -1px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--color-secondary);
  background: var(--color-border);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   Event Summary
   ========================================================================== */
.event {
  display: flex;
  background: var(--color-secondary);
}

.event__content {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(130deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 40%);
}

.event__content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  aspect-ratio: 122 / 585;
  background: url("../assets/images/section-triangle.svg") no-repeat center / contain;
  transform: translateX(99%) rotate(180deg);
}

.event__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 520px;
  width: 100%;
}

.section-heading--event {
  width: 486px;
  height: 62px;
}

.section-heading--event-sp {
  display: none;
}

.event__divider-sp {
  display: none;
}

.event__wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.event__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 800px;
}

.event__row {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text-oncolor);
  display: flex;
  align-items: center;
  gap: 8px;
}

.event__row dt {
  flex: 1;
  max-width: 120px;
}

.event__row dd {
  flex: 1;
}

.event__jga-logo {
  width: auto;
  height: 24px;
}

.event__cta {
  width: 100%;
  max-width: 300px;
}

.event__image {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.event__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  overflow: hidden;
  background: #fafafa;
}

.contact__bg-pattern {
  position: absolute;
  top: 50%;
  left: -64px;
  width: 412px;
  height: 416px;
  background: url("../assets/images/bg-logo.svg") no-repeat center / contain;
  opacity: .04;
  transform: translateY(-50%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1080px;
}

.section-heading--contact {
  width: 264px;
  height: 62px;
}

.contact__link {
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  transition: opacity .2s ease;
}

.contact__link:hover {
  opacity: .8;
}

.contact__link:hover .btn__arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 48px 24px;
  background: #eeeeee;
}

.footer-logo__cp {
  box-sizing: content-box;
  width: 205px;
  height: 48px;
  padding: 0 12px;
}

.footer-logo__jga--pc {
  width: 242px;
  height: 48px;
}

.footer-logo__jga--sp {
  display: none;
}

.premium {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 24px;
  background: #f7f3eb;
}

.premium__catch {
  width: 278px;
  height: auto;
}

.premium__text {
  font-size: 14px;
  letter-spacing: .02em;
  max-width: 1000px;
}

.copyright {
  text-align: center;
  padding: 8px 24px;
  background: var(--color-secondary);
}

.copyright p {
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-oncolor);
}

/* ==========================================================================
   Responsive (SP)
   ========================================================================== */
@media (max-width: 1080px) {
  .header__inner {
    padding: 12px;
  }

  .header__right {
    display: flex;
  }

  .header__cta-sp {
    display: inline-flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    z-index: 150;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    height: calc(100vh - var(--header-height));
    padding: 40px 32px;
    background: var(--color-bg-primary);
    transition: transform .3s ease;
    transform: translateX(100%);
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .header__list {
    font-size: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-overlay.is-open {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: block;
    background: rgba(0, 0, 0, .4);
  }
}

@media (max-width: 768px) {
  /* Loading */
  .loading {
    padding: 24px;
  }

  .loading__text--pc {
    display: none;
  }

  .loading__text--sp {
    display: block;
    width: 276px;
    max-width: 100%;
    height: auto;
  }

  .header {
    background: var(--color-bg-primary);
  }

  /* FV */
  .fv {
    justify-content: flex-start;
    min-height: 780px;
    padding: 112px 16px 0;
  }

  .fv__inner {
    flex-direction: column;
  }

  .fv__bg-pattern {
    height: 560px;
    top: 0;
  }

  .fv__image {
    position: static;
    order: 2;
    width: calc(100% + 32px);
    height: auto;
    aspect-ratio: auto;
    margin: 24px -16px 0;
    transition-delay: .48s;
  }

  .fv__image-pc {
    display: none;
  }

  .fv__image-sp {
    display: block;
    width: 100%;
    height: auto;
  }

  .fv__jga {
    position: static;
    width: 100px;
    height: 26px;
    margin-top: 40px;
    transition-delay: .24s;
  }

  .fv__inner {
    order: 1;
  }

  .fv__container {
    align-items: center;
    gap: 0;
    max-width: 520px;
  }

  .fv__main-copy {
    display: none;
  }

  .fv__main-copy-sp {
    display: block;
    width: 100%;
    height: auto;
  }

  .fv__sub-copy {
    display: none;
  }

  .fv__sub-copy-sp {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 36px;
  }

  /* About */
  .about {
    flex-direction: column;
    min-height: 0;
  }

  .about__image {
    order: 2;
    height: 192px;
  }

  .about__content {
    order: 1;
    padding: 32px 20px 48px;
  }

  .about__content::before {
    display: none;
  }

  .about__title {
    font-size: 24px;
    text-align: center;
  }

  .about__body {
    font-size: 13px;
    gap: 12px;
  }

  .section-heading--about {
    width: 187px;
    height: 58px;
}

  /* Concept */
  .concept {
    padding: 0;
  }

  .concept::before,
  .concept::after {
    display: none;
  }

  .concept__inner {
    flex-direction: column;
    gap: 0;
  }

  .concept__text {
    text-align: center;
    position: relative;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: none;
    padding: 32px 20px 40px;
  }

  .concept__text::before,
  .concept__text::after {
    content: "";
    position: absolute;
    width: 112px;
    height: 2px;
    background: var(--color-primary);
  }

  .concept__text::before {
    top: 0;
    left: 0;
  }

  .concept__text::after {
    right: 0;
    bottom: 0;
  }

  .concept__body {
    font-size: 14px;
    text-align: justify;
  }

  .section-heading--concept {
    width: 247px;
    height: 58px;
  }

  .concept__image {
    width: 100%;
    max-width: none;
    height: 240px;
  }

  .concept__image-pc {
    display: none;
  }

  .concept__image-sp {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Supervisor */
  .supervisor {
    padding: 64px 20px;
  }

  .supervisor__inner {
    flex-direction: column;
    gap: 32px;
  }

  .supervisor__image-wrap {
    position: relative;
  }

  .supervisor__image {
    width: 309px;
    height: 412px;
  }

  .supervisor__shape {
    top: auto;
    bottom: 0;
    left: 50%;
    width: 136%;
    max-width: none;
    height: auto;
    transform: translateX(-50%);
  }

  .section-heading--supervisor {
    width: 295px;
    height: 52px;
    margin: 0 auto;
  }

  .supervisor__content {
    gap: 8px;
    padding: 0;
  }

  .supervisor__profile {
    gap: 6px;
  }

  .supervisor__name {
    font-size: 24px;
    text-align: center;
  }

  .supervisor__bio {
    text-align: left;
  }

  .supervisor__comment {
    margin: 24px 0 0;
  }

  /* Program */
  .program__list {
    padding: 0 12px;
  }

  .program__items {
    flex-direction: column;
  }

  .program__item {
    width: 100%;
    gap: 8px;
    margin-top: -1px;
    margin-left: 0;
    padding: 32px 40px;
  }

  .program__item:first-child {
    margin-top: 0;
  }

  /* Event */
  .event {
    flex-direction: column;
  }

  .event__content {
    padding: 40px 20px 56px;
  }

  .event__content::after {
    display: none;
  }

  .event__inner {
    align-items: center;
    gap: 20px;
  }

  .section-heading--event {
    display: none;
  }

  .section-heading--event-sp {
    display: block;
    width: 262px;
    height: 86px;
  }

  .event__divider-sp {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
  }

  .event__wrap {
    gap: 48px;
    align-items: center;
  }

  .event__list {
    max-width: 320px;
  }

  .event__row {
    flex-wrap: wrap;
    font-size: 14px;
  }

  .event__row dt {
    max-width: 64px;
  }

  .event__image {
    flex: initial;
    height: 192px;
  }

  .event__cta {
    margin: 0 auto;
    width: 100%;
  }

  /* Contact */
  .contact {
    padding: 24px 20px;
  }
  .contact__inner {
    align-items: flex-start;
  }

  .contact__bg-pattern {
    left: initial;
    right: -8px;
    width: 176px;
    height: 176px;
  }

  .section-heading--contact {
    width: 221px;
    height: 52px;
  }

  .contact__link {
    font-size: 14px;
  }

  /* Footer */
  .footer-logo {
    gap: 12px;
    padding: 48px 20px;
  }

  .footer-logo__cp {
    width: 144px;
    height: 34px;
    padding: 0 4px;
  }

  .footer-logo__jga--pc {
    display: none;
  }

  .footer-logo__jga--sp {
    display: block;
    width: 176px;
    height: 34px;
  }

  /* Premium */
  .premium__catch {
    width: 200px;
  }
}
