*,*::after,*::before{margin:0;padding:0;box-sizing:border-box;word-wrap:break-word;overflow-wrap:break-word}
body{-webkit-font-smoothing:antialiased;overflow-x:hidden;overflow-wrap: anywhere;word-break: normal;line-break: strict;}
hr{border-style:solid;border-width:1px 0 0;color:inherit;height:0;overflow:visible}
img,svg,movie,picture {display:block;max-width:100%}
img,svg,movie{height:auto}
img{border-style:none;width:auto;height:auto;}
svg{overflow:hidden}
article,aside,figcaption,figure,footer,header,main,nav,section {display:block}
ul li { list-style: none; }
ol { padding-left: 1em; }
ol li { margin-left: 1em; }
a { text-decoration: none; }
a:hover { text-decoration: none; }
sup { line-height:1; font-size: 65%; }
img {
  vertical-align: bottom;
  pointer-events: none;
  user-select: none;
}
:root{
  --bg:#ffffff;
  --bg-soft:#f4f8ff;
  --ink:#0a1530;
  --ink-soft:#4b5a7d;
  --ink-mute:#8d97b3;
  --line:rgba(13,40,110,0.12);
  --line-soft:rgba(13,40,110,0.07);
  --blue-900:#0a1f57;
  --blue-700:#1746c4;
  --blue-500:#2f6bf6;
  --blue-300:#7fa8ff;
  --cyan-500:#06b6d4;
  --cyan-400:#14c6e0;
  --cyan-300:#74e0ef;
  --grad-accent: linear-gradient(110deg, #1746c4 0%, #2f6bf6 45%, #14c6e0 100%);
  --grad-soft: linear-gradient(135deg, rgba(47,107,246,0.10), rgba(20,198,224,0.10));
  --glow: 0 0 24px rgba(47,107,246,0.25);

  --font-disp: 'Space Grotesk', 'Noto Sans JP', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-jp: 'Noto Sans JP', 'Space Grotesk', sans-serif;

  --innerwidth-narrow: 920px;
  --innerwidth-middle: 1000px;
  --innerwidth: 1100px;
  --innerwidth-wide: 1200px;
}


html {
  position: relative;
  min-height: 100%;
}
body {
  height: 100%;
  font-size: 1rem;
  font-weight: 400;
  overflow: hidden visible;
  position:relative;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: subpixel-antialiased;
}

/* DRAWER MENU
___________________________________________________ */
.navBtn {
  z-index: 700000 !important;
}
.drawerWrap {
  z-index: 600000 !important;
}
.knockOut {
  z-index: 500000 !important;
}
#drawerCheckbox,
.drawerInner .localNav {
  display: none;
}
.navBtn {
  position: fixed;
  right: 4vw;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  width: 1.75rem;
  height: 1.5rem;
  transform: rotate3d(0, 0, 0, 0deg);
  transition: transform .25s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
@media (min-width: 920px) {
  .navBtn {
    display: none;
  }
}
.navBtn span,
.navBtn span::before,
.navBtn span::after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  background: var(--ink);
}
.navBtn span {
  top: 50%;
}
.navBtn span::before {
  content: '';
  top: -11px;
  transform: rotate3d(0, 0, 0, 0deg);
  transition: top .2s ease-in .2s, transform .2s ease-in;
}
.navBtn span::after {
  content: '';
  top: 11px;
  transform: rotate(0deg);
  transition: top .2s ease-in .2s, transform .2s ease-in;
}
@media (min-width: 920px) {
  .navBtn span,
  .navBtn span::before,
  .navBtn span::after {
    height: 3px;
    width: 80%;
  }
  .navBtn span::before {
    top: -18px;
    width: 100%;
  }
  .navBtn span::after {
    top: 18px;
    width: 100%;
  }
}
#drawerCheckbox:checked~.navBtn {
  transform: rotate3d(0, 0, 1, 0deg);
  transition: transform .3s ease .1s;
}
#drawerCheckbox:checked~.navBtn span {
  background: transparent !important;
  transition: background .1s ease;
  box-shadow: none;
}
#drawerCheckbox:checked~.navBtn span::before,
#drawerCheckbox:checked~.navBtn span::after {
  width: 100%;
  top: 0;
  bottom: 0;
  box-shadow: none;
  background: #fff;
}
#drawerCheckbox:checked~.navBtn span::before {
  transform: rotate3d(0, 0, 1, 45deg);
  top: 0;
  transition: top .2s ease, transform .2s ease .2s;
}
#drawerCheckbox:checked~.navBtn span::after {
  transform: rotate3d(0, 0, 1, -45deg);
  top: 0;
  transition: top .2s ease, transform .2s ease .2s;
}
.drawerWrap {
  display: none;
  width: 80vw;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: -100vw;
  transform: translateX(0);
  transition: transform 1s cubic-bezier(0.1, 0.57, 0.1, 1);
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  overflow-y: scroll;
}
.knockOut {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#drawerCheckbox:checked~.drawerWrap {
  opacity: 1;
  transform: translateX(100vw);
  transition: transform .5s cubic-bezier(0.1, 0.57, 0.1, 1);
  pointer-events: auto;
}
#drawerCheckbox:checked~.drawerWrap+.knockOut {
  display: block;
}
.drawerWrap .drawerInner {
  padding-top: 10%;
}
.drawerInner .localNav {
  display: block;
}
.drawerInner .localNav .siteID {
  width: min(38%, 160px);
  display: block;
  margin: 0 auto;
  padding: 0;
}
.drawerInner .localNav .siteID img {
  width: 100%;
}
.drawerInner .localNav > .projectName {
  text-align: center;
  font-size: min(4vw, 24px);
  color: var(--ink);
  line-height: 1;
  padding: 1em 0;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
}
.drawerInner .localNav > ul {
  margin: 10vh auto 16vh auto;
}
.drawerInner .localNav > ul > li {
  width: 100%;
  display: block;
  text-decoration: none;
  text-align: left;
  line-height: 1;
}
.drawerInner ul li > a,
.drawerInner ul li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1em 0;
  font-size: min(3vmax, 24px);
  color: var(--ink);
  font-weight: 400;
  text-decoration: none;
  text-align: center;
}



