:root {
  --blue: #0057a8;
  --blue-2: #168bc2;
  --gray: #d1d1d3;
  --light-gray: #efefef;
  --ink: #101010;
  --muted: #6c6c6c;
  --white: #fff;
  --beige: #c6bea0;
  --max: 1040px;
  --wide: 1120px;
  --gutter: clamp(20px, 6vw, 72px);
  --jp: system-ui, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --en: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--jp);
  font-size: 15px;
  line-height: 1.9;
  background: var(--white);
  overflow-x: hidden;
}

body.is-drawer-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #57b7ee;
  outline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  min-height: 70px;
  padding: 16px 58px 10px 16px;
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo,
.footer-logo,
.placeholder-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 7px;
  width: min(100%, calc(100vw - 82px));
  color: #8d8d8d;
  line-height: 1;
}

.logo-main {
  color: var(--blue);
  font-family: var(--en);
  font-size: clamp(42px, 13vw, 56px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.78;
}

.logo-sub {
  display: grid;
  gap: 2px;
  padding-bottom: 2px;
  font-size: clamp(10px, 3.1vw, 15px);
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
}

.logo-sub small {
  font-size: 0.46em;
  line-height: 1;
}

.site-header-home .logo {
  width: min(100%, calc(100vw - 82px));
}

.site-header-home .logo-main {
  font-size: clamp(42px, 13vw, 56px);
}

.site-header-home .logo-sub {
  font-size: clamp(10px, 3.1vw, 15px);
}

.header-nav {
  display: none;
}

.menu-button,
.drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  border: 0;
  background: var(--blue);
  cursor: pointer;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after,
.drawer-close i,
.drawer-close i::before {
  position: absolute;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--white);
  content: "";
}

.menu-button i {
  top: 27px;
}

.menu-button i::before {
  top: -9px;
  left: 0;
  right: 0;
}

.menu-button i::after {
  top: 9px;
  left: 0;
  right: 0;
}

.drawer-close i {
  top: 27px;
  transform: rotate(45deg);
}

.drawer-close i::before {
  left: 0;
  right: 0;
  transform: rotate(90deg);
}

.side-contact {
  display: none;
}

.drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 9999;
  isolation: isolate;
  overflow: hidden;
}

