/* R's Meeting 2026 renewal — Header + MV */

:root {
  --rs-black: #231815;
  --rs-red: #e60012;
  --rs-white: #ffffff;
  --rs-header-h: 80px;
  --rs-font-en: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --rs-font-display: "Fugaz One", "Roboto", sans-serif;
  --rs-font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
}

body.is-renewal {
  margin: 0;
  background: var(--rs-white);
  color: var(--rs-black);
  font-family: var(--rs-font-jp);
  text-align: left;
}

body.is-renewal #wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--rs-header-h);
  padding: 0 40px;
  background: var(--rs-black);
  box-sizing: border-box;
}

.site-header__logo {
  display: block;
  flex-shrink: 0;
  width: 200px;
  min-width: 0;
  max-width: 200px;
  height: 48px;
  overflow: hidden;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: block;
  color: var(--rs-white) !important;
  font-family: var(--rs-font-en);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.site-nav a:hover {
  color: var(--rs-white) !important;
  opacity: 0.7;
}

.site-nav a.is-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.site-nav__sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.site-sns {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
}

.site-sns li {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.site-sns a {
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.site-sns a:hover {
  opacity: 0.75;
}

.site-sns img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ---------- MV ---------- */
.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}

.mv__collage {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mv__sp-bg {
  display: none;
}

.mv__top {
  display: flex;
  width: 100%;
  height: clamp(280px, 33.33vw, 480px);
}

.mv__quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  flex: 1 1 51.67%;
  min-width: 0;
}

.mv__wide {
  flex: 1 1 48.33%;
  min-width: 0;
}

.mv__bottom {
  display: flex;
  width: 100%;
  height: clamp(180px, 20.83vw, 300px);
}

.mv__bottom .mv__cell:nth-child(1) {
  flex: 1 1 42%;
}

.mv__bottom .mv__cell:nth-child(2) {
  flex: 0 0 22.4%;
  max-width: 323px;
}

.mv__bottom .mv__cell:nth-child(3) {
  flex: 1 1 35.6%;
}

.mv__cell {
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 100%;
}

.mv__cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mv__wide img {
  object-position: bottom center;
}

.mv__bottom .mv__cell:nth-child(1) img {
  object-position: center 40%;
  transform: scale(1.05);
}

.mv__bottom .mv__cell:nth-child(3) img {
  object-position: center 45%;
}

/* Center card */
.mv__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(614px, calc(100% - 48px));
  padding: 62px 52px 56px;
  background: var(--rs-white);
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.mv__card-logo {
  display: block;
  width: 100%;
  max-width: 452px;
  height: auto;
}

.mv__card-divider {
  display: block;
  width: 100%;
  max-width: 510px;
  height: 4px;
}

.mv__card-body {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: center;
}

.mv__date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mv__date-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.mv__year {
  margin: 0;
  font-family: var(--rs-font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--rs-black);
}

.mv__md {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv__md img {
  display: block;
  height: auto;
}

.mv__md-10 {
  width: 80px;
  margin-right: -3px;
}

.mv__md-slash {
  width: 29px;
  margin-right: -3px;
}

.mv__md-24 {
  width: 86px;
}

.mv__dow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-bottom: 2px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--rs-black);
}

.mv__dow span {
  display: block;
  width: 14px;
  text-align: center;
}

.mv__time {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--rs-black);
  font-family: var(--rs-font-en);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--rs-black);
  white-space: nowrap;
}

.mv__time-sep {
  padding-left: 2px;
}

.mv__place {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--rs-black);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.mv__place span {
  display: block;
}

/* ---------- Intro ---------- */
.intro {
  position: relative;
  overflow: hidden;
  background: var(--rs-white);
  color: var(--rs-black);
  margin-bottom: 0;
  padding-bottom: 0;
}

.intro__logo {
  position: absolute;
  z-index: 0;
  left: max(-136px, calc(50% - 856px));
  top: 10%;
  width: min(769px, 70vw);
  height: auto;
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}

.intro__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 912px;
  margin: 0 auto;
  padding: 56px 56px 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
}

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

.intro__block--en {
  gap: 16px;
}

.intro__lead {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
  color: var(--rs-black);
}

.intro__block--en .intro__lead {
  font-size: 20px;
  line-height: 1.6;
}