/* LAYOUT
______________________________________________ */
:where(.sec) {
  position: relative;
  padding: min(10%, 60px) 4vw min(10%, 60px) 4vw;
}
:where([class*="Inner"]) {
  width: 100%;
  max-width: var(--innerwidth-middle);
  margin: 0 auto;
}
@media (min-width: 1200px) {
  :where([class*="Inner"]) {
    padding: 0;
  }
}
:where(.secInner) {
  margin: 0 auto 2rem auto;
}
:where(.secInner:last-of-type) {
  margin: 0 auto;
}



body > :not(.globalHeader) ~ main,
.welcome + main,
main:has(.sec.movie:only-child) {
  padding: 0;
}

main,
body > .globalHeader + main {
  padding: min(10%, 60px) 0 0 0;
}

/* GLOBAL HEADER
___________________________________________________ */
#globalHeader {
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--line);
}
.headerInner {
  display: grid;
  grid-template-columns: min(40vw, 319px) 1fr min(10vw, 8em);
  grid-template-rows: 1fr;
  gap: 0 0;
  grid-template-areas: ". .";
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  padding: 1rem 0 1rem .5rem;
}
.brand > .siteID {
  width: min(70%, 160px);
  transition: all .5s;
}
.brand > .projectName {
  order: 2;
}
.brand > .projectName > a {
  line-height: 1;
  font-size: min(2.5vw, 16px);
  color: #000;
  text-decoration: none;
  display: inline-block;
}


/* GNAV
______________________________________________ */
.globalNav {
  display: none;
}
@media(min-width: 920px) {
  .brand {
    flex-direction: row;
    align-items: center;
  }
  .globalNav {
    display: block;
    height: 100%;
  }
  .globalNav ul {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    height: 100%;
  }
  .globalNav > ul > li > a,
  .globalNav > ul > li span {
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    font-weight: 500;
    position: relative;
    padding: 0 1.5em;
    transition: color .25s ease;
    cursor: pointer;
  }
  .globalNav > ul > li > a::after,
  .globalNav > ul > li > span::after {
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:3px;
    background:var(--grad-accent);
    transition:width .3s ease;
  }
  .globalNav > ul > li > a:hover,
  .globalNav > ul > li > span:hover {
    color: var(--ink);
  }
  .globalNav > ul > li > a:hover::after,
  .globalNav > ul > li > span:hover::after,
  li.hasSub.is-active > span::after {
    width: 100%;
  }
}