.drawer-shell[hidden] {
  display: none;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.drawer {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  max-height: 100dvh;
  padding: 82px 24px 42px 52px;
  color: var(--white);
  background: var(--blue);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  will-change: transform;
}

.drawer-shell.is-open .drawer-backdrop {
  opacity: 1;
}

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

.drawer-rail {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 40px;
  color: var(--blue);
  background: var(--white);
}

.drawer-h {
  position: absolute;
  top: 54px;
  left: 10px;
  font-family: var(--en);
  font-size: 84px;
  font-style: italic;
  font-weight: 900;
  line-height: 0.8;
}

.vertical-en {
  position: absolute;
  bottom: 72px;
  left: 14px;
  writing-mode: vertical-rl;
  font-family: var(--en);
  font-size: 10px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.drawer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
}

.drawer-title {
  display: inline;
  font-family: var(--en);
  font-size: clamp(28px, 8vw, 46px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
}

.drawer-title-tail {
  white-space: nowrap;
}

.drawer-group p {
  margin: 8px 0 14px;
  font-size: 16px;
  font-weight: 800;
}

.drawer-group ul {
  margin: 0;
  padding: 0 0 0 24px;
  list-style: none;
}

.drawer-group li {
  margin: 2px 0;
  font-weight: 800;
}

.drawer-haaa {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  font-family: var(--en);
  font-size: clamp(72px, 22vw, 200px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.8;
}

.drawer-close {
  z-index: 3;
}

@media (max-width: 699px) {
  .drawer {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    max-height: 100dvh;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .drawer-rail {
    overflow: hidden;
  }

  .drawer-h {
    display: none;
  }
}

main {
  position: relative;
}

h1,
h2,
h3,
.btn,
.badge,
time {
  font-family: var(--en);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}

.home-hero {
  position: relative;
  margin: -28px 0 0;
  padding-left: 20px;
}

.home-hero-img {
  width: calc(100% - 26px);
  margin-left: auto;
  aspect-ratio: 1 / 1.35;
  object-fit: cover;
  object-position: center top;
}

.home-hero h1 {
  position: absolute;
  top: 82px;
  right: 46px;
  margin: 0;
  padding: 16px 8px 8px;
  color: var(--white);
  background: var(--blue);
  writing-mode: vertical-rl;
  font-family: var(--jp);
  font-size: clamp(18px, 5.8vw, 28px);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.home-rail {
  position: absolute;
  top: 0;
  bottom: 62px;
  left: 0;
  width: 18px;
  border-left: 0;
}

.home-rail span {
  position: sticky;
  top: 86px;
  display: inline-block;
  writing-mode: vertical-rl;
  color: var(--blue);
  font-family: var(--en);
  font-size: 11.25px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.award-badge {
  position: absolute;
  left: 54px;
  bottom: 86px;
  z-index: 5;
  display: block;
  width: 156px;
  aspect-ratio: 1;
  line-height: 0;
}

.award-badge img {
  width: 100%;
  height: auto;
}

.sp-quick-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: calc(100% - 20px);
  margin: 0 0 0 20px;
  color: var(--white);
  background: var(--blue);
}

.sp-quick-links a {
  min-width: 0;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 3px 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--en);
  font-size: clamp(13.4px, 4vw, 15.6px);
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: anywhere;
}

.sp-quick-link-en {
  white-space: nowrap;
}

.sp-quick-link-ja {
  font-family: var(--jp);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.design-block {
  position: relative;
  isolation: isolate;
  margin-top: 72px;
}

.gray-panel {
  position: absolute;
  left: 0;
  top: 0;
  width: 62%;
  height: clamp(312px, calc(228px + 22vw), 450px);
  background: var(--gray);
  z-index: 0;
}

.vertical-slogan {
  position: relative;
  z-index: 3;
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 11px;
  margin: 52px 0 0 22px;
  align-items: flex-start;
}

.vertical-slogan span {
  display: inline-block;
  padding: 11px 6px;
  color: var(--white);
  background: var(--blue);
  writing-mode: vertical-rl;
  font-size: 21.6px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.message-img,
.about-city {
  position: relative;
  z-index: 2;
  width: 78%;
  margin: -264px 0 0 auto;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.message-copy {
  position: relative;
  z-index: auto;
  width: 73.333%;
  margin: -82px 0 0 auto;
  padding: 0;
  background: transparent;
}

.copy-blue-panel {
  position: absolute;
  z-index: 1;
  left: -26.667vw;
  top: -33px;
  width: 66.667vw;
  background: var(--blue-2);
  pointer-events: none;
}

.message-copy .copy-blue-panel {
  height: calc(100% - 83px);
}

.about-copy .copy-blue-panel {
  height: calc(100% + 33px);
}

.message-copy p,
.about-copy p {
  font-size: clamp(14px, calc(12.5px + 0.25vw), 15.5px);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.9;
}

.message-copy p {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 24px 20px;
  background: var(--white);
}

.message-copy-mobile {
  display: none;
}

.message-copy-mobile-line {
  display: block;
}

.message-copy .btn {
  z-index: 4;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 48px;
  padding: 12px 48px 12px 24px;
  color: var(--blue);
  background: var(--gray);
  border: 0;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.1;
}

.btn small {
  display: block;
  margin-top: 2px;
  font-family: var(--jp);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.btn i,
.btn::after {
  position: absolute;
  content: "";
}

.btn i,
.btn::after {
  right: 18px;
  width: 16px;
  height: 16px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn-blue {
  color: var(--white);
  background: var(--blue-2);
}

.btn-white {
  color: var(--blue);
  background: var(--white);
}

.section-grid {
  display: grid;
  gap: 56px;
  width: min(100% - 40px, var(--wide));
  margin: 86px auto 0;
}

.section-grid h2,
.home-members h2,
.logo-section h2,
.member-section h2,
.board-section h2,
.activities-copy h2,
.committees-section h2,
.purpose-block h2 {
  margin: 0 0 26px;
  color: var(--blue-2);
  font-size: clamp(38px, 10vw, 62px);
  line-height: 0.95;
}

.home-news h2 {
  font-size: clamp(27px, 8vw, 52px);
  white-space: nowrap;
}

.home-card-list {
  display: grid;
  gap: 20px;
}

.news-card a {
  display: block;
}

.news-card figure {
  position: relative;
  margin: 0 0 12px;
  background: var(--gray);
  aspect-ratio: 1.36 / 1;
  overflow: hidden;
}

.news-card figure img,
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: var(--gray);
}

.placeholder-logo {
  justify-content: center;
  width: 82%;
  opacity: 0.9;
}

.placeholder-logo .logo-main {
  font-size: clamp(38px, 7vw, 76px);
}

.placeholder-logo .logo-sub {
  font-size: clamp(13px, 2.4vw, 24px);
}

.badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 72px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  line-height: 1;
  text-align: center;
}

.news-card time,
.event-list time,
.article-meta time {
  display: inline-block;
  color: var(--blue-2);
  font-size: 13px;
  line-height: 1;
}

.news-card p,
.event-list p {
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.news-card-compact a {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 14px;
  align-items: start;
}

.news-card-compact figure {
  margin: 0;
}

.news-card-compact p {
  grid-column: 2;
}

.home-event h2 span {
  color: var(--blue);
}

.event-list {
  display: grid;
  gap: 20px;
}

.event-list article {
  min-height: 46px;
}

.event-list .badge {
  position: static;
  display: inline-block;
  margin-left: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-members {
  width: min(100%, 1120px);
  margin: 84px auto 0;
}

.members-feature-img {
  width: min(82%, 760px);
  aspect-ratio: 1.6 / 1;
  object-fit: cover;
}

.members-feature-copy {
  width: min(100% - 40px, 420px);
  margin: -28px 20px 0 auto;
}

.members-feature-copy p {
  font-size: 13px;
  font-weight: 800;
}

.home-links {
  display: grid;
  gap: 34px;
  margin-top: 76px;
  padding: 40px var(--gutter) 56px;
  background: linear-gradient(to bottom, var(--blue) 0 36%, transparent 36%);
}

.visual-link {
  display: block;
  text-align: center;
}

.visual-link img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

.visual-link[href="media.html"] img {
  object-position: 30% center;
}

.visual-link span {
  display: block;
  margin-top: -18px;
  color: var(--blue-2);
  font-family: var(--en);
  font-size: 42px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.visual-link p {
  width: min(330px, 100%);
  margin: 10px auto 0;
  font-size: 13.8px;
  font-weight: 800;
  letter-spacing: 0.023em;
  line-height: 1.75;
}

.contact-band {
  display: grid;
  gap: 28px;
  width: min(100% - 40px, 1080px);
  margin: 62px auto 88px;
  padding: 30px 26px;
  color: var(--white);
  background: var(--blue-2);
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(36px, 9vw, 62px);
  line-height: 1;
}

.contact-band p {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions .tel {
  display: inline-flex;
  align-items: flex-start;
  gap: 13px;
  font-family: var(--en);
  font-size: clamp(31px, 8.8vw, 50px);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.contact-actions .tel-copy {
  display: grid;
  gap: 7px;
}

.contact-actions .tel-number {
  display: block;
  white-space: nowrap;
}

.contact-actions small {
  display: block;
  font-family: var(--jp);
  font-size: 12.5px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.contact-action-icon {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
}

.contact-action-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 3.2;
}

.contact-action-icon.phone {
  width: 30px;
  height: 48px;
  margin-top: 0;
}

.contact-action-icon.phone::before,
.contact-action-icon.phone::after {
  content: none;
}

.contact-email {
  min-height: 58px;
  justify-content: flex-start;
  gap: 18px;
  padding-left: 28px;
  font-family: var(--en);
  font-size: clamp(17px, 4.25vw, 23px);
  font-style: italic;
  font-weight: 900;
}

.contact-email .contact-action-icon.mail {
  width: 58px;
  height: 38px;
}

.contact-email .contact-action-icon.mail::before,
.contact-email .contact-action-icon.mail::after {
  content: none;
}

.page-hero {
  position: relative;
  width: min(100% - 36px, 1060px);
  margin: 0 0 0 auto;
}

.page-hero::before {
  position: absolute;
  left: -36px;
  bottom: -82px;
  z-index: -1;
  width: min(54vw, 520px);
  height: 160px;
  background: var(--gray);
  content: "";
}

.page-hero-img {
  width: 100%;
  aspect-ratio: 2.28 / 1;
  object-fit: cover;
  object-position: center;
}

.page-hero-title {
  position: absolute;
  left: clamp(38px, 10vw, 150px);
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
}

.page-hero-title h1 {
  margin: 0;
  font-size: clamp(42px, 11vw, 86px);
  line-height: 0.9;
}

.page-hero-title p {
  margin: 14px 0 0;
  font-weight: 800;
}

.page-hero-solid {
  min-height: 182px;
  background: var(--blue-2);
}

.intro-block {
  width: min(100% - 40px, 560px);
  margin: 118px auto 0 var(--gutter);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.9;
}

.about-lead {
  min-height: 480px;
}

.about-copy {
  position: relative;
  z-index: auto;
  width: 73.333%;
  margin: -82px 0 0 auto;
}

.about-copy p {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 24px 20px;
  background: var(--white);
}

.about-copy-desktop {
  display: none;
}

.about-copy-mobile,
.about-copy-mobile-line {
  display: block;
}

.about-copy-mobile-line {
  overflow-wrap: anywhere;
}

.about .page-hero::before {
  content: none;
}

@media (max-width: 699px) {
  .home-message .vertical-slogan {
    z-index: 6;
  }

  .message-copy-desktop {
    display: none;
  }

  .message-copy-mobile {
    display: block;
  }

  .message-copy {
    width: calc(100% - 40px);
    margin-top: max(-78px, calc(160.8px - 56vw));
  }

  .message-copy p {
    margin-left: clamp(50px, 16vw, 60px);
    padding: 26px 18px 28px;
    font-size: clamp(13.8px, 3.85vw, 14.95px);
    letter-spacing: 0.023em;
  }

  .members-feature-copy p {
    font-size: 14.95px;
    letter-spacing: 0.023em;
  }

  .visual-link p {
    width: min(330px, 100%);
    font-size: 13.8px;
    letter-spacing: 0.023em;
  }

  .contact-band p {
    font-size: 13.8px;
    letter-spacing: 0.023em;
    line-height: 1.75;
  }

  .contact-actions .tel {
    gap: 10px;
    font-size: clamp(29px, 8.2vw, 33px);
  }

  .contact-action-icon.phone {
    width: 24px;
    height: 38px;
  }

  .contact-action-icon svg {
    stroke-width: 2.8;
  }

  .contact-email {
    gap: 14px;
    padding-left: 22px;
    padding-right: 44px;
    font-size: 17px;
  }

  .contact-email .contact-action-icon.mail {
    width: 44px;
    height: 29px;
  }

  .contact-actions small {
    font-size: 12.65px;
    letter-spacing: 0.023em;
  }

  .message-copy .copy-blue-panel {
    height: calc(100% - 72px);
  }

  .message-copy .btn {
    margin-top: 30px;
    margin-left: clamp(50px, 16vw, 60px);
  }

  .about .page-hero {
    width: calc(100% - 30px);
    margin-left: auto;
  }

  .about .page-hero-img {
    aspect-ratio: 1.4375 / 1;
    object-position: center top;
  }

  .about .about-lead {
    margin-top: clamp(82px, 25.33vw, 95px);
    min-height: 620px;
  }

  .about .about-lead .gray-panel {
    width: 66.667%;
    height: clamp(416px, 125.4vw, 470px);
  }

  .about .about-lead .vertical-slogan {
    margin-left: 30px;
  }

  .about .about-city {
    width: calc(100% - 33px);
    margin-top: -323px;
    aspect-ratio: 1.02 / 1;
  }

  .about .about-copy .copy-blue-panel {
    height: 200px;
    clip-path: polygon(0 0, 12% 0, 12% 58%, 40% 58%, 40% 100%, 0 100%);
  }

  .about .about-copy p {
    padding-right: 6px;
    padding-left: 6px;
    font-size: clamp(11px, 3.45vw, 14px);
    letter-spacing: 0.05em;
    line-height: 1.82;
  }

  .about .content-heading,
  .about .content-subhead {
    text-align: left;
  }

  .about .content-subhead {
    margin: -16px 0 24px;
    color: var(--blue-2);
    font-size: 15.6px;
    font-weight: 800;
    line-height: 1.4;
  }
}

.purpose-block {
  display: grid;
  gap: 24px;
  margin-top: 72px;
  padding: 46px var(--gutter);
  background: linear-gradient(to right, var(--gray) 0 54%, transparent 54%);
}

.purpose-block p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.purpose-block .content-subhead,
.activities-copy .content-subhead {
  color: var(--blue-2);
}

.subhead,
.section-note {
  margin: -16px 0 24px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.board-section,
.activities-section,
.committees-section,
.logo-section,
.member-section,
.article-layout,
.contact-cards,
.form-shell,
.policy-body {
  width: min(100% - 40px, var(--wide));
  margin: 86px auto 0;
}

.board-section h2,
.member-section h2,
.logo-section h2,
.committees-section h2 {
  text-align: center;
}

.board-table {
  display: grid;
  gap: 0;
}

.board-row {
  display: grid;
  grid-template-columns: 60px 76px minmax(0, 1fr);
  column-gap: 8px;
  row-gap: 4px;
  align-items: center;
  min-height: 34px;
  padding: 4px 0;
  border-bottom: 1px dotted #c9c9c9;
  font-size: 11px;
  line-height: 1.35;
}

.board-row b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
}

.board-row strong {
  font-weight: 900;
}

.board-detail {
  display: block;
  min-width: 0;
}

.board-company {
  display: block;
  min-width: 0;
}

.board-committee {
  display: inline-flex;
  grid-column: 2 / -1;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: min(100%, 150px);
  min-height: 20px;
  border: 1px solid var(--blue-2);
  padding: 2px 6px;
  color: var(--blue-2);
  background: var(--white);
  font-size: 7.5px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.activities-section {
  display: grid;
  gap: 24px;
}

.activities-img {
  width: min(100%, 560px);
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}

.activities-copy {
  padding: 26px 0;
}

.activities-copy p {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.activity-grid div {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 10px;
  color: var(--blue);
  border: 2px solid #54a7d2;
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.committees-section {
  width: 100%;
  max-width: none;
  padding: 58px var(--gutter) 72px;
  background: var(--gray);
}

.committees-section > p {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.committee-list {
  display: grid;
  gap: 28px;
  width: min(100%, 860px);
  margin: 34px auto 0;
}

.committee-list article {
  display: grid;
  gap: 0;
}

.committee-photo {
  display: grid;
  place-items: center;
  width: min(76%, 230px);
  aspect-ratio: 1;
  color: #615d4c;
  background: var(--beige);
  font-size: 11px;
  font-weight: 800;
}

.committee-list article > div:last-child {
  margin: -26px 0 0 36px;
  padding: 34px 26px 28px;
  background: var(--white);
}

.committee-list h3 {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-family: var(--jp);
  font-style: normal;
  font-size: 16px;
}

.committee-list p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: min(100% - 40px, 880px);
  margin: 64px auto 0;
}

.tabs a {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: var(--blue);
  border: 2px solid var(--blue-2);
  font-family: var(--en);
  font-style: italic;
  font-weight: 900;
}

.tabs a.is-active {
  color: var(--white);
  background: var(--blue);
}

.news-grid {
  display: grid;
  gap: 42px 28px;
  width: min(100% - 40px, var(--wide));
  margin: 62px auto 0;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 74px 0 96px;
}

.pager a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  border: 2px solid var(--blue-2);
  font-family: var(--en);
  font-style: italic;
  font-weight: 900;
}

.pager .is-active {
  color: var(--white);
  background: var(--blue);
}

.article-layout {
  display: grid;
  gap: 50px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.article-meta .badge {
  position: static;
}

.article-body h1 {
  margin: 22px 0 52px;
  font-family: var(--jp);
  font-style: normal;
  font-size: clamp(22px, 5vw, 34px);
  line-height: 1.4;
}

.article-placeholder {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  margin: 0 0 42px;
  background: var(--beige);
}

.article-body p {
  margin: 0 0 42px;
  font-size: 14px;
  line-height: 2;
}

.article-sidebar {
  display: grid;
  gap: 40px;
}

.article-sidebar h3 {
  display: grid;
  place-items: center;
  min-height: 30px;
  margin: 0 0 20px;
  color: var(--blue);
  border: 2px solid var(--blue-2);
  font-size: 16px;
}

.article-sidebar a {
  display: grid;
  gap: 6px;
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.6;
}

.member-section {
  margin-top: 72px;
}

.member-grid,
.logo-grid {
  display: grid;
  gap: 34px 28px;
}

.member-card {
  display: grid;
  gap: 12px;
  min-height: 168px;
  padding: 18px 0 0;
  border-top: 2px solid #60b0da;
}

.member-logo,
.logo-card-mark {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 6px;
}

.member-logo img,
.logo-card-mark img {
  max-width: 92%;
  max-height: 64px;
  object-fit: contain;
}

.member-logo strong,
.logo-card-mark strong {
  color: var(--ink);
  font-family: var(--en);
  font-size: 24px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.member-body b,
.logo-card p {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.member-body p {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

.logo-section {
  margin-bottom: 96px;
}

.logo-card {
  min-height: 154px;
}

.logo-card-mark {
  min-height: 92px;
}

.logo-card {
  border-bottom: 2px solid #54a7d2;
}

.mini-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.mini-actions a {
  display: grid;
  place-items: center;
  min-height: 24px;
  color: var(--blue-2);
  background: var(--gray);
  font-size: 10px;
  font-weight: 900;
}

.ad-section {
  margin-bottom: 84px;
}

.contact-cards {
  display: grid;
  gap: 28px;
  margin-bottom: 108px;
}

.contact-card {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 28px;
  color: var(--white);
  background: var(--blue-2);
  text-align: center;
}

.contact-card b {
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 900;
}

.contact-card strong {
  display: block;
  font-family: var(--en);
  font-size: clamp(36px, 10vw, 60px);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.contact-card small {
  font-size: 13px;
}

.contact-icon {
  position: relative;
  width: 34px;
  height: 46px;
  border: 3px solid var(--white);
}

.contact-icon.phone::after {
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  content: "";
}

.contact-icon.mail {
  width: 54px;
  height: 34px;
}

.contact-icon.mail::before,
.contact-icon.mail::after {
  position: absolute;
  top: 4px;
  width: 34px;
  height: 2px;
  background: var(--white);
  content: "";
}

.contact-icon.mail::before {
  left: 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

.contact-icon.mail::after {
  right: 1px;
  transform: rotate(-35deg);
  transform-origin: right top;
}

.form-shell {
  margin-bottom: 108px;
  padding: 42px 22px;
  background: var(--gray);
}

.register-form {
  width: min(100%, 760px);
  margin: 0 auto;
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  border: 0;
  padding: 0;
}

.form-row > label,
.form-row > legend,
.form-row > span {
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 900;
}

.control-wrap {
  min-width: 0;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 32px;
  min-height: 48px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: 0;
  background: var(--white);
  min-height: 52px;
  padding: 12px 18px;
}

textarea {
  min-height: 220px;
  resize: vertical;
}

.radio,
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 18px;
  color: var(--ink);
  font-weight: 800;
}

.radio-group .radio {
  gap: 8px;
  margin-right: 0;
  font-size: 14px;
  line-height: 1.4;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-right: 0;
  font-size: 13px;
  line-height: 1.75;
}

.consent-copy {
  flex: 1;
  min-width: 0;
}

input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue-2);
  flex: 0 0 auto;
}

input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: var(--blue-2);
  flex: 0 0 auto;
}

.checkbox a {
  display: inline;
  color: var(--blue-2);
  text-decoration: underline;
  white-space: nowrap;
}

.error {
  min-height: 18px;
  margin: 5px 0 0;
  color: #b00020;
  font-size: 12px;
  font-weight: 800;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 42px;
}

.form-actions .btn {
  min-width: 170px;
}

.policy-body {
  margin-bottom: 108px;
}

.policy-body > p {
  margin-bottom: 54px;
  font-size: 13px;
}

.policy-body section {
  margin-bottom: 34px;
}

.policy-body h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: var(--jp);
  font-size: 18px;
  font-style: normal;
}

.policy-body p {
  font-size: 13px;
  line-height: 2;
}

.site-footer {
  position: relative;
  color: var(--white);
  background: #050505;
}

.footer-inner {
  display: grid;
  gap: 34px;
  width: min(100% - 40px, var(--wide));
  margin: 0 auto;
  padding: 48px 0 60px;
}

.footer-logo {
  width: min(100%, 420px);
}

.footer-profile address {
  margin: 24px 0 28px;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.9;
}

.footer-copy {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}

.footer-nav a {
  color: var(--blue-2);
  font-family: var(--en);
  font-size: 14px;
  font-style: italic;
  font-weight: 900;
}

.page-top {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  background: var(--blue);
}

.page-top::before {
  position: absolute;
  top: 23px;
  left: 18px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  transform: rotate(45deg);
  content: "";
}

@media (min-width: 700px) {
  .site-header {
    min-height: 98px;
    padding: 28px 104px 18px 42px;
  }

  .logo {
    width: 350px;
  }

  .logo-main {
    font-size: clamp(58px, 7vw, 82px);
  }

  .logo-sub {
    font-size: clamp(18px, 2.2vw, 29px);
  }

  .menu-button {
    width: 92px;
    height: 98px;
  }

  .menu-button i {
    left: 30px;
    right: 30px;
    top: 49px;
  }

  .menu-button i::before,
  .menu-button i::after {
    left: 0;
    right: 0;
  }

  .menu-button i::before {
    top: -10px;
  }

  .menu-button i::after {
    top: 10px;
  }

  .header-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-left: auto;
  }

  .header-utility,
  .header-primary {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 34px);
    color: var(--blue);
    font-family: var(--en);
    font-style: italic;
    font-weight: 900;
    line-height: 1;
  }

  .header-utility {
    font-size: 12px;
  }

  .header-primary {
    font-size: 16px;
  }

  .rate-link {
    display: inline-grid;
    place-items: center;
    min-width: 130px;
    min-height: 24px;
    border: 2px solid var(--blue-2);
    font-family: var(--jp);
    font-style: normal;
    font-size: 13px;
  }

  .site-header-home {
    min-height: 130px;
    padding-top: 34px;
  }

  .site-header-home .logo {
    width: min(34vw, 420px);
  }

  .site-header-home .logo-main {
    font-size: clamp(72px, 8vw, 120px);
  }

  .site-header-home .logo-sub {
    font-size: clamp(22px, 2.4vw, 34px);
  }

  .home-hero {
    width: min(100% - 70px, 1120px);
    margin: -62px auto 0;
    padding-left: 0;
  }

  .home-hero-img {
    width: 100%;
    aspect-ratio: 1.62 / 1;
  }

  .home-hero h1 {
    top: 180px;
    right: 54px;
    font-size: clamp(27px, 3.4vw, 44px);
  }

  .home-rail {
    left: -58px;
    width: 28px;
  }

  .home-rail span {
    top: 132px;
    font-size: 13.75px;
  }

  .award-badge {
    left: 45px;
    bottom: 10px;
    width: 179px;
  }

  .sp-quick-links {
    display: none;
  }

  .side-contact {
    position: fixed;
    right: 0;
    top: 42vh;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 50px;
    min-height: 150px;
    color: var(--white);
    background: var(--blue);
    writing-mode: vertical-rl;
    font-family: var(--en);
    font-size: 13px;
    font-style: italic;
    font-weight: 900;
  }

  .drawer {
    width: min(1080px, calc(100vw - 130px));
    padding: 92px 86px 72px 120px;
  }

  .drawer-rail {
    left: -130px;
    width: 130px;
  }

  .drawer-h {
    left: 40px;
    top: 72px;
    font-size: 140px;
  }

  .vertical-en {
    left: 58px;
    bottom: 110px;
    font-size: 15px;
  }

  .drawer-grid {
    grid-template-columns:
      minmax(0, 1.18fr)
      minmax(0, 1.3fr)
      minmax(0, 0.82fr);
    gap: 64px 100px;
  }

  .drawer-title {
    max-width: 100%;
    font-size: clamp(28px, 2.35vw, 31px);
  }

  .drawer-haaa {
    position: static;
    margin: 84px 0 0;
    padding-right: 18px;
    font-size: clamp(84px, 11.9vw, 175px);
    text-align: right;
  }

  .message-img,
  .about-city {
    width: min(78%, 760px);
  }

  .home-message,
  .about-lead {
    width: min(100% - 80px, 1200px);
    margin-right: auto;
    margin-left: auto;
  }

  .home-message {
    --home-gray-hero-half: min(calc(30.8642vw - 21.6049px), 345.679px);
    --home-gray-nature-half: min(calc(27.8571vw - 22.2857px), 271.429px);
    z-index: 1;
  }

  .home-hero {
    z-index: 2;
  }

  .home-message .gray-panel {
    top: calc(-72px - var(--home-gray-hero-half));
    height: calc(124.4px + var(--home-gray-hero-half) + var(--home-gray-nature-half));
  }

  .about .about-lead {
    --about-gray-hero-half: min(calc((100vw - 110px) / 4.9), 216.327px);
    --about-gray-city-depth: min(calc(14.7643vw - 11.8114px), 143.857px);
    z-index: 1;
  }

  .about .page-hero {
    z-index: 2;
  }

  .about .page-hero::before {
    content: none;
  }

  .about .about-lead .gray-panel {
    top: calc(-72px - var(--about-gray-hero-half));
    height: calc(124.4px + var(--about-gray-hero-half) + var(--about-gray-city-depth));
  }

  .message-copy {
    width: min(752px, 62.667%);
    margin: -112px auto 0 17.5%;
    padding: 0 0 max(0px, calc(clamp(54px, 8.1vw, 104px) + clamp(100px, 15.2vw, 194px) - 291px));
  }

  .message-copy p {
    min-height: 190px;
    padding: 45px 40px 27px 0;
  }

  .message-copy .copy-blue-panel {
    left: 83.8%;
    top: clamp(54px, 8.1vw, 104px);
    width: 47.9%;
    height: clamp(100px, 15.2vw, 194px);
  }

  .message-copy .btn {
    margin-top: 42px;
    margin-left: 0;
  }

  .about-copy {
    width: min(752px, 62.667%);
    margin: -95px auto 0 17.5%;
    padding-bottom: max(0px, calc(clamp(55px, 7.4vw, 95px) + clamp(180px, 24.2vw, 310px) - 350px));
  }

  .about-copy p {
    min-height: 350px;
    padding: 42px 40px 38px 0;
  }

  .about-copy .copy-blue-panel {
    left: 83.8%;
    top: clamp(55px, 7.4vw, 95px);
    width: 47.9%;
    height: clamp(180px, 24.2vw, 310px);
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
  }

  .home-news {
    gap: 0;
    background: linear-gradient(to right, transparent calc(50% - 0.5px), #5aa8d0 calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  }

  .home-info {
    min-width: 0;
    border-right: 0;
    padding-right: 54px;
  }

  .home-event {
    min-width: 0;
    padding-left: 54px;
  }

  .home-news h2 {
    font-size: clamp(31px, 4.4vw, 52px);
  }

  .home-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
    padding-top: 58px;
  }

  .contact-band {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 48px 70px;
  }

  .contact-band p {
    font-size: 13.8px;
    letter-spacing: 0.025em;
  }

  .contact-actions {
    border-left: 1px solid rgba(255, 255, 255, 0.55);
    padding-left: 48px;
  }

  .page-hero {
    width: min(100% - 110px, 1060px);
    margin-right: auto;
    margin-left: auto;
  }

  .page-hero::before {
    left: -120px;
    bottom: -130px;
    height: 300px;
  }

  .page-hero-img {
    aspect-ratio: 2.45 / 1;
  }

  .intro-block {
    margin-top: 150px;
    margin-left: calc((100vw - min(100% - 80px, var(--wide))) / 2);
  }

  .purpose-block {
    grid-template-columns: 310px 1fr;
    align-items: center;
    width: min(100% - 80px, 760px);
    margin-left: max(40px, calc((100vw - 1200px) / 2));
  }

  .activities-section {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    background: linear-gradient(to right, transparent 0 52%, var(--gray) 52% 100%);
  }

  .activity-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    width: min(100%, 840px);
    margin: -10px auto 0;
  }

  .committee-list article {
    grid-template-columns: 190px 1fr;
    align-items: center;
  }

  .board-detail {
    flex-wrap: nowrap;
  }

  .board-row {
    grid-template-columns: 100px 130px minmax(0, 1fr) 210px;
    column-gap: 16px;
    row-gap: 0;
    padding: 0;
  }

  .board-committee {
    grid-column: auto;
    justify-self: end;
    width: 210px;
    min-width: 210px;
    font-size: 11px;
    white-space: nowrap;
  }

  .committee-photo {
    width: 190px;
  }

  .committee-list article > div:last-child {
    margin: 0 0 0 -68px;
    padding-left: 96px;
  }

  .tabs {
    grid-template-columns: repeat(4, 1fr);
  }

  .news-grid,
  .member-grid,
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 90px;
  }

  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 160px, 1080px);
  }

  .form-shell {
    width: min(100% - 160px, 980px);
    padding: 92px 54px;
  }

  .form-row {
    grid-template-columns: 150px 1fr;
    align-items: start;
    gap: 28px;
  }

  .form-row > label,
  .form-row > legend,
  .form-row > span {
    text-align: right;
    padding-top: 12px;
  }

  .consent-row .control-wrap {
    padding-top: 8px;
  }

  .footer-inner {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    padding: 70px 0 80px;
  }

  .footer-copy {
    grid-column: 1 / -1;
    margin-top: -10px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 72px;
  }

  .page-top {
    width: 92px;
    height: 92px;
  }

  .page-top::before {
    top: 39px;
    left: 32px;
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1000px) {
  .purpose-block {
    grid-template-columns: clamp(400px, 41.5vw, 504px) minmax(0, 1fr);
    width: min(100% - 40px, 1120px);
    margin-left: max(20px, calc((100vw - 1200px) / 2));
    padding: 46px 32px;
  }

  .purpose-block h2 {
    font-size: clamp(40px, 4vw, 48px);
    white-space: nowrap;
  }

  .purpose-block .purpose-copy {
    font-size: clamp(11.5px, 1.083vw, 13px);
  }

  .purpose-copy-line {
    display: block;
    white-space: nowrap;
  }

  .board-row {
    grid-template-columns: 120px 156px minmax(0, 1fr) 252px;
    column-gap: 19px;
    row-gap: 0;
    min-height: 41px;
    font-size: 13.2px;
  }

  .board-row b {
    min-height: 24px;
    font-size: 12px;
  }

  .board-committee {
    width: 252px;
    min-width: 252px;
    min-height: 24px;
    font-size: 13.2px;
  }

  .message-copy-line,
  .about-copy-line {
    display: block;
  }

  .about-copy-mobile {
    display: none;
  }

  .about-copy-desktop {
    display: block;
  }

  .home-hero h1 {
    min-height: calc(100% - 120px);
    white-space: nowrap;
  }

  .home-message {
    min-height: 650px;
  }

  .home-message .vertical-slogan {
    margin-left: 58px;
  }

  .vertical-slogan {
    gap: 19px;
  }

  .vertical-slogan span {
    font-size: 32.4px;
  }

  .message-img {
    margin-top: -385px;
  }

  .home-members {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 0;
    align-items: center;
  }

  .members-feature-img {
    width: 100%;
  }

  .members-feature-copy {
    width: 402px;
    margin: 0 0 0 -42px;
  }

  .members-feature-copy p,
  .members-feature-copy .btn {
    margin-left: 112px;
  }

  .about-lead {
    min-height: 720px;
  }

  .about-lead .vertical-slogan {
    margin-left: 70px;
  }

  .about-city {
    margin-top: -385px;
  }

  .about-copy {
    margin-top: -95px;
  }
}

@media (min-width: 1000px) and (max-width: 1079px) {
  .purpose-block {
    width: 100%;
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