.intro__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intro__body p {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
  color: var(--rs-black);
}

.intro__block--en .intro__body p {
  font-size: 16px;
  line-height: 1.6;
}

.intro__closing {
  font-weight: 600 !important;
}

/* Hide legacy header pieces when renewal is active */
body.is-renewal #sp_menu,
body.is-renewal #header,
body.is-renewal .main_img {
  display: none !important;
}

/* ---------- Tablet ---------- */
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .site-header {
    padding: 0 24px;
  }

  .site-header__logo {
    width: 160px;
    height: 38px;
  }

  .site-header__right {
    gap: 24px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 14px;
  }

  .site-sns {
    gap: 16px;
  }

  .mv__card {
    padding: 40px 32px 36px;
  }

  .mv__place {
    font-size: 24px;
  }

  .mv__card-body {
    gap: 14px;
  }
}

/* ---------- SP ---------- */
@media screen and (max-width: 768px) {
  :root {
    --rs-header-h: 57px;
  }

  .site-header {
    height: var(--rs-header-h);
    padding: 14px 20px;
  }

  .site-header__logo {
    width: 120px;
    max-width: 120px;
    height: 29px;
  }

  .site-nav {
    display: none;
  }

  .site-header__right {
    gap: 0;
    flex-shrink: 0;
  }

  .site-sns {
    gap: 24px;
  }

  .site-sns li,
  .site-sns a,
  .site-sns img {
    width: 20px;
    height: 20px;
  }

  .mv__collage {
    display: none;
  }

  .mv__sp-bg {
    display: block;
    width: 100%;
    line-height: 0;
  }

  .mv__sp-bg img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mv__card {
    gap: 20px;
    width: min(331px, calc(100% - 40px));
    padding: 40px 24px;
    border-radius: 8px;
    box-shadow: none;
  }

  .mv__card-logo {
    width: 280px;
    max-width: 100%;
    height: auto;
  }

  .mv__card-divider {
    width: 283px;
    max-width: 100%;
  }

  .mv__card-body {
    flex-direction: column;
    gap: 16px;
  }

  .mv__date-block {
    gap: 12px;
  }

  .mv__year {
    font-size: 20px;
  }

  .mv__md-10 {
    width: 80px;
  }

  .mv__md-slash {
    width: 29px;
  }

  .mv__md-24 {
    width: 86px;
  }

  .mv__dow {
    font-size: 18px;
  }

  .mv__time {
    font-size: 18px;
  }

  .mv__place {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 28px;
    text-align: center;
    white-space: normal;
  }

  .mv__place span {
    display: block;
  }

  .intro__inner {
    gap: 24px;
    padding: 32px 10px 24px;
    max-width: none;
    width: calc(100% - 24px);
  }

  .intro__logo {
    left: max(-64px, calc(50% - 265px));
    top: 10%;
    width: min(359px, 90vw);
  }

  .intro__block {
    gap: 16px;
  }

  .intro__lead {
    font-size: 16px;
  }

  .intro__lead-keep {
    white-space: nowrap;
  }

  .intro__block--en .intro__lead {
    font-size: 16px;
  }

  .intro__body p {
    font-size: 15px;
  }

  .intro__block--en .intro__body p {
    font-size: 13px;
  }

  .intro__closing {
    font-size: 14px !important;
  }
}

/* ---------- EVENT ---------- */
.event {
  position: relative;
  z-index: 2;
  background: #e3e3e3;
  color: var(--rs-black);
  margin: 0;
  padding: 0;
  border: 0;
}

/* 旧サイトのアンカー用スペーサーを無効化 */
body.is-renewal #event::before,
body.is-renewal #entry::before,
body.is-renewal #about::before,
body.is-renewal #acces::before {
  content: none;
  display: none;
  height: 0;
  margin: 0;
}

.event__edge {
  display: block;
  width: 100%;
  height: clamp(48px, 7vw, 100px);
  margin: 0;
  padding: 0;
  border: 0;
  line-height: 0;
  font-size: 0;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}

.event__edge img {
  display: none !important;
}

.event__edge--top {
  background: var(--rs-white);
  margin-top: 0;
}

.event__edge--top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #e3e3e3;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.event__edge--bottom {
  background: var(--rs-white);
}