li.hasSub {
  position: relative;
}
li.hasSub > .subNav {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 9999999;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  gap: 0 1em;
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 1em;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--line);
}
li.hasSub > .subNav > li {
  width: 5em;
}
li.hasSub.is-active .subNav {
  opacity: 1;
  visibility: visible;
}
li.hasSub.is-active .subNav li {
  white-space: nowrap;
}
li.hasSub.is-active .subNav li a {
  display: block;
  text-align: center;
  padding: 1em 0;
  color: var(--ink);
}
li.hasSub.is-active .subNav li a:hover {
  opacity: .75;
}

.langPill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4vw;
}
@media(min-width: 920px) {
  .langPill {
    justify-content: center;
    padding: 0;
  }
}
.langPill span {
  border:1px solid var(--ink-mute);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  line-height: 1;
  border-radius: 2em;
  overflow: hidden;
}
.langPill span a {
  font-family: var(--font-jp);
  font-size: min(3vw, 12px);
  display: inline-block;
  color: var(--ink-soft);
  line-height: .8;
  font-weight: 700;
  padding: .5em;
}
.langPill span a[hreflang="ja"] {
  /* border-right: 1px solid var(--ink-mute); */
  padding: .65em 1em .65em 1.25em;
}
.langPill span a[hreflang="en"] {
  padding: .65em 1.25em .65em 1em;
}
.langPill span a:hover {
  background: var(--bg-soft);
}
.langPill span a.current {
  background: #698ee4;
  color: #fff;
}


/* HERO CONTENT
______________________________________________ */
.welcome {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--gh-H);
}
@media (min-width: 1280px) {
  .welcome {
    max-height: 94vh;
  }
}

.welcome-movie {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  opacity: 1;
  visibility: visible;
  transition: opacity 0s;
}
.change-after {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0s;
  pointer-events: none;
}
.welcome.show-change .welcome-movie {
  opacity: 0;
  visibility: hidden;
}
.welcome.show-change .change-after {
  opacity: 1;
  visibility: visible;
}

.welcome-img {
  position: absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  z-index: 0;
  overflow: hidden;
}
.welcome-img img {
  position: absolute;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
}












/* SECTION HEADLINE
______________________________________________ */
.secHeadline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 3rem auto;
  max-width: var(--innerwidth-middle);
}
.secHeadline .idx {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--cyan-500);
  letter-spacing: .1em;
}
.secHeadline h2 {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: clamp(1.6rem,3.4vw,2.15rem);
  color: var(--ink);
}
.secHeadline .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,var(--line),transparent);
}
.secHeadline::after {
  /* content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,var(--line),transparent); */
}


.secHeadline .rule::after{
  content: '';
}
.kicker {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue-700);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {content: '['; color: var(--cyan-500); }
.kicker::after {content:']'; color: var(--cyan-500); }



/* NEWS
______________________________________________ */
.news .secInner {
  max-width: var(--innerwidth-narrow);
}
.news-list{
  border-top:1px solid var(--line);
}
.news-item{
  display:grid;
  grid-template-columns: 5.5em 1fr;
  gap: 2rem;
  align-items:center;
  padding:24px 8px;
  border-bottom:1px solid var(--line);
  position:relative;
}
.news-date{
  font-family:var(--font-mono);
  font-size:0.82rem;
  color:var(--blue-700);
  letter-spacing:0.02em;
  white-space:nowrap;
}
.news-text {
  color:var(--ink);
  font-size:0.98rem;
}
.news-text a {
  color: var(--blue-700);
  text-decoration: underline;
}
.news-text a:hover {
  text-decoration: none;
}