.event__edge--bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #e3e3e3;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.event__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  /* 1440時は左右264px、狭い幅ではカード内容幅〜912pxを優先して余白を縮める */
  padding: 56px max(40px, calc((100% - 912px) / 2));
  box-sizing: border-box;
}

.event__title {
  margin: 0;
  font-family: var(--rs-font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--rs-red);
  text-align: center;
}

.event-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  max-width: 912px;
  padding: 40px;
  background: var(--rs-white);
  border-radius: 10px;
  box-sizing: border-box;
}

.event-card__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.event-card__tag {
  position: relative;
  display: inline-flex;
  align-self: flex-start;
  height: 36px;
  margin-left: 14px;
}

.event-card__tag-accent {
  position: absolute;
  left: -14px;
  top: 0;
  display: block;
  width: 21px;
  height: 36px;
  pointer-events: none;
}

.event-card__tag-inner {
  display: inline-flex;
  align-items: stretch;
  height: 36px;
}

.event-card__tag-edge {
  flex: 0 0 12px;
  width: 12px;
  height: 36px;
  display: block;
}

.event-card__tag-label {
  display: flex;
  align-items: center;
  padding: 0 10px;
  background: var(--rs-black);
  color: var(--rs-white);
  font-family: var(--rs-font-jp);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.8;
  white-space: nowrap;
}

.event-card__heading {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--rs-black);
}

.event-card__text {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--rs-black);
}

.event-card__text a {
  color: var(--rs-black) !important;
  text-decoration: underline !important;
}

.event-card__text a:hover {
  color: var(--rs-red) !important;
}

.event-card__media {
  flex: 0 1 400px;
  width: 400px;
  max-width: min(400px, 42%);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.event-card__slider {
  position: relative;
  width: 100%;
  aspect-ratio: 400 / 266;
  overflow: hidden;
  background: #111;
  touch-action: pan-y;
  cursor: grab;
}

.event-card__slider img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.event-card__slider img.is-active {
  opacity: 1;
}

.event-card__dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 6px;
}

.event-card__dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
}

.event-card__dots button.is-active {
  background: #8a8a8a;
}

.event-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 912px;
  padding: 32px;
  background: #e3e3e3;
  border: 2px solid var(--rs-black);
  box-sizing: border-box;
}

.event-sns__title {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
  color: var(--rs-black);
}

.event-sns__buttons {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.event-sns__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 190px;
  padding: 16px 24px;
  background: var(--rs-white);
  border: 1px solid var(--rs-black);
  box-sizing: border-box;
  color: var(--rs-black) !important;
  font-family: var(--rs-font-en);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}

.event-sns__btn:hover {
  opacity: 0.75;
  color: var(--rs-black) !important;
}

.event-sns__btn img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.event-archive {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  max-width: 912px;
  padding: 40px;
  background: var(--rs-white);
  border-radius: 10px;
  box-sizing: border-box;
}

.event-archive__copy {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-archive__title {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--rs-black);
}

.event-archive__text {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--rs-black);
}

.event-archive__links {
  flex: 1 1 auto;
  display: flex;
  gap: 24px;
  min-width: 0;
}

.event-archive__card {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 24px;
  background: #424242;
  box-sizing: border-box;
  color: var(--rs-white) !important;
  transition: opacity 0.2s ease;
}

.event-archive__card:hover {
  opacity: 0.85;
  color: var(--rs-white) !important;
}

.event-archive__pdf {
  display: block;
  width: 32px;
  height: 32px;
}

.event-archive__label {
  font-family: var(--rs-font-jp);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: var(--rs-white);
}

.event-archive__ext {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 1100px) and (min-width: 769px) {
  .event__body {
    padding: 48px 40px;
  }

  .event-card {
    gap: 24px;
    padding: 32px;
  }

  .event-card__media {
    flex-basis: 300px;
    width: 300px;
    max-width: 38%;
    min-width: 240px;
  }

  .event-card__heading {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .event__edge {
    height: 36px;
  }

  .event__body {
    gap: 24px;
    padding: 32px 20px;
  }

  .event__title {
    font-size: 48px;
  }

  .event-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .event-card__content {
    gap: 16px;
  }

  .event-card__tag {
    margin-left: 10px;
  }

  .event-card__tag-label {
    font-size: 20px;
  }

  .event-card__heading {
    font-size: 18px;
  }

  .event-card__text {
    font-size: 15px;
  }

  .event-card__media {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 12px;
  }

  .event-card__dots {
    height: 24px;
  }

  .event-card__dots button {
    position: relative;
    width: 8px;
    height: 8px;
  }

  .event-card__dots button::before {
    content: "";
    position: absolute;
    inset: -10px;
  }

  .event-sns {
    width: 100%;
    gap: 16px;
    padding: 20px;
  }

  .event-sns__title {
    font-size: 18px;
  }

  .event-sns__buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .event-sns__btn {
    flex: none;
    width: 100%;
    min-width: 0;
    gap: 4px;
    padding: 12px 4px;
    font-size: 13px;
    white-space: nowrap;
  }

  .event-sns__btn img {
    width: 14px;
    height: 14px;
  }

  .event-archive {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px;
  }

  .event-archive__copy {
    width: 100%;
  }

  .event-archive__title {
    font-size: 18px;
  }

  .event-archive__text {
    font-size: 14px;
  }

  .event-archive__links {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .event-archive__card {
    flex: none;
    width: 100%;
    padding: 18px;
  }

  .event-archive__ext {
    right: 18px;
    bottom: 18px;
  }
}

/* =============================================
   ENTRY
   ============================================= */
.entry {
  position: relative;
  z-index: 2;
  background: var(--rs-white);
  overflow: hidden;
}

.entry__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
  padding: 56px 24px 0;
  box-sizing: border-box;
}

.entry__title {
  margin: 0;
  font-family: var(--rs-font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--rs-red);
  text-align: center;
}

.entry__courses {
  display: flex;
  gap: 32px;
  width: 100%;
}

.entry__course-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border: 1px solid var(--rs-black);
  border-radius: 5px;
  background: var(--rs-white);
  box-sizing: border-box;
}

.entry__course-name {
  margin: 0;
  font-family: var(--rs-font-en);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: var(--rs-black);
  white-space: nowrap;
}

.entry__course-letter {
  font-size: 32px;
}

.entry__course-divider {
  display: block;
  width: 140px;
  height: 2px;
}

.entry__course-desc {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--rs-black);
  text-align: center;
}

.entry__course-desc p {
  margin: 0;
}

.entry__course-note {
  font-size: 14px;
}

.entry__period {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.entry__period-text {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.6;
  color: var(--rs-black);
}

.entry__period-date {
  color: var(--rs-red);
}

.entry__period-note {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.6;
  color: var(--rs-black);
  text-decoration: underline;
}

.entry__notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 40px;
  background: rgba(247, 247, 247, 0.9);
  border-radius: 10px;
  box-sizing: border-box;
}

.entry__notes-title {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.6;
  color: var(--rs-black);
}

.entry__notes-text {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: var(--rs-black);
}

.entry__bg {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -200px;
  overflow: hidden;
}

.entry__bg img {
  display: block;
  width: 100%;
  height: auto;
}

/* ENTRY SP */
@media screen and (max-width: 768px) {
  .entry__body {
    gap: 16px;
    padding: 56px 20px 90px;
  }

  .entry__title {
    margin-bottom: 24px; /* title → content group = 40px */
    font-size: 48px;
  }

  .entry__courses {
    flex-direction: column;
    gap: 8px;
  }

  .entry__course-card {
    gap: 12px;
    padding: 16px 24px;
  }

  .entry__course-name {
    font-size: 24px;
  }

  .entry__course-letter {
    font-size: 32px;
  }

  .entry__course-desc {
    font-size: 16px;
  }

  .entry__course-note {
    font-size: 16px;
  }

  .entry__period {
    padding: 20px;
    box-sizing: border-box;
  }

  .entry__period-text {
    font-size: 18px;
  }

  .entry__period-note {
    font-size: 16px;
  }

  .entry__notes {
    padding: 20px;
  }

  .entry__notes-text {
    font-size: 14px;
  }

  .entry__bg {
    /* Figma 66:2707 = 402×178 — body末尾から141px手前に配置し、37pxだけ下にはみ出す */
    margin-top: -141px;
  }

  .entry__bg img {
    width: 100%;
    height: auto;
    aspect-ratio: 402 / 178;
    object-fit: cover;
    object-position: center;
  }
}