/* ABOUT
______________________________________________ */
.about {
  background: var(--bg-soft);
}
.statementWrap {
  width: fit-content;
  max-width: 50%;
  margin: 0 auto;
}
.statement-body {
  font-size: min(3vw, 16px);
  color:var(--ink);
  line-height: 2.1;
  margin: 0 auto 1rem auto;
  font-weight: 400;
}
.statement-closing {
  width: fit-content;
}
.statement-closing .tag {
  font-weight: 400;
  font-size: min(3vw, 16px);
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.statement-closing .word img {
  width: min(70%, 180px);
}
.statement-closing .sub {
  margin-top: 1rem;
  font-size:.72rem;
  letter-spacing: .05em;
  color: var(--ink-mute);
  font-family: var(--font-disp);
}
@media (min-width: 920px) {
  .statement-closing .tag {
    white-space: nowrap;
  }
  .statement-closing .sub {
    white-space: nowrap;
  }
}

#overview + .secInner {
  max-width: var(--innerwidth-narrow);
}
#overview + .secInner > p {
  font-size: min(3vw, 16px);
  color: var(--ink);
  letter-spacing: .035em;
  text-align: justify;
  line-height: 2.1;
  font-weight: 400;
  margin: auto auto 2rem auto;
}



/* MMV
______________________________________________ */
.mvv {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  gap: 0 40px;
  padding: 0 4vw;
}
@media (min-width: 920px) {
  .mvv {
    display: grid;
    grid-template-columns: 24% 1fr;
    width: var(--innerwidth-narrow);
    padding: 0;
  }
}
.mvv dt {
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: min(10vw, 42px);
  border-top: 1px solid var(--ink-mute);
  padding: min(10%, 5rem) 4vw min(10%, 5rem) 0;
  line-height: 1;
}
@media (min-width: 920px) {
  .mvv dt {
    padding: 2rem 0 min(10%, 5rem) 0;
  }
}

.mvv dd {
  padding: 0 .5rem min(4vw, 5rem) 0;
}
@media (min-width: 920px) {
  .mvv dd {
    padding: 3rem 0 min(4vw, 5rem) 0;
  }
}
.mvv dd .mvv-lead {
  font-size: min(5vw, 20px);
  letter-spacing: .05em;
  margin-bottom: 2em;
  line-height: 1.4;
  color: var(--ink);
}
.mvv dd .mvv-body {
  font-size: min(4vw, 16px);
  line-height: 1.6;
}
.mvv-detail {
  margin-bottom: 1.5rem;
}
.mvv-detail li {
  list-style: outside disc;
  margin-left: 2em;
  position: relative;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.4;
  text-align: justify;
  letter-spacing: .05em;

  font-size: min(5vw, 20px);
  letter-spacing: .05em;
}

/* MOVIE
______________________________________________ */
.movieCards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.movieCards > .movieCard.single {
  grid-column: 1 / -1;
  width: 100%;
  justify-self: center;
}
@media (min-width:920px) {
  .movieCards > .movieCard.single {
    width: min(100%, calc(100% / 2 - (1.5rem / 2)));
  }
}
.movieCard .v-label {
  font-family: var(--font-disp);
  font-size: min(3vw, 16px);
  line-height: 1;
  padding: 0 0 .55em 0;
  letter-spacing: 0.04em;
  color: #2a4480;
}
.movieCardInner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.movieCardInner iframe {
  width: 100%;
  height: 100%;
}
.movieCardInner video {
  width: 100%;
  height: 100%;
}



.report {
  /* background: var(--bg-soft); */
}
.report .secInner {
  max-width: var(--innerwidth-narrow);
}
.dl-list {
  display:flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width:920px) {
  .dl-list {
    flex-direction: unset;
  }
  .fright {
    justify-content: flex-end;
  }
}
.dl-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;background:#fff;
  position: relative;
  transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.dl-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  border-color: var(--blue-300);
}
.dl-card .label {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dl-card .label .no {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--cyan-500);
  margin-bottom: -.25em;
}


.research {
  /* background: var(--bg-soft); */
}
.research .secInner {
  max-width: var(--innerwidth-narrow);
}

.development {
  /* background: var(--bg-soft); */
}
.development .secInner {
  max-width: var(--innerwidth-narrow);
}










#document > .secInner {
  max-width: var(--innerwidth-middle);
}
#document > .secInner > .sec1stHeadline {
  line-height: 1.3;
  font-weight: 700;
  font-size: min(4vw, 26px);
  margin-bottom: 1em;
}
[lang="en"] #document > .secInner > .sec1stHeadline {
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: -.02em;
}