/* =============================================
   EXHIBITORS
   ============================================= */
.exhibitors {
  position: relative;
  margin-top: -130px;
  z-index: 2;
}

.exhibitors__edge {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.exhibitors__edge img {
  display: block;
  width: 100%;
  height: auto;
}

.exhibitors__body {
  width: 100%;
  padding: 56px 24px;
  background: #e3e3e3;
  box-sizing: border-box;
}

.exhibitors__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
}

.exhibitors__title {
  margin: 0;
  font-family: var(--rs-font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--rs-red);
  text-align: center;
}

.exhibitors__coming {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 32px;
  border: 2px solid var(--rs-black);
  background: #e3e3e3;
  box-sizing: border-box;
}

.exhibitors__coming-text {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.6;
  color: var(--rs-black);
  text-align: center;
}

/* bodyの背景をエッジまで伸ばす */
.exhibitors__edge--top + .exhibitors__body,
.exhibitors__body {
  position: relative;
}

/* EXHIBITORS SP */
@media screen and (max-width: 768px) {
  .exhibitors {
    /* SPエッジ(~36px)分だけ重ねる。PCの-130pxだとentry__bg(178px)を潰す */
    margin-top: -36px;
  }

  .exhibitors__body {
    padding: 32px 20px;
  }

  .exhibitors__inner {
    gap: 24px;
  }

  .exhibitors__title {
    font-size: 48px;
  }

  .exhibitors__coming-text {
    font-size: 16px;
  }

  .exhibitors__coming {
    padding: 20px;
  }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  position: relative;
  z-index: 2;
  background: var(--rs-white);
}

.about__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 24px 56px;
  box-sizing: border-box;
}

.about__title {
  margin: 0;
  font-family: var(--rs-font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--rs-red);
  text-align: center;
}

.about__block {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
}

.about__block--magazine {
  grid-template-columns: minmax(0, 1fr) 400px;
}

.about__gallery,
.about__aside,
.about__content {
  min-width: 0;
}

.about__gallery {
  width: 100%;
}

.about__gallery-viewport {
  height: 656px;
  overflow: hidden;
}

.about__gallery--meeting .about__gallery-viewport {
  height: 643px;
}

.about__gallery-track {
  display: flex;
  flex-direction: column;
  will-change: transform;
  animation: about-gallery-scroll 28s linear infinite;
}

.about__gallery--meeting .about__gallery-track {
  animation-duration: 22s;
}

.about__gallery:hover .about__gallery-track {
  animation-play-state: paused;
}

.about__gallery-set {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.about__gallery--meeting .about__gallery-set {
  gap: 8px;
}

.about__gallery-grid,
.about__gallery-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.about__gallery img,
.about__aside img,
.about__bg img {
  display: block;
  width: 100%;
  height: auto;
}

.about__gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about__gallery--gtr .about__gallery-row {
  gap: 4px;
}

.about__gallery--gtr img {
  object-fit: cover;
}

@keyframes about-gallery-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes about-gallery-scroll-x {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about__gallery-track {
    animation: none;
  }

  .about__gallery-viewport {
    height: auto;
    overflow: visible;
  }

  .about__gallery-set[aria-hidden="true"] {
    display: none;
  }

  .about__gallery-set {
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__tag {
  margin-left: 14px;
}

.about__text {
  color: var(--rs-black);
  font-family: var(--rs-font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.about__text p {
  margin: 0;
}

.about__videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.about__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.about__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about__video--wide {
  aspect-ratio: 1004 / 564;
}

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

.about__magazine-cover {
  aspect-ratio: 400 / 257;
  object-fit: cover;
}

.about__banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about__banner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: #5e5e5e !important;
  text-decoration: none !important;
}

.about__banner span {
  font-family: var(--rs-font-jp);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
  text-decoration: underline;
}

.about__summary-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
}

.about__summary {
  padding: 56px;
  background: var(--rs-white);
  border-radius: 10px;
  box-sizing: border-box;
}

.about__summary-title {
  margin: 0 0 16px;
  color: var(--rs-black);
  font-family: var(--rs-font-jp);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
}

.about__summary-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
}

.about__summary-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.about__summary-tab {
  padding: 8px 12px;
  background: #f5f4f4;
  color: #848282;
  font-family: var(--rs-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.about__summary-tab:first-of-type {
  position: relative;
}

#about_summary_ja:checked + .about__summary-tab {
  background: #5e5e5e;
  color: var(--rs-white);
}

#about_summary_ja:checked + .about__summary-tab::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--rs-red);
  vertical-align: middle;
}

#about_summary_en:checked + .about__summary-tab {
  background: #5e5e5e;
  color: var(--rs-white);
}

.about__summary-panel {
  display: none;
  grid-column: 1 / -1;
  margin-top: 24px;
}

#about_summary_ja:checked ~ .about__summary-panel--ja,
#about_summary_en:checked ~ .about__summary-panel--en {
  display: block;
}

.about__summary-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #929292;
}

.about__summary-row:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.about__summary-row dt,
.about__summary-row dd {
  margin: 0;
  color: var(--rs-black);
  font-family: var(--rs-font-jp);
  line-height: 1.8;
}

.about__summary-row dt {
  font-size: 16px;
  font-weight: 600;
}

.about__summary-row dd {
  font-size: 16px;
  font-weight: 500;
}

.about__summary-row dd span {
  font-size: 14px;
}

.about__summary-row a {
  color: var(--rs-black) !important;
  text-decoration: underline !important;
}

.about__summary-row--note dd {
  font-size: 14px;
}

.about__bg {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: -180px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .about__body {
    gap: 24px;
    padding: 32px 20px;
  }

  .about__title {
    font-size: 48px;
  }

  .about__block,
  .about__block--magazine {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
  }

  .about__block + .about__block {
    margin-top: 8px; /* blocks間 32px (= body gap 24 + 8) */
  }

  /* SP: タグ → テキスト → 動画 → ギャラリー */
  .about__block--gtr .about__content,
  .about__block--meeting .about__content {
    order: 1;
  }

  .about__block--gtr .about__gallery,
  .about__block--meeting .about__gallery {
    order: 2;
  }

  .about__block--magazine .about__content {
    order: 1;
  }

  .about__block--magazine .about__aside {
    order: 2;
  }

  .about__tag {
    margin-left: 10px;
  }

  .about__tag .event-card__tag-label {
    font-size: 20px;
  }

  .about__text {
    font-size: 15px;
  }

  .about__videos {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .about__video {
    aspect-ratio: 432 / 244;
  }

  .about__video--wide {
    aspect-ratio: 1004 / 564;
  }

  .about__gallery-viewport,
  .about__gallery--meeting .about__gallery-viewport {
    height: 200px;
    width: 100%;
  }

  .about__gallery-track {
    flex-direction: row;
    width: max-content;
    height: 200px;
    animation-name: about-gallery-scroll-x;
    animation-duration: 24s;
  }

  .about__gallery--meeting .about__gallery-track {
    animation-duration: 20s;
  }

  .about__gallery-set {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: max-content;
    height: 200px;
    gap: 4px;
  }

  .about__gallery--gtr .about__gallery-hero {
    flex: none;
    width: auto;
    height: 200px;
    aspect-ratio: 372 / 243;
  }

  .about__gallery-grid {
    flex: none;
    display: flex;
    flex-direction: column;
    width: 347px;
    height: 200px;
    gap: 4px;
  }

  .about__gallery-grid .about__gallery-row {
    flex: 1 1 0;
    height: auto;
    min-height: 0;
    gap: 4px;
  }

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

  .about__gallery-stack {
    flex: none;
    display: flex;
    flex-direction: column;
    width: 234px;
    height: 200px;
    gap: 4px;
  }

  .about__gallery-stack img {
    flex: 1 1 0;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
  }

  .about__gallery--meeting .about__gallery-set {
    gap: 4px;
  }

  .about__gallery--meeting .about__gallery-set > img {
    flex: none;
    width: 351.5px;
    height: 200px;
    object-fit: cover;
  }

  .about__aside {
    gap: 16px;
  }

  .about__magazine-cover {
    width: 100%;
    aspect-ratio: 780 / 500;
  }

  .about__banners {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about__banner span {
    font-size: 10px;
  }

  .about__summary-wrap {
    margin-top: 8px;
  }

  .about__summary {
    padding: 24px 20px;
  }

  .about__summary-title {
    font-size: 24px;
  }

  .about__summary-tab {
    font-size: 12px;
  }

  .about__summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about__summary-row dt,
  .about__summary-row dd {
    font-size: 15px;
  }

  .about__summary-row dd span,
  .about__summary-row--note dd {
    font-size: 13px;
  }

  .about__bg {
    margin-top: -120px;
  }
}

/* =============================================
   TICKET
   ============================================= */
.ticket {
  position: relative;
  z-index: 2;
  margin-top: -130px;
}

.ticket__edge {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.ticket__edge img {
  display: block;
  width: 100%;
  height: auto;
}

.ticket__body {
  width: 100%;
  padding: 56px 24px;
  background: #e3e3e3;
  box-sizing: border-box;
}

.ticket__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
}

.ticket__title {
  margin: 0;
  font-family: var(--rs-font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--rs-red);
  text-align: center;
}

.ticket__lead {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--rs-black);
  text-align: center;
  text-decoration: underline;
}

.ticket__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 40px;
  background: var(--rs-white);
  border: 1px solid var(--rs-black);
  border-radius: 5px;
  box-sizing: border-box;
}