#document > .secInner > .sec2ndHeadline {
  line-height: 1.3;
  font-weight: 700;
  font-size: min(5vw, 32px);
  margin-bottom: 2rem;
}
[lang="en"] #document > .secInner > .sec2ndHeadline {
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: -.02em;
}

#document > .secInner > .sec3rdHeadline {
  line-height: 1.4;
  font-weight: 700;
  font-size: min(5vw, 26px);
  margin-bottom: .75em;
}
[lang="en"] #document > .secInner > .sec3rdHeadline {
  font-family: var(--font-jp);
  font-weight: 700;
  /* letter-spacing: -.05em; */
}

#document > .secInner > p {
  font-size: min(4vw, 18px);
  color: var(--ink);
  letter-spacing: .05em;
  line-height: 1.8;
  font-weight: 400;
  margin: auto auto 2rem auto;
  text-align: justify;
}
[lang="en"] #document > .secInner > p {
  /* text-align: left; */
  /* font-family: var(--font-disp); */
}
#document > .secInner > img {
  margin: 0 auto 6rem auto;
  border-radius: 18px;
}
/* #document > .secInner > img:nth-of-type(odd):not(:first-of-type):not(:last-of-type) {
  transform: translateX(-10%);
}
#document > .secInner > img:nth-of-type(even):not(:first-of-type):not(:last-of-type) {
  transform: translateX(10%);
} */


.photoGallery{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px 0;
}
@media (min-width:920px) {
  .photoGallery {
    grid-template-columns: repeat(3,1fr);
  }
}
.photoGallery img{
  width:100%;
  display:block;
}







/* PRIVACY POLICY
______________________________________________ */
.privacy-body dl {
  margin-bottom: 3rem;
}
.privacy-body dl dt {
  font-weight: 700;
  font-size: min(3vw, 20px);
  line-height: 1;
  margin-bottom: 1em;
}
.privacy-body dl dd {
  color: var(--ink);
}
.privacy-body dl dd p {
  line-height: 1.8;
  letter-spacing: .05em;
  font-size: min(3vw, 16px);
  text-align: justify;
}
.privacy-body dl dd p a {
  color: var(--ink-soft);
}
.privacy-body dl dd ul {
  margin: .5em auto .5em 2em;
}
.privacy-body dl dd ul li {
  list-style: outside disc;
  line-height: 1.8;
}

/* SITEMAP
______________________________________________ */
.sitemap-body ul li {
  margin: 0 auto 1em 1em;
  padding-left: 1em;
  position: relative;
  line-height: 1;
  font-size: min(4vw, 24px);
  font-family: var(--font-mono)
}
.sitemap-body ul li a {
  color: var(--ink);
}
.sitemap-body ul li:has(ul) > a {
  display: block;
  margin: 0 auto .5em 0;
}
.sitemap-body ul li:nth-of-type(1):has(ul) > a {
  display: block;
  margin: 0 auto 1em 0;
}
.sitemap-body > ul > li > ul > li {
  margin: 0 auto 1em 0;
}
.sitemap-body > ul > li > ul > li > ul > li {
  margin: 0 auto .25em 0;

}
.sitemap-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 6px;
  height: 1px;
  background: var(--blue-300);
}




/* GLOBAL FOOTER
______________________________________________ */
footer{
  border-top:1px solid var(--line);
  padding:3rem 4vw;
}
.footer-row {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:22px;
  flex-direction:column;
}
@media (min-width:920px) {
  .footer-row {
    flex-direction:row;
    align-items:center;
  }
}

.gov-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gov-badge img {
  height: 39px;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .78rem;
  color: var(--ink-mute);
  font-family: var(--font-disp);
}
.footer-meta a {
  color:var(--ink-soft);
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}




._sp {
  display: block !important;
}
._pc {
  display: none !important;
}
@media (min-width: 920px) {
  ._sp {
    display: none !important;
  }
  ._pc {
    display: block !important;
  }
}
.mb1 { margin-bottom: 1rem !important;}
.mb2 { margin-bottom: 2rem !important;}
.mb3 { margin-bottom: 3rem !important;}
.mb4 { margin-bottom: 4rem !important;}
.mb5 { margin-bottom: 5rem !important;}
.mb6 { margin-bottom: 6rem !important;}