.ticket__card-heading {
  text-align: center;
  color: var(--rs-black);
}

.ticket__card-title {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.ticket__card-sub {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.ticket__divider {
  display: block;
  width: 140px;
  height: 2px;
}

.ticket__prices {
  color: var(--rs-black);
  font-family: var(--rs-font-jp);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  text-align: left;
}

.ticket__prices p {
  margin: 0;
}

.ticket__notes {
  color: var(--rs-black);
  font-family: var(--rs-font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

.ticket__notes p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .ticket {
    margin-top: -36px;
  }

  .ticket__body {
    padding: 32px 20px;
  }

  .ticket__inner {
    gap: 24px;
  }

  .ticket__title {
    font-size: 48px;
  }

  .ticket__lead {
    font-size: 15px;
  }

  .ticket__card {
    align-items: stretch;
    gap: 12px;
    padding: 20px;
  }

  .ticket__card-title {
    font-size: 18px;
  }

  .ticket__card-sub {
    font-size: 14px;
  }

  .ticket__prices {
    font-size: 15px;
  }

  .ticket__notes {
    font-size: 13px;
  }
}

/* =============================================
   ACCESS
   ============================================= */
.access {
  position: relative;
  z-index: 2;
  background: var(--rs-white);
}

.access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
  padding: 56px 24px;
  box-sizing: border-box;
}

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

.access__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.access__title {
  margin: 0;
  font-family: var(--rs-font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--rs-red);
  text-align: center;
}

.access__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}

.access__venue {
  margin: 0;
  max-width: 425px;
  font-family: var(--rs-font-jp);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--rs-black);
  text-align: center;
}

.access__venue a {
  color: var(--rs-black) !important;
  text-decoration: underline !important;
}

.access__address {
  margin: 0;
  max-width: 425px;
  font-family: var(--rs-font-jp);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--rs-black);
  text-align: center;
}

.access__map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  border: 1px solid var(--rs-black);
  color: var(--rs-black) !important;
  font-family: var(--rs-font-jp);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none !important;
  box-sizing: border-box;
}

.access__map-link img {
  display: block;
  width: 15px;
  height: 15px;
}

.access__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.access__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: #424242;
  color: var(--rs-white) !important;
  font-family: var(--rs-font-jp);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
  box-sizing: border-box;
}

.access__btn img {
  display: block;
  width: 18px;
  height: 18px;
}

.access__btn:hover {
  opacity: 0.9;
}

.access__partners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  align-items: start;
}

.access__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--rs-black) !important;
  text-decoration: none !important;
}

.access__partner img {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.access__partner p {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  color: #5e5e5e;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .access__inner {
    gap: 32px;
    padding: 32px 20px;
  }

  .access__main {
    gap: 24px;
  }

  .access__content {
    gap: 16px;
  }

  .access__title {
    font-size: 48px;
  }

  .access__info {
    gap: 12px;
    padding: 0;
  }

  .access__venue {
    font-size: 16px;
  }

  .access__address {
    font-size: 14px;
  }

  .access__map-link {
    font-size: 14px;
    padding: 8px 16px;
  }

  .access__buttons {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .access__btn {
    gap: 8px;
    padding: 16px;
    font-size: 15px;
  }

  .access__btn img {
    width: 16px;
    height: 16px;
  }

  .access__partners {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .access__partner img {
    max-width: 220px;
  }

  .access__partner p {
    font-size: 11px;
  }
}

/* =============================================
   NOTICE (ご来場のみなさまへ)
   ============================================= */
.notice {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.notice__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.notice__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(81, 81, 81, 0.4);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.notice__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 24px;
  box-sizing: border-box;
}

.notice__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 912px;
  padding: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-sizing: border-box;
  color: var(--rs-black);
}

.notice__title {
  margin: 0;
  width: 100%;
  font-family: var(--rs-font-jp);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.notice__text {
  width: 100%;
  font-family: var(--rs-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.notice__text p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .notice__inner {
    padding: 32px 20px;
  }

  .notice__card {
    gap: 16px;
    padding: 24px 20px;
  }

  .notice__title {
    font-size: 20px;
  }

  .notice__text {
    font-size: 13px;
  }
}

/* =============================================
   CONTACT (お問い合わせ)
   ============================================= */
.contact {
  position: relative;
  z-index: 2;
  background: var(--rs-black);
}

.contact__inner {
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
  padding: 80px 24px;
  box-sizing: border-box;
}

.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 40px;
  border: 1px solid var(--rs-white);
  border-radius: 10px;
  box-sizing: border-box;
}

.contact__title {
  margin: 0;
  width: 100%;
  font-family: var(--rs-font-jp);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--rs-white);
  text-align: center;
}

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

.contact__org {
  margin: 0;
  width: 100%;
  font-family: var(--rs-font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--rs-white);
  text-align: center;
}

.contact__mail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rs-white) !important;
  font-family: var(--rs-font-jp);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
}

.contact__mail img {
  display: block;
  width: 24px;
  height: 24px;
}

.contact__mail:hover {
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 32px 20px;
  }

  .contact__card {
    gap: 16px;
    padding: 24px 20px;
  }

  .contact__title {
    font-size: 20px;
  }

  .contact__org,
  .contact__mail {
    font-size: 14px;
  }

  .contact__mail img {
    width: 20px;
    height: 20px;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  position: relative;
  z-index: 2;
  background: #f5f5f5;
}

.site-footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 912px;
  margin: 0 auto;
  padding: 80px 24px 56px;
  box-sizing: border-box;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.site-footer__logo {
  display: block;
  width: min(100%, 500px);
  height: auto;
}

.site-footer__meta {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.site-footer__date {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.site-footer__date-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__year {
  margin: 0;
  font-family: var(--rs-font-display);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  color: var(--rs-black);
}

.site-footer__md {
  display: flex;
  align-items: center;
  margin-right: -4px;
}

.site-footer__md img {
  display: block;
  height: auto;
}

.site-footer__md img:first-child {
  width: 93px;
  margin-right: -4px;
}

.site-footer__slash {
  width: 34px;
  margin-right: -4px;
}

.site-footer__md img:last-child {
  width: 100px;
}

.site-footer__dow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: var(--rs-black);
  text-align: center;
}

.site-footer__dow span {
  display: block;
}

.site-footer__badge {
  display: block;
  width: 90px;
  height: 90px;
}

.site-footer__note {
  margin: 0;
  font-family: var(--rs-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--rs-black);
  text-align: center;
}

.site-footer__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #d70400;
  box-sizing: border-box;
}

.site-footer__copy p {
  margin: 0;
  font-family: var(--rs-font-en);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--rs-white);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .site-footer__main {
    gap: 24px;
    padding: 40px 20px 32px;
  }

  .site-footer__logo {
    width: min(100%, 280px);
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .site-footer__year {
    font-size: 18px;
  }

  .site-footer__md img:first-child {
    width: 64px;
  }

  .site-footer__slash {
    width: 24px;
  }

  .site-footer__md img:last-child {
    width: 70px;
  }

  .site-footer__dow {
    font-size: 15px;
  }

  .site-footer__badge {
    width: 64px;
    height: 64px;
  }

  .site-footer__note {
    font-size: 12px;
  }

  .site-footer__copy {
    padding: 16px;
  }

  .site-footer__copy p {
    font-size: 11px;
  }
}
