@charset "UTF-8";
html {
  --color-white-100: #ffffff;
  --color-white-110: color-mix(in srgb, var(--color-white-100) 10%, transparent 90%);
  --color-orange-100: #F06428;
  --color-yellow-100: #FFBE5A;
  --color-yellow-200: #FFF1D7;
  --color-gray-100: #cccccc;
  --color-gray-200: #eeeeee;
  --color-gray-300: #666666;
  --color-black-100: #2B1F19;
  --color-black-125: color-mix(in srgb, var(--color-black-100) 25%, transparent 75%);
  --color-black-200: #000000;
  --color-primary: var(--color-orange-100);
  --color-secondary: var(--color-yellow-100);
  --color-common-text: var(--color-black-100);
  --color-common-text-light: var(--color-white-100);
  --select-fill-color: var(--color-yellow-100);
  --select-text-color: var(--color-black-100);
}

* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: under-pageline dotted;
  text-decoration: under-pageline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

:root {
  --reading-trim: calc((1em - 1lh) / 2);
}

html {
  font-feature-settings: "palt" 1;
}

html, body {
  max-width: 100svw;
}
html ::selection, body ::selection {
  background: var(--select-fill-color);
  color: var(--select-text-color);
}
html ::-moz-selection, body ::-moz-selection {
  background: var(--select-fill-color);
  color: var(--select-text-color);
}

body {
  max-width: 100svw;
  overflow-x: hidden;
}

span, div {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}

img {
  object-fit: cover;
  pointer-events: none;
  touch-callout: none;
  user-select: none;
  user-drag: none;
  border-radius: inherit;
  width: inherit;
  height: inherit;
}

svg {
  width: inherit;
  height: inherit;
}
svg path {
  transform-origin: center center;
}

video {
  max-width: 100svw;
  object-fit: cover;
}

picture {
  display: block;
}
picture source, picture img {
  width: 100%;
  height: 100%;
}

a {
  cursor: pointer;
  line-height: 1;
}
a > * {
  pointer-events: none;
}

div, p, a {
  font-size: medium;
}

button, [expansion-area] {
  position: relative;
  width: fit-content;
}
button::after, [expansion-area]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 22px);
  width: calc(100% + 22px);
}

section {
  width: 100svw;
}

summary {
  display: block;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

.container {
  position: relative;
  max-width: 100svw;
  overflow: hidden;
}
@media (min-width: 751px) {
  .container {
    min-height: 100vh;
  }
}

[hidden], .hidden {
  display: none !important;
}

[no-scroll], .no-scroll {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 750px) {
  [pc-only], .pc-only {
    display: none !important;
  }
}

@media (max-width: 992px) {
  [not-pc-sm-only], .not-pc-sm-only {
    display: none !important;
  }
}

@media (min-width: 993px) {
  [pc-sm-only], .pc-sm-only {
    display: none !important;
  }
}

@media (max-width: 1580px) {
  [lg-over-only], .lg-over-only {
    display: none !important;
  }
}

@media (min-width: 751px) {
  [sp-only], .sp-only {
    display: none !important;
  }
}

[hidden], .hidden {
  display: none !important;
}

#wpadminbar {
  opacity: 0.1;
  transition: opacity 0.5s;
}
#wpadminbar:hover {
  opacity: 1;
}

:root {
  --margin-1: 40rem;
  --margin-2: 208rem;
  --size-1: 2rem;
  --size-2: 4rem;
  --size-3: 8rem;
  --size-4: 12rem;
  --size-5: 16rem;
  --size-6: 20rem;
  --size-7: 24rem;
  --size-8: 32rem;
  --size-9: 40rem;
  --size-10: 48rem;
  --size-11: 60rem;
  --size-12: 80rem;
  --size-13: 96rem;
  --size-14: 120rem;
  --column-gap: var(--size-8);
  --column-width-size: 56rem;
  --half-size: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
  --tripartite-size: calc(var(--column-width-size) * 4 + var(--column-gap) * 3);
  --text-size-minimum: 12rem;
  --text-size-tiny: 13rem;
  --text-size-small: 14rem;
  --text-size-middle: 16rem;
  --text-size-larger-middle: 20rem;
  --text-size-huge-middle: 24rem;
  --text-size-large: 28rem;
  --text-size-larger-large: 36rem;
  --text-size-huge: 44rem;
  --text-size-ex-huge: 70rem;
}
@media (max-width: 1200px) {
  :root {
    --margin-1: 40rem;
    --margin-2: 40rem;
  }
}
@media (max-width: 992px) {
  :root {
    --margin-1: 40rem;
    --margin-2: 40rem;
    --half-size: 100%;
    --tripartite-size: 110rem;
    --column-width-size: 52rem;
    --column-gap: var(--size-3);
  }
}
@media (max-width: 750px) {
  :root {
    --margin-1: 20rem;
    --margin-2: 20rem;
  }
}

html {
  font-feature-settings: "palt" 1;
  font-size: 1px;
  --max-width: 1440px;
  --max-height: 1000rem;
  margin-top: 0rem !important;
  scroll-behavior: smooth;
}
@media (min-width: 1581px) {
  html {
    font-size: 1px;
  }
}
@media (max-width: 1580px) {
  html {
    --base-vw: 1440;
  }
}
@media (max-width: 1580px) and (min-width: var(--max-width)) {
  html {
    font-size: 1px;
  }
}
@media (min-width: 1201px) {
  html {
    scroll-padding: 100rem;
  }
}
@media (max-width: 992px) {
  html {
    --base-vw: 1100;
  }
}
@media (max-width: 750px) {
  html {
    --base-vw: 390;
  }
}
@media (min-width: 751px) {
  html {
    min-height: 100%;
  }
}

html:has(vite-error-overlay) {
  font-size: normal !important;
}

html, body {
  max-width: 100vw;
  color: var(--color-black-100);
}
html ::selection, body ::selection {
  background: var(--select-fill-color);
  color: var(--select-text-color);
}
html ::-moz-selection, body ::-moz-selection {
  background: var(--select-fill-color);
  color: var(--select-text-color);
}

body {
  color: var(--color-black-100);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
}

main.default {
  opacity: 0;
}

.container {
  min-height: 100svh;
}
.container:not([page-name=index]) {
  padding-top: 100rem;
}

details {
  cursor: pointer;
}
details ::marker {
  content: "";
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

#wpadminbar {
  display: none;
}

.splide .splide__list {
  height: fit-content;
}

.grecaptcha-badge {
  visibility: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

section.base-awards-history {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-14);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  section.base-awards-history {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  section.base-awards-history {
    --padding-border: var(--size-9);
  }
}
section.base-awards-history .section-title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  section.base-awards-history .section-title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
section.base-awards-history .base-awards-history__wrap {
  display: flex;
  margin-top: var(--size-12);
  align-items: center;
}
@media (max-width: 750px) {
  section.base-awards-history .base-awards-history__wrap {
    display: flex;
    --gap: 44rem;
    flex-direction: column;
    gap: var(--gap);
    margin-top: var(--size-9);
  }
}
section.base-awards-history .base-awards-history__division {
  display: block;
  background: var(--color-black-100);
}
@media (min-width: 751px) {
  section.base-awards-history .base-awards-history__division {
    height: 124rem;
    width: 1px;
  }
}
@media (max-width: 750px) {
  section.base-awards-history .base-awards-history__division {
    width: calc(var(--column-width-size) * 4 + var(--column-gap) * 3);
    height: 1px;
  }
}
section.base-awards-history .base-awards-history__column {
  flex: 1;
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
}
section.base-awards-history .base-awards-history__column__title {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  section.base-awards-history .base-awards-history__column__title {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
section.base-awards-history .base-awards-history__column__link {
  width: 288rem;
  height: 60rem;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-black-100);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--size-5);
  color: var(--color-orange-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
section.base-awards-history .base-awards-history__column__link svg {
  width: 28rem;
  height: auto;
}
section.base-awards-history .base-awards-history__column__link {
  transition: background 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  section.base-awards-history .base-awards-history__column__link:hover {
    background: var(--color-yellow-200);
  }
}

nav.base-breadcrumbs {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  line-break: loose;
  font-size: var(--text-size-minimum);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.15;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  height: 30rem;
}
nav.base-breadcrumbs > * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
nav.base-breadcrumbs .base-breadcrumbs__bar {
  width: 2rem;
  height: 14rem;
  background: var(--color-black-100);
  margin-right: 10rem;
}
nav.base-breadcrumbs a {
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media (hover: hover) and (pointer: fine) {
  nav.base-breadcrumbs a:hover {
    color: var(--color-orange-100);
  }
}

footer.base-footer {
  color: var(--color-white-100);
  margin-top: auto;
  background: var(--color-orange-100);
  min-height: 100rem;
  padding-top: 96rem;
}
@media (max-width: 750px) {
  footer.base-footer {
    padding-top: 80rem;
  }
}
footer.base-footer .base-footer__header {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
  width: 100%;
}
@media (min-width: 1201px) {
  footer.base-footer .base-footer__header {
    --fix-width: 1024rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
@media (max-width: 1200px) {
  footer.base-footer .base-footer__header {
    width: calc(100vw - var(--margin-inline) * 2);
  }
}
footer.base-footer .base-footer__top {
  margin-right: auto;
  width: fit-content;
  height: fit-content;
  display: block;
  display: flex;
  --gap: 24.5rem;
  flex-direction: row;
  gap: var(--gap);
}
footer.base-footer .base-footer__top__logo {
  height: 56rem;
  width: auto;
}
footer.base-footer .base-footer__container {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
  margin-top: 40rem;
  margin-bottom: 47rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10rem;
}
@media (min-width: 1201px) {
  footer.base-footer .base-footer__container {
    --fix-width: 1024rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
@media (max-width: 1200px) {
  footer.base-footer .base-footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 10rem 20rem;
    grid-template-areas: "main extra" "sub extra";
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__container {
    display: flex;
    --gap: 40rem;
    flex-direction: column;
    gap: var(--gap);
    margin-bottom: 40rem;
  }
}
footer.base-footer .base-footer__nav-main {
  max-width: 314rem;
  display: flex;
  --gap: 20rem;
  flex-direction: column;
  gap: var(--gap);
  grid-area: main;
}
@media (max-width: 1200px) {
  footer.base-footer .base-footer__nav-main {
    width: 100%;
    max-width: 100%;
  }
}
footer.base-footer .base-footer__nav-main__column {
  padding-bottom: 8rem;
}
footer.base-footer .base-footer__nav-main__title-link {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer.base-footer .base-footer__nav-main__title-link svg {
  width: 10rem;
  height: auto;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__nav-main__title-link {
    --fix-width: 314rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
footer.base-footer .base-footer__nav-main__list {
  margin-top: 16rem;
  display: flex;
  --gap: 12rem;
  flex-direction: column;
  gap: var(--gap);
  padding-left: 24rem;
  border-left: 2rem solid var(--color-white-100);
}
footer.base-footer .base-footer__nav-main__item {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  --gap: 0rem;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
}
footer.base-footer .base-footer__nav-main__item svg {
  --fix-width: 28rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  height: auto;
}
footer.base-footer .base-footer__nav-sub {
  display: flex;
  --gap: 16rem;
  flex-direction: column;
  gap: var(--gap);
  grid-area: sub;
  min-width: 314rem;
}
footer.base-footer .base-footer__nav-sub__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 100%;
}
footer.base-footer .base-footer__nav-sub__item svg {
  width: 10rem;
  height: auto;
}
@media (min-width: 1201px) {
  footer.base-footer .base-footer__nav-sub__item {
    --fix-width: 312rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
footer.base-footer .base-footer__nav-extra {
  display: flex;
  --gap: 12rem;
  flex-direction: column;
  gap: var(--gap);
  grid-area: extra;
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__nav-extra {
    width: 314rem;
  }
}
footer.base-footer .base-footer__nav-extra__item {
  white-space: nowrap;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  line-height: 2;
}
footer.base-footer .base-footer__nav-extra__item svg {
  width: 10rem;
  height: auto;
}
@media (min-width: 1201px) {
  footer.base-footer .base-footer__nav-extra__item {
    --fix-width: 220rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__nav-extra__item {
    --fix-width: 100%;
  }
}
footer.base-footer .base-footer__address {
  max-width: calc(var(--column-width-size) * 7 + var(--column-gap) * 6);
  width: 100%;
  min-height: 100rem;
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
footer.base-footer .base-footer__address__column {
  display: flex;
  --gap: var(--size-7);
  flex-direction: row;
  gap: var(--gap);
  height: fit-content;
  position: relative;
}
footer.base-footer .base-footer__address__column-bar {
  height: calc(100% - 8rem);
  width: 1px;
  display: block;
  border-radius: calc(infinity * 1px);
  background: var(--color-white-100);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 91rem;
  margin-top: auto;
  margin-bottom: auto;
}
footer.base-footer .base-footer__address__title {
  width: 80rem;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
footer.base-footer .base-footer__address__context {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  line-height: 1.75;
  flex: 1;
  display: flex;
  --gap: var(--size-4);
  flex-direction: column;
  gap: var(--gap);
}
footer.base-footer .base-footer__address__context a {
  width: 120rem;
  text-align: center;
  line-height: 32rem;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-white-100);
}
footer.base-footer .base-footer__bottom {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64rem;
}
@media (min-width: 1201px) {
  footer.base-footer .base-footer__bottom {
    --fix-width: 1024rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
@media (max-width: 750px) {
  footer.base-footer .base-footer__bottom {
    display: flex;
    --gap: 40rem;
    flex-direction: column;
    gap: var(--gap);
    align-items: flex-start;
    margin-bottom: 80rem;
  }
}
footer.base-footer .base-footer__bottom__sns {
  display: flex;
  --gap: 20rem;
  flex-direction: row;
  gap: var(--gap);
}
footer.base-footer .base-footer__bottom__sns-item {
  width: 40rem;
  height: 40rem;
}
footer.base-footer .base-footer__bottom__to-en {
  height: 40rem;
  width: 216rem;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-white-100);
  display: flex;
  justify-content: center;
  align-items: center;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
footer.base-footer .base-footer__copy {
  background: var(--color-black-100);
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer.base-footer .base-footer__copy__text {
  font-size: 12rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2.6;
  letter-spacing: 0.15em;
}
footer.base-footer a, footer.base-footer button {
  transition: color 0.2s linear;
}
footer.base-footer a path[fill="#fff"], footer.base-footer button path[fill="#fff"] {
  transition: fill 0.2s linear;
}
footer.base-footer a path[stroke="#fff"], footer.base-footer button path[stroke="#fff"] {
  transition: stroke 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  footer.base-footer a:hover, footer.base-footer button:hover {
    color: var(--color-yellow-100);
  }
  footer.base-footer a:hover path[fill="#fff"], footer.base-footer button:hover path[fill="#fff"] {
    fill: var(--color-yellow-100);
  }
  footer.base-footer a:hover path[stroke="#fff"], footer.base-footer button:hover path[stroke="#fff"] {
    stroke: var(--color-yellow-100);
  }
  footer.base-footer .base-footer__bottom__to-en {
    transition: background-color 0.2s linear;
  }
  footer.base-footer .base-footer__bottom__to-en:hover {
    background-color: var(--color-white-100);
    color: var(--color-orange-100);
  }
}

.container:not(:has(.base-nav)) .base-footer {
  margin-top: 130rem;
}
@media (max-width: 750px) {
  .container:not(:has(.base-nav)) .base-footer {
    margin-top: var(--size-11);
  }
}

html[lang=ja] footer.base-footer .base-footer__address {
  display: none;
}

html[lang=en] footer.base-footer .base-footer__top__logo {
  height: 47rem;
}
html[lang=en] footer.base-footer .base-footer__container {
  margin-bottom: 52rem;
}
html[lang=en] footer.base-footer .base-footer__nav-main {
  width: calc(var(--column-width-size) * 4 + var(--column-gap) * 3);
  --gap: var(--size-5);
}
html[lang=en] footer.base-footer .base-footer__nav-main__column {
  padding-bottom: 0rem;
}
html[lang=en] footer.base-footer .base-footer__nav-sub, html[lang=en] footer.base-footer .base-footer__nav-extra {
  display: none;
}

section.base-foundation-information {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--column-gap);
}
@media (max-width: 1200px) {
  section.base-foundation-information {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  section.base-foundation-information {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
  }
}
section.base-foundation-information .base-foundation-information__item {
  border: 1px solid var(--color-black-100);
  position: relative;
  height: 200rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: var(--size-6);
  padding-left: var(--size-8);
  padding-right: var(--size-8);
}
section.base-foundation-information .base-foundation-information__item:after, section.base-foundation-information .base-foundation-information__item:before {
  content: "";
  position: absolute;
  width: 100rem;
  height: 3px;
  background: var(--color-orange-100);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  border-radius: calc(infinity * 1px);
}
section.base-foundation-information .base-foundation-information__item:after {
  top: -1.5px;
}
section.base-foundation-information .base-foundation-information__item:before {
  bottom: -1.5px;
}
@media (max-width: 750px) {
  section.base-foundation-information .base-foundation-information__item {
    height: 160rem;
  }
}
section.base-foundation-information .base-foundation-information__item__title {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  word-break: keep-all;
}
section.base-foundation-information .base-foundation-information__item__text {
  font-size: 16rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
}
section.base-foundation-information .parts-arrow-link {
  gap: var(--size-5);
}
section.base-foundation-information .parts-arrow-link svg {
  width: 40rem;
  height: 40rem;
}
section.base-foundation-information .base-foundation-information__item {
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media (hover: hover) and (pointer: fine) {
  section.base-foundation-information .base-foundation-information__item:hover {
    background-color: var(--color-yellow-200);
  }
}

.base-gallery {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-9);
}
.base-gallery--movie {
  margin-top: var(--size-9);
}
.base-gallery--movie iframe {
  width: calc(var(--column-width-size) * 10 + var(--column-gap) * 9);
  height: auto;
  aspect-ratio: 16/9;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media (max-width: 750px) {
  .base-gallery--movie iframe {
    width: 100%;
  }
}
.base-gallery--movie .base-gallery__caption {
  width: calc(var(--column-width-size) * 10 + var(--column-gap) * 9);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-3);
}
@media (max-width: 750px) {
  .base-gallery--movie .base-gallery__caption {
    width: 100%;
  }
}
.base-gallery--gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  --image-height: 477rem;
  position: relative;
}
@media (max-width: 750px) {
  .base-gallery--gallery {
    --image-height: 180rem;
    margin-top: var(--size-9);
  }
}
.base-gallery--gallery .base-gallery__slide {
  width: calc(var(--column-width-size) * 10 + var(--column-gap) * 9);
  display: flex;
  --gap: var(--size-3);
  flex-direction: column;
  gap: var(--gap);
}
.base-gallery--gallery .base-gallery__slide img {
  width: 100%;
  height: var(--image-height);
  object-fit: contain;
}
@media (max-width: 750px) {
  .base-gallery--gallery .base-gallery__slide img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.base-gallery--gallery .base-gallery__slide__caption {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 100%;
}
@media (max-width: 750px) {
  .base-gallery--gallery .base-gallery__slide__caption {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
  }
}
.base-gallery--gallery .base-gallery__button {
  width: calc(var(--column-width-size) * 1 + var(--column-gap) * 0);
  height: calc(var(--column-width-size) * 1 + var(--column-gap) * 0);
  border: 1px solid var(--color-black-100);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(var(--image-height) * 0.5 - var(--column-gap) * 0.5);
  background: var(--color-white-100);
  cursor: pointer;
  z-index: 2;
}
.base-gallery--gallery .base-gallery__button svg {
  width: 40rem;
  height: 40rem;
}
.base-gallery--gallery .base-gallery__button--next {
  right: 0;
}
.base-gallery--gallery .base-gallery__button--prev {
  left: 0;
}
@media (max-width: 750px) {
  .base-gallery--gallery .base-gallery__button {
    width: 56rem;
    height: 56rem;
  }
  .base-gallery--gallery .base-gallery__button svg {
    width: 10rem;
    height: 10rem;
  }
  .base-gallery--gallery .base-gallery__button--next {
    right: -10rem;
  }
  .base-gallery--gallery .base-gallery__button--prev {
    left: -10rem;
  }
}
.base-gallery--one .base-gallery__slide {
  width: calc(var(--column-width-size) * 10 + var(--column-gap) * 9);
  margin-left: auto;
  margin-right: auto;
}
.base-gallery--one .base-gallery__slide img {
  width: 100%;
  height: var(--image-height);
  object-fit: contain;
}
@media (max-width: 750px) {
  .base-gallery--one .base-gallery__slide {
    width: 100%;
  }
}
.base-gallery--one .base-gallery__slide__caption {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  width: 100%;
}
@media (max-width: 750px) {
  .base-gallery--one .base-gallery__slide__caption {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
  }
}

header.base-header {
  --header-height: 100rem;
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
header.base-header:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-white-100);
  width: 100vw;
  transform: translateY(-100%);
}
@media (max-width: 750px) {
  header.base-header {
    --header-height: 60rem;
  }
}
header.base-header .base-header__wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  --margin-inline: var(--margin-1);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
header.base-header .base-header__wrap:after {
  content: "";
  width: 100%;
  height: 1rem;
  position: absolute;
  bottom: 0;
  background: var(--color-gray-100);
  z-index: 1;
  opacity: 0;
}
header.base-header .base-header__top {
  height: 42rem;
  width: auto;
  display: flex;
  --gap: 19rem;
  flex-direction: row;
  gap: var(--gap);
  position: relative;
  z-index: 3;
}
@media (min-width: 1201px) {
  header.base-header .base-header__top {
    margin-left: calc(119rem - var(--margin-1));
  }
}
@media (max-width: 750px) {
  header.base-header .base-header__top {
    height: 33rem;
  }
}
header.base-header .base-header__top__logo {
  width: auto;
  height: 100%;
}
header.base-header .base-header__container {
  display: flex;
  --gap: 0rem;
  flex-direction: column;
}
@media (min-width: 1201px) {
  header.base-header .base-header__container {
    padding-right: 12rem;
  }
}
@media (max-width: 992px) {
  header.base-header .base-header__container {
    display: none;
  }
}
header.base-header .base-header__container-top {
  display: flex;
  --gap: 16rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
header.base-header .base-header__container-top__link {
  line-break: loose;
  font-size: var(--text-size-minimum);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.15;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
}
header.base-header .base-header__container-top__link ::marker {
  content: "";
}
header.base-header .base-header__container-top__link summary {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
  display: flex;
  --gap: 8rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
header.base-header .base-header__container-top__search {
  width: 9rem;
}
header.base-header .base-header__container-top__search svg {
  width: 9rem;
  height: auto;
}
header.base-header .base-header__container-top__lang {
  font-size: 12rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 1.15;
  color: var(--color-orange-100);
}
header.base-header .base-header__container-bottom {
  display: flex;
  --gap: 12rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-left: auto;
}
header.base-header .base-header__container-bottom__link {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  display: flex;
  --gap: 8rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
header.base-header .base-header__container-bottom__link svg {
  position: relative;
  bottom: 2rem;
}
header.base-header .base-header__container-bottom-bar {
  width: 1px;
  height: 6rem;
  background: var(--color-black-100);
}
header.base-header .base-header__search-box {
  height: var(--header-height);
  width: 100%;
  --margin-inline: var(--margin-1);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  --gap: 28rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
  justify-content: flex-end;
  padding-left: var(--size-8);
  padding-right: var(--size-8);
}
header.base-header .base-header__search-box:after {
  content: "";
  width: 800rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--color-white-100);
  z-index: -1;
}
@media (max-width: 1200px) {
  header.base-header .base-header__search-box {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
@media (max-width: 992px) {
  header.base-header .base-header__search-box {
    display: none;
  }
}
header.base-header .base-header__search-box__form {
  width: 620rem;
  height: 50rem;
  border-radius: calc(infinity * 1px);
  background: var(--color-gray-200);
  display: flex;
  justify-content: space-between;
  padding-left: var(--size-6);
  padding-right: var(--size-6);
}
header.base-header .base-header__search-box__input {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-black-100);
}
header.base-header .base-header__search-box__input::placeholder {
  color: var(--color-gray-100);
}
header.base-header .base-header__search-box__submit {
  width: 24rem;
  height: 24rem;
  margin-top: auto;
  margin-bottom: auto;
}
header.base-header .base-header__search-box__close {
  width: 24rem;
  height: 24rem;
  margin-top: auto;
  margin-bottom: auto;
}
header.base-header .base-header__children {
  width: 100%;
  height: var(--header-height);
  background: var(--color-white-100);
  position: absolute;
  top: var(--header-height);
  left: 0;
  z-index: -1;
}
header.base-header .base-header__children__wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  --margin-inline: var(--margin-1);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  gap: var(--size-8);
}
header.base-header .base-header__children__div {
  width: 1px;
  height: 12rem;
  background: var(--color-black-100);
}
header.base-header .base-header__children__link {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  display: flex;
  --gap: 12rem;
  flex-direction: row;
  gap: var(--gap);
}
header.base-header .base-header__children__link svg {
  width: 28rem;
  height: 28rem;
}
header.base-header .base-header__children__list {
  display: flex;
  --gap: 16rem;
  flex-direction: row;
  gap: var(--gap);
}
header.base-header .base-header__children__list__link {
  display: flex;
  --gap: 8rem;
  flex-direction: row;
  gap: var(--gap);
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
}
header.base-header .base-header__children__list__link svg {
  width: 10rem;
  height: auto;
}
header.base-header .base-header__menu-btn {
  width: 40rem;
  height: 40rem;
}
@media (min-width: 993px) {
  header.base-header .base-header__menu-btn {
    display: none;
  }
}
header.base-header {
  transition-property: background;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}
header.base-header:before {
  transition: transform;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
header.base-header .base-header__container-top__link span, header.base-header .base-header__container-bottom__link span, header.base-header .base-header__children__list__link span {
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
header.base-header .base-header__children {
  clip-path: inset(100% 0 0 0);
  transform: translateY(-100%);
  transition-property: clip-path, transform, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
header.base-header .base-header__search-box {
  transform: translateY(-100%);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
header.base-header .base-header__wrap:after {
  transition: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
header.base-header .base-header__top {
  transition: margin, height, opacity;
  transition-duration: 0.4s;
  transition-timing-function: liner;
}
header.base-header:has([open]) {
  background: var(--color-white-100);
}
header.base-header .base-header__container-top__link[open] span, header.base-header .base-header__container-bottom__link[open] span {
  color: var(--color-orange-100);
}
header.base-header:has([details-id=extra_foundation-info][open]) .base-header__children[details-id=extra_foundation-info] {
  clip-path: inset(0% 0 0 0);
  transform: translateY(0%);
}
header.base-header:has([details-id=main_awards][open]) .base-header__children[details-id=main_awards] {
  clip-path: inset(0% 0 0 0);
  transform: translateY(0%);
}
header.base-header:has([details-id=main_grant][open]) .base-header__children[details-id=main_grant] {
  clip-path: inset(0% 0 0 0);
  transform: translateY(0%);
}
header.base-header:has([details-id=sub_creator-forum][open]) .base-header__children[details-id=sub_creator-forum] {
  clip-path: inset(0% 0 0 0);
  transform: translateY(0%);
}
header.base-header:has([open]) .base-header__wrap:after {
  opacity: 1;
}
header.base-header[white-header] {
  background: var(--color-white-100);
}
header.base-header[search-header]:before {
  transform: translateY(0);
}
header.base-header[search-header] .base-header__search-box {
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  header.base-header a:hover, header.base-header details:hover {
    color: var(--color-orange-100);
  }
  header.base-header .base-header__top:hover {
    opacity: 0.75;
  }
}

@media (max-width: 1300px) {
  html[lang=en] .base-header__top {
    margin-left: 0rem;
  }
}
@media (max-width: 1200px) {
  html[lang=en] .base-header__top {
    height: 36rem;
  }
}
html[lang=en] .base-header__container-top {
  display: none;
}
html[lang=en] .base-header__container-bottom {
  --gap: var(--size-7);
}
@media (max-width: 1200px) {
  html[lang=en] .base-header__container-bottom {
    --gap: var(--size-4);
  }
}
@media (max-width: 992px) {
  html[lang=en] .base-header__container-bottom {
    --gap: var(--size-5);
  }
}
html[lang=en] .base-header__container-bottom__link {
  white-space: nowrap;
}
@media (max-width: 992px) {
  html[lang=en] .base-header__container-bottom__link {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
  }
}

.base-magazine-header .base-magazine-header__categories {
  background: var(--color-orange-100);
  color: var(--color-white-100);
  padding-top: var(--size-6);
  padding-top: var(--size-5);
  padding-bottom: var(--size-5);
}
.base-magazine-header .base-magazine-header__categories__list {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
}
.base-magazine-header .base-magazine-header__categories__list a, .base-magazine-header .base-magazine-header__categories__list p {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-bottom: var(--size-4);
  display: block;
}
.base-magazine-header .base-magazine-header__tag {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-5);
}
.base-magazine-header .base-magazine-header__tag__list {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
}
.base-magazine-header .base-magazine-header__tag__list a {
  padding-left: var(--size-4);
  padding-right: var(--size-4);
  color: var(--color-white-100);
  background: var(--color-orange-100);
  line-height: 28rem;
  border-radius: calc(infinity * 1px);
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  display: block;
  width: fit-content;
}

section.base-magazine-section {
  padding-top: var(--size-12);
  margin-top: var(--size-13);
  position: relative;
  overflow: hidden;
  --max-width: 1740rem;
}
section.base-magazine-section:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  content: "";
  display: block;
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-inline: auto;
  height: 1px;
  background-color: var(--color-gray-100);
}
section.base-magazine-section:has([post-count="0"]) {
  display: none;
}
@media (min-width: 751px) {
  section.base-magazine-section {
    --margin-inline: var(--margin-0);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  section.base-magazine-section {
    --padding-border: var(--size-9);
    margin-top: var(--size-11);
    padding-top: var(--size-11);
  }
  section.base-magazine-section:after {
    width: calc(100% - var(--margin-2) * 2);
  }
}
section.base-magazine-section .section-title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  section.base-magazine-section .section-title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
section.base-magazine-section .base-magazine-section__description {
  font-size: 20rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 1rem;
  line-height: 2;
  text-align: center;
  margin-top: var(--size-8);
  margin-bottom: var(--size-9);
  line-break: strict;
}
@media (max-width: 750px) {
  section.base-magazine-section .base-magazine-section__description {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
section.base-magazine-section .base-magazine-section__container {
  width: 100%;
}
section.base-magazine-section .base-magazine-section__link {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
}
section.base-magazine-section .parts-arrow-link {
  margin-left: auto;
  margin-top: var(--size-9);
}
@media (max-width: 750px) {
  section.base-magazine-section .parts-arrow-link {
    margin-right: var(--margin-1);
  }
}

.base-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white-100);
  z-index: 10;
  overflow-y: scroll;
}
@media (min-width: 993px) {
  .base-menu {
    display: none;
  }
}
.base-menu .base-menu__wrap {
  width: 100%;
  height: fit-content;
  padding-top: 70rem;
  padding-left: var(--margin-1);
  padding-right: var(--margin-1);
  padding-bottom: 10rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 751px) and (max-width: 992px) {
  .base-menu .base-menu__wrap {
    padding-top: 100rem;
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 50rem auto auto;
    gap: 0px 0px;
    grid-template-areas: "search search" "left right" "bottom bottom";
    gap: var(--size-8) 0rem;
  }
}
.base-menu .base-menu__search-box__form {
  width: 100%;
  height: 50rem;
  border-radius: calc(infinity * 1px);
  background: var(--color-gray-200);
  display: flex;
  justify-content: space-between;
  padding-left: var(--size-6);
  padding-right: var(--size-6);
  grid-area: search;
}
.base-menu .base-menu__search-box__input {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-black-100);
}
.base-menu .base-menu__search-box__input::placeholder {
  color: var(--color-gray-100);
}
.base-menu .base-menu__search-box__submit {
  width: 24rem;
  height: 24rem;
  margin-top: auto;
  margin-bottom: auto;
}
.base-menu .base-menu__container-bottom {
  margin-top: 30rem;
  display: flex;
  --gap: var(--size-4);
  flex-direction: column;
  gap: var(--gap);
  grid-area: left;
  margin-bottom: auto;
}
@media (min-width: 751px) and (max-width: 992px) {
  .base-menu .base-menu__container-bottom {
    margin-top: 0rem;
    margin-bottom: 100rem;
  }
}
@media (max-width: 750px) {
  .base-menu .base-menu__container-bottom {
    margin-bottom: 0;
  }
}
.base-menu .base-menu__container-bottom__link {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
}
.base-menu .base-menu__container-bottom__link[open] summary span {
  color: var(--color-orange-100);
}
.base-menu .base-menu__container-bottom__list {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  padding-left: var(--size-4);
}
.base-menu .base-menu__container-bottom__list > *:first-child {
  padding-top: var(--size-4);
}
.base-menu .base-menu__container-bottom__list-link {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  display: flex;
  --gap: var(--size-3);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .base-menu .base-menu__container-bottom__list-link svg {
    width: 10rem;
    height: 10rem;
  }
}
.base-menu .base-menu__container-top {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--size-7);
  padding-top: var(--size-2);
  padding-bottom: var(--size-2);
  grid-area: right;
}
@media (max-width: 992px) {
  .base-menu .base-menu__container-top {
    margin-top: 0rem;
    margin-bottom: auto;
  }
}
@media (max-width: 750px) {
  .base-menu .base-menu__container-top {
    padding-top: var(--size-7);
  }
}
.base-menu .base-menu__container-top__link {
  line-break: loose;
  font-size: var(--text-size-minimum);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.15;
  letter-spacing: 0.05em;
}
.base-menu .base-menu__container-top__link[open] summary span {
  color: var(--color-orange-100);
}
.base-menu .base-menu__container-top__list {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  padding-left: var(--size-4);
}
.base-menu .base-menu__container-top__list > *:first-child {
  padding-top: var(--size-5);
}
.base-menu .base-menu__container-top__list-link {
  line-break: loose;
  font-size: var(--text-size-minimum);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.15;
  letter-spacing: 0.05em;
}
.base-menu .base-menu__bottom {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 82rem;
  grid-area: bottom;
}
@media (min-width: 751px) and (max-width: 992px) {
  .base-menu .base-menu__bottom {
    margin-top: auto;
  }
}
.base-menu .base-menu__bottom__sns {
  display: flex;
  --gap: var(--size-6);
  flex-direction: row;
  gap: var(--gap);
}
.base-menu .base-menu__bottom__sns-item {
  width: 40rem;
  height: 40rem;
}
.base-menu .base-menu__bottom__to-en {
  height: 40rem;
  width: 111rem;
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-orange-100);
  color: var(--color-orange-100);
  display: flex;
  justify-content: center;
  align-items: center;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}

.base-menu {
  transform: translateX(101%);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

.base-menu__container-bottom__list-wrap, .base-menu__container-top__list-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.base-menu__container-bottom__list-wrap > *, .base-menu__container-top__list-wrap > * {
  overflow: hidden;
}

.base-menu[menu-open] {
  transform: translateX(0%);
}

.base-menu__container-bottom__link-wrap:has([open]) .base-menu__container-bottom__list-wrap {
  grid-template-rows: 1fr;
}

.base-menu__container-top__link-wrap:has([open]) .base-menu__container-top__list-wrap {
  grid-template-rows: 1fr;
}

html[lang=en] .base-menu .base-menu__container-bottom {
  margin-top: var(--size-8);
}
html[lang=en] .base-menu .base-menu__container-bottom__link {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  --gap: var(--size-3);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
html[lang=en] .base-menu .base-menu__container-bottom__link svg {
  width: 10rem;
  height: 10rem;
}

section.base-nav {
  margin-top: var(--size-14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}
@media (max-width: 992px) {
  section.base-nav {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
    margin-top: 80rem;
    flex-direction: column;
    position: relative;
  }
  section.base-nav:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2rem;
    border-radius: calc(infinity * 1px);
    top: 0;
    background: var(--color-gray-200);
  }
}
section.base-nav .base-nav__item {
  height: 276rem;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media (min-width: 993px) {
  section.base-nav .base-nav__item {
    padding-top: 76rem;
    padding-bottom: 68rem;
  }
  section.base-nav .base-nav__item:after {
    content: "";
    position: absolute;
    width: calc(100% - var(--column-gap));
    height: 2rem;
    border-radius: calc(infinity * 1px);
    top: 0;
    background: var(--color-gray-200);
  }
  section.base-nav .base-nav__item:first-of-type:after {
    right: 16rem;
  }
  section.base-nav .base-nav__item:last-of-type:after {
    left: 16rem;
  }
}
@media (max-width: 992px) {
  section.base-nav .base-nav__item {
    padding-top: var(--size-9);
    padding-bottom: var(--size-9);
  }
  section.base-nav .base-nav__item:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    width: calc(100vw - var(--margin-2) * 2);
  }
}
section.base-nav .base-nav__item__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media (max-width: 992px) {
  section.base-nav .base-nav__item__title {
    font-size: 28rem;
    line-height: 1;
    height: auto;
  }
}
section.base-nav .base-nav__bar {
  width: var(--size-9);
  height: 2px;
  min-height: 2px;
  background: var(--color-orange-100);
  margin-top: 32rem;
  margin-bottom: 24rem;
}
section.base-nav .base-nav__division {
  width: 2px;
  height: 148rem;
  background-color: var(--color-black-100);
}
@media (max-width: 992px) {
  section.base-nav .base-nav__division {
    width: calc(var(--column-width-size) * 4 + var(--column-gap) * 3);
    height: 2px;
    border-radius: calc(infinity * 1px);
    background: var(--color-black-100);
  }
}
section.base-nav .parts-arrow-link {
  --gap: 16rem;
}
section.base-nav .parts-arrow-link svg {
  width: var(--size-9);
  height: var(--size-9);
}

.base-page-header {
  height: 300rem;
  position: relative;
  overflow: clip;
  --max-width: 1611rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .base-page-header:has(.base-page-header__container--deep) {
    height: 200rem;
  }
}
@media (min-width: 751px) {
  .base-page-header {
    margin-top: 30rem;
  }
}
@media (max-width: 750px) {
  .base-page-header {
    height: 160rem;
  }
}
.base-page-header .base-page-header__wrap {
  --margin-inline: 0rem;
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-width);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.base-page-header .base-page-header__container {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: var(--margin-2);
  width: fit-content;
  height: fit-content;
  z-index: 1;
}
.base-page-header .base-page-header__container--deep .base-page-header__en-title {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  line-height: 2;
  background: var(--color-white-100);
  width: fit-content;
  padding-left: var(--size-7);
  padding-right: var(--size-7);
}
@media (max-width: 750px) {
  .base-page-header .base-page-header__container--deep .base-page-header__en-title {
    font-size: 16rem;
  }
}
.base-page-header .base-page-header__container--deep .base-page-header__sub-title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: var(--color-orange-100);
  color: var(--color-white-100);
  width: fit-content;
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: var(--size-7);
  padding-right: var(--size-7);
}
@media (max-width: 750px) {
  .base-page-header .base-page-header__container--deep .base-page-header__sub-title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    padding-left: var(--size-4);
    padding-right: var(--size-4);
  }
}
.base-page-header .base-page-header__container--deep .base-page-header__main-title {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-left: var(--size-7);
  padding-right: var(--size-7);
}
@media (max-width: 750px) {
  .base-page-header .base-page-header__container--deep .base-page-header__main-title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.base-page-header .base-page-header__en-title {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-orange-100);
  padding-left: 7rem;
  padding-right: 7rem;
  width: fit-content;
  background: var(--color-white-100);
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  .base-page-header .base-page-header__en-title {
    padding-left: var(--size-7);
    padding-right: var(--size-7);
    font-size: 24rem;
    line-height: 1.5;
  }
}
.base-page-header .base-page-header__main-title {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-left: 7rem;
  padding-right: 7rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: var(--color-white-100);
  width: fit-content;
}
@media (max-width: 750px) {
  .base-page-header .base-page-header__main-title {
    font-size: 24rem;
    line-height: 1.8;
    letter-spacing: 1.92rem;
    padding-left: var(--size-7);
    padding-right: var(--size-7);
  }
}
.base-page-header .base-page-header__kv {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  --diff: max(0rem, (100vw - var(--max-width)) / 2);
  max-width: calc(880rem + var(--diff));
  right: calc(var(--diff) * -1);
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  border: 1px solid var(--color-yellow-100);
  border-right: 0;
}
@media (max-width: 1200px) {
  .base-page-header .base-page-header__kv {
    max-width: calc(100% - 216rem);
  }
}
@media (max-width: 750px) {
  .base-page-header .base-page-header__kv {
    max-width: calc(100% - 120rem);
    border: 0.5px solid var(--color-yellow-100);
    border-right: 0;
  }
}
.base-page-header .base-page-header__back {
  height: 100%;
  width: fit-content;
  display: flex;
  --gap: -1rem;
  flex-direction: row;
}
.base-page-header .base-page-header__back * + * {
  margin-left: var(--gap);
}
.base-page-header .base-page-header__back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.base-page-header .base-page-header__graphics {
  height: 100%;
  width: auto;
  aspect-ratio: 1622/302;
}

.base-slider {
  position: relative;
}
.base-slider .base-slider__button {
  position: absolute;
  width: 56rem;
  height: 56rem;
  border: 1px solid var(--color-black-100);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-white-100);
  top: 107rem;
  --padding-inline: var(--margin-2);
}
.base-slider .base-slider__button svg {
  width: 10rem;
  height: auto;
}
.base-slider .base-slider__button--prev {
  left: var(--padding-inline);
}
.base-slider .base-slider__button--next {
  right: var(--padding-inline);
}
@media (max-width: 750px) {
  .base-slider .base-slider__button {
    top: 82rem;
    --padding-inline: var(--margin-1);
  }
}
.base-slider .base-slider__slider {
  --margin-inline: 0rem;
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
}
.base-slider .splide__track {
  overflow: visible;
}
.base-slider--less {
  visibility: visible;
  width: 100%;
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.base-slider--less .base-slider__slider {
  width: 100%;
}
.base-slider--less .base-slider__slider:before, .base-slider--less .base-slider__slider:after {
  display: none;
}
.base-slider--less .base-slider__slider__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-8);
}
.base-slider--less .base-slider__button {
  display: none;
}
@media (min-width: 993px) {
  .base-slider--less .parts-magazine-item {
    --fix-width: 100%;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
  .base-slider--less .parts-magazine-item .parts-magazine-item__thumbnail {
    aspect-ratio: 16/9;
  }
  .base-slider--less .parts-magazine-item .parts-magazine-item__thumbnail-img {
    width: 100%;
    height: 100%;
  }
}

button.base-to-top {
  width: 60rem;
  height: 60rem;
  border-radius: calc(infinity * 1px);
  background: var(--color-orange-100);
  border: 1px solid var(--color-white-100);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20rem;
  right: 20rem;
  z-index: 2;
}
button.base-to-top svg {
  width: 16rem;
  height: 16rem;
}
button.base-to-top {
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
button.base-to-top svg path {
  transition: fill 0.3s ease;
}
button.base-to-top[button-visible] {
  opacity: 1;
}
@media (min-width: 993px) {
  button.base-to-top:hover {
    background: var(--color-white-100);
    border-color: var(--color-orange-100);
  }
  button.base-to-top:hover svg path {
    fill: var(--color-orange-100);
  }
}
@media (max-width: 992px) {
  button.base-to-top[hover-el] {
    background: var(--color-white-100);
    border-color: var(--color-orange-100);
  }
  button.base-to-top[hover-el] svg path {
    fill: var(--color-orange-100);
  }
}

.parts-arrow-link {
  font-size: 16rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.25em;
  display: flex;
  --gap: 24rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
  width: fit-content;
}
.parts-arrow-link span {
  line-height: 1;
  display: inline-block;
}
.parts-arrow-link svg {
  width: 60rem;
  height: 60rem;
  border: 1px solid var(--color-black-100);
  border-radius: calc(infinity * 1px);
}
@media (max-width: 992px) {
  .parts-arrow-link svg {
    transform: translateZ(1px);
  }
}
.parts-arrow-link--small {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
}
.parts-arrow-link--small svg {
  width: 40rem;
  height: 40rem;
}
.parts-arrow-link svg {
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media (hover: hover) and (pointer: fine) {
  .parts-arrow-link:hover svg {
    background: var(--color-yellow-200);
  }
}

a.parts-award-item {
  width: calc(var(--column-width-size) * 4 + var(--column-gap) * 3);
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  padding-bottom: var(--gap);
  border-bottom: 1px solid var(--color-black-100);
}
@media (max-width: 750px) {
  a.parts-award-item {
    max-width: 100%;
    width: 100%;
  }
}
a.parts-award-item .parts-award-item__thumbnail {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
a.parts-award-item .parts-award-item__thumbnail img {
  width: 100%;
  height: 100%;
}
a.parts-award-item .parts-award-item__thumbnail--individual {
  aspect-ratio: 4/3;
}
a.parts-award-item .parts-award-item__year {
  width: 160rem;
  background: var(--color-orange-100);
  color: var(--color-white-100);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
a.parts-award-item .parts-award-item__title-list {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
a.parts-award-item .parts-award-item__title {
  display: flex;
  --gap: var(--size-2);
  flex-direction: row;
  gap: var(--gap);
  align-items: baseline;
}
a.parts-award-item .parts-award-item__title span {
  display: inline-block;
}
a.parts-award-item .parts-award-item__title > span:first-child {
  min-width: 60rem;
  color: var(--color-orange-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
a.parts-award-item .parts-award-item__title > span:nth-of-type(2) {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  line-height: 1.75;
  position: relative;
  padding-left: 8rem;
}
a.parts-award-item .parts-award-item__title > span:nth-of-type(2):after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: calc(100% - 4rem);
  width: 1px;
  background: var(--color-orange-100);
  content: "";
}
a.parts-award-item .parts-award-item__title svg {
  --fix-width: 16rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  height: var(--fix-width);
  margin-left: 22rem;
  margin-right: 22rem;
  margin-left: auto;
  margin-top: 9rem;
  margin-bottom: auto;
}
@media (max-width: 750px) {
  a.parts-award-item--wide {
    max-width: 320rem;
  }
}
@media (min-width: 751px) {
  a.parts-award-item--wide {
    display: flex;
    flex-direction: row;
    gap: var(--column-gap);
    padding-bottom: 0rem;
    border-bottom: none;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  a.parts-award-item--wide {
    display: flex;
    --gap: var(--size-5);
    flex-direction: column;
    gap: var(--gap);
  }
}
@media (min-width: 751px) {
  a.parts-award-item--wide .parts-award-item__thumbnail {
    --fix-width: calc(var(--column-width-size) * 7 + var(--column-gap) * 6);
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  a.parts-award-item--wide .parts-award-item__thumbnail {
    --fix-width: 100%;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
@media (min-width: 751px) {
  a.parts-award-item--wide .parts-award-item__year {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    width: 200rem;
  }
  a.parts-award-item--wide .parts-award-item__title {
    display: flex;
    --gap: 0rem;
    flex-direction: column;
    position: relative;
  }
  a.parts-award-item--wide .parts-award-item__title > span:first-of-type {
    line-break: loose;
    font-size: var(--text-size-large);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.5;
    letter-spacing: 0.05em;
    position: relative;
  }
  a.parts-award-item--wide .parts-award-item__title > span:last-of-type {
    padding-top: var(--size-4);
    margin-top: var(--size-4);
    padding-left: 0rem;
    position: relative;
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  a.parts-award-item--wide .parts-award-item__title > span:last-of-type:after {
    width: 20rem;
    height: 1px;
    position: absolute;
    top: 0;
    margin: 0;
  }
  a.parts-award-item--wide .parts-award-item__title svg {
    position: absolute;
    top: 13rem;
    right: 10rem;
    margin: 0;
  }
}
a.parts-award-item .parts-award-item__thumbnail img {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
a.parts-award-item svg {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  a.parts-award-item:hover .parts-award-item__thumbnail img {
    transform: scale(1.1);
  }
  a.parts-award-item:hover svg {
    transform: translateX(10rem);
  }
}

.parts-contents-index {
  display: flex;
  --gap: 32rem;
  flex-direction: column;
  gap: var(--gap);
  border: 1px solid var(--color-black-100);
  border-left: none;
  border-right: none;
  position: relative;
  padding-top: var(--size-8);
  padding-bottom: var(--size-8);
}
@media (max-width: 750px) {
  .parts-contents-index {
    padding-top: var(--size-5);
    padding-bottom: var(--size-5);
  }
}
.parts-contents-index .parts-contents-index__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.parts-contents-index .parts-contents-index__summary::-webkit-details-marker {
  display: none;
}
.parts-contents-index .parts-contents-index__title {
  margin: 0;
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-black-100);
  text-align: center;
}
@media (max-width: 750px) {
  .parts-contents-index .parts-contents-index__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.parts-contents-index .parts-contents-index__icon {
  width: 40rem;
  height: 40rem;
  transform: rotate(180deg);
}
.parts-contents-index .parts-contents-index__details[open] .parts-contents-index__icon {
  transform: rotate(0deg);
}
.parts-contents-index .parts-contents-index__list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 32rem;
}
@media (max-width: 750px) {
  .parts-contents-index .parts-contents-index__list {
    padding-left: var(--size-6);
    padding-right: var(--size-6);
  }
}
.parts-contents-index .parts-contents-index__item {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.parts-contents-index .parts-contents-index__item--h3 {
  padding-left: 20rem;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .parts-contents-index .parts-contents-index__item--h3 {
    padding-left: var(--size-6);
  }
}
.parts-contents-index .parts-contents-index__link {
  color: var(--color-orange-100);
  text-decoration: none !important;
}
.parts-contents-index__item--h3 .parts-contents-index .parts-contents-index__link {
  font-weight: 400 !important;
}
@media (hover: hover) and (pointer: fine) {
  .parts-contents-index .parts-contents-index__link:hover {
    opacity: 0.7;
  }
}

:root {
  interpolate-size: allow-keywords;
}

.parts-contents-index .parts-contents-index__icon {
  transition: transform 0.4s ease;
}
.parts-contents-index .parts-contents-index__details::details-content {
  height: 0;
  opacity: 0;
  overflow: clip;
  transition: height 0.4s ease, opacity 0.4s ease, content-visibility 0.4s allow-discrete;
}

.parts-contents-index .parts-contents-index__details[open]::details-content {
  height: auto;
  opacity: 1;
}

.parts-full-link {
  width: 100%;
  height: 64rem;
  background: var(--color-orange-100);
  color: var(--color-white-100);
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  border-radius: calc(infinity * 1px);
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  --gap: 11rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
  position: relative;
}
.parts-full-link span {
  white-space: nowrap;
}
.parts-full-link svg {
  width: 28rem;
  height: auto;
}
.parts-full-link svg path {
  fill: var(--color-white-100);
}
@media (max-width: 750px) {
  .parts-full-link {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.parts-full-link--transparent {
  background: var(--color-white-100);
  border: 1px solid var(--color-black-100);
  color: var(--color-orange-100);
}
.parts-full-link--transparent svg path {
  fill: var(--color-orange-100);
}
@media (hover: hover) and (pointer: fine) {
  .parts-full-link {
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: linear;
  }
  .parts-full-link:hover {
    background: var(--color-yellow-100);
  }
  .parts-full-link--transparent:hover {
    background: var(--color-yellow-200);
  }
}

.parts-full-select {
  position: relative;
}
.parts-full-select details {
  width: 100%;
  height: 100%;
}
.parts-full-select summary {
  display: flex;
  --gap: 11rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.parts-full-select .parts-full-select__wrap {
  position: absolute;
  width: calc(100% - 20rem);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 0;
  transform: translateY(100%);
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  z-index: 1;
}
.parts-full-select .parts-full-select__container {
  width: 100%;
  overflow: hidden;
}
.parts-full-select .parts-full-select__list {
  color: var(--color-orange-100);
  background: var(--color-white-100);
  border: 1px solid var(--color-orange-100);
  border-radius: 5rem;
  display: flex;
  --gap: 2rem;
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
  padding-top: var(--size-7);
  padding-bottom: var(--size-7);
}
.parts-full-select .parts-full-select__list > * {
  line-height: 44rem;
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  width: calc(100% - 4rem);
  text-align: center;
}
@media (max-width: 750px) {
  .parts-full-select .parts-full-select__list > * {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.parts-full-select summary svg {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.parts-full-select .parts-full-select__wrap {
  transition-property: grid-template-rows;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.parts-full-select:has([open]) summary svg {
  transform: rotate(180deg);
}
.parts-full-select:has([open]) .parts-full-select__wrap {
  grid-template-rows: 1fr;
}
@media (hover: hover) and (pointer: fine) {
  .parts-full-select summary {
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    border-radius: calc(infinity * 1px);
  }
  .parts-full-select summary:hover {
    background: var(--color-yellow-100);
  }
  .parts-full-select .parts-full-select__list > *:hover {
    background: var(--color-yellow-200);
  }
}

a.parts-magazine-item {
  --fix-width: var(--tripartite-size);
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  padding-bottom: 40rem;
  display: block;
  border-bottom: 1px solid var(--color-black-100);
  height: fit-content;
}
@media (max-width: 992px) {
  a.parts-magazine-item {
    --fix-width: 320px;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
@media (max-width: 750px) {
  a.parts-magazine-item {
    padding-bottom: var(--size-6);
    --fix-width: 320px;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
a.parts-magazine-item .parts-magazine-item__thumbnail {
  width: 100%;
  aspect-ratio: 6/4 !important;
  position: relative;
  overflow: hidden;
}
a.parts-magazine-item .parts-magazine-item__category {
  width: 160rem;
  height: 32rem;
  font-size: 16rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  text-align: center;
  line-height: 2;
  background: var(--color-white-100);
  color: var(--color-orange-100);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
a.parts-magazine-item .parts-magazine-item__thumbnail-img {
  width: 100%;
  height: 100%;
}
a.parts-magazine-item .parts-magazine-item__header {
  margin-top: 16rem;
  display: flex;
  --gap: 8rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: baseline;
  flex-wrap: wrap;
  max-height: 29rem;
  overflow: hidden;
}
a.parts-magazine-item .parts-magazine-item__tag {
  line-break: loose;
  font-size: var(--text-size-tiny);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  border-radius: calc(infinity * 1px);
  background: var(--color-orange-100);
  color: var(--color-white-100);
  padding-left: 12rem;
  padding-right: 12rem;
  white-space: nowrap;
}
a.parts-magazine-item .parts-magazine-item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  --fix-width: 77rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  white-space: nowrap;
  --fix-width: 80rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
}
a.parts-magazine-item .parts-magazine-item__title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 16rem;
  display: flex;
  align-items: flex-end;
  line-height: 1.75;
}
a.parts-magazine-item .parts-magazine-item__title span {
  max-width: 100%;
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
a.parts-magazine-item .parts-magazine-item__title svg {
  padding: 8rem 22rem;
}
a.parts-magazine-item .parts-magazine-item__thumbnail-img {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
a.parts-magazine-item svg {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  a.parts-magazine-item:hover .parts-magazine-item__thumbnail-img {
    transform: scale(1.1);
  }
  a.parts-magazine-item:hover svg {
    transform: translateX(10rem);
  }
}

.parts-pagination {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: var(--size-12);
  align-items: center;
}
.parts-pagination:not(:has(.parts-pagination__item)) {
  display: none;
}
@media (max-width: 750px) {
  .parts-pagination {
    width: 100%;
    display: flex;
    justify-content: space-between;
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 751px) {
  .parts-pagination {
    display: flex;
    --gap: var(--size-9);
    flex-direction: row;
    gap: var(--gap);
  }
}
.parts-pagination .parts-pagination__arrow {
  width: 56rem;
  height: 56rem;
  border: 1px solid var(--color-black-100);
  min-width: 56rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.parts-pagination .parts-pagination__arrow svg {
  width: 10rem;
  height: auto;
}
.parts-pagination .parts-pagination__numbers {
  display: flex;
  --gap: var(--size-3);
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .parts-pagination .parts-pagination__numbers {
    --gap: var(--size-7);
  }
}
.parts-pagination .parts-pagination__item {
  width: 40rem;
  text-align: center;
  font-size: 28rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 56rem;
  position: relative;
  display: none;
}
.parts-pagination .parts-pagination__item > * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.parts-pagination .parts-pagination__item--current {
  color: var(--color-orange-100);
  display: block;
}
.parts-pagination .parts-pagination__item--current:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 20rem;
  height: 3px;
  background: var(--color-orange-100);
}
@media (min-width: 751px) {
  .parts-pagination .parts-pagination__item:has(+ * + .parts-pagination__item--current), .parts-pagination .parts-pagination__item--current + * + *, .parts-pagination .parts-pagination__item:has(+ .parts-pagination__item--current), .parts-pagination .parts-pagination__item--current + * {
    display: block;
    pointer-events: all;
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .parts-pagination .parts-pagination__item:has(+ * + .parts-pagination__item--current) span, .parts-pagination .parts-pagination__item--current + * + * span, .parts-pagination .parts-pagination__item:has(+ .parts-pagination__item--current) span, .parts-pagination .parts-pagination__item--current + * span {
    display: block;
    pointer-events: none;
  }
  .parts-pagination .parts-pagination__item:has(+ * + .parts-pagination__item--current), .parts-pagination .parts-pagination__item--current + * + * {
    margin-left: -10rem;
    margin-right: -10rem;
  }
  .parts-pagination .parts-pagination__item:has(+ * + .parts-pagination__item--current) span, .parts-pagination .parts-pagination__item--current + * + * span {
    display: none;
  }
  .parts-pagination .parts-pagination__item:has(+ * + .parts-pagination__item--current):before, .parts-pagination .parts-pagination__item--current + * + *:before {
    content: "…";
    pointer-events: none;
    color: var(--color-black-100) !important;
  }
}
@media (max-width: 750px) {
  .parts-pagination .parts-pagination__item {
    width: fit-content;
  }
  .parts-pagination .parts-pagination__item:has(+ * + .parts-pagination__item--current), .parts-pagination .parts-pagination__item--current + * + * {
    display: block;
    pointer-events: none;
    margin-left: -10rem;
    margin-right: -10rem;
  }
  .parts-pagination .parts-pagination__item:has(+ * + .parts-pagination__item--current) span, .parts-pagination .parts-pagination__item--current + * + * span {
    display: none;
  }
  .parts-pagination .parts-pagination__item:has(+ * + .parts-pagination__item--current):before, .parts-pagination .parts-pagination__item--current + * + *:before {
    content: "…";
  }
}
.parts-pagination .parts-pagination__item:has(+ .parts-pagination__item--current), .parts-pagination .parts-pagination__item--current + *, .parts-pagination .parts-pagination__item:first-of-type, .parts-pagination .parts-pagination__item:last-of-type {
  display: block;
  pointer-events: all;
  margin-left: 0rem;
  margin-right: 0rem;
}
.parts-pagination .parts-pagination__item:has(+ .parts-pagination__item--current) span, .parts-pagination .parts-pagination__item--current + * span, .parts-pagination .parts-pagination__item:first-of-type span, .parts-pagination .parts-pagination__item:last-of-type span {
  display: block;
}
.parts-pagination .parts-pagination__item:has(+ .parts-pagination__item--current):before, .parts-pagination .parts-pagination__item--current + *:before, .parts-pagination .parts-pagination__item:first-of-type:before, .parts-pagination .parts-pagination__item:last-of-type:before {
  display: none;
}
.parts-pagination .parts-pagination__arrow {
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.parts-pagination .parts-pagination__item {
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media (hover: hover) and (pointer: fine) {
  .parts-pagination .parts-pagination__arrow:hover:not(span) {
    background: var(--color-yellow-200);
  }
  .parts-pagination .parts-pagination__item:has(a):hover {
    color: var(--color-orange-100);
  }
}

a.parts-project-item {
  width: calc(var(--column-width-size) * 4 + var(--column-gap) * 3);
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  padding-bottom: var(--gap);
  border-bottom: 1px solid var(--color-black-100);
}
@media (max-width: 750px) {
  a.parts-project-item {
    width: 320rem;
  }
}
a.parts-project-item .parts-project-item__thumbnail {
  width: 100%;
  height: 180rem;
  position: relative;
  overflow: hidden;
}
a.parts-project-item .parts-project-item__thumbnail img {
  width: 100%;
  height: 100%;
}
a.parts-project-item .parts-project-item__year {
  width: 160rem;
  background: var(--color-orange-100);
  color: var(--color-white-100);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
a.parts-project-item .parts-project-item__title {
  display: flex;
  --gap: var(--size-2);
  flex-direction: row;
  gap: var(--gap);
  align-items: baseline;
}
a.parts-project-item .parts-project-item__title span {
  display: inline-block;
}
a.parts-project-item .parts-project-item__title > span:first-child {
  min-width: 60rem;
  color: var(--color-orange-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
a.parts-project-item .parts-project-item__title > span:nth-of-type(2) {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  line-height: 1.75;
  position: relative;
  padding-left: 8rem;
}
a.parts-project-item .parts-project-item__title > span:nth-of-type(2):after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: calc(100% - 4rem);
  width: 1px;
  background: var(--color-orange-100);
  content: "";
}
a.parts-project-item .parts-project-item__title svg {
  width: 16rem;
  height: 16rem;
  margin-left: 22rem;
  margin-right: 22rem;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}
a.parts-project-item .parts-project-item__thumbnail img {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
a.parts-project-item svg {
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  a.parts-project-item:hover .parts-project-item__thumbnail img {
    transform: scale(1.1);
  }
  a.parts-project-item:hover svg {
    transform: translateX(10rem);
  }
}

.parts-section-header .parts-section-header__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: var(--size-8);
  border-left: 3rem solid var(--color-orange-100);
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .parts-section-header .parts-section-header__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    padding-left: var(--size-5);
  }
}
.parts-section-header .parts-section-header__description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: var(--size-6);
  padding-left: var(--size-8);
  border-left: 3rem solid var(--color-black-100);
}
.parts-section-header .parts-section-header__description a {
  color: var(--color-orange-100);
  text-decoration: underline;
}
.parts-section-header .parts-section-header__description:not(:has(p)) {
  white-space: pre-line;
}
@media (max-width: 750px) {
  .parts-section-header .parts-section-header__description {
    padding-left: var(--size-5);
  }
}

.container[page-name=about] section.about {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 171rem;
}
@media (max-width: 750px) {
  .container[page-name=about] section.about {
    margin-top: 81rem;
  }
}
.container[page-name=about] section.about .about__header {
  position: relative;
}
.container[page-name=about] section.about .about__sub-title {
  font-size: 120rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  color: var(--color-yellow-200);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 750px) {
  .container[page-name=about] section.about .about__sub-title {
    font-size: 16.5vw;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
  }
}
.container[page-name=about] section.about .about__title {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=about] section.about .about__title {
    line-break: loose;
    font-size: var(--text-size-large);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.container[page-name=about] section.about .about__title__dot {
  width: 12rem;
  height: 12rem;
  background: var(--color-orange-100);
}
.container[page-name=about] section.about .about__kv {
  margin-top: var(--size-10);
  max-width: 748rem;
  width: 100%;
  height: 360rem;
}
@media (max-width: 750px) {
  .container[page-name=about] section.about .about__kv {
    margin-top: var(--size-7);
    height: 200rem;
  }
}
.container[page-name=about] section.about .about__kv__img {
  width: 100%;
  height: 100%;
}
.container[page-name=about] section.about .about__description {
  max-width: var(--half-size);
  height: fit-content;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: var(--size-4);
  padding-left: var(--size-6);
  margin-top: -151rem;
  margin-left: auto;
  background: var(--color-white-100);
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .container[page-name=about] section.about .about__description {
    max-width: 600rem;
    margin-top: -100rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=about] section.about .about__description {
    margin-top: -88rem;
    padding: var(--size-4) var(--size-6);
    right: calc(var(--margin-1) * -1);
    width: calc(100vw - var(--margin-1) * 2);
    padding-bottom: 0rem;
  }
}
.container[page-name=about] section.context {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  margin-bottom: var(--size-14);
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  border-top: none;
}
@media (max-width: 750px) {
  .container[page-name=about] section.context {
    margin-top: var(--size-9);
    margin-bottom: 56rem;
  }
}
.container[page-name=about] section.context .context__departments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-8);
  margin-top: var(--size-11);
  margin-bottom: var(--size-11);
}
@media (max-width: 1200px) {
  .container[page-name=about] section.context .context__departments {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .container[page-name=about] section.context .context__departments {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--size-9) 8rem;
  }
}
.container[page-name=about] section.context .context__department-item {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
}
.container[page-name=about] section.context .context__department-item__img {
  width: 100%;
  height: auto;
  max-width: 200rem;
}
.container[page-name=about] section.context .context__department-item__title {
  text-align: center;
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
.container[page-name=about] section.context .context__department-item__division {
  width: 20rem;
  height: 2rem;
  background: var(--color-orange-100);
}
.container[page-name=about] section.context .context__department-item__description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  max-width: var(--tripartite-size);
}
@media (max-width: 750px) {
  .container[page-name=about] section.context .context__department-item__description {
    max-width: 100%;
  }
}
.container[page-name=about] section.context .parts-full-link {
  margin-top: auto;
}
.container[page-name=about] section.docs {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--size-12);
  padding-bottom: var(--size-12);
  border-top: 1px solid var(--color-gray-100);
}
@media (max-width: 750px) {
  .container[page-name=about] section.docs {
    padding-top: var(--size-11);
    padding-bottom: var(--size-11);
  }
}
.container[page-name=about] section.docs .docs__title {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=about] section.docs .docs__title {
    font-size: 24rem;
    line-height: 1.5;
  }
}
.container[page-name=about] section.docs .docs__wrap {
  margin-top: var(--size-12);
  border: 1px solid var(--color-black-100);
  padding: var(--size-12) 56rem;
  margin-bottom: var(--size-12);
  position: relative;
}
.container[page-name=about] section.docs .docs__wrap:after, .container[page-name=about] section.docs .docs__wrap:before {
  content: "";
  position: absolute;
  width: var(--tripartite-size);
  height: 3px;
  background: var(--color-orange-100);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  border-radius: calc(infinity * 1px);
}
.container[page-name=about] section.docs .docs__wrap:after {
  top: -1.5px;
}
.container[page-name=about] section.docs .docs__wrap:before {
  bottom: -1.5px;
}
@media (max-width: 750px) {
  .container[page-name=about] section.docs .docs__wrap {
    margin-top: var(--size-11);
    padding: 60rem 20rem;
  }
  .container[page-name=about] section.docs .docs__wrap:after, .container[page-name=about] section.docs .docs__wrap:before {
    width: 110rem;
  }
}
.container[page-name=about] section.docs .docs__text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=about] section.forms {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--size-12);
  padding-bottom: var(--size-12);
  border-top: 1px solid var(--color-gray-100);
}
@media (max-width: 750px) {
  .container[page-name=about] section.forms {
    padding-top: var(--size-11);
    padding-bottom: var(--size-11);
  }
}
.container[page-name=about] section.forms .forms__title {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=about] section.forms .forms__title {
    font-size: 24rem;
    line-height: 1.5;
  }
}
.container[page-name=about] section.forms .forms__img {
  width: 100%;
  height: auto;
  margin-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=about] section.forms .forms__img {
    margin-top: var(--size-11);
  }
}
.container[page-name=about] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--size-12);
  border-top: 1px solid var(--color-gray-100);
  display: flex;
  --gap: var(--size-12);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 1200px) {
  .container[page-name=about] section.contents {
    --gap: var(--size-10);
  }
}
.container[page-name=about] section.contents .contents__column {
  display: flex;
  --gap: 33rem;
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 1200px) {
  .container[page-name=about] section.contents .contents__column {
    display: flex;
    --gap: 32rem;
    flex-direction: column;
    gap: var(--gap);
    flex-direction: column-reverse;
  }
}
.container[page-name=about] section.contents .parts-section-header {
  flex: 1;
  width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
}
@media (max-width: 1200px) {
  .container[page-name=about] section.contents .parts-section-header {
    width: 100%;
  }
}
.container[page-name=about] section.contents .contents__img {
  width: 100%;
  flex: 1;
  width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
}
@media (max-width: 1200px) {
  .container[page-name=about] section.contents .contents__img {
    width: 100%;
  }
}

.container[page-name=accessibility] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=accessibility] section.contents {
    margin-top: var(--size-9);
  }
}
.container[page-name=accessibility] section.contents .contents__column:not(:first-child) {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=accessibility] section.contents .contents__column:not(:first-child) {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=accessibility] section.contents .contents__column:not(:first-child) {
    --padding-border: var(--size-11);
    margin-top: var(--padding-border);
    border-top: 1px solid var(--color-gray-100);
    padding-top: var(--padding-border);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .container[page-name=accessibility] section.contents .contents__column:not(:first-child) {
    --padding-border: var(--size-11);
  }
}
.container[page-name=accessibility] section.contents .contents__column__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 750px) {
  .container[page-name=accessibility] section.contents .contents__column__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=accessibility] section.contents .contents__column__body {
  margin-top: var(--size-10);
}
.container[page-name=accessibility] section.contents .contents__column__body > * {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=accessibility] section.contents .contents__column__body ol {
  list-style-type: decimal;
  padding-left: 23rem;
}
.container[page-name=accessibility] section.contents .contents__column__body ul {
  list-style-type: disc;
  padding-left: 23rem;
}
.container[page-name=accessibility] section.contents .contents__column__body a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  color: var(--color-orange-100);
}
.container[page-name=accessibility] section.contents .contents__column__body h2 {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=accessibility] section.contents .contents__column__body strong {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=accessibility] section.contents a, .container[page-name=accessibility] section.contents button {
  transition: color 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=accessibility] section.contents a:hover, .container[page-name=accessibility] section.contents button:hover {
    color: var(--color-black-100);
  }
}

.container[page-name*=awards] section .section-title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name*=awards] section .section-title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name*=awards] section.application {
  padding-top: var(--size-12);
  padding-bottom: var(--size-12);
  border-top: 1px solid var(--color-gray-100);
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
@media (min-width: 751px) {
  .container[page-name*=awards] section.application {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application {
    padding-top: var(--size-11);
    padding-bottom: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application .parts-section-header {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name*=awards] section.application .application__contents {
  width: 100%;
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name*=awards] section.application .application__contents-wrap {
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name*=awards] section.application .application__contents__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.container[page-name*=awards] section.application .application__contents__title:empty {
  display: none;
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application .application__contents__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application .application__table-wrap:has(tbody tr > *:nth-of-type(3)) {
    padding-left: 0rem;
    padding-right: 0rem;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .container[page-name*=awards] section.application .application__table-wrap:has(tbody tr > *:nth-of-type(3))::-webkit-scrollbar {
    display: none;
  }
  .container[page-name*=awards] section.application .application__table-wrap:has(tbody tr > *:nth-of-type(3)) {
    display: flex;
  }
  .container[page-name*=awards] section.application .application__table-wrap:has(tbody tr > *:nth-of-type(3)):after, .container[page-name*=awards] section.application .application__table-wrap:has(tbody tr > *:nth-of-type(3)):before {
    content: "";
    display: block;
    min-width: var(--margin-2);
    height: 100%;
    border: 1px solid transparent;
  }
  .container[page-name*=awards] section.application .application__table-wrap:has(tbody tr > *:nth-of-type(3)) .application__table {
    --fix-width: 532rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
  .container[page-name*=awards] section.application .application__table-wrap:has(tbody tr > *:nth-of-type(3)) .application__table thead tr > *:nth-child(1), .container[page-name*=awards] section.application .application__table-wrap:has(tbody tr > *:nth-of-type(3)) .application__table tbody tr > *:nth-child(1) {
    --fix-width: 176rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
.container[page-name*=awards] section.application .application__table {
  border: 1px solid var(--color-black-100);
  table-layout: fixed;
}
@media (min-width: 751px) {
  .container[page-name*=awards] section.application .application__table {
    width: 100%;
  }
}
.container[page-name*=awards] section.application .application__table thead {
  border-bottom: 1px solid var(--color-gray-100);
  background: var(--color-yellow-200);
}
.container[page-name*=awards] section.application .application__table thead td {
  padding-left: 0rem;
  padding-right: 0rem;
  text-align: center;
}
.container[page-name*=awards] section.application .application__table thead tr, .container[page-name*=awards] section.application .application__table tbody tr {
  display: flex;
}
.container[page-name*=awards] section.application .application__table thead tr > *, .container[page-name*=awards] section.application .application__table tbody tr > * {
  flex: 1;
}
.container[page-name*=awards] section.application .application__table tr:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-100);
}
.container[page-name*=awards] section.application .application__table tr > *:not(:last-child) {
  border-right: 1px solid var(--color-gray-100);
}
.container[page-name*=awards] section.application .application__table th, .container[page-name*=awards] section.application .application__table td {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 13rem 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application .application__table th, .container[page-name*=awards] section.application .application__table td {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    padding: 14rem 16rem;
  }
}
.container[page-name*=awards] section.application .application__table th span > *, .container[page-name*=awards] section.application .application__table td span > * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name*=awards] section.application .application__table th span ul, .container[page-name*=awards] section.application .application__table td span ul {
  padding-left: 20rem;
  list-style: disc;
}
.container[page-name*=awards] section.application .application__table th span p:empty, .container[page-name*=awards] section.application .application__table td span p:empty {
  height: var(--text-size-middle);
}
.container[page-name*=awards] section.application .application__table th span {
  width: 100%;
}
.container[page-name*=awards] section.application .application__table:not(:has(tbody tr > *:nth-of-type(2))) th {
  max-width: 408rem;
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application .application__table:not(:has(tbody tr > *:nth-of-type(2))) th {
    max-width: 117rem;
  }
}
.container[page-name*=awards] section.application .application__table:not(:has(tbody tr > *:nth-of-type(2))) tr span {
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application .application__table:not(:has(tbody tr > *:nth-of-type(2))) {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application .application__table:has(tbody tr > *:nth-of-type(2)) {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name*=awards] section.application .application__table--left-bold th {
  background: var(--color-yellow-200);
  font-weight: 700;
}
.container[page-name*=awards] section.application .application__contents__notice {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name*=awards] section.application .application__contents__notice {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
  }
}
.container[page-name*=awards] .application-link {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}

.container[page-name=awards] section.notice {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  display: flex;
  --gap: var(--size-8);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=awards] section.notice .notice__header {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  padding-left: 20rem;
  border-left: 3rem solid var(--color-orange-100);
}
.container[page-name=awards] section.notice .notice__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=awards] section.notice .notice__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=awards] section.notice .notice__range {
  display: flex;
  --gap: var(--size-7);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.notice .notice__range {
    display: flex;
    --gap: var(--size-4);
    flex-direction: column;
    gap: var(--gap);
    align-items: flex-start;
  }
}
.container[page-name=awards] section.notice .notice__range__title {
  padding: 5rem var(--size-7);
  background: var(--color-black-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-white-100);
  width: fit-content;
  border-radius: calc(infinity * 1px);
}
.container[page-name=awards] section.notice .notice__range__text {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.notice .notice__range__text {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=awards] section.notice .notice__buttons {
  display: flex;
  --gap: var(--size-8);
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 1200px) {
  .container[page-name=awards] section.notice .notice__buttons {
    display: flex;
    --gap: var(--size-5);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=awards] section.notice .notice__text {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
.container[page-name=awards] section.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-9);
  margin-bottom: 80rem;
}
.container[page-name=awards] section.info .info__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.info .info__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=awards] section.info .info__list {
  display: flex;
  --gap: 4rem;
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--size-9);
  margin-bottom: var(--size-9);
}
@media (max-width: 750px) {
  .container[page-name=awards] section.info .info__list {
    margin-top: 32rem;
    margin-bottom: 32rem;
    margin-bottom: var(--size-9);
    display: flex;
    --gap: 20rem;
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=awards] section.info .info__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32rem;
}
@media (min-width: 751px) {
  .container[page-name=awards] section.info .info__item {
    gap: 24rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=awards] section.info .info__item {
    display: grid;
    grid-template-columns: 96rem 160rem 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "date category arrow" "title title title";
    height: fit-content;
  }
}
.container[page-name=awards] section.info .info__item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  grid-area: date;
  --fix-width: 72rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  white-space: nowrap;
}
.container[page-name=awards] section.info .info__item__category {
  font-size: 14rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 12rem;
  border-left: 1px solid var(--color-orange-100);
  border-right: 1px solid var(--color-orange-100);
  width: 160rem;
  text-align: center;
  color: var(--color-orange-100);
  grid-area: category;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.info .info__item__category {
    width: 160rem;
  }
}
.container[page-name=awards] section.info .info__item__text {
  flex: 1;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  grid-area: title;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.container[page-name=awards] section.info .info__item__arrow {
  width: 64rem;
  grid-area: arrow;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.info .info__item__arrow {
    margin-left: auto;
  }
}
.container[page-name=awards] section.info .parts-arrow-link {
  margin-left: auto;
}
.container[page-name=awards] section.info .info__item__text {
  transition: color 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=awards] section.info .info__item:hover .info__item__text {
    color: var(--color-orange-100);
  }
}
.container[page-name=awards] section.about {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=awards] section.about:before {
  display: none !important;
}
.container[page-name=awards] section.about .about__header {
  position: relative;
}
.container[page-name=awards] section.about .about__sub-title {
  font-size: 120rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  color: var(--color-yellow-200);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.about .about__sub-title {
    font-size: 16.5vw;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
  }
}
.container[page-name=awards] section.about .about__title {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.about .about__title {
    line-break: loose;
    font-size: var(--text-size-large);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.container[page-name=awards] section.about .about__title__dot {
  width: 12rem;
  height: 12rem;
  background: var(--color-orange-100);
}
.container[page-name=awards] section.about .about__kv {
  margin-top: var(--size-10);
  max-width: 748rem;
  width: 100%;
  height: 360rem;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.about .about__kv {
    margin-top: var(--size-7);
    height: 200rem;
  }
}
.container[page-name=awards] section.about .about__kv__img {
  width: 100%;
  height: 100%;
}
.container[page-name=awards] section.about .about__description {
  max-width: var(--half-size);
  height: fit-content;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: var(--size-4);
  padding-left: var(--size-6);
  margin-top: -151rem;
  margin-left: auto;
  background: var(--color-white-100);
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .container[page-name=awards] section.about .about__description {
    max-width: 600rem;
    margin-top: -100rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=awards] section.about .about__description {
    margin-top: -88rem;
    padding: var(--size-4) var(--size-6);
    right: calc(var(--margin-1) * -1);
    width: calc(100vw - var(--margin-1) * 2);
    padding-bottom: 0rem;
  }
}
.container[page-name=awards] section.feature {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-14);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=awards] section.feature {
    --padding-border: var(--size-11);
  }
}
.container[page-name=awards] section.feature .feature__list {
  display: flex;
  padding-left: 88rem;
  padding-right: 88rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size-12) 206rem;
  margin-top: 80rem;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.feature .feature__list {
    margin-top: var(--size-9);
    display: flex;
    --gap: var(--size-9);
    flex-direction: column;
    gap: var(--gap);
    padding-left: 10rem;
    padding-right: 10rem;
  }
}
.container[page-name=awards] section.feature .feature__item {
  display: flex;
  --gap: 0rem;
  flex-direction: column;
  align-items: center;
}
.container[page-name=awards] section.feature .feature__item__img {
  width: 200rem;
  height: auto;
}
.container[page-name=awards] section.feature .feature__item__title {
  margin-top: var(--size-6);
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  text-align: center;
}
.container[page-name=awards] section.feature .feature__item__bar {
  width: 22rem;
  height: 2px;
  background: var(--color-orange-100);
  margin-top: var(--size-7);
  margin-bottom: var(--size-7);
}
.container[page-name=awards] section.feature .feature__item__description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=awards] section.entry {
  --padding-border: var(--size-14);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=awards] section.entry {
    --padding-border: var(--size-11);
  }
}
.container[page-name=awards] section.entry {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=awards] section.entry {
    --padding-border: var(--size-12);
  }
}
.container[page-name=awards] section.entry .entry__container {
  display: flex;
  --gap: 88rem;
  flex-direction: row;
  gap: var(--gap);
}
@media (min-width: 751px) {
  .container[page-name=awards] section.entry .entry__container {
    padding-left: 56rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=awards] section.entry .entry__container {
    display: flex;
    --gap: 84rem;
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=awards] section.entry .entry__column {
  width: 100%;
  display: flex;
  flex-direction: column;
  counter-reset: entry;
}
.container[page-name=awards] section.entry .entry__column__contents {
  max-width: 440rem;
}
.container[page-name=awards] section.entry .entry__column__contents-list {
  padding-top: var(--size-8);
  padding-left: var(--size-8);
  border-left: 3rem solid var(--color-black-100);
  margin-bottom: var(--size-9);
}
@media (max-width: 750px) {
  .container[page-name=awards] section.entry .entry__column__contents-list {
    margin-bottom: var(--size-8);
  }
}
.container[page-name=awards] section.entry .entry__column__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: var(--size-8);
  border-left: 3rem solid var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=awards] section.entry .entry__column__title {
    line-break: loose;
    font-size: var(--text-size-large);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
}
.container[page-name=awards] section.entry .entry__column__item {
  max-width: 352rem;
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=awards] section.entry .entry__column__item:not(:last-child) {
  padding-bottom: var(--size-8);
  border-bottom: 1px solid var(--color-gray-100);
  margin-bottom: var(--size-8);
}
.container[page-name=awards] section.entry .entry__column__list {
  color: var(--color-orange-100);
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  list-style: num;
  list-style-position: inside;
  list-style: none;
}
.container[page-name=awards] section.entry .entry__column__list li:before {
  counter-increment: entry;
  content: counter(entry) ".";
  color: var(--color-orange-100);
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name=awards] section.entry .entry__column__text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=awards] section.entry .parts-arrow-link {
  margin-top: auto;
  margin-left: auto;
}
.container[page-name=awards] section.entry .parts-full-link {
  margin-top: var(--size-11);
}

.container[page-name=awards-contents] section.about {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  margin-bottom: var(--size-14);
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}
@media (max-width: 750px) {
  .container[page-name=awards-contents] section.about {
    margin-top: var(--size-9);
    margin-bottom: 56rem;
  }
}
.container[page-name=awards-contents] section.about .about__departments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 64rem;
  margin-top: var(--size-11);
  margin-bottom: var(--size-11);
}
@media (max-width: 750px) {
  .container[page-name=awards-contents] section.about .about__departments {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--size-9) 8rem;
  }
}
.container[page-name=awards-contents] section.about .about__department-item {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=awards-contents] section.about .about__department-item__img {
  width: 100%;
  height: auto;
}
.container[page-name=awards-contents] section.about .about__department-item__title {
  text-align: center;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}

.container[page-name=awards-culture-tech] section.about {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  margin-bottom: var(--size-14);
  padding-top: 0;
  padding-bottom: 0;
  border: none;
  border-top: none;
}
@media (max-width: 750px) {
  .container[page-name=awards-culture-tech] section.about {
    margin-top: var(--size-9);
    margin-bottom: 56rem;
  }
}
.container[page-name=awards-culture-tech] section.about .about__departments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size-13);
  padding-left: 56rem;
  padding-right: 56rem;
  margin-top: var(--size-11);
  margin-bottom: var(--size-11);
}
@media (max-width: 750px) {
  .container[page-name=awards-culture-tech] section.about .about__departments {
    display: flex;
    --gap: var(--size-9);
    flex-direction: column;
    gap: var(--gap);
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
.container[page-name=awards-culture-tech] section.about .about__department-item {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
}
.container[page-name=awards-culture-tech] section.about .about__department-item__img {
  width: 100%;
  height: auto;
  max-width: 200rem;
}
.container[page-name=awards-culture-tech] section.about .about__department-item__title {
  text-align: center;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=awards-culture-tech] section.about .about__department-item__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=awards-culture-tech] section.about .about__department-item__division {
  width: 20rem;
  height: 2rem;
  background: var(--color-orange-100);
}
.container[page-name=awards-culture-tech] section.about .about__department-item__description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}

.container[page-name=awards-gallery] nav.nav {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--size-9);
  display: flex;
  --gap: var(--size-6);
  flex-direction: row;
  gap: var(--gap);
  display: grid;
}
@media (min-width: 751px) {
  .container[page-name=awards-gallery] nav.nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] nav.nav {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
    margin-bottom: var(--size-11);
    margin-top: 20rem;
  }
}
.container[page-name=awards-gallery] nav.social {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-9);
  justify-content: flex-end;
  display: flex;
  --gap: var(--size-6);
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=awards-gallery] nav.social:has(.parts-full-link) {
  margin-bottom: var(--size-11);
  margin-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] nav.social:has(.parts-full-link) {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
    margin-top: var(--size-9);
    margin-bottom: var(--size-11);
  }
}
.container[page-name=awards-gallery] nav.social .social__item {
  width: fit-content;
  height: fit-content;
  display: block;
}
.container[page-name=awards-gallery] section.first {
  margin-top: 0rem;
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=awards-gallery] section.first .first__categories {
  margin-top: var(--size-11);
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-11) var(--column-gap);
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.first .first__categories {
    margin-top: var(--size-9);
    gap: var(--size-9) var(--column-gap);
  }
}
.container[page-name=awards-gallery] section.first .first__categories__column {
  width: fit-content;
}
@media (min-width: 751px) {
  .container[page-name=awards-gallery] section.first .first__categories__column {
    min-width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
  }
}
.container[page-name=awards-gallery] section.first .first__categories__column-title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-white-100);
  background: var(--color-black-100);
  width: fit-content;
  padding-left: var(--size-7);
  padding-right: var(--size-7);
  height: var(--size-9);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(infinity * 1px);
}
.container[page-name=awards-gallery] section.first .first__categories__column-list {
  margin-top: var(--size-5);
  display: flex;
  gap: var(--size-6) var(--size-9);
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.first .first__categories__column-list {
    gap: var(--size-4) var(--size-6);
    margin-top: var(--size-5);
    width: 100%;
  }
}
.container[page-name=awards-gallery] section.first .first__categories__column-item {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.first .first__categories__column-item {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .container[page-name=awards-gallery] section.first .first__categories__column-item svg {
    width: 10rem;
    height: 10rem;
  }
}
.container[page-name=awards-gallery] section.first .parts-section-header:not(:has(.parts-section-header__description)) {
  display: none;
}
.container[page-name=awards-gallery] section.first .first__categories__column-item {
  transition: color 0.2s linear;
}
.container[page-name=awards-gallery] section.first .first__categories__column-item path {
  transition: fill 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=awards-gallery] section.first .first__categories__column-item:hover {
    color: var(--color-black-100);
  }
  .container[page-name=awards-gallery] section.first .first__categories__column-item:hover svg path {
    fill: var(--color-black-100);
  }
}
.container[page-name=awards-gallery] section.contents {
  margin-top: var(--size-14);
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents {
    margin-top: var(--size-11);
  }
}
.container[page-name=awards-gallery] section.contents:not(:has(.contents__child__most)):not(:has(.contents__child__list)) {
  display: none;
}
.container[page-name=awards-gallery] section.contents .contents__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  border: 1px solid var(--color-gray-200);
  padding-top: var(--size-5);
  padding-bottom: var(--size-5);
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.container[page-name=awards-gallery] section.contents .contents__title:after {
  content: "";
  height: 40rem;
  width: calc(100% + 4px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 3px solid var(--color-orange-100);
  border-right: 3px solid var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents .contents__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
  .container[page-name=awards-gallery] section.contents .contents__title:after {
    height: 30rem;
  }
}
.container[page-name=awards-gallery] section.contents .contents__children {
  margin-top: var(--size-12);
}
.container[page-name=awards-gallery] section.contents .contents__children > .contents__child:not(:first-child) {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents .contents__children > .contents__child:not(:first-child) {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents .contents__children {
    margin-top: var(--size-11);
  }
  .container[page-name=awards-gallery] section.contents .contents__children > .contents__child:not(:first-child) {
    --padding-border: var(--size-11);
    margin-top: var(--padding-border);
    border-top: 1px solid var(--color-gray-100);
    padding-top: var(--padding-border);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents .contents__children > .contents__child:not(:first-child) {
    --padding-border: var(--size-11);
  }
}
.container[page-name=awards-gallery] section.contents .contents__child:not(:has(.contents__child__most:not([hidden]))):not(:has(.contents__child__list:not([hidden]))) {
  display: none;
}
.container[page-name=awards-gallery] section.contents .contents__child__most {
  margin-top: var(--size-9);
}
@media (min-width: 751px) {
  .container[page-name=awards-gallery] section.contents .contents__child__most .parts-award-item:not(.parts-award-item--wide) {
    width: calc(var(--column-width-size) * 12 + var(--column-gap) * 11);
  }
}
.container[page-name=awards-gallery] section.contents .contents__child__list {
  margin-top: var(--size-9);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-9) var(--column-gap);
}
@media (max-width: 1200px) {
  .container[page-name=awards-gallery] section.contents .contents__child__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents .contents__child__list {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=awards-gallery] section.contents .parts-award-item {
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents .parts-award-item {
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name=awards-gallery] section.contents .parts-arrow-link {
  margin-top: var(--size-9);
  margin-left: auto;
}

.container[page-name=gallery-single] nav.nav {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--size-9);
  display: flex;
  --gap: var(--size-6);
  flex-direction: row;
  gap: var(--gap);
  display: grid;
}
@media (min-width: 751px) {
  .container[page-name=gallery-single] nav.nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] nav.nav {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
    margin-bottom: var(--size-11);
  }
}
.container[page-name=gallery-single] hgroup.header {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=gallery-single] hgroup.header .header__column {
  display: flex;
  align-items: baseline;
}
.container[page-name=gallery-single] hgroup.header .header__column--main {
  align-items: center;
}
.container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text {
  line-break: loose;
  font-size: larger;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
}
.container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:first-child {
  color: var(--color-orange-100);
  margin-bottom: auto;
}
.container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:nth-child(2) {
  padding-left: var(--size-3);
  position: relative;
}
.container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:nth-child(2):before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  width: 1rem;
  height: calc(100% - 14rem);
  background: var(--color-orange-100);
}
.container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:nth-child(2) {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-left: var(--size-7);
}
@media (min-width: 751px) {
  .container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:first-child {
    margin-top: 6rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:first-child {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    margin-top: -3rem;
  }
  .container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:nth-child(2) {
    padding-left: var(--size-3);
    position: relative;
  }
  .container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:nth-child(2):before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    left: 0;
    width: 1rem;
    height: calc(100% - 14rem);
    background: var(--color-orange-100);
  }
  .container[page-name=gallery-single] hgroup.header .header__column--main .header__column__text:nth-child(2) {
    padding-left: var(--size-3);
    font-size: 16rem;
    line-height: 175%;
  }
}
.container[page-name=gallery-single] hgroup.header .header__column__text {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=gallery-single] hgroup.header .header__column__text:first-child {
  min-width: 100rem;
}
.container[page-name=gallery-single] hgroup.header .header__column__text:nth-child(3) {
  color: var(--color-orange-100);
  margin-left: var(--size-9);
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] hgroup.header .header__column__text {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .container[page-name=gallery-single] hgroup.header .header__column__text:first-child {
    min-width: 60rem;
  }
  .container[page-name=gallery-single] hgroup.header .header__column__text:nth-child(3) {
    margin-left: var(--size-6);
  }
  .container[page-name=gallery-single] hgroup.header .header__column__text:nth-child(4) {
    color: var(--color-white-100);
  }
}
.container[page-name=gallery-single] section.overview {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-9);
}
.container[page-name=gallery-single] section.overview .overview__range {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  --gap: 0rem;
  flex-direction: row;
  align-items: baseline;
  margin-top: var(--size-9);
  width: 100%;
}
.container[page-name=gallery-single] section.overview .overview__range:has(span:empty) {
  display: none;
}
.container[page-name=gallery-single] section.overview .overview__range span:first-child {
  color: var(--color-orange-100);
}
.container[page-name=gallery-single] section.overview .overview__range span:last-child {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  position: relative;
  margin-left: var(--size-9);
  padding-left: var(--size-9);
}
.container[page-name=gallery-single] section.overview .overview__range span:last-child:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 1px;
  height: 20rem;
  background: var(--color-orange-100);
}
.container[page-name=gallery-single] section.overview .parts-section-header:not(:first-child) {
  --padding-border: var(--size-7);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] section.overview .parts-section-header:not(:first-child) {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] section.overview .parts-section-header:not(:first-child) {
    --padding-border: var(--size-7);
  }
}
.container[page-name=gallery-single] section.overview .parts-section-header .parts-section-header__description {
  height: fit-content;
  display: inline-block;
}
.container[page-name=gallery-single] section.overview .parts-section-header .parts-section-header__description p {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name=gallery-single] section.overview .parts-section-header .parts-section-header__description ul {
  list-style: disc;
}
.container[page-name=gallery-single] section.overview .parts-section-header .parts-section-header__description ol {
  list-style: decimal;
}
.container[page-name=gallery-single] section.overview .parts-section-header .parts-section-header__description ul, .container[page-name=gallery-single] section.overview .parts-section-header .parts-section-header__description ol {
  padding-left: 20rem;
}
.container[page-name=gallery-single] section.other {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] section.other {
    --padding-border: var(--size-11);
  }
}
.container[page-name=gallery-single] section.other:not(:has(.parts-magazine-item, .parts-award-item)) {
  display: none;
}
.container[page-name=gallery-single] section.other .other__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] section.other .other__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=gallery-single] section.other .other__title {
  margin-left: 0rem;
}
.container[page-name=gallery-single] section.other .other__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-9) var(--column-gap);
  margin-top: var(--size-10);
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] section.other .other__list {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
}
@media (max-width: 750px) {
  .container[page-name=gallery-single] section.base-awards-history {
    --padding-border: var(--size-11);
  }
}

.container[page-name=contact] section.head {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=contact] section.head {
    margin-top: var(--size-9);
  }
}
.container[page-name=contact] section.head .head__text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.head .head__notice-text {
  line-break: loose;
  font-size: var(--text-size-minimum);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.15;
  letter-spacing: 0.05em;
  margin-top: var(--size-4);
}
.container[page-name=contact] section.head .head__buttons {
  display: flex;
  margin-top: var(--size-10);
  display: flex;
  --gap: var(--column-gap);
  flex-direction: row;
  gap: var(--gap);
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .container[page-name=contact] section.head .head__buttons {
    margin-top: var(--size-10);
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=contact] section.head .head__buttons .parts-full-link {
  width: calc(var(--column-width-size) * 4 + var(--column-gap) * 3);
}
@media (max-width: 1200px) {
  .container[page-name=contact] section.head .head__buttons .parts-full-link {
    width: 100%;
  }
}
.container[page-name=contact] section.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 76rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  .container[page-name=contact] section.info {
    display: flex;
    --gap: var(--size-11);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=contact] section.info .info__contents {
  max-width: var(--half-size);
  width: 100%;
}
.container[page-name=contact] section.info .parts-section-header {
  margin-bottom: var(--size-7);
}
.container[page-name=contact] section.info .info__tel {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=contact] section.info .info__tel__text {
  display: flex;
  --gap: var(--size-3);
  flex-direction: row;
  gap: var(--gap);
  align-items: baseline;
}
.container[page-name=contact] section.info .info__tel__text span:first-of-type {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  width: var(--size-11);
  display: inline-block;
  position: relative;
}
.container[page-name=contact] section.info .info__tel__text span:first-of-type:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  margin-top: auto;
  margin-bottom: auto;
  right: 0;
  width: 2px;
  height: 20px;
  background-color: var(--color-orange-100);
}
.container[page-name=contact] section.info .info__tel__text span:last-of-type {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.info .info__notice-text-en {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.contact {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 86rem;
}
@media (max-width: 750px) {
  .container[page-name=contact] section.contact {
    margin-top: var(--size-11);
  }
}
.container[page-name=contact] section.contact .contact__form__inputs {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=contact] section.contact .contact__item {
  display: flex;
  --gap: 0rem;
  flex-direction: column;
}
.container[page-name=contact] section.contact .contact__item label {
  padding: 6rem 10rem;
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.contact .contact__item label span {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.contact .contact__item input, .container[page-name=contact] section.contact .contact__item textarea {
  padding: 10rem;
  background-color: var(--color-yellow-200);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.contact .contact__item textarea {
  field-sizing: content;
  min-height: 7lh;
  resize: vertical;
}
.container[page-name=contact] section.contact .contact__item:has([required]) label:after {
  content: "※";
  margin-right: 4rem;
  font-size: 50%;
  transform: translateY(-10rem);
  display: inline-block;
}
.container[page-name=contact] section.contact .contact__notice {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.container[page-name=contact] section.contact .contact__notice a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
  color: var(--color-orange-100);
  text-decoration: underline;
}
.container[page-name=contact] section.contact .contact__form__buttons {
  margin-top: var(--size-9);
  display: flex;
  justify-content: space-between;
}
.container[page-name=contact] section.contact .contact__form__buttons button {
  width: var(--half-size);
}
.container[page-name=contact] section.confirm {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=contact] section.confirm {
    margin-top: var(--size-9);
    gap: 0rem;
  }
}
.container[page-name=contact] section.confirm .confirm__contents {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=contact] section.confirm .confirm__contents {
    margin-top: 20rem;
    margin-bottom: 40rem;
  }
}
.container[page-name=contact] section.confirm .confirm__item:has(.confirm__item__text:empty) {
  display: none;
}
.container[page-name=contact] section.confirm .confirm__item__title {
  padding: 6rem 10rem;
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.confirm .confirm__item__title span {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.confirm .confirm__item__text {
  padding: 10rem;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=contact] section.confirm .confirm__buttons {
  display: flex;
  justify-content: space-between;
  gap: var(--column-gap);
}
@media (max-width: 750px) {
  .container[page-name=contact] section.confirm .confirm__buttons {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=contact]:not([status-confirm]) .confirm {
  display: none;
}
.container[page-name=contact][status-confirm] .head, .container[page-name=contact][status-confirm] .info, .container[page-name=contact][status-confirm] .contact {
  display: none;
}

.container[page-name=contact-thanks] section.thanks {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=contact-thanks] section.thanks {
    --gap: var(--size-4);
  }
}
.container[page-name=contact-thanks] section.thanks .thanks__message {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=contact-thanks] section.thanks .thanks__message {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=contact-thanks] section.thanks .thanks__note {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}

.container[page-name*=en] section.notice {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name*=en] section.notice {
    margin-top: var(--size-9);
  }
}

.container[page-name=en] {
  padding-top: 0rem;
}
.container[page-name=en] section.first {
  min-height: 680rem;
  height: 100svh;
  max-height: 800rem;
  position: relative;
  max-width: none !important;
}
@media (max-width: 750px) {
  .container[page-name=en] section.first {
    min-height: 667rem;
  }
}
.container[page-name=en] section.first .first__kv {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.container[page-name=en] section.first .first__kv__img {
  width: 100%;
  height: 100%;
}
.container[page-name=en] section.first .first__contents {
  height: 100%;
  width: 100%;
  max-width: var(--max-width);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page-name=en] section.first .first__title {
  position: absolute;
  top: 219rem;
  left: calc(var(--margin-1) + var(--padding));
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: flex;
  --gap: 2rem;
  flex-direction: column;
  gap: var(--gap);
  align-items: flex-start;
  color: var(--color-white-100);
  --padding: 19rem;
  --padding-buffer: 0rem;
}
.container[page-name=en] section.first .first__title > span {
  position: relative;
  z-index: 2;
  --scale-progress: 1;
}
.container[page-name=en] section.first .first__title > span:after {
  content: "";
  width: calc(100% + var(--padding) * 2 - var(--padding-buffer));
  height: 61rem;
  background: var(--color-orange-100);
  position: absolute;
  top: 10rem;
  left: calc((var(--padding)) * -1);
  z-index: -1;
  transform-origin: left;
  transform: scaleX(var(--scale-progress));
}
@media (max-width: 750px) {
  .container[page-name=en] section.first .first__title {
    --gap: 0rem;
    top: 240rem;
    font-size: 20rem;
    letter-spacing: 0.08em;
    line-height: 1.8;
    --padding: 9rem;
    --padding-buffer: 0rem;
  }
  .container[page-name=en] section.first .first__title > span:after {
    height: 30rem;
    top: 3rem;
  }
}
.container[page-name=en] section.first .first__banners {
  display: flex;
  --gap: 5rem;
  flex-direction: column;
  gap: var(--gap);
  position: absolute;
  z-index: 1;
  bottom: 20rem;
  left: var(--margin-1);
  max-width: 440rem;
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=en] section.first .first__banners {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-inline: auto;
  }
}
.container[page-name=en] section.first .first__banner-item {
  width: 100%;
  height: 48rem;
  border-radius: calc(infinity * 1px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-orange-100);
  padding-left: 24rem;
  padding-right: 12rem;
  color: var(--color-white-100);
}
@media (max-width: 750px) {
  .container[page-name=en] section.first .first__banner-item {
    height: 44rem;
  }
}
.container[page-name=en] section.first .first__banner-item__title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
@media (max-width: 750px) {
  .container[page-name=en] section.first .first__banner-item__title {
    line-break: loose;
    font-size: var(--text-size-small);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}
.container[page-name=en] section.first .first__banner-item__bar {
  height: 20rem;
  width: 1px;
  background: var(--color-white-100);
}
.container[page-name=en] section.first .first__banner-item__text {
  line-break: loose;
  font-size: var(--text-size-minimum);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.15;
  letter-spacing: 0.05em;
  padding-left: 16rem;
  padding-right: 12rem;
}
.container[page-name=en] section.first .first__banner-item__icon {
  width: 28rem;
  height: 28rem;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=en] section.first .first__banner-item {
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: linear;
  }
  .container[page-name=en] section.first .first__banner-item:hover {
    background: var(--color-yellow-100);
  }
}
.container[page-name=en] section.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 40rem;
  margin-bottom: 80rem;
}
.container[page-name=en] section.info .info__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.container[page-name=en] section.info .info__list {
  display: flex;
  --gap: 4rem;
  flex-direction: column;
  gap: var(--gap);
  margin-top: 40rem;
  margin-bottom: 40rem;
}
@media (max-width: 750px) {
  .container[page-name=en] section.info .info__list {
    margin-top: 32rem;
    margin-bottom: 32rem;
    display: flex;
    --gap: 20rem;
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=en] section.info .info__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32rem;
}
@media (min-width: 751px) {
  .container[page-name=en] section.info .info__item {
    gap: 24rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=en] section.info .info__item {
    display: grid;
    grid-template-columns: 96rem 160rem 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "date category arrow" "title title title";
    height: fit-content;
  }
}
.container[page-name=en] section.info .info__item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  grid-area: date;
  --fix-width: 72rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  white-space: nowrap;
}
.container[page-name=en] section.info .info__item__category {
  font-size: 14rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 12rem;
  border-left: 1px solid var(--color-orange-100);
  border-right: 1px solid var(--color-orange-100);
  width: 160rem;
  text-align: center;
  color: var(--color-orange-100);
  grid-area: category;
}
@media (max-width: 750px) {
  .container[page-name=en] section.info .info__item__category {
    width: 160rem;
  }
}
.container[page-name=en] section.info .info__item__text {
  flex: 1;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  grid-area: title;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.container[page-name=en] section.info .info__item__arrow {
  width: 64rem;
  grid-area: arrow;
}
@media (max-width: 750px) {
  .container[page-name=en] section.info .info__item__arrow {
    margin-left: auto;
  }
}
.container[page-name=en] section.info .parts-arrow-link {
  margin-left: auto;
}
.container[page-name=en] section.info .info__item__text {
  transition: color 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=en] section.info .info__item:hover .info__item__text {
    color: var(--color-orange-100);
  }
}
.container[page-name=en] section.about {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=en] section.about .about__header {
  position: relative;
}
.container[page-name=en] section.about .about__sub-title {
  font-size: 120rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  color: var(--color-yellow-200);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .container[page-name=en] section.about .about__sub-title {
    font-size: 16.5vw;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
  }
}
.container[page-name=en] section.about .about__title {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=en] section.about .about__title {
    line-break: loose;
    font-size: var(--text-size-large);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.container[page-name=en] section.about .about__title__dot {
  width: 12rem;
  height: 12rem;
  background: var(--color-orange-100);
}
.container[page-name=en] section.about .about__kv {
  margin-top: var(--size-10);
  max-width: 748rem;
  width: 100%;
  height: 360rem;
}
@media (max-width: 750px) {
  .container[page-name=en] section.about .about__kv {
    margin-top: var(--size-7);
    height: 200rem;
  }
}
.container[page-name=en] section.about .about__kv__img {
  width: 100%;
  height: 100%;
}
.container[page-name=en] section.about .about__description {
  max-width: var(--half-size);
  height: fit-content;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: var(--size-4);
  padding-left: var(--size-6);
  margin-top: -151rem;
  margin-left: auto;
  background: var(--color-white-100);
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .container[page-name=en] section.about .about__description {
    max-width: 600rem;
    margin-top: -100rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=en] section.about .about__description {
    margin-top: -88rem;
    padding: var(--size-4) var(--size-6);
    right: calc(var(--margin-1) * -1);
    width: calc(100vw - var(--margin-1) * 2);
    padding-bottom: 0rem;
  }
}
.container[page-name=en] section.about .parts-arrow-link {
  margin-left: auto;
}
.container[page-name=en] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  --gap: var(--size-12);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=en] section.contents {
    margin-top: 100rem;
    --gap: var(--size-11);
  }
}
.container[page-name=en] section.contents .contents__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: calc(var(--gap) * -1 + var(--size-11));
}
@media (min-width: 751px) {
  .container[page-name=en] section.contents .contents__title {
    padding: 12rem 24rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=en] section.contents .contents__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=en] section.contents .contents__notice {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=en] section.contents .contents__column {
  position: relative;
  min-height: 320rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "contents img" "links img";
  gap: 0rem 32rem;
}
@media (max-width: 1200px) {
  .container[page-name=en] section.contents .contents__column {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=en] section.contents .parts-section-header {
  grid-area: contents;
}
@media (max-width: 750px) {
  .container[page-name=en] section.contents .parts-section-header {
    margin-top: var(--size-8);
  }
}
.container[page-name=en] section.contents .contents__column__img {
  width: 100%;
  grid-area: img;
  height: 100%;
}
.container[page-name=en] section.contents .contents__column__img[src] {
  background: var(--color-gray-200);
}
@media (max-width: 1200px) {
  .container[page-name=en] section.contents .contents__column__img {
    height: 226rem;
  }
}
.container[page-name=en] section.contents .contents__column__links {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
  grid-area: links;
}
@media (min-width: 1201px) {
  .container[page-name=en] section.contents .contents__column__links {
    margin-top: var(--size-9);
  }
}

.container[page-name=en-about] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 115rem;
}
.container[page-name=en-about] section.contents:not(:nth-of-type(2)) {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=en-about] section.contents:not(:nth-of-type(2)) {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=en-about] section.contents {
    margin-top: var(--size-11);
  }
}
.container[page-name=en-about] section.contents .contents__main {
  margin-top: var(--size-9);
  display: flex;
  --gap: var(--column-gap);
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 1200px) {
  .container[page-name=en-about] section.contents .contents__main {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=en-about] section.contents .contents__main__kv {
  width: 100%;
  height: auto;
}
@media (min-width: 1201px) {
  .container[page-name=en-about] section.contents .contents__main__kv {
    width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
  }
}
.container[page-name=en-about] section.contents .contents__main__info {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  width: 100%;
}
@media (min-width: 1201px) {
  .container[page-name=en-about] section.contents .contents__main__info {
    width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
  }
}
.container[page-name=en-about] section.contents .contents__main__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  display: flex;
  --gap: 0rem;
  flex-direction: column;
}
.container[page-name=en-about] section.contents .contents__main__title span:first-child {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=en-about] section.contents .contents__main__title span:last-child {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=en-about] section.contents .contents__main__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .container[page-name=en-about] section.contents .contents__main__title span:first-child {
    line-break: loose;
    font-size: var(--text-size-small);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.08em;
  }
  .container[page-name=en-about] section.contents .contents__main__title span:last-child {
    line-break: loose;
    font-size: larger;
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=en-about] section.contents .contents__main__text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=en-about] section.contents .contents__description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: var(--size-11);
}
.container[page-name=en-about] section.awards {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
  margin-top: var(--size-9);
}
.container[page-name=en-about] section.awards .awards__title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
.container[page-name=en-about] section.awards .awards__description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 0;
}

.container[page-name=en-grants] section.app {
  margin-top: var(--size-12);
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=en-grants] section.app .app__buttons {
  display: flex;
  justify-content: space-between;
  gap: var(--column-gap);
  margin-top: var(--size-8);
}
@media (max-width: 750px) {
  .container[page-name=en-grants] section.app .app__buttons {
    margin-top: var(--size-9);
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=en-grants] section.app .app__notice {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
.container[page-name=en-grants] section.guidelines {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=en-grants] section.guidelines {
    --padding-border: var(--size-11);
  }
}
.container[page-name=en-grants] section.guidelines .guidelines__title {
  text-align: center;
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=en-grants] section.guidelines .guidelines__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=en-grants] section.guidelines .guidelines__container {
  display: flex;
  --gap: var(--size-10);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--gap);
}
.container[page-name=en-grants] section.guidelines .guidelines__column {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=en-grants] section.guidelines .guidelines__column__body > * {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=en-grants] section.guidelines .guidelines__column__body ol {
  list-style-type: decimal;
  padding-left: 23rem;
}
.container[page-name=en-grants] section.guidelines .guidelines__column__body ul {
  list-style-type: disc;
  padding-left: 23rem;
}
.container[page-name=en-grants] section.guidelines .guidelines__column__body a {
  text-decoration: underline;
}

.container[page-name=forum] section .section-title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=forum] section .section-title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=forum] section .section-description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: var(--size-9);
}
@media (max-width: 750px) {
  .container[page-name=forum] section .section-description {
    margin-top: var(--size-11);
  }
}
.container[page-name=forum] section.notice {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  display: flex;
  --gap: var(--size-8);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=forum] section.notice:has(.notice__range__text:empty) {
  display: none;
}
.container[page-name=forum] section.notice .notice__header {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  padding-left: 20rem;
  border-left: 3rem solid var(--color-orange-100);
}
.container[page-name=forum] section.notice .notice__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.notice .notice__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=forum] section.notice .notice__range {
  display: flex;
  --gap: var(--size-7);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.notice .notice__range {
    display: flex;
    --gap: var(--size-4);
    flex-direction: column;
    gap: var(--gap);
    align-items: flex-start;
  }
}
.container[page-name=forum] section.notice .notice__range__title {
  padding: 5rem var(--size-7);
  background: var(--color-black-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-white-100);
  width: fit-content;
  border-radius: calc(infinity * 1px);
}
.container[page-name=forum] section.notice .notice__range__text {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.notice .notice__range__text {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 751px) {
  .container[page-name=forum] section.notice .notice__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--size-8);
  }
}
@media (max-width: 1200px) {
  .container[page-name=forum] section.notice .notice__buttons {
    display: flex;
    --gap: var(--size-5);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=forum] section.notice .notice__text {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
.container[page-name=forum] section.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-9);
  margin-bottom: 80rem;
}
.container[page-name=forum] section.info .info__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.info .info__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=forum] section.info .info__list {
  display: flex;
  --gap: 4rem;
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--size-9);
  margin-bottom: var(--size-9);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.info .info__list {
    margin-top: 32rem;
    margin-bottom: 32rem;
    margin-bottom: var(--size-9);
    display: flex;
    --gap: 20rem;
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=forum] section.info .info__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32rem;
}
@media (min-width: 751px) {
  .container[page-name=forum] section.info .info__item {
    gap: 24rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=forum] section.info .info__item {
    display: grid;
    grid-template-columns: 96rem 160rem 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "date category arrow" "title title title";
    height: fit-content;
  }
}
.container[page-name=forum] section.info .info__item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  grid-area: date;
  --fix-width: 72rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  white-space: nowrap;
}
.container[page-name=forum] section.info .info__item__category {
  font-size: 14rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 12rem;
  border-left: 1px solid var(--color-orange-100);
  border-right: 1px solid var(--color-orange-100);
  width: 160rem;
  text-align: center;
  color: var(--color-orange-100);
  grid-area: category;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.info .info__item__category {
    width: 160rem;
  }
}
.container[page-name=forum] section.info .info__item__text {
  flex: 1;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  grid-area: title;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.container[page-name=forum] section.info .info__item__arrow {
  width: 64rem;
  grid-area: arrow;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.info .info__item__arrow {
    margin-left: auto;
  }
}
.container[page-name=forum] section.info .parts-arrow-link {
  margin-left: auto;
}
.container[page-name=forum] section.info .info__item__text {
  transition: color 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=forum] section.info .info__item:hover .info__item__text {
    color: var(--color-orange-100);
  }
}
.container[page-name=forum] section.about {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=forum] section.about .about__header {
  position: relative;
}
.container[page-name=forum] section.about .about__sub-title {
  font-size: 120rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  color: var(--color-yellow-200);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  white-space: nowrap;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.about .about__sub-title {
    font-size: 9.3vw;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
  }
}
.container[page-name=forum] section.about .about__title {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.about .about__title {
    line-break: loose;
    font-size: var(--text-size-large);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}
.container[page-name=forum] section.about .about__title__dot {
  width: 12rem;
  height: 12rem;
  background: var(--color-orange-100);
}
.container[page-name=forum] section.about .about__kv {
  margin-top: var(--size-10);
  max-width: 748rem;
  width: 100%;
  height: 360rem;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.about .about__kv {
    margin-top: var(--size-7);
    height: 200rem;
  }
}
.container[page-name=forum] section.about .about__kv__img {
  width: 100%;
  height: 100%;
}
.container[page-name=forum] section.about .about__description {
  max-width: var(--half-size);
  height: fit-content;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: var(--size-4);
  padding-left: var(--size-6);
  margin-top: -151rem;
  margin-left: auto;
  background: var(--color-white-100);
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .container[page-name=forum] section.about .about__description {
    max-width: 600rem;
    margin-top: -100rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=forum] section.about .about__description {
    margin-top: -88rem;
    padding: var(--size-4) var(--size-6);
    right: calc(var(--margin-1) * -1);
    width: calc(100vw - var(--margin-1) * 2);
    padding-bottom: 0rem;
  }
}
.container[page-name=forum] section.about .about__info {
  display: flex;
  justify-content: center;
  margin-top: 80rem;
  flex-wrap: wrap;
}
@media (min-width: 751px) {
  .container[page-name=forum] section.about .about__info {
    gap: 113rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=forum] section.about .about__info {
    align-items: center;
    gap: 24rem 24rem;
    margin-top: var(--size-9);
  }
}
.container[page-name=forum] section.about .about__info-item {
  color: var(--color-orange-100);
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.about .about__info-item {
    --gap: 0rem;
  }
}
.container[page-name=forum] section.about .about__info-item__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.about .about__info-item__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=forum] section.about .about__info-item__num {
  font-size: 128rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  display: flex;
  --gap: var(--size-3);
  flex-direction: row;
  gap: var(--gap);
  align-items: baseline;
}
.container[page-name=forum] section.about .about__info-item__num span {
  line-height: 1;
}
.container[page-name=forum] section.about .about__info-item__num small {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.about .about__info-item__num {
    font-size: 96rem;
  }
  .container[page-name=forum] section.about .about__info-item__num small {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}
.container[page-name=forum] section.program {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.program {
    --padding-border: var(--size-11);
  }
}
.container[page-name=forum] section.program .program__list {
  margin-top: var(--size-12);
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 1200px) {
  .container[page-name=forum] section.program .program__list {
    margin-top: var(--size-11);
  }
}
.container[page-name=forum] section.program .program__item {
  display: flex;
  gap: var(--column-gap);
  justify-content: center;
}
@media (max-width: 1200px) {
  .container[page-name=forum] section.program .program__item {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column-reverse;
    gap: var(--gap);
    padding-top: 102rem;
    position: relative;
  }
}
.container[page-name=forum] section.program .program__item__contents {
  width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
}
@media (max-width: 1200px) {
  .container[page-name=forum] section.program .program__item__contents {
    width: 100%;
  }
}
.container[page-name=forum] section.program .program__item__number {
  line-break: loose;
  font-size: var(--text-size-ex-huge);
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-orange-100);
  margin-bottom: var(--size-8);
}
@media (max-width: 1200px) {
  .container[page-name=forum] section.program .program__item__number {
    position: absolute;
    top: 0;
  }
}
.container[page-name=forum] section.program .program__item__img {
  width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
}
@media (max-width: 1200px) {
  .container[page-name=forum] section.program .program__item__img {
    width: 100%;
  }
}
.container[page-name=forum] section.district {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.district {
    --padding-border: var(--size-11);
  }
}
.container[page-name=forum] section.district {
  display: flex;
  --gap: var(--size-12);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=forum] section.district .district__description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: var(--size-9);
}
.container[page-name=forum] section.district .district__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--size-12) var(--column-gap);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.district .district__list {
    display: flex;
    --gap: var(--size-9);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=forum] section.district .district__item {
  align-items: flex-end;
}
@media (min-width: 751px) {
  .container[page-name=forum] section.district .district__item {
    display: flex;
    --gap: var(--size-7);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=forum] section.district .district__item__header {
  display: flex;
  --gap: var(--column-gap);
  flex-direction: row;
  gap: var(--gap);
  align-items: baseline;
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.district .district__item__header {
    align-items: flex-start;
    --gap: var(--size-8);
  }
}
.container[page-name=forum] section.district .district__item__num {
  width: calc(var(--column-width-size) * 1 + var(--column-gap) * 0);
  text-align: center;
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.district .district__item__num {
    --fix-width: 56rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
.container[page-name=forum] section.district .district__item__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.district .district__item__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=forum] section.district .district__item__contents {
  width: calc(100% - (var(--column-width-size) * 1 + var(--column-gap) * 0));
  border-left: 1px solid var(--color-black-100);
  padding-left: var(--column-gap);
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.district .district__item__contents {
    width: 100%;
    margin-top: var(--size-5);
  }
}
.container[page-name=forum] section.district .district__item__column {
  display: flex;
  --gap: 2rem;
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=forum] section.district .district__item__column-title {
  --fix-width: 60rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  color: var(--color-orange-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=forum] section.district .district__item__column-text {
  padding-left: var(--size-3);
  position: relative;
}
.container[page-name=forum] section.district .district__item__column-text:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  width: 1rem;
  height: calc(100% - 14rem);
  background: var(--color-orange-100);
}
.container[page-name=forum] section.district .district__item__column-text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=forum] section.district .parts-arrow-link {
  margin-left: auto;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.district .parts-arrow-link {
    margin-top: var(--size-7);
  }
}
.container[page-name=forum] section.whole {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.whole {
    --padding-border: var(--size-11);
  }
}
.container[page-name=forum] section.whole {
  display: flex;
  --gap: var(--size-12);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.whole {
    --gap: var(--size-11);
  }
}
.container[page-name=forum] section.whole .whole__item__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--column-gap);
  margin-top: var(--size-7);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.whole .whole__item__section {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=forum] section.whole .whole__item__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.container[page-name=forum] section.whole .whole__item__contents {
  width: calc(100% - (var(--column-width-size) * 1 + var(--column-gap) * 0));
  border-left: 1px solid var(--color-black-100);
  padding-left: var(--column-gap);
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=forum] section.whole .whole__item__column {
  display: flex;
  --gap: 2rem;
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=forum] section.whole .whole__item__column-title {
  --fix-width: 60rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  color: var(--color-orange-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=forum] section.whole .whole__item__column-text {
  padding-left: var(--size-3);
  position: relative;
}
.container[page-name=forum] section.whole .whole__item__column-text:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  width: 1rem;
  height: calc(100% - 14rem);
  background: var(--color-orange-100);
}
.container[page-name=forum] section.whole .whole__item__column-text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=forum] section.whole .whole__map {
  height: 160rem;
  width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
  overflow: hidden;
}
.container[page-name=forum] section.whole .whole__map iframe {
  width: inherit;
  height: inherit;
}
@media (max-width: 750px) {
  .container[page-name=forum] section.whole .whole__map {
    width: 100%;
  }
}
.container[page-name=forum] section.whole .parts-arrow-link {
  margin-top: var(--size-9);
  width: fit-content;
  margin-left: auto;
}
.container[page-name=forum] section.whole .whole__about {
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.whole .whole__about {
    display: flex;
    --gap: var(--size-11);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=forum] section.whole .whole__about .parts-full-link {
  width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
}
@media (max-width: 750px) {
  .container[page-name=forum] section.whole .whole__about .parts-full-link {
    width: 100%;
  }
}

.container[page-name=past-forums-list] section.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=past-forums-list] section.info {
    padding-top: var(--size-9);
  }
}
.container[page-name=past-forums-list] section.info .forum-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--column-gap);
}
@media (max-width: 750px) {
  .container[page-name=past-forums-list] section.info .forum-nav {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=past-forums-list] section.info .forum-list {
  margin-top: var(--size-12);
  margin-bottom: var(--size-12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-12) var(--column-gap);
}
@media (max-width: 1200px) {
  .container[page-name=past-forums-list] section.info .forum-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .container[page-name=past-forums-list] section.info .forum-list {
    margin-top: var(--size-11);
    margin-bottom: var(--size-11);
    display: flex;
    --gap: var(--size-9);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=past-forums-list] section.info .forum-item {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=past-forums-list] section.info .forum-item__title {
  width: 100%;
  height: 48rem;
  text-align: center;
  background: var(--color-orange-100);
  color: var(--color-white-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  line-height: 48rem;
}
.container[page-name=past-forums-list] section.info .forum-item__contents {
  width: calc(100% - (var(--column-width-size) * 1 + var(--column-gap) * 0));
  border-left: 1px solid var(--color-black-100);
  padding-left: var(--column-gap);
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=past-forums-list] section.info .forum-item__contents {
    width: 100%;
    margin-top: var(--size-5);
  }
}
.container[page-name=past-forums-list] section.info .forum-item__column {
  display: flex;
  --gap: 2rem;
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=past-forums-list] section.info .forum-item__column-title {
  --fix-width: 60rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  color: var(--color-orange-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=past-forums-list] section.info .forum-item__column-text {
  padding-left: var(--size-3);
  position: relative;
}
.container[page-name=past-forums-list] section.info .forum-item__column-text:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  width: 1rem;
  height: calc(100% - 14rem);
  background: var(--color-orange-100);
}
.container[page-name=past-forums-list] section.info .forum-item__column-text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}

.container[page-name=foundation] section.base-foundation-information {
  margin-top: var(--size-12);
}

.container[page-name=foundation-greeting] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 115rem;
}
.container[page-name=foundation-greeting] section.contents:not(:nth-of-type(1)) {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.contents:not(:nth-of-type(1)) {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.contents {
    margin-top: var(--size-11);
  }
}
.container[page-name=foundation-greeting] section.contents .contents__main {
  margin-top: var(--size-9);
  display: flex;
  --gap: var(--column-gap);
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 1200px) {
  .container[page-name=foundation-greeting] section.contents .contents__main {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=foundation-greeting] section.contents .contents__main__kv {
  width: 100%;
  height: auto;
}
@media (min-width: 1201px) {
  .container[page-name=foundation-greeting] section.contents .contents__main__kv {
    width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
  }
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.contents .contents__main__kv {
    height: 254rem;
  }
}
.container[page-name=foundation-greeting] section.contents .contents__main__info {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  width: 100%;
}
@media (min-width: 1201px) {
  .container[page-name=foundation-greeting] section.contents .contents__main__info {
    width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
  }
}
.container[page-name=foundation-greeting] section.contents .contents__main__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  display: flex;
  --gap: 16rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
.container[page-name=foundation-greeting] section.contents .contents__main__title span:last-child {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-black-100);
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.contents .contents__main__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=foundation-greeting] section.contents .contents__main__title-division {
  height: 20rem;
  width: 1rem;
  background: var(--color-orange-100);
  border-radius: calc(infinity * 1px);
}
.container[page-name=foundation-greeting] section.contents .contents__main__text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=foundation-greeting] section.contents .contents__description {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: var(--size-11);
}
.container[page-name=foundation-greeting] section.contents .contents__awards {
  margin-top: 40rem;
}
.container[page-name=foundation-greeting] section.contents .contents__awards__title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
.container[page-name=foundation-greeting] section.contents .contents__awards__body {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=foundation-greeting] section.people {
  display: flex;
  --gap: var(--size-12);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--gap);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people {
    --gap: var(--size-11);
  }
}
.container[page-name=foundation-greeting] section.people .people__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  border: 1px solid var(--color-gray-200);
  padding-top: var(--size-5);
  padding-bottom: var(--size-5);
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.container[page-name=foundation-greeting] section.people .people__title:after {
  content: "";
  height: 40rem;
  width: calc(100% + 4px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 3px solid var(--color-orange-100);
  border-right: 3px solid var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
  .container[page-name=foundation-greeting] section.people .people__title:after {
    height: 30rem;
  }
}
.container[page-name=foundation-greeting] section.people .people-item {
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
@media (min-width: 751px) {
  .container[page-name=foundation-greeting] section.people .people-item {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .parts-section-header {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name=foundation-greeting] section.people .people-item__contents {
  width: 100%;
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=foundation-greeting] section.people .people-item__contents__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: var(--size-7);
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people-item__contents__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--size-4);
  }
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people-item__table-wrap:has(tbody tr > *:nth-of-type(3)) {
    padding-left: var(--margin-2);
    padding-right: var(--margin-2);
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .container[page-name=foundation-greeting] section.people .people-item__table-wrap:has(tbody tr > *:nth-of-type(3))::-webkit-scrollbar {
    display: none;
  }
}
.container[page-name=foundation-greeting] section.people .people-item__table {
  border: 1px solid var(--color-black-100);
  table-layout: fixed;
  width: 100%;
}
.container[page-name=foundation-greeting] section.people .people-item__table thead {
  border-bottom: 1px solid var(--color-gray-100);
  background: var(--color-yellow-200);
}
.container[page-name=foundation-greeting] section.people .people-item__table thead td {
  padding-left: 0rem;
  padding-right: 0rem;
  text-align: center;
}
.container[page-name=foundation-greeting] section.people .people-item__table thead tr, .container[page-name=foundation-greeting] section.people .people-item__table tbody tr {
  display: flex;
}
.container[page-name=foundation-greeting] section.people .people-item__table thead tr > *, .container[page-name=foundation-greeting] section.people .people-item__table tbody tr > * {
  flex: 1;
}
@media (min-width: 751px) {
  .container[page-name=foundation-greeting] section.people .people-item__table thead tr > *:last-child, .container[page-name=foundation-greeting] section.people .people-item__table tbody tr > *:last-child {
    min-width: 610rem;
  }
}
.container[page-name=foundation-greeting] section.people .people-item__table tr:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-100);
}
.container[page-name=foundation-greeting] section.people .people-item__table tr > *:not(:last-child) {
  border-right: 1px solid var(--color-gray-100);
}
.container[page-name=foundation-greeting] section.people .people-item__table th, .container[page-name=foundation-greeting] section.people .people-item__table td {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 13rem 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people-item__table th, .container[page-name=foundation-greeting] section.people .people-item__table td {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    padding: 14rem 16rem;
  }
}
.container[page-name=foundation-greeting] section.people .people-item__table th span, .container[page-name=foundation-greeting] section.people .people-item__table td span {
  width: 100%;
}
.container[page-name=foundation-greeting] section.people .people-item__table th span > *, .container[page-name=foundation-greeting] section.people .people-item__table td span > * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name=foundation-greeting] section.people .people-item__table th span ul, .container[page-name=foundation-greeting] section.people .people-item__table td span ul {
  padding-left: 20rem;
  list-style: disc;
}
.container[page-name=foundation-greeting] section.people .people-item__table th span p:empty, .container[page-name=foundation-greeting] section.people .people-item__table td span p:empty {
  height: var(--text-size-middle);
}
.container[page-name=foundation-greeting] section.people .people-item__table th {
  background: var(--color-yellow-200);
  font-weight: 700;
}
.container[page-name=foundation-greeting] section.people .people-item__table th span {
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people-item__table:not(:has(tbody tr > *:nth-of-type(3))) {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name=foundation-greeting] section.people .people-item__table:not(:has(tbody tr > *:nth-of-type(3))) th {
  max-width: 408rem;
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people-item__table:not(:has(tbody tr > *:nth-of-type(3))) th {
    max-width: 117rem;
  }
}
.container[page-name=foundation-greeting] section.people .people-item__table:not(:has(tbody tr > *:nth-of-type(3))) tr span {
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people-item__table thead tr td, .container[page-name=foundation-greeting] section.people .people-item__table tbody tr td {
    padding: var(--size-5) var(--size-4);
  }
  .container[page-name=foundation-greeting] section.people .people-item__table thead tr td:nth-of-type(1), .container[page-name=foundation-greeting] section.people .people-item__table tbody tr td:nth-of-type(1) {
    --fix-width: 100rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
  .container[page-name=foundation-greeting] section.people .people-item__table thead tr td:nth-of-type(2), .container[page-name=foundation-greeting] section.people .people-item__table tbody tr td:nth-of-type(2) {
    --fix-width: 110rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
.container[page-name=foundation-greeting] section.people .people-item__contents__notice {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people-item__contents__notice {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
  }
}
.container[page-name=foundation-greeting] section.people .people__notice {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: calc(24rem - var(--gap));
}
@media (max-width: 750px) {
  .container[page-name=foundation-greeting] section.people .people__notice {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    margin-top: calc(12rem - var(--gap));
  }
}

.container[page-name=foundation-access] section {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=foundation-access] section.about {
  margin-top: var(--size-12);
  margin-top: var(--size-9);
}
.container[page-name=foundation-access] section.about .about__contents {
  margin-top: var(--size-7);
}
.container[page-name=foundation-access] section.about .about__item {
  margin-bottom: var(--size-5);
  display: flex;
  --gap: var(--size-2);
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=foundation-access] section.about .about__item__title {
  --fix-width: var(--size-11);
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  color: var(--color-orange-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=foundation-access] section.about .about__item__contents {
  padding-left: var(--size-3);
  position: relative;
}
.container[page-name=foundation-access] section.about .about__item__contents:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  width: 1rem;
  height: calc(100% - 14rem);
  background: var(--color-orange-100);
}
.container[page-name=foundation-access] section.about .about__item__contents {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=foundation-access] section.about .about__item__map {
  width: 100%;
  height: 400rem;
  margin-bottom: var(--size-7);
}
.container[page-name=foundation-access] section.about .about__item__notice {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=foundation-access] section.overview {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.overview {
    --padding-border: var(--size-11);
  }
}
.container[page-name=foundation-access] section.overview .overview__contents {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--size-7);
}
.container[page-name=foundation-access] section.overview .overview__item {
  display: flex;
  --gap: var(--size-2);
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=foundation-access] section.overview .overview__item__title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  --fix-width: 144rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.overview .overview__item__title {
    --fix-width: 100rem;
  }
}
.container[page-name=foundation-access] section.overview .overview__item__contents {
  padding-left: var(--size-3);
  position: relative;
}
.container[page-name=foundation-access] section.overview .overview__item__contents:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  left: 0;
  width: 1rem;
  height: calc(100% - 14rem);
  background: var(--color-orange-100);
}
.container[page-name=foundation-access] section.overview .overview__item__contents {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.overview .overview__item__contents {
    line-break: loose;
    font-size: var(--text-size-small);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}
.container[page-name=foundation-access] section.history {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.history {
    --padding-border: var(--size-11);
  }
}
.container[page-name=foundation-access] section.history .history__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  border: 1px solid var(--color-gray-200);
  padding-top: var(--size-5);
  padding-bottom: var(--size-5);
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.container[page-name=foundation-access] section.history .history__title:after {
  content: "";
  height: 40rem;
  width: calc(100% + 4px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-left: 3px solid var(--color-orange-100);
  border-right: 3px solid var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.history .history__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
  .container[page-name=foundation-access] section.history .history__title:after {
    height: 30rem;
  }
}
.container[page-name=foundation-access] section.history .history__table {
  border: 1px solid var(--color-black-100);
  table-layout: fixed;
  margin-top: var(--size-12);
}
@media (min-width: 751px) {
  .container[page-name=foundation-access] section.history .history__table {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.history .history__table {
    margin-top: var(--size-11);
  }
}
.container[page-name=foundation-access] section.history .history__table thead {
  border-bottom: 1px solid var(--color-gray-100);
  background: var(--color-yellow-200);
}
.container[page-name=foundation-access] section.history .history__table thead td {
  padding-left: 0rem;
  padding-right: 0rem;
  text-align: center;
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.history .history__table thead tr > th {
    justify-content: flex-start;
  }
}
.container[page-name=foundation-access] section.history .history__table thead tr, .container[page-name=foundation-access] section.history .history__table tbody tr {
  display: flex;
}
.container[page-name=foundation-access] section.history .history__table thead tr > *, .container[page-name=foundation-access] section.history .history__table tbody tr > * {
  flex: 1;
}
.container[page-name=foundation-access] section.history .history__table tr:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-100);
}
.container[page-name=foundation-access] section.history .history__table tr > *:not(:last-child) {
  border-right: 1px solid var(--color-gray-100);
}
.container[page-name=foundation-access] section.history .history__table th, .container[page-name=foundation-access] section.history .history__table td {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 13rem 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.history .history__table th, .container[page-name=foundation-access] section.history .history__table td {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    padding: 14rem 16rem;
  }
}
.container[page-name=foundation-access] section.history .history__table th span > *, .container[page-name=foundation-access] section.history .history__table td span > * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name=foundation-access] section.history .history__table th span ul, .container[page-name=foundation-access] section.history .history__table td span ul {
  padding-left: 20rem;
  list-style: disc;
}
.container[page-name=foundation-access] section.history .history__table th span p:empty, .container[page-name=foundation-access] section.history .history__table td span p:empty {
  height: var(--text-size-middle);
}
.container[page-name=foundation-access] section.history .history__table th a, .container[page-name=foundation-access] section.history .history__table td a {
  text-decoration: underline;
  color: var(--color-orange-100);
  font-size: inherit;
}
.container[page-name=foundation-access] section.history .history__table th {
  background: var(--color-yellow-200);
  font-weight: 700;
  flex: 1;
}
.container[page-name=foundation-access] section.history .history__table th span {
  width: 100%;
  white-space: break-spaces;
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.history .history__table:not(:has(tbody tr > *:nth-of-type(3))) {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name=foundation-access] section.history .history__table:not(:has(tbody tr > *:nth-of-type(3))) thead tr > th:first-of-type, .container[page-name=foundation-access] section.history .history__table:not(:has(tbody tr > *:nth-of-type(3))) tbody tr > th:first-of-type {
  max-width: 204rem;
}
@media (max-width: 750px) {
  .container[page-name=foundation-access] section.history .history__table:not(:has(tbody tr > *:nth-of-type(3))) thead tr > th:first-of-type, .container[page-name=foundation-access] section.history .history__table:not(:has(tbody tr > *:nth-of-type(3))) tbody tr > th:first-of-type {
    max-width: 117rem;
  }
}
.container[page-name=foundation-access] section.history .history__table:not(:has(tbody tr > *:nth-of-type(3))) tr span {
  width: 100%;
}
.container[page-name=foundation-access] section.history .history__table a, .container[page-name=foundation-access] section.history .history__table button {
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=foundation-access] section.history .history__table a:hover, .container[page-name=foundation-access] section.history .history__table button:hover {
    color: var(--color-black-100);
  }
}

.container[page-name=foundation-documents] section.top {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-11);
}
@media (max-width: 750px) {
  .container[page-name=foundation-documents] section.top {
    margin-top: var(--size-9);
  }
}
.container[page-name=foundation-documents] section.top .top__button {
  margin-top: var(--size-11);
}
@media (min-width: 751px) {
  .container[page-name=foundation-documents] section.top .top__button .parts-full-link {
    width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
  }
}
.container[page-name=foundation-documents] section.fiscal-year {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=foundation-documents] section.fiscal-year {
    --padding-border: var(--size-11);
  }
}
.container[page-name=foundation-documents] section.fiscal-year--bottom:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-gray-100);
  margin-top: var(--size-12);
}
.container[page-name=foundation-documents] section.fiscal-year .fiscal-year__files {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-6) var(--column-gap);
  margin-top: var(--size-7);
}
@media (max-width: 750px) {
  .container[page-name=foundation-documents] section.fiscal-year .fiscal-year__files {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
  }
}
@media (max-width: 750px) {
  .container[page-name=foundation-documents] .base-foundation-information {
    margin-top: var(--size-11);
  }
}

.container[page-name*=grants] table {
  border: 1px solid var(--color-black-100);
  table-layout: fixed;
}
@media (min-width: 751px) {
  .container[page-name*=grants] table {
    width: 100%;
  }
}
.container[page-name*=grants] table thead {
  border-bottom: 1px solid var(--color-gray-100);
  background: var(--color-yellow-200);
}
.container[page-name*=grants] table thead td {
  padding-left: 0rem;
  padding-right: 0rem;
  text-align: center;
}
.container[page-name*=grants] table thead tr, .container[page-name*=grants] table tbody tr {
  display: flex;
}
.container[page-name*=grants] table thead tr > *, .container[page-name*=grants] table tbody tr > * {
  flex: 1;
}
.container[page-name*=grants] table tr:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-100);
}
.container[page-name*=grants] table tr > *:not(:last-child) {
  border-right: 1px solid var(--color-gray-100);
}
.container[page-name*=grants] table th, .container[page-name*=grants] table td {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 13rem 16rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name*=grants] table th, .container[page-name*=grants] table td {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    padding: 12rem 16rem;
  }
}
.container[page-name*=grants] table th span > *, .container[page-name*=grants] table td span > * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name*=grants] table th span ul, .container[page-name*=grants] table td span ul {
  padding-left: 20rem;
  list-style: disc;
}
.container[page-name*=grants] table th span p:empty, .container[page-name*=grants] table td span p:empty {
  height: var(--text-size-middle);
}
.container[page-name*=grants] table th {
  background: var(--color-yellow-200);
  font-weight: 700;
}
.container[page-name*=grants] table th span {
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name*=grants] table:not(:has(tbody tr > *:nth-of-type(3))) {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name*=grants] table:not(:has(tbody tr > *:nth-of-type(3))) th {
  max-width: 408rem;
}
@media (max-width: 750px) {
  .container[page-name*=grants] table:not(:has(tbody tr > *:nth-of-type(3))) th {
    max-width: 117rem;
  }
}
.container[page-name*=grants] table:not(:has(tbody tr > *:nth-of-type(3))) tr span {
  width: 100%;
}
.container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) {
  width: 100% !important;
}
.container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) th {
  background: transparent;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) th {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
  }
}
.container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) tr {
  display: grid;
  grid-template-columns: 204rem 204rem 1fr;
}
.container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) tbody > tr:first-child {
  background: var(--color-yellow-200) !important;
}
.container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) tbody > tr:first-child * {
  text-align: center;
}
.container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) p:empty {
  display: none;
}
@media (max-width: 750px) {
  .container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) {
    width: 532rem;
  }
  .container[page-name*=grants] table:has(tbody tr > *:nth-child(3)) tr {
    grid-template-columns: 100rem 100rem 1fr;
  }
}

.container[page-name=grants] section.notice {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  display: flex;
  --gap: var(--size-8);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=grants] section.notice .notice__header {
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
  padding-left: 20rem;
  position: relative;
}
.container[page-name=grants] section.notice .notice__header:after {
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 3rem;
  height: 100%;
  background: var(--color-orange-100);
  max-height: 100rem;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.notice .notice__header:after {
    max-height: 148rem;
  }
}
.container[page-name=grants] section.notice .notice__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.notice .notice__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=grants] section.notice .notice__range {
  display: flex;
  --gap: var(--size-7);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.notice .notice__range {
    display: flex;
    --gap: var(--size-4);
    flex-direction: column;
    gap: var(--gap);
    align-items: flex-start;
  }
}
.container[page-name=grants] section.notice .notice__range__title {
  width: 148rem;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-black-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-white-100);
  border-radius: calc(infinity * 1px);
  margin-bottom: auto;
}
.container[page-name=grants] section.notice .notice__range__text {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.notice .notice__range__text {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=grants] section.notice .notice__range__contents {
  display: flex;
  --gap: 0rem;
  flex-direction: column;
  max-width: 832rem;
  width: 100%;
}
.container[page-name=grants] section.notice .notice__range__contents-column {
  display: flex;
  white-space: pre-line;
}
.container[page-name=grants] section.notice .notice__range__contents-column:not(:first-child) {
  --gap: var(--size-5);
  margin-top: var(--gap);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--gap);
}
.container[page-name=grants] section.notice .notice__range__contents-column p:first-child {
  --fix-width: 280rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
}
.container[page-name=grants] section.notice .notice__range__contents-column p {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  --gap: 0rem;
  flex-direction: column;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.notice .notice__range__contents-column {
    display: flex;
    --gap: var(--size-4);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=grants] section.notice .notice__close {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
.container[page-name=grants] section.notice .notice__text {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
.container[page-name=grants] section.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-9);
  margin-bottom: 80rem;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.info {
    margin-top: var(--size-11);
  }
}
.container[page-name=grants] section.info .info__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.info .info__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=grants] section.info .info__list {
  display: flex;
  --gap: 4rem;
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--size-9);
  margin-bottom: var(--size-9);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.info .info__list {
    margin-top: 32rem;
    margin-bottom: 32rem;
    margin-bottom: var(--size-9);
    display: flex;
    --gap: 20rem;
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=grants] section.info .info__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32rem;
}
@media (min-width: 751px) {
  .container[page-name=grants] section.info .info__item {
    gap: 24rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=grants] section.info .info__item {
    display: grid;
    grid-template-columns: 96rem 160rem 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "date category arrow" "title title title";
    height: fit-content;
  }
}
.container[page-name=grants] section.info .info__item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  grid-area: date;
  --fix-width: 72rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  white-space: nowrap;
}
.container[page-name=grants] section.info .info__item__category {
  font-size: 14rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 12rem;
  border-left: 1px solid var(--color-orange-100);
  border-right: 1px solid var(--color-orange-100);
  width: 160rem;
  text-align: center;
  color: var(--color-orange-100);
  grid-area: category;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.info .info__item__category {
    width: 160rem;
  }
}
.container[page-name=grants] section.info .info__item__text {
  flex: 1;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  grid-area: title;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.container[page-name=grants] section.info .info__item__arrow {
  width: 64rem;
  grid-area: arrow;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.info .info__item__arrow {
    margin-left: auto;
  }
}
.container[page-name=grants] section.info .parts-arrow-link {
  margin-left: auto;
}
.container[page-name=grants] section.info .info__item__text {
  transition: color 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=grants] section.info .info__item:hover .info__item__text {
    color: var(--color-orange-100);
  }
}
.container[page-name=grants] section.about {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=grants] section.about .about__header {
  position: relative;
}
.container[page-name=grants] section.about .about__sub-title {
  font-size: 120rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  color: var(--color-yellow-200);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .container[page-name=grants] section.about .about__sub-title {
    font-size: 13vw;
    letter-spacing: 0.04em;
    line-height: 1;
  }
}
.container[page-name=grants] section.about .about__title {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.about .about__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=grants] section.about .about__title__dot {
  width: 12rem;
  height: 12rem;
  background: var(--color-orange-100);
}
.container[page-name=grants] section.about .about__kv {
  margin-top: var(--size-10);
  max-width: 748rem;
  width: 100%;
  height: 360rem;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.about .about__kv {
    margin-top: var(--size-7);
    height: 200rem;
  }
}
.container[page-name=grants] section.about .about__kv__img {
  width: 100%;
  height: 100%;
}
.container[page-name=grants] section.about .about__description {
  max-width: var(--half-size);
  height: fit-content;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: var(--size-4);
  padding-left: var(--size-6);
  margin-top: -151rem;
  margin-left: auto;
  background: var(--color-white-100);
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .container[page-name=grants] section.about .about__description {
    max-width: 600rem;
    margin-top: -100rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=grants] section.about .about__description {
    margin-top: -88rem;
    padding: var(--size-4) var(--size-6);
    right: calc(var(--margin-1) * -1);
    width: calc(100vw - var(--margin-1) * 2);
    padding-bottom: 0rem;
  }
}
.container[page-name=grants] section.about .about__info {
  display: flex;
  justify-content: space-between;
  margin-top: 80rem;
  flex-wrap: wrap;
  gap: 0rem 113rem;
  justify-content: center;
}
@media (min-width: 751px) {
  .container[page-name=grants] section.about .about__info {
    padding-left: 56rem;
    padding-right: 56rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=grants] section.about .about__info {
    align-items: center;
    gap: 24rem 16rem;
    margin-top: var(--size-9);
  }
}
.container[page-name=grants] section.about .about__info-item {
  color: var(--color-orange-100);
  display: flex;
  --gap: 0;
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.about .about__info-item:last-child {
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name=grants] section.about .about__info-item__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .container[page-name=grants] section.about .about__info-item__title {
    margin-top: var(--size-7);
  }
}
@media (max-width: 750px) {
  .container[page-name=grants] section.about .about__info-item__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=grants] section.about .about__info-item__num {
  font-size: 128rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  display: flex;
  --gap: var(--size-3);
  flex-direction: row;
  gap: var(--gap);
  align-items: baseline;
}
.container[page-name=grants] section.about .about__info-item__num span {
  line-height: 1;
}
.container[page-name=grants] section.about .about__info-item__num small {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.about .about__info-item__num {
    font-size: 96rem;
  }
  .container[page-name=grants] section.about .about__info-item__num small {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}
.container[page-name=grants] section.about .about__info-item__notice {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
}
.container[page-name=grants] section.about .parts-full-link {
  margin-top: var(--size-12);
  max-width: var(--half-size);
  margin-left: auto;
}
@media (max-width: 1200px) {
  .container[page-name=grants] section.about .parts-full-link {
    max-width: 100%;
  }
}
@media (max-width: 750px) {
  .container[page-name=grants] section.about .parts-full-link {
    margin-top: 43rem;
  }
}
.container[page-name=grants] section.docs {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.docs {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=grants] section.docs {
    --padding-border: var(--size-11);
  }
}
.container[page-name=grants] section.docs .docs__title {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.docs .docs__title {
    font-size: 24rem;
    line-height: 1.5;
  }
}
.container[page-name=grants] section.docs .docs__wrap {
  margin-top: var(--size-12);
  border: 1px solid var(--color-black-100);
  padding: var(--size-12) 56rem;
  margin-bottom: var(--size-12);
  position: relative;
  --gap: var(--size-9);
}
.container[page-name=grants] section.docs .docs__wrap:after, .container[page-name=grants] section.docs .docs__wrap:before {
  content: "";
  position: absolute;
  width: var(--tripartite-size);
  height: 3px;
  background: var(--color-orange-100);
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  border-radius: calc(infinity * 1px);
}
.container[page-name=grants] section.docs .docs__wrap:after {
  top: -1.5px;
}
.container[page-name=grants] section.docs .docs__wrap:before {
  bottom: -1.5px;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.docs .docs__wrap {
    margin-top: var(--size-11);
    padding: 60rem 20rem;
  }
  .container[page-name=grants] section.docs .docs__wrap:after, .container[page-name=grants] section.docs .docs__wrap:before {
    width: 110rem;
  }
}
.container[page-name=grants] section.docs .parts-section-header:not(:first-child) {
  margin-top: var(--gap);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--gap);
}
.container[page-name=grants] section.sector {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.sector {
    --padding-border: var(--size-11);
  }
}
.container[page-name=grants] section.sector .sector__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.sector .sector__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=grants] section.sector .sector__list {
  display: flex;
  --gap: var(--size-12);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.sector .sector__list {
    --gap: var(--size-11);
    margin-top: var(--size-9);
  }
}
.container[page-name=grants] section.sector .sector__item {
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.sector .sector__item {
    --gap: var(--size-8);
  }
}
.container[page-name=grants] section.sector .sector__item__period-array {
  display: flex;
  --gap: var(--size-9);
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.sector .sector__item__period-array {
    display: flex;
    --gap: var(--size-4);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=grants] section.sector .sector__item__period {
  display: flex;
  --gap: var(--size-7);
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=grants] section.sector .sector__item__period__title {
  border-radius: calc(infinity * 1px);
  --fix-width: 115rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  line-height: 1cap;
  background: var(--color-black-100);
  color: var(--color-white-100);
}
.container[page-name=grants] section.sector .sector__item__period__text {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  --gap: 0;
  flex-direction: column;
  gap: var(--gap);
  white-space: pre-line;
}
@media (max-width: 750px) {
  .container[page-name=grants] section.sector .sector__item__period__text {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    line-height: 1.75;
  }
}
@media (min-width: 1201px) {
  .container[page-name=grants] section.sector .sector__item__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24rem;
  }
}
@media (max-width: 1200px) {
  .container[page-name=grants] section.sector .sector__item__buttons {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=grants] section.base-magazine-section {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.base-magazine-section {
    --padding-border: var(--size-11);
  }
}
.container[page-name=grants] section.base-magazine-section {
  margin-top: var(--size-14);
}
@media (max-width: 750px) {
  .container[page-name=grants] section.base-magazine-section {
    --padding-border: var(--size-11);
    margin-top: var(--padding-border);
    border-top: 1px solid var(--color-gray-100);
    padding-top: var(--padding-border);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .container[page-name=grants] section.base-magazine-section {
    --padding-border: var(--size-11);
  }
}

.container[page-name=grants-single] hgroup.page-header {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
  margin-top: 30rem;
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-single] hgroup.page-header {
    margin-top: 0rem;
    --gap: var(--size-4);
  }
}
.container[page-name=grants-single] hgroup.page-header .page-header__info {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  --gap: var(--size-9);
  flex-direction: row;
  gap: var(--gap);
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=grants-single] hgroup.page-header .page-header__info {
    --gap: var(--size-6);
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=grants-single] hgroup.page-header .page-header__title {
  display: flex;
  --gap: var(--size-7);
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=grants-single] hgroup.page-header .page-header__title > span:first-child {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  position: relative;
  --fix-width: var(--size-12);
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
}
.container[page-name=grants-single] hgroup.page-header .page-header__title > span:first-child:after {
  content: "";
  display: block;
  position: absolute;
  width: 1rem;
  height: 20rem;
  background: var(--color-orange-100);
  top: 12rem;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.container[page-name=grants-single] hgroup.page-header .page-header__title > span:last-child {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-black-100);
}
@media (max-width: 750px) {
  .container[page-name=grants-single] hgroup.page-header .page-header__title {
    --gap: var(--size-3);
  }
  .container[page-name=grants-single] hgroup.page-header .page-header__title > span:first-child {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    --fix-width: 60rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
  .container[page-name=grants-single] hgroup.page-header .page-header__title > span:first-child:after {
    height: calc(100% - 4rem);
    bottom: 0;
    top: 0;
  }
  .container[page-name=grants-single] hgroup.page-header .page-header__title > span:last-child {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    line-height: 1.75;
  }
}
.container[page-name=grants-single] section.base-gallery {
  margin-top: var(--size-12);
}
.container[page-name=grants-single] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
  margin-top: var(--size-12);
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-single] section.contents {
    margin-top: var(--size-9);
  }
}
.container[page-name=grants-single] section.contents .parts-section-header .parts-section-header__description {
  height: fit-content;
  display: inline-block;
}
.container[page-name=grants-single] section.contents .parts-section-header .parts-section-header__description p {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name=grants-single] section.contents .parts-section-header .parts-section-header__description ul {
  list-style: disc;
}
.container[page-name=grants-single] section.contents .parts-section-header .parts-section-header__description ol {
  list-style: decimal;
}
.container[page-name=grants-single] section.contents .parts-section-header .parts-section-header__description ul, .container[page-name=grants-single] section.contents .parts-section-header .parts-section-header__description ol {
  padding-left: 20rem;
}
.container[page-name=grants-single] section.contents .contents__bar {
  width: 100%;
  height: 1px;
  background: var(--color-gray-100);
}
.container[page-name=grants-single] section.contents .contents__bar:last-of-type {
  display: none;
}
.container[page-name=grants-single] section.lead {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
}
@media (min-width: 751px) {
  .container[page-name=grants-single] section.lead {
    --padding-border: var(--size-12);
    margin-top: var(--padding-border);
    border-top: 1px solid var(--color-gray-100);
    padding-top: var(--padding-border);
  }
}
@media (min-width: 751px) and (max-width: 750px) {
  .container[page-name=grants-single] section.lead {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=grants-single] section.lead--grants {
    --padding-border: var(--size-12);
    margin-top: var(--padding-border);
    border-top: 1px solid var(--color-gray-100);
    padding-top: var(--padding-border);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .container[page-name=grants-single] section.lead--grants {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=grants-single] section.lead--magazine {
    margin-top: var(--size-11);
  }
}
.container[page-name=grants-single] section.lead .lead__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=grants-single] section.lead .lead__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=grants-single] section.lead .lead__list {
  margin-top: var(--size-10);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--column-gap);
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=grants-single] section.lead .lead__list {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
}
.container[page-name=grants-single] section.lead .lead__list .parts-project-item {
  width: 100%;
}
.container[page-name=grants-single] section.lead .lead__list .parts-project-item .parts-project-item__thumbnail {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.container[page-name=grants-single] section.past-case {
  margin-top: var(--size-12);
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --max-width: 1024rem;
}
@media (max-width: 750px) {
  .container[page-name=grants-single] section.past-case {
    margin-top: var(--size-11);
    margin-bottom: var(--size-11);
  }
}
.container[page-name=grants-single] section.past-case .parts-full-link {
  max-width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
}

.container[page-name=grants-child] hgroup.base-page-header .base-page-header__en-title {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  padding-left: 24rem;
  padding-right: 24rem;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] hgroup.base-page-header .base-page-header__en-title {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    padding-left: var(--size-4);
    padding-right: var(--size-4);
    line-height: 32rem;
  }
}
.container[page-name=grants-child] hgroup.base-page-header .base-page-header__page-title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  height: 58rem;
  background: var(--color-orange-100);
  color: var(--color-white-100);
  padding-left: var(--size-7);
  padding-right: var(--size-7);
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] hgroup.base-page-header .base-page-header__page-title {
    position: relative;
    z-index: 1;
    transform: translateZ(1px);
    will-change: clip-path;
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    height: 56rem;
    padding-left: var(--size-4);
    padding-right: var(--size-4);
  }
}
.container[page-name=grants-child] hgroup.base-page-header .base-page-header__main-title {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.8;
  letter-spacing: 0.1em;
  padding-left: var(--size-7);
  padding-right: var(--size-7);
  background: var(--color-white-100);
  height: 82rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] hgroup.base-page-header .base-page-header__main-title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    height: 56rem;
    padding-left: var(--size-4);
    padding-right: var(--size-4);
  }
}
.container[page-name=grants-child] nav.page-nav {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--column-gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] nav.page-nav {
    display: flex;
    flex-direction: column;
    gap: var(--size-6);
  }
  .container[page-name=grants-child] nav.page-nav > * {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .container[page-name=grants-child] nav.page-nav {
    margin-top: var(--size-9);
  }
}
.container[page-name=grants-child] nav.page-nav .page-nav__button {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
  justify-content: center;
  color: var(--color-orange-100);
}
.container[page-name=grants-child] nav.page-nav .page-nav__button svg {
  width: 16rem;
  height: 16rem;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] nav.page-nav .page-nav__button {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    height: 64rem;
  }
  .container[page-name=grants-child] nav.page-nav .page-nav__button svg {
    width: 10rem;
    height: 10rem;
  }
}
.container[page-name=grants-child] nav.page-nav .page-nav__button {
  transition: color 0.2s linear;
}
.container[page-name=grants-child] nav.page-nav .page-nav__button path {
  transition: fill 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=grants-child] nav.page-nav .page-nav__button:hover {
    color: var(--color-black-100);
  }
  .container[page-name=grants-child] nav.page-nav .page-nav__button:hover path {
    fill: var(--color-black-100);
  }
}
.container[page-name=grants-child] section.overview {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.overview {
    margin-top: var(--size-9);
  }
}
.container[page-name=grants-child] section.overview .overview__contents-list {
  margin-top: var(--size-10);
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=grants-child] section.overview .overview__contents {
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.overview .overview__contents {
    --gap: var(--size-4);
  }
}
.container[page-name=grants-child] section.overview .overview__contents__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.container[page-name=grants-child] section.overview .overview__contents__title:empty {
  display: none;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.overview .overview__contents__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=grants-child] section.ex-subjects {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.ex-subjects {
    --padding-border: var(--size-11);
  }
}
.container[page-name=grants-child] section.ex-subjects .parts-section-header .parts-section-header__description {
  list-style: disc;
  padding-left: calc(var(--size-8) + 26rem);
  white-space: normal;
}
.container[page-name=grants-child] section.latest {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.latest {
    --padding-border: var(--size-11);
  }
}
.container[page-name=grants-child] section.latest .latest__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.latest .latest__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=grants-child] section.latest .latest__list {
  margin-top: var(--size-10);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-8);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.latest .latest__list {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
    margin-top: var(--size-9);
  }
}
.container[page-name=grants-child] section.latest .latest__list .parts-project-item {
  width: 100%;
}
.container[page-name=grants-child] section.latest .latest__list .parts-project-item .parts-project-item__thumbnail {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.container[page-name=grants-child] section.latest .latest__buttons {
  margin-top: var(--size-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--column-gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.latest .latest__buttons {
    display: flex;
    flex-direction: column;
    gap: var(--size-6);
  }
  .container[page-name=grants-child] section.latest .latest__buttons > * {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.latest .latest__buttons {
    margin-top: var(--size-9);
  }
}
.container[page-name=grants-child] section.range {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.range {
    --padding-border: var(--size-11);
  }
}
.container[page-name=grants-child] section.range .range__contents-list {
  display: flex;
  --gap: var(--size-9);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--size-9);
}
.container[page-name=grants-child] section.range .range__contents {
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.range .range__contents {
    --gap: var(--size-4);
  }
}
.container[page-name=grants-child] section.range .range__contents__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.range .range__contents__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=grants-child] section.range .range__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--column-gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.range .range__nav {
    display: flex;
    flex-direction: column;
    gap: var(--size-6);
  }
  .container[page-name=grants-child] section.range .range__nav > * {
    width: 100%;
  }
}
.container[page-name=grants-child] section.docs {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.docs {
    --padding-border: var(--size-11);
  }
}
.container[page-name=grants-child] section.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--column-gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.docs {
    display: flex;
    flex-direction: column;
    gap: var(--size-6);
  }
  .container[page-name=grants-child] section.docs > * {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.docs {
    display: flex;
    --gap: var(--size-11);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=grants-child] section.docs .docs__item {
  width: 100%;
}
.container[page-name=grants-child] section.docs .docs__item__file {
  margin-top: var(--size-10);
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.docs .docs__item__file {
    margin-top: var(--size-9);
  }
}
.container[page-name=grants-child] section.adoption {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.adoption {
    --padding-border: var(--size-11);
  }
}
.container[page-name=grants-child] section.adoption {
  display: flex;
  --gap: var(--size-10);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.adoption {
    --gap: var(--size-9);
  }
}
.container[page-name=grants-child] section.adoption .adoption__section {
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.adoption .adoption__section {
    --gap: var(--size-4);
  }
}
.container[page-name=grants-child] section.adoption .adoption__section__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.adoption .adoption__section__title {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=grants-child] section.adoption .adoption__bar {
  width: 100%;
  height: 1px;
  background: var(--color-black-100);
}
.container[page-name=grants-child] section.adoption .adoption__project {
  display: flex;
  --gap: var(--size-7);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=grants-child] section.adoption .adoption__project__title {
  line-break: loose;
  font-size: larger;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  padding-left: var(--size-8);
  border-left: 3rem solid var(--color-orange-100);
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.adoption .adoption__project__title {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    line-height: 1.75;
    padding-left: var(--size-8);
  }
}
.container[page-name=grants-child] section.adoption .adoption__project__contents {
  padding-left: var(--size-8);
  border-left: 1rem solid var(--color-black-100);
  display: flex;
  --gap: var(--size-5);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=grants-child] section.adoption .adoption__project__text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: flex;
  --gap: var(--size-2);
  flex-direction: row;
  gap: var(--gap);
}
.container[page-name=grants-child] section.adoption .adoption__project__text span:first-child {
  color: var(--color-orange-100);
  font-weight: bold;
  min-width: var(--size-11);
}
.container[page-name=grants-child] section.adoption .adoption__project__text span:last-child {
  line-height: 1.75;
  padding-left: var(--size-3);
  position: relative;
}
.container[page-name=grants-child] section.adoption .adoption__project__text span:last-child:after {
  content: "";
  position: absolute;
  height: calc(100% - 8rem);
  width: 1px;
  background: var(--color-orange-100);
  top: 0;
  bottom: 0;
  left: 0;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 750px) {
  .container[page-name=grants-child] section.adoption .adoption__project__text span:first-child {
    line-break: loose;
    font-size: var(--text-size-small);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.08em;
  }
  .container[page-name=grants-child] section.adoption .adoption__project__text span:last-child {
    width: 100%;
    line-break: loose;
    font-size: var(--text-size-small);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.container[page-name=index] {
  position: relative;
  height: fit-content;
  opacity: 0;
}
.container[page-name=index] section.first {
  min-height: 680rem;
  height: 100svh;
  max-height: 800rem;
  position: relative;
  max-width: none !important;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first {
    min-height: 667rem;
  }
}
.container[page-name=index] section.first .first__kv {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.container[page-name=index] section.first .first__kv__img {
  width: 100%;
  height: 100%;
}
.container[page-name=index] section.first .first__contents {
  height: 100%;
  width: 100%;
  max-width: 1440px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page-name=index] section.first .first__title {
  position: absolute;
  top: 219rem;
  left: calc(var(--margin-1) + var(--padding));
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.8;
  letter-spacing: 0.1em;
  display: flex;
  --gap: 2rem;
  flex-direction: column;
  gap: var(--gap);
  align-items: flex-start;
  color: var(--color-white-100);
  --padding: 19rem;
  --padding-buffer: 22rem;
}
.container[page-name=index] section.first .first__title > span {
  position: relative;
  z-index: 2;
  --scale-progress: 1;
}
.container[page-name=index] section.first .first__title > span:after {
  content: "";
  width: calc(100% + var(--padding) * 2 - var(--padding-buffer));
  height: 61rem;
  background: var(--color-orange-100);
  position: absolute;
  top: 10rem;
  left: calc((var(--padding)) * -1);
  z-index: -1;
  transform-origin: left;
  transform: scaleX(var(--scale-progress));
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__title {
    --gap: 0rem;
    top: 240rem;
    font-size: 20rem;
    letter-spacing: 0.08em;
    line-height: 1.8;
    --padding: 9rem;
    --padding-buffer: 8rem;
  }
  .container[page-name=index] section.first .first__title > span:after {
    height: 30rem;
    top: 3rem;
  }
}
.container[page-name=index] section.first .first__banners {
  display: flex;
  --gap: 5rem;
  flex-direction: column;
  gap: var(--gap);
  position: absolute;
  z-index: 1;
  bottom: 20rem;
  left: var(--margin-1);
  max-width: 440rem;
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__banners {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-inline: auto;
    --gap: 4rem;
  }
}
.container[page-name=index] section.first .first__banner-item {
  width: 100%;
  height: 48rem;
  border-radius: calc(infinity * 1px);
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  background: var(--color-orange-100);
  padding-left: 24rem;
  padding-right: 12rem;
  color: var(--color-white-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__banner-item {
    height: 44rem;
  }
}
.container[page-name=index] section.first .first__banner-item__title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}
@media (max-width: 750px) {
  .container[page-name=index] section.first .first__banner-item__title {
    line-break: loose;
    font-size: var(--text-size-small);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}
.container[page-name=index] section.first .first__banner-item__bar {
  height: 20rem;
  width: 1px;
  background: var(--color-white-100);
}
.container[page-name=index] section.first .first__banner-item__text {
  line-break: loose;
  font-size: var(--text-size-minimum);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.15;
  letter-spacing: 0.05em;
  padding-left: 16rem;
  padding-right: 12rem;
}
.container[page-name=index] section.first .first__banner-item__icon {
  width: 28rem;
  height: 28rem;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=index] section.first .first__banner-item {
    transition-property: background-color;
    transition-duration: 0.2s;
    transition-timing-function: linear;
  }
  .container[page-name=index] section.first .first__banner-item:hover {
    background: var(--color-yellow-100);
  }
}
.container[page-name=index] section.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 40rem;
  margin-bottom: 80rem;
}
.container[page-name=index] section.info .info__title {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.container[page-name=index] section.info .info__list {
  display: flex;
  --gap: 4rem;
  flex-direction: column;
  gap: var(--gap);
  margin-top: 40rem;
  margin-bottom: 40rem;
}
@media (max-width: 750px) {
  .container[page-name=index] section.info .info__list {
    margin-top: 32rem;
    margin-bottom: 32rem;
    display: flex;
    --gap: 20rem;
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=index] section.info .info__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32rem;
}
@media (min-width: 751px) {
  .container[page-name=index] section.info .info__item {
    gap: 24rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.info .info__item {
    display: grid;
    grid-template-columns: 96rem 160rem 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "date category arrow" "title title title";
    height: fit-content;
  }
}
.container[page-name=index] section.info .info__item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  grid-area: date;
  --fix-width: 72rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  white-space: nowrap;
}
.container[page-name=index] section.info .info__item__category {
  font-size: 14rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 12rem;
  border-left: 1px solid var(--color-orange-100);
  border-right: 1px solid var(--color-orange-100);
  width: 160rem;
  text-align: center;
  color: var(--color-orange-100);
  grid-area: category;
}
@media (max-width: 750px) {
  .container[page-name=index] section.info .info__item__category {
    width: 160rem;
  }
}
.container[page-name=index] section.info .info__item__text {
  flex: 1;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  grid-area: title;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.container[page-name=index] section.info .info__item__arrow {
  width: 64rem;
  grid-area: arrow;
}
@media (max-width: 750px) {
  .container[page-name=index] section.info .info__item__arrow {
    margin-left: auto;
  }
}
.container[page-name=index] section.info .parts-arrow-link {
  margin-left: auto;
}
.container[page-name=index] section.info .info__item__text {
  transition: color 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=index] section.info .info__item:hover .info__item__text {
    color: var(--color-orange-100);
  }
}
.container[page-name=index] section.about {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  --gap: 120rem;
  flex-direction: column;
  gap: var(--gap);
  margin-bottom: 120rem;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about {
    margin-bottom: 44rem;
    --margin-inline: 0;
  }
}
.container[page-name=index] section.about .about__item {
  position: relative;
}
.container[page-name=index] section.about .about__item-header {
  display: flex;
  --gap: 6rem;
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-header {
    justify-content: space-between;
  }
}
.container[page-name=index] section.about .about__item-header__number {
  display: flex;
  --gap: 1rem;
  flex-direction: column;
  gap: var(--gap);
  align-items: center;
}
@media (min-width: 751px) {
  .container[page-name=index] section.about .about__item-header__number {
    width: 82rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-header__number {
    padding-left: 20rem;
  }
}
.container[page-name=index] section.about .about__item-header__number-text {
  font-size: 16rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.15em;
  line-height: 2;
  position: relative;
}
.container[page-name=index] section.about .about__item-header__number-text:after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 2px;
  background: var(--color-orange-100);
  top: 0;
  bottom: 0;
  left: -43rem;
  margin-top: auto;
  margin-bottom: auto;
}
.container[page-name=index] section.about .about__item-header__number-number {
  line-break: loose;
  font-size: var(--text-size-ex-huge);
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-orange-100);
  text-align: center;
  width: 82rem;
}
.container[page-name=index] section.about .about__item-header__kv {
  height: 240rem;
  width: 100%;
  margin-top: 32rem;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-header__kv {
    width: 100%;
    height: 160rem;
  }
}
.container[page-name=index] section.about .about__item-header__kv-img {
  width: 100%;
  height: 100%;
}
.container[page-name=index] section.about .about__item-inner {
  position: relative;
  margin-top: -51rem;
}
@media (min-width: 1201px) {
  .container[page-name=index] section.about .about__item-inner {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-inner {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
    margin-top: -32rem;
  }
}
.container[page-name=index] section.about .about__item-inner__title, .container[page-name=index] section.about .about__item-inner__description {
  padding-left: 56rem;
  border-left: 2px solid var(--color-black-100);
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-inner__title, .container[page-name=index] section.about .about__item-inner__description {
    padding-left: 24rem;
  }
}
.container[page-name=index] section.about .about__item-inner__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
  border-color: var(--color-orange-100);
  width: 100%;
}
.container[page-name=index] section.about .about__item-inner__title span {
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-right: 24rem;
  background: var(--color-white-100);
  width: fit-content;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-inner__title {
    font-size: 24rem;
  }
}
.container[page-name=index] section.about .about__item-inner__description {
  width: 700rem;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: 20rem;
  padding-bottom: 4rem;
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-inner__description {
    width: 100%;
  }
}
.container[page-name=index] section.about .about__item-inner__link {
  margin-top: auto;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .container[page-name=index] section.about .about__item-inner__link {
    display: none;
  }
}
.container[page-name=index] section.about .about__item-children {
  margin-top: 40rem;
  display: flex;
  --gap: 40rem;
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-children {
    display: flex;
    --gap: 20rem;
    flex-direction: column;
    gap: var(--gap);
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
}
.container[page-name=index] section.about .about__item-child {
  width: 100%;
}
.container[page-name=index] section.about .about__item-child__title {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=index] section.about .about__item-child__link {
  margin-top: 20rem;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 24rem;
  padding-right: 16rem;
  border-left: 2px solid var(--color-black-100);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container[page-name=index] section.about .about__item-child__link svg {
  width: 16rem;
  height: 16rem;
}
.container[page-name=index] section.about .about__item-children-out-link {
  margin-left: auto;
  margin-top: 32rem;
}
@media (min-width: 1201px) {
  .container[page-name=index] section.about .about__item-children-out-link {
    display: none;
    margin-right: var(--margin-1);
  }
}
@media (max-width: 750px) {
  .container[page-name=index] section.about .about__item-children-out-link {
    margin-right: var(--margin-1);
    margin-left: auto;
  }
}
.container[page-name=index] section.about .about__item-child__link svg {
  transition: transform 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=index] section.about .about__item-child__link:hover svg {
    transform: translateX(10rem);
  }
}
.container[page-name=index] section.base-magazine-section .section-title {
  text-align: center;
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=index] section.base-magazine-section .section-title {
    line-break: loose;
    font-size: var(--text-size-large);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.container[page-name=info-list] form.info, .container[page-name=info-en-list] form.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=info-list] form.info, .container[page-name=info-en-list] form.info {
    padding-top: var(--size-9);
  }
}
.container[page-name=info-list] form.info .info__nav, .container[page-name=info-en-list] form.info .info__nav {
  display: flex;
  --gap: var(--size-8);
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=info-list] form.info .info__nav, .container[page-name=info-en-list] form.info .info__nav {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=info-list] section.info-list, .container[page-name=info-en-list] section.info-list {
  display: flex;
  --gap: 4rem;
  flex-direction: column;
  gap: var(--gap);
  margin-top: 40rem;
  margin-bottom: 40rem;
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=info-list] section.info-list, .container[page-name=info-en-list] section.info-list {
    margin-top: var(--size-11);
    margin-bottom: var(--size-11);
    display: flex;
    --gap: 20rem;
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=info-list] section.info-list .info-item, .container[page-name=info-en-list] section.info-list .info-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32rem;
}
@media (min-width: 751px) {
  .container[page-name=info-list] section.info-list .info-item, .container[page-name=info-en-list] section.info-list .info-item {
    gap: 24rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=info-list] section.info-list .info-item, .container[page-name=info-en-list] section.info-list .info-item {
    display: grid;
    grid-template-columns: 96rem 160rem 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "date category arrow" "title title title";
    height: fit-content;
  }
}
.container[page-name=info-list] section.info-list .info-item__date, .container[page-name=info-en-list] section.info-list .info-item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  grid-area: date;
  --fix-width: 72rem;
  width: var(--fix-width);
  max-width: var(--fix-width);
  min-width: var(--fix-width);
  white-space: nowrap;
}
.container[page-name=info-list] section.info-list .info-item__category, .container[page-name=info-en-list] section.info-list .info-item__category {
  font-size: 14rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 12rem;
  border-left: 1px solid var(--color-orange-100);
  border-right: 1px solid var(--color-orange-100);
  width: 160rem;
  text-align: center;
  color: var(--color-orange-100);
  grid-area: category;
}
@media (max-width: 750px) {
  .container[page-name=info-list] section.info-list .info-item__category, .container[page-name=info-en-list] section.info-list .info-item__category {
    width: 160rem;
  }
}
.container[page-name=info-list] section.info-list .info-item__text, .container[page-name=info-en-list] section.info-list .info-item__text {
  flex: 1;
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  grid-area: title;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.container[page-name=info-list] section.info-list .info-item__arrow, .container[page-name=info-en-list] section.info-list .info-item__arrow {
  width: 64rem;
  grid-area: arrow;
  margin-left: auto;
}
.container[page-name=info-list] section.info-list .info-item__text, .container[page-name=info-en-list] section.info-list .info-item__text {
  transition: color 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=info-list] section.info-list .info-item:hover .info-item__text, .container[page-name=info-en-list] section.info-list .info-item:hover .info-item__text {
    color: var(--color-orange-100);
  }
}

.container[page-name=info-single] section.info, .container[page-name=info-en-single] section.info {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 751px) {
  .container[page-name=info-single] section.info, .container[page-name=info-en-single] section.info {
    margin-top: 72rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.info, .container[page-name=info-en-single] section.info {
    flex-direction: column-reverse;
    gap: var(--size-6);
  }
}
.container[page-name=info-single] section.info .info__nav, .container[page-name=info-en-single] section.info .info__nav {
  display: flex;
  --gap: var(--size-6);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.info .info__nav, .container[page-name=info-en-single] section.info .info__nav {
    margin-right: auto;
  }
}
.container[page-name=info-single] section.info .info__item__date, .container[page-name=info-en-single] section.info .info__item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
}
.container[page-name=info-single] section.info .info__item__category, .container[page-name=info-en-single] section.info .info__item__category {
  font-size: 14rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 12rem;
  border-left: 1px solid var(--color-orange-100);
  border-right: 1px solid var(--color-orange-100);
  width: 160rem;
  text-align: center;
  color: var(--color-orange-100);
  grid-area: category;
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.info .info__item__category, .container[page-name=info-en-single] section.info .info__item__category {
    width: 160rem;
  }
}
.container[page-name=info-single] section.info .info__social, .container[page-name=info-en-single] section.info .info__social {
  display: flex;
  --gap: var(--size-6);
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.info .info__social, .container[page-name=info-en-single] section.info .info__social {
    margin-left: auto;
  }
}
.container[page-name=info-single] section.info .info__social__item, .container[page-name=info-en-single] section.info .info__social__item {
  width: var(--size-9);
  height: var(--size-9);
}
.container[page-name=info-single] section.info .info__social__item path, .container[page-name=info-en-single] section.info .info__social__item path {
  transition: fill 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=info-single] section.info .info__social__item:hover path[fill="#F06428"], .container[page-name=info-en-single] section.info .info__social__item:hover path[fill="#F06428"] {
    fill: var(--color-yellow-100);
  }
}
.container[page-name=info-single] .page-header, .container[page-name=info-en-single] .page-header {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-9);
  display: flex;
  --gap: var(--size-3);
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=info-single] .page-header .page-header__title, .container[page-name=info-en-single] .page-header .page-header__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media (max-width: 750px) {
  .container[page-name=info-single] .page-header .page-header__title, .container[page-name=info-en-single] .page-header .page-header__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=info-single] .page-header .page-header__sub-title, .container[page-name=info-en-single] .page-header .page-header__sub-title {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=info-single] section.body, .container[page-name=info-en-single] section.body {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-8);
}
.container[page-name=info-single] section.body > * + *, .container[page-name=info-en-single] section.body > * + * {
  margin-top: var(--size-8);
}
.container[page-name=info-single] section.body h2.wp-block-heading, .container[page-name=info-en-single] section.body h2.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  border-bottom: 3px solid var(--color-orange-100);
  padding: var(--size-3) var(--size-8);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body h2.wp-block-heading, .container[page-name=info-en-single] section.body h2.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    padding: var(--size-2) var(--size-4);
  }
}
.container[page-name=info-single] section.body h3.wp-block-heading, .container[page-name=info-en-single] section.body h3.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-huge-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  color: var(--color-white-100);
  padding-left: var(--size-8);
  padding-right: var(--size-8);
  padding-top: var(--size-3);
  padding-bottom: var(--size-3);
  background-color: var(--color-yellow-100);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body h3.wp-block-heading, .container[page-name=info-en-single] section.body h3.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    padding: var(--size-2) var(--size-4);
  }
}
.container[page-name=info-single] section.body h4.wp-block-heading, .container[page-name=info-en-single] section.body h4.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-huge-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  color: var(--color-orange-100);
  border: 3px solid var(--color-orange-100);
  padding-left: var(--size-8);
  padding-right: var(--size-8);
  padding-top: var(--size-3);
  padding-bottom: var(--size-3);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body h4.wp-block-heading, .container[page-name=info-en-single] section.body h4.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    padding: var(--size-2) var(--size-4);
  }
}
.container[page-name=info-single] section.body h5.wp-block-heading, .container[page-name=info-en-single] section.body h5.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-huge-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body h5.wp-block-heading, .container[page-name=info-en-single] section.body h5.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=info-single] section.body h6.wp-block-heading, .container[page-name=info-en-single] section.body h6.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body h6.wp-block-heading, .container[page-name=info-en-single] section.body h6.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=info-single] section.body h4.wp-block-heading, .container[page-name=info-single] section.body h5.wp-block-heading, .container[page-name=info-single] section.body h6.wp-block-heading, .container[page-name=info-en-single] section.body h4.wp-block-heading, .container[page-name=info-en-single] section.body h5.wp-block-heading, .container[page-name=info-en-single] section.body h6.wp-block-heading {
  padding-left: var(--size-8);
  border-left: 3rem solid var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body h4.wp-block-heading, .container[page-name=info-single] section.body h5.wp-block-heading, .container[page-name=info-single] section.body h6.wp-block-heading, .container[page-name=info-en-single] section.body h4.wp-block-heading, .container[page-name=info-en-single] section.body h5.wp-block-heading, .container[page-name=info-en-single] section.body h6.wp-block-heading {
    padding-left: var(--size-5);
  }
}
.container[page-name=info-single] section.body h1.wp-block-heading, .container[page-name=info-single] section.body h2.wp-block-heading, .container[page-name=info-single] section.body h3.wp-block-heading, .container[page-name=info-single] section.body h4.wp-block-heading, .container[page-name=info-single] section.body h5.wp-block-heading, .container[page-name=info-single] section.body h6.wp-block-heading, .container[page-name=info-en-single] section.body h1.wp-block-heading, .container[page-name=info-en-single] section.body h2.wp-block-heading, .container[page-name=info-en-single] section.body h3.wp-block-heading, .container[page-name=info-en-single] section.body h4.wp-block-heading, .container[page-name=info-en-single] section.body h5.wp-block-heading, .container[page-name=info-en-single] section.body h6.wp-block-heading {
  margin-top: var(--size-12);
}
.container[page-name=info-single] section.body .wp-block-heading + .wp-block-heading, .container[page-name=info-en-single] section.body .wp-block-heading + .wp-block-heading {
  margin-top: var(--size-8);
}
.container[page-name=info-single] section.body > p, .container[page-name=info-single] section.body .wp-block-my-blocks-custom-notice > *, .container[page-name=info-single] section.body .wp-block-columns p, .container[page-name=info-en-single] section.body > p, .container[page-name=info-en-single] section.body .wp-block-my-blocks-custom-notice > *, .container[page-name=info-en-single] section.body .wp-block-columns p {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=info-single] section.body a:not(.parts-full-link), .container[page-name=info-en-single] section.body a:not(.parts-full-link) {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
  color: var(--color-orange-100);
  text-decoration: underline;
}
.container[page-name=info-single] section.body figure, .container[page-name=info-single] section.body .wp-iframe-embed, .container[page-name=info-en-single] section.body figure, .container[page-name=info-en-single] section.body .wp-iframe-embed {
  margin-top: var(--size-11);
  max-width: calc(var(--column-width-size) * 10 + var(--column-gap) * 9);
  width: 100%;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
}
.container[page-name=info-single] section.body figure figcaption, .container[page-name=info-single] section.body figure .wp-iframe-embed__caption, .container[page-name=info-single] section.body .wp-iframe-embed figcaption, .container[page-name=info-single] section.body .wp-iframe-embed .wp-iframe-embed__caption, .container[page-name=info-en-single] section.body figure figcaption, .container[page-name=info-en-single] section.body figure .wp-iframe-embed__caption, .container[page-name=info-en-single] section.body .wp-iframe-embed figcaption, .container[page-name=info-en-single] section.body .wp-iframe-embed .wp-iframe-embed__caption {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: var(--size-2);
  margin-bottom: 0;
}
.container[page-name=info-single] section.body figure img, .container[page-name=info-single] section.body figure iframe, .container[page-name=info-single] section.body .wp-iframe-embed img, .container[page-name=info-single] section.body .wp-iframe-embed iframe, .container[page-name=info-en-single] section.body figure img, .container[page-name=info-en-single] section.body figure iframe, .container[page-name=info-en-single] section.body .wp-iframe-embed img, .container[page-name=info-en-single] section.body .wp-iframe-embed iframe {
  width: 100%;
  height: auto;
}
.container[page-name=info-single] section.body figure iframe, .container[page-name=info-single] section.body .wp-iframe-embed iframe, .container[page-name=info-en-single] section.body figure iframe, .container[page-name=info-en-single] section.body .wp-iframe-embed iframe {
  aspect-ratio: 16/9;
}
.container[page-name=info-single] section.body figure[figure-type=portrait], .container[page-name=info-single] section.body .wp-iframe-embed[figure-type=portrait], .container[page-name=info-en-single] section.body figure[figure-type=portrait], .container[page-name=info-en-single] section.body .wp-iframe-embed[figure-type=portrait] {
  max-width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body figure, .container[page-name=info-single] section.body .wp-iframe-embed, .container[page-name=info-en-single] section.body figure, .container[page-name=info-en-single] section.body .wp-iframe-embed {
    max-width: 320rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container[page-name=info-single] section.body figure[figure-type=portrait], .container[page-name=info-single] section.body .wp-iframe-embed[figure-type=portrait], .container[page-name=info-en-single] section.body figure[figure-type=portrait], .container[page-name=info-en-single] section.body .wp-iframe-embed[figure-type=portrait] {
    max-width: 320rem;
  }
  .container[page-name=info-single] section.body figure[figure-type=portrait] img, .container[page-name=info-single] section.body .wp-iframe-embed[figure-type=portrait] img, .container[page-name=info-en-single] section.body figure[figure-type=portrait] img, .container[page-name=info-en-single] section.body .wp-iframe-embed[figure-type=portrait] img {
    width: 217rem;
  }
}
.container[page-name=info-single] section.body figure.alignleft, .container[page-name=info-single] section.body figure.alignright, .container[page-name=info-single] section.body .wp-iframe-embed.alignleft, .container[page-name=info-single] section.body .wp-iframe-embed.alignright, .container[page-name=info-en-single] section.body figure.alignleft, .container[page-name=info-en-single] section.body figure.alignright, .container[page-name=info-en-single] section.body .wp-iframe-embed.alignleft, .container[page-name=info-en-single] section.body .wp-iframe-embed.alignright {
  margin: 0rem;
  max-width: 500rem;
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body figure.alignleft, .container[page-name=info-single] section.body figure.alignright, .container[page-name=info-single] section.body .wp-iframe-embed.alignleft, .container[page-name=info-single] section.body .wp-iframe-embed.alignright, .container[page-name=info-en-single] section.body figure.alignleft, .container[page-name=info-en-single] section.body figure.alignright, .container[page-name=info-en-single] section.body .wp-iframe-embed.alignleft, .container[page-name=info-en-single] section.body .wp-iframe-embed.alignright {
    max-width: calc(100vw - var(--margin-1) * 2);
  }
}
.container[page-name=info-single] section.body blockquote.wp-block-quote, .container[page-name=info-en-single] section.body blockquote.wp-block-quote {
  padding-left: var(--size-6);
  margin-left: var(--size-7);
  border-left: 3px solid var(--color-gray-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=info-single] section.body hr, .container[page-name=info-en-single] section.body hr {
  border: none;
  height: 1px;
  background: var(--color-gray-100);
  margin-top: var(--size-9);
}
.container[page-name=info-single] section.body .custom-button, .container[page-name=info-en-single] section.body .custom-button {
  margin-top: var(--size-9);
}
.container[page-name=info-single] section.body .wp-block-image, .container[page-name=info-en-single] section.body .wp-block-image {
  width: fit-content;
  height: fit-content;
  margin-top: var(--size-9);
  display: block;
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body .wp-block-image:has(.alignleft), .container[page-name=info-single] section.body .wp-block-image:has(.alignright), .container[page-name=info-en-single] section.body .wp-block-image:has(.alignleft), .container[page-name=info-en-single] section.body .wp-block-image:has(.alignright) {
    max-width: 100%;
  }
  .container[page-name=info-single] section.body .wp-block-image:has(.alignleft) figure, .container[page-name=info-single] section.body .wp-block-image:has(.alignright) figure, .container[page-name=info-en-single] section.body .wp-block-image:has(.alignleft) figure, .container[page-name=info-en-single] section.body .wp-block-image:has(.alignright) figure {
    width: 100%;
  }
}
.container[page-name=info-single] section.body .wp-block-image:has(.aligncenter), .container[page-name=info-en-single] section.body .wp-block-image:has(.aligncenter) {
  margin-left: auto !important;
  margin-right: auto !important;
}
.container[page-name=info-single] section.body .wp-block-image:has(.alignleft), .container[page-name=info-en-single] section.body .wp-block-image:has(.alignleft) {
  float: left;
  margin-right: 20rem;
}
.container[page-name=info-single] section.body .wp-block-image:has(.alignright), .container[page-name=info-en-single] section.body .wp-block-image:has(.alignright) {
  float: right;
  margin-left: 20rem;
}
.container[page-name=info-single] section.body .wp-custom-notice, .container[page-name=info-en-single] section.body .wp-custom-notice {
  border-radius: 3rem;
  border: 1px solid var(--color-orange-100);
  padding: var(--size-6);
  margin-top: var(--size-9);
}
.container[page-name=info-single] section.body .wp-custom-notice a, .container[page-name=info-en-single] section.body .wp-custom-notice a {
  text-decoration: underline;
  color: var(--color-orange-100);
}
.container[page-name=info-single] section.body .wp-custom-notice--bg-orange, .container[page-name=info-en-single] section.body .wp-custom-notice--bg-orange {
  background-color: #FFF1D7;
  border: none;
}
.container[page-name=info-single] section.body .wp-custom-notice--bg-gray, .container[page-name=info-en-single] section.body .wp-custom-notice--bg-gray {
  background-color: #EEEEEE;
  border: none;
}
.container[page-name=info-single] section.body .wp-block-image:has(.alignleft) + *, .container[page-name=info-single] section.body .wp-block-image:has(.alignright) + *, .container[page-name=info-single] section.body .wp-block-image:has(.aligncenter), .container[page-name=info-en-single] section.body .wp-block-image:has(.alignleft) + *, .container[page-name=info-en-single] section.body .wp-block-image:has(.alignright) + *, .container[page-name=info-en-single] section.body .wp-block-image:has(.aligncenter) {
  margin: 0;
  margin-top: var(--size-9);
}
.container[page-name=info-single] section.body .wp-block-columns *, .container[page-name=info-en-single] section.body .wp-block-columns * {
  margin-top: 0rem;
}
.container[page-name=info-single] section.body .wp-block-table, .container[page-name=info-en-single] section.body .wp-block-table {
  max-width: 100%;
  margin-top: var(--size-9);
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body .wp-block-table, .container[page-name=info-en-single] section.body .wp-block-table {
    overflow-x: scroll;
    min-width: 100vw;
    margin-left: calc(var(--margin-1) * -1);
    padding-left: var(--margin-1);
    padding-right: var(--margin-1);
  }
}
.container[page-name=info-single] section.body .wp-block-table table, .container[page-name=info-en-single] section.body .wp-block-table table {
  border: 1px solid var(--color-black-100);
  table-layout: fixed;
  width: 100%;
}
.container[page-name=info-single] section.body .wp-block-table table thead, .container[page-name=info-en-single] section.body .wp-block-table table thead {
  border-bottom: 1px solid var(--color-gray-100);
  background: var(--color-yellow-200);
}
.container[page-name=info-single] section.body .wp-block-table table thead td, .container[page-name=info-single] section.body .wp-block-table table thead th, .container[page-name=info-en-single] section.body .wp-block-table table thead td, .container[page-name=info-en-single] section.body .wp-block-table table thead th {
  padding-left: 0rem;
  padding-right: 0rem;
  text-align: center;
}
.container[page-name=info-single] section.body .wp-block-table table thead tr, .container[page-name=info-single] section.body .wp-block-table table tbody tr, .container[page-name=info-en-single] section.body .wp-block-table table thead tr, .container[page-name=info-en-single] section.body .wp-block-table table tbody tr {
  display: flex;
}
.container[page-name=info-single] section.body .wp-block-table table thead tr > *, .container[page-name=info-single] section.body .wp-block-table table tbody tr > *, .container[page-name=info-en-single] section.body .wp-block-table table thead tr > *, .container[page-name=info-en-single] section.body .wp-block-table table tbody tr > * {
  flex: 1;
}
@media (min-width: 993px) {
  .container[page-name=info-single] section.body .wp-block-table table thead tr > *:last-child, .container[page-name=info-single] section.body .wp-block-table table tbody tr > *:last-child, .container[page-name=info-en-single] section.body .wp-block-table table thead tr > *:last-child, .container[page-name=info-en-single] section.body .wp-block-table table tbody tr > *:last-child {
    min-width: 610rem;
  }
}
.container[page-name=info-single] section.body .wp-block-table table tr:not(:last-child), .container[page-name=info-en-single] section.body .wp-block-table table tr:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-100);
}
.container[page-name=info-single] section.body .wp-block-table table tr > *:not(:last-child), .container[page-name=info-en-single] section.body .wp-block-table table tr > *:not(:last-child) {
  border-right: 1px solid var(--color-gray-100);
}
.container[page-name=info-single] section.body .wp-block-table table tr .has-text-align-center, .container[page-name=info-en-single] section.body .wp-block-table table tr .has-text-align-center {
  background: var(--color-yellow-200);
}
.container[page-name=info-single] section.body .wp-block-table table th, .container[page-name=info-single] section.body .wp-block-table table td, .container[page-name=info-en-single] section.body .wp-block-table table th, .container[page-name=info-en-single] section.body .wp-block-table table td {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 13rem 16rem;
  border: none;
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body .wp-block-table table th, .container[page-name=info-single] section.body .wp-block-table table td, .container[page-name=info-en-single] section.body .wp-block-table table th, .container[page-name=info-en-single] section.body .wp-block-table table td {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    padding: 12rem 16rem;
  }
}
.container[page-name=info-single] section.body .wp-block-table table th span, .container[page-name=info-single] section.body .wp-block-table table td span, .container[page-name=info-en-single] section.body .wp-block-table table th span, .container[page-name=info-en-single] section.body .wp-block-table table td span {
  width: 100%;
}
.container[page-name=info-single] section.body .wp-block-table table th span > *, .container[page-name=info-single] section.body .wp-block-table table td span > *, .container[page-name=info-en-single] section.body .wp-block-table table th span > *, .container[page-name=info-en-single] section.body .wp-block-table table td span > * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name=info-single] section.body .wp-block-table table th span ul, .container[page-name=info-single] section.body .wp-block-table table td span ul, .container[page-name=info-en-single] section.body .wp-block-table table th span ul, .container[page-name=info-en-single] section.body .wp-block-table table td span ul {
  padding-left: 20rem;
  list-style: disc;
}
.container[page-name=info-single] section.body .wp-block-table table th span p:empty, .container[page-name=info-single] section.body .wp-block-table table td span p:empty, .container[page-name=info-en-single] section.body .wp-block-table table th span p:empty, .container[page-name=info-en-single] section.body .wp-block-table table td span p:empty {
  height: var(--text-size-middle);
}
.container[page-name=info-single] section.body .wp-block-table table th, .container[page-name=info-en-single] section.body .wp-block-table table th {
  background: var(--color-yellow-200);
  font-weight: 700;
}
.container[page-name=info-single] section.body .wp-block-table table th span, .container[page-name=info-en-single] section.body .wp-block-table table th span {
  width: 100%;
}
.container[page-name=info-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr, .container[page-name=info-en-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr {
  display: grid;
  grid-template-columns: 408rem 1fr;
}
@media (max-width: 992px) {
  .container[page-name=info-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr, .container[page-name=info-en-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr {
    grid-template-columns: 190rem 1fr;
  }
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))), .container[page-name=info-en-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
  .container[page-name=info-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr, .container[page-name=info-en-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr {
    grid-template-columns: 117rem 1fr;
  }
  .container[page-name=info-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr th, .container[page-name=info-en-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr th {
    width: 100%;
  }
}
.container[page-name=info-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr span, .container[page-name=info-en-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr span {
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=info-single] section.body .wp-block-table table thead tr td, .container[page-name=info-single] section.body .wp-block-table table tbody tr td, .container[page-name=info-en-single] section.body .wp-block-table table thead tr td, .container[page-name=info-en-single] section.body .wp-block-table table tbody tr td {
    padding: var(--size-5) var(--size-4);
  }
  .container[page-name=info-single] section.body .wp-block-table table thead th.has-text-align-center, .container[page-name=info-single] section.body .wp-block-table table thead td.has-text-align-center, .container[page-name=info-single] section.body .wp-block-table table tbody th.has-text-align-center, .container[page-name=info-single] section.body .wp-block-table table tbody td.has-text-align-center, .container[page-name=info-en-single] section.body .wp-block-table table thead th.has-text-align-center, .container[page-name=info-en-single] section.body .wp-block-table table thead td.has-text-align-center, .container[page-name=info-en-single] section.body .wp-block-table table tbody th.has-text-align-center, .container[page-name=info-en-single] section.body .wp-block-table table tbody td.has-text-align-center {
    --fix-width: 117rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
.container[page-name=info-single] section.body a:not(.parts-full-link), .container[page-name=info-single] section.body button:not(.parts-full-link), .container[page-name=info-en-single] section.body a:not(.parts-full-link), .container[page-name=info-en-single] section.body button:not(.parts-full-link) {
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=info-single] section.body a:not(.parts-full-link):hover, .container[page-name=info-single] section.body button:not(.parts-full-link):hover, .container[page-name=info-en-single] section.body a:not(.parts-full-link):hover, .container[page-name=info-en-single] section.body button:not(.parts-full-link):hover {
    color: var(--color-black-100);
  }
}
.container[page-name=info-single] nav.footer-nav, .container[page-name=info-en-single] nav.footer-nav {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 260rem;
  display: flex;
}
.container[page-name=info-single] nav.footer-nav > .parts-arrow-link:first-child, .container[page-name=info-en-single] nav.footer-nav > .parts-arrow-link:first-child {
  flex-direction: row-reverse;
}
.container[page-name=info-single] nav.footer-nav > .parts-arrow-link:first-child svg, .container[page-name=info-en-single] nav.footer-nav > .parts-arrow-link:first-child svg {
  transform: rotate(180deg);
}
@media (min-width: 751px) {
  .container[page-name=info-single] nav.footer-nav, .container[page-name=info-en-single] nav.footer-nav {
    gap: var(--size-4);
  }
}
@media (max-width: 750px) {
  .container[page-name=info-single] nav.footer-nav, .container[page-name=info-en-single] nav.footer-nav {
    margin-top: 150rem;
  }
}
.container[page-name=info-single] nav.footer-nav .footer__nav__top, .container[page-name=info-en-single] nav.footer-nav .footer__nav__top {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=info-single] nav.footer-nav .footer__nav__top, .container[page-name=info-en-single] nav.footer-nav .footer__nav__top {
  transition: color 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=info-single] nav.footer-nav .footer__nav__top:hover, .container[page-name=info-en-single] nav.footer-nav .footer__nav__top:hover {
    color: var(--color-orange-100);
  }
}

.container[page-name=magazine-list] {
  opacity: 0;
}
.container[page-name=magazine-list] hgroup.header {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 34rem;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] hgroup.header {
    margin-top: 0rem;
  }
}
.container[page-name=magazine-list] hgroup.header .header__sub-title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] hgroup.header .header__sub-title {
    line-break: loose;
    font-size: var(--text-size-minimum);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.15;
    letter-spacing: 0.05em;
  }
}
.container[page-name=magazine-list] hgroup.header .header__title {
  line-break: loose;
  font-size: 80rem;
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  letter-spacing: 3.2rem;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] hgroup.header .header__title {
    font-size: 40rem;
    letter-spacing: 1.6rem;
    margin-top: var(--size-3);
  }
}
.container[page-name=magazine-list] hgroup.header .header__copy {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: flex;
  --gap: -1px;
  flex-direction: column;
}
.container[page-name=magazine-list] hgroup.header .header__copy * + * {
  margin-top: var(--gap);
}
.container[page-name=magazine-list] hgroup.header .header__copy {
  color: var(--color-white-100);
  margin-top: var(--size-7);
}
.container[page-name=magazine-list] hgroup.header .header__copy span {
  background: var(--color-orange-100);
  width: fit-content;
  padding-left: var(--size-4);
  padding-right: var(--size-4);
  padding-top: var(--size-2);
  padding-bottom: var(--size-2);
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] hgroup.header .header__copy {
    display: flex;
    --gap: 0;
    flex-direction: row;
    gap: var(--gap);
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    background: var(--color-orange-100);
    padding-left: var(--size-4);
    padding-right: var(--size-4);
    width: fit-content;
  }
  .container[page-name=magazine-list] hgroup.header .header__copy span {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
.container[page-name=magazine-list] section.pickup {
  height: 477rem;
  opacity: 0;
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: var(--size-7);
}
@media (max-width: 1200px) {
  .container[page-name=magazine-list] section.pickup {
    margin-bottom: 96rem;
  }
}
@media (min-width: 751px) {
  .container[page-name=magazine-list] section.pickup {
    margin-top: -122rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] section.pickup {
    height: fit-content;
    margin-top: var(--size-6);
  }
}
.container[page-name=magazine-list] section.pickup .pickup__info {
  position: absolute;
  bottom: 88rem;
  width: calc(var(--column-width-size) * 4 + var(--column-gap) * 3);
  padding-bottom: var(--size-5);
  border-bottom: 1px solid var(--color-black-100);
}
@media (max-width: 1200px) {
  .container[page-name=magazine-list] section.pickup .pickup__info {
    bottom: 0;
  }
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__category {
  width: 160rem;
  height: 32rem;
  font-size: 16rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  text-align: center;
  line-height: 2;
  background: var(--color-white-100);
  color: var(--color-orange-100);
  position: absolute;
  top: 0;
  left: 0;
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__thumbnail-img {
  width: 100%;
  height: 220rem;
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__header {
  margin-top: 16rem;
  display: flex;
  --gap: 16rem;
  flex-direction: row;
  gap: var(--gap);
  align-items: flex-start;
  max-height: 29rem;
  overflow: hidden;
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__tags {
  display: flex;
  --gap: var(--size-4);
  flex-direction: row;
  gap: var(--gap);
  flex-wrap: wrap;
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__tags span {
  padding-left: var(--size-4);
  padding-right: var(--size-4);
  color: var(--color-white-100);
  background: var(--color-orange-100);
  border-radius: calc(infinity * 1px);
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  display: block;
  width: fit-content;
  cursor: pointer;
  white-space: nowrap;
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__title {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 16rem;
  display: flex;
  align-items: flex-end;
  line-height: 1.75;
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__title span {
  max-width: 260rem;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.container[page-name=magazine-list] section.pickup .parts-magazine-item__title svg {
  padding: 8rem 22rem;
}
.container[page-name=magazine-list] section.pickup .pickup__thumbnail {
  width: calc(100% - 320rem + var(--margin-2) - 33rem);
  position: absolute;
  bottom: 0;
  right: calc(var(--margin-2) * -1);
  height: 100%;
}
@media (min-width: 1581px) {
  .container[page-name=magazine-list] section.pickup .pickup__thumbnail {
    right: 0;
    width: calc(var(--column-width-size) * 7 + var(--column-gap) * 6 + var(--margin-2));
  }
}
@media (max-width: 1200px) {
  .container[page-name=magazine-list] section.pickup .pickup__thumbnail {
    width: calc(100% - 320rem - 33rem);
    right: 0;
  }
}
.container[page-name=magazine-list] section.pickup .pickup__category {
  width: 200rem;
  font-size: largerMiddle;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  text-align: center;
  line-height: 2;
  background: var(--color-white-100);
  color: var(--color-orange-100);
  position: absolute;
  top: 0;
  left: 0;
}
.container[page-name=magazine-list] section.pickup .pickup__category:empty {
  display: none;
}
.container[page-name=magazine-list] section.pickup .pickup__thumbnail-img {
  width: 100%;
  height: 100%;
}
.container[page-name=magazine-list] section.pickup .pickup__wrap {
  width: 320rem;
  height: 366rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=magazine-list] section.pickup .pickup__wrap > * {
  position: absolute;
  top: 0;
}
.container[page-name=magazine-list] section.pickup .pickup__nav {
  display: flex;
  --gap: var(--size-6);
  flex-direction: row;
  gap: var(--gap);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1200px) {
  .container[page-name=magazine-list] section.pickup .pickup__nav {
    left: 0;
    right: 0;
    transform: translateY(calc(100% + 40rem));
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    margin-top: var(--size-9);
  }
}
.container[page-name=magazine-list] section.pickup .pickup__nav__item {
  width: var(--size-5);
  height: var(--size-5);
  border-radius: calc(infinity * 1px);
  border: 1px solid var(--color-orange-100);
  position: relative;
}
.container[page-name=magazine-list] section.pickup .pickup__nav__item:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: calc(infinity * 1px);
  background: var(--color-orange-100);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.container[page-name=magazine-list] section.pickup .pickup__thumbnail, .container[page-name=magazine-list] section.pickup .pickup__info, .container[page-name=magazine-list] section.pickup .parts-magazine-item {
  opacity: 0;
  pointer-events: none;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}
.container[page-name=magazine-list] section.pickup .pickup__nav__item:before {
  transform: scale(0);
  transition: transform 0.5s ease;
}
.container[page-name=magazine-list] section.pickup .pickup__info[current-item], .container[page-name=magazine-list] section.pickup .pickup__thumbnail[current-item], .container[page-name=magazine-list] section.pickup .parts-magazine-item[current-item] {
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.5s;
  transform: translateX(0);
}
.container[page-name=magazine-list] section.pickup .pickup__info[next-item], .container[page-name=magazine-list] section.pickup .pickup__thumbnail[next-item], .container[page-name=magazine-list] section.pickup .parts-magazine-item[next-item] {
  opacity: 0;
  transform: translateX(-100rem);
}
.container[page-name=magazine-list] section.pickup .pickup__info[prev-item], .container[page-name=magazine-list] section.pickup .pickup__thumbnail[prev-item], .container[page-name=magazine-list] section.pickup .parts-magazine-item[prev-item] {
  opacity: 0;
  transform: translateX(100rem);
}
.container[page-name=magazine-list] section.pickup .pickup__nav__item[current-item]:before {
  transform: scale(1);
}
.container[page-name=magazine-list] section.special {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-11);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--column-gap);
  padding-bottom: var(--size-11);
  border-bottom: 1px solid var(--color-gray-100);
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] section.special {
    display: flex;
    --gap: var(--size-6);
    flex-direction: column;
    gap: var(--gap);
    margin-top: var(--size-9);
    padding-bottom: var(--size-9);
  }
}
.container[page-name=magazine-list] form.magazine-nav {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--size-6);
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__categories {
  color: var(--color-orange-100);
}
@media (min-width: 751px) {
  .container[page-name=magazine-list] form.magazine-nav .magazine-nav__categories {
    padding-bottom: var(--size-5);
  }
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__categories__bar {
  width: 1px;
  height: 20rem;
  background: var(--color-orange-100);
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__categories__list {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .container[page-name=magazine-list] form.magazine-nav .magazine-nav__categories__list {
    --gap: var(--size-6);
  }
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__category {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  display: block;
  position: relative;
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__category[current-item]:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: calc(100% + var(--size-5) * 2);
  height: 3rem;
  border-radius: calc(infinity * 1px);
  background: var(--color-orange-100);
  transform: translateX(-50%);
  left: 50%;
  bottom: calc(var(--size-4) * -1);
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag {
  margin-top: var(--size-5);
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag {
    margin-top: var(--size-6);
  }
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag__list {
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag__list {
    flex-wrap: wrap;
    --gap: var(--size-4);
  }
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag__item {
  padding-left: var(--size-4);
  padding-right: var(--size-4);
  color: var(--color-white-100);
  background: var(--color-orange-100);
  border-radius: calc(infinity * 1px);
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  display: block;
  width: fit-content;
  cursor: pointer;
  white-space: nowrap;
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag__item input {
  display: none;
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag__item > * {
  pointer-events: none;
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag__item:has(input:checked) {
  opacity: 0.5;
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag__item {
  transition-property: background;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
.container[page-name=magazine-list] form.magazine-nav .magazine-nav__category {
  transition-property: color;
  transition-duration: 0.2s;
  transition-timing-function: linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=magazine-list] form.magazine-nav .magazine-nav__tag__item:hover {
    background: var(--color-yellow-100);
  }
  .container[page-name=magazine-list] form.magazine-nav .magazine-nav__category:hover {
    color: var(--color-yellow-100);
  }
}
@media (max-width: 750px) {
  .container[page-name=magazine-list] section.magazine-list {
    margin-top: 72rem;
  }
}

@media (max-width: 750px) {
  .container[page-name=magazine-single] {
    padding-top: var(--size-12);
  }
}
.container[page-name=magazine-single] hgroup.header {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 30rem;
  position: relative;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header {
    padding-top: 60rem;
    margin-top: 0rem;
  }
}
.container[page-name=magazine-single] hgroup.header .header__top {
  display: flex;
  align-items: center;
  gap: var(--size-6);
}
@media (min-width: 751px) {
  .container[page-name=magazine-single] hgroup.header .header__top {
    justify-content: space-between;
  }
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header .header__top {
    flex-wrap: wrap;
    gap: var(--size-4);
  }
}
.container[page-name=magazine-single] hgroup.header .header__category {
  padding-top: 8rem;
}
.container[page-name=magazine-single] hgroup.header .header__category-item {
  font-size: 14rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  letter-spacing: 0.05em;
  line-height: 12rem;
  border-left: 1px solid var(--color-orange-100);
  border-right: 1px solid var(--color-orange-100);
  width: 160rem;
  text-align: center;
  color: var(--color-orange-100);
  grid-area: category;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header .header__category-item {
    width: 160rem;
  }
}
.container[page-name=magazine-single] hgroup.header .header__tags {
  display: flex;
  align-items: center;
  gap: var(--size-4) var(--size-5);
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header .header__tags {
    gap: var(--size-4);
  }
}
.container[page-name=magazine-single] hgroup.header .header__publish-date {
  line-break: loose;
  font-size: var(--text-size-small);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.container[page-name=magazine-single] hgroup.header .header__tag-item {
  padding-left: var(--size-4);
  padding-right: var(--size-4);
  background: var(--color-orange-100);
  color: var(--color-white-100);
  border-radius: calc(infinity * 1px);
  line-break: loose;
  font-size: var(--text-size-tiny);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  line-height: 32rem;
}
.container[page-name=magazine-single] hgroup.header .header__social {
  margin-left: auto;
  display: flex;
  --gap: var(--size-6);
  flex-direction: row;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header .header__social {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.container[page-name=magazine-single] hgroup.header .header__social__item {
  width: var(--size-9);
  height: var(--size-9);
}
.container[page-name=magazine-single] hgroup.header .header__bottom {
  display: flex;
  --gap: var(--size-2);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--size-6);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header .header__bottom {
    --gap: var(--size-3);
    margin-top: var(--size-8);
  }
}
.container[page-name=magazine-single] hgroup.header .header__page-title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header .header__page-title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=magazine-single] hgroup.header .header__page-sub-title {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header .header__page-sub-title {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=magazine-single] hgroup.header .header__thumbnail-box {
  max-width: 800rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-8);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] hgroup.header .header__thumbnail-box {
    max-width: 320rem;
  }
}
.container[page-name=magazine-single] hgroup.header .header__thumbnail {
  width: 100%;
  height: auto;
}
.container[page-name=magazine-single] section.body {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-8);
}
.container[page-name=magazine-single] section.body > * + * {
  margin-top: var(--size-8);
}
.container[page-name=magazine-single] section.body h2.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  border-bottom: 3px solid var(--color-orange-100);
  padding: var(--size-3) var(--size-8);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body h2.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    padding: var(--size-2) var(--size-4);
  }
}
.container[page-name=magazine-single] section.body h3.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-huge-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  color: var(--color-white-100);
  padding-left: var(--size-8);
  padding-right: var(--size-8);
  padding-top: var(--size-3);
  padding-bottom: var(--size-3);
  background-color: var(--color-yellow-100);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body h3.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    padding: var(--size-2) var(--size-4);
  }
}
.container[page-name=magazine-single] section.body h4.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-huge-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  color: var(--color-orange-100);
  border: 3px solid var(--color-orange-100);
  padding-left: var(--size-8);
  padding-right: var(--size-8);
  padding-top: var(--size-3);
  padding-bottom: var(--size-3);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body h4.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    padding: var(--size-2) var(--size-4);
  }
}
.container[page-name=magazine-single] section.body h5.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-huge-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body h5.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-larger-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=magazine-single] section.body h6.wp-block-heading {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body h6.wp-block-heading {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.container[page-name=magazine-single] section.body h4.wp-block-heading, .container[page-name=magazine-single] section.body h5.wp-block-heading, .container[page-name=magazine-single] section.body h6.wp-block-heading {
  padding-left: var(--size-8);
  border-left: 3rem solid var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body h4.wp-block-heading, .container[page-name=magazine-single] section.body h5.wp-block-heading, .container[page-name=magazine-single] section.body h6.wp-block-heading {
    padding-left: var(--size-5);
  }
}
.container[page-name=magazine-single] section.body h1.wp-block-heading, .container[page-name=magazine-single] section.body h2.wp-block-heading, .container[page-name=magazine-single] section.body h3.wp-block-heading, .container[page-name=magazine-single] section.body h4.wp-block-heading, .container[page-name=magazine-single] section.body h5.wp-block-heading, .container[page-name=magazine-single] section.body h6.wp-block-heading {
  margin-top: var(--size-12);
}
.container[page-name=magazine-single] section.body .wp-block-heading + .wp-block-heading {
  margin-top: var(--size-8);
}
.container[page-name=magazine-single] section.body > p, .container[page-name=magazine-single] section.body .wp-block-my-blocks-custom-notice > *, .container[page-name=magazine-single] section.body .wp-block-columns p {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=magazine-single] section.body a:not(.parts-full-link) {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
  color: var(--color-orange-100);
  text-decoration: underline;
}
.container[page-name=magazine-single] section.body figure, .container[page-name=magazine-single] section.body .wp-iframe-embed {
  margin-top: var(--size-11);
  max-width: calc(var(--column-width-size) * 10 + var(--column-gap) * 9);
  width: 100%;
  height: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
}
.container[page-name=magazine-single] section.body figure figcaption, .container[page-name=magazine-single] section.body figure .wp-iframe-embed__caption, .container[page-name=magazine-single] section.body .wp-iframe-embed figcaption, .container[page-name=magazine-single] section.body .wp-iframe-embed .wp-iframe-embed__caption {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: var(--size-2);
  margin-bottom: 0;
}
.container[page-name=magazine-single] section.body figure img, .container[page-name=magazine-single] section.body figure iframe, .container[page-name=magazine-single] section.body .wp-iframe-embed img, .container[page-name=magazine-single] section.body .wp-iframe-embed iframe {
  width: 100%;
  height: auto;
}
.container[page-name=magazine-single] section.body figure iframe, .container[page-name=magazine-single] section.body .wp-iframe-embed iframe {
  aspect-ratio: 16/9;
}
.container[page-name=magazine-single] section.body figure[figure-type=portrait], .container[page-name=magazine-single] section.body .wp-iframe-embed[figure-type=portrait] {
  max-width: calc(var(--column-width-size) * 6 + var(--column-gap) * 5);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body figure, .container[page-name=magazine-single] section.body .wp-iframe-embed {
    max-width: 320rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container[page-name=magazine-single] section.body figure[figure-type=portrait], .container[page-name=magazine-single] section.body .wp-iframe-embed[figure-type=portrait] {
    max-width: 320rem;
  }
  .container[page-name=magazine-single] section.body figure[figure-type=portrait] img, .container[page-name=magazine-single] section.body .wp-iframe-embed[figure-type=portrait] img {
    width: 217rem;
  }
}
.container[page-name=magazine-single] section.body figure.alignleft, .container[page-name=magazine-single] section.body figure.alignright, .container[page-name=magazine-single] section.body .wp-iframe-embed.alignleft, .container[page-name=magazine-single] section.body .wp-iframe-embed.alignright {
  margin: 0rem;
  max-width: 500rem;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body figure.alignleft, .container[page-name=magazine-single] section.body figure.alignright, .container[page-name=magazine-single] section.body .wp-iframe-embed.alignleft, .container[page-name=magazine-single] section.body .wp-iframe-embed.alignright {
    max-width: calc(100vw - var(--margin-1) * 2);
  }
}
.container[page-name=magazine-single] section.body blockquote.wp-block-quote {
  padding-left: var(--size-6);
  margin-left: var(--size-7);
  border-left: 3px solid var(--color-gray-100);
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=magazine-single] section.body hr {
  border: none;
  height: 1px;
  background: var(--color-gray-100);
  margin-top: var(--size-9);
}
.container[page-name=magazine-single] section.body .custom-button {
  margin-top: var(--size-9);
}
.container[page-name=magazine-single] section.body .wp-block-image {
  width: fit-content;
  height: fit-content;
  margin-top: var(--size-9);
  display: block;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body .wp-block-image:has(.alignleft), .container[page-name=magazine-single] section.body .wp-block-image:has(.alignright) {
    max-width: 100%;
  }
  .container[page-name=magazine-single] section.body .wp-block-image:has(.alignleft) figure, .container[page-name=magazine-single] section.body .wp-block-image:has(.alignright) figure {
    width: 100%;
  }
}
.container[page-name=magazine-single] section.body .wp-block-image:has(.aligncenter) {
  margin-left: auto !important;
  margin-right: auto !important;
}
.container[page-name=magazine-single] section.body .wp-block-image:has(.alignleft) {
  float: left;
  margin-right: 20rem;
}
.container[page-name=magazine-single] section.body .wp-block-image:has(.alignright) {
  float: right;
  margin-left: 20rem;
}
.container[page-name=magazine-single] section.body .wp-custom-notice {
  border-radius: 3rem;
  border: 1px solid var(--color-orange-100);
  padding: var(--size-6);
  margin-top: var(--size-9);
}
.container[page-name=magazine-single] section.body .wp-custom-notice a {
  text-decoration: underline;
  color: var(--color-orange-100);
}
.container[page-name=magazine-single] section.body .wp-custom-notice--bg-orange {
  background-color: #FFF1D7;
  border: none;
}
.container[page-name=magazine-single] section.body .wp-custom-notice--bg-gray {
  background-color: #EEEEEE;
  border: none;
}
.container[page-name=magazine-single] section.body .wp-block-image:has(.alignleft) + *, .container[page-name=magazine-single] section.body .wp-block-image:has(.alignright) + *, .container[page-name=magazine-single] section.body .wp-block-image:has(.aligncenter) {
  margin: 0;
  margin-top: var(--size-9);
}
.container[page-name=magazine-single] section.body .wp-block-columns * {
  margin-top: 0rem;
}
.container[page-name=magazine-single] section.body .wp-block-table {
  max-width: 100%;
  margin-top: var(--size-9);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body .wp-block-table {
    overflow-x: scroll;
    min-width: 100vw;
    margin-left: calc(var(--margin-1) * -1);
    padding-left: var(--margin-1);
    padding-right: var(--margin-1);
  }
}
.container[page-name=magazine-single] section.body .wp-block-table table {
  border: 1px solid var(--color-black-100);
  table-layout: fixed;
  width: 100%;
}
.container[page-name=magazine-single] section.body .wp-block-table table thead {
  border-bottom: 1px solid var(--color-gray-100);
  background: var(--color-yellow-200);
}
.container[page-name=magazine-single] section.body .wp-block-table table thead td, .container[page-name=magazine-single] section.body .wp-block-table table thead th {
  padding-left: 0rem;
  padding-right: 0rem;
  text-align: center;
}
.container[page-name=magazine-single] section.body .wp-block-table table thead tr, .container[page-name=magazine-single] section.body .wp-block-table table tbody tr {
  display: flex;
}
.container[page-name=magazine-single] section.body .wp-block-table table thead tr > *, .container[page-name=magazine-single] section.body .wp-block-table table tbody tr > * {
  flex: 1;
}
@media (min-width: 993px) {
  .container[page-name=magazine-single] section.body .wp-block-table table thead tr > *:last-child, .container[page-name=magazine-single] section.body .wp-block-table table tbody tr > *:last-child {
    min-width: 610rem;
  }
}
.container[page-name=magazine-single] section.body .wp-block-table table tr:not(:last-child) {
  border-bottom: 1px solid var(--color-gray-100);
}
.container[page-name=magazine-single] section.body .wp-block-table table tr > *:not(:last-child) {
  border-right: 1px solid var(--color-gray-100);
}
.container[page-name=magazine-single] section.body .wp-block-table table tr .has-text-align-center {
  background: var(--color-yellow-200);
}
.container[page-name=magazine-single] section.body .wp-block-table table th, .container[page-name=magazine-single] section.body .wp-block-table table td {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 13rem 16rem;
  border: none;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body .wp-block-table table th, .container[page-name=magazine-single] section.body .wp-block-table table td {
    line-break: loose;
    font-size: var(--text-size-tiny);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    padding: 12rem 16rem;
  }
}
.container[page-name=magazine-single] section.body .wp-block-table table th span, .container[page-name=magazine-single] section.body .wp-block-table table td span {
  width: 100%;
}
.container[page-name=magazine-single] section.body .wp-block-table table th span > *, .container[page-name=magazine-single] section.body .wp-block-table table td span > * {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.container[page-name=magazine-single] section.body .wp-block-table table th span ul, .container[page-name=magazine-single] section.body .wp-block-table table td span ul {
  padding-left: 20rem;
  list-style: disc;
}
.container[page-name=magazine-single] section.body .wp-block-table table th span p:empty, .container[page-name=magazine-single] section.body .wp-block-table table td span p:empty {
  height: var(--text-size-middle);
}
.container[page-name=magazine-single] section.body .wp-block-table table th {
  background: var(--color-yellow-200);
  font-weight: 700;
}
.container[page-name=magazine-single] section.body .wp-block-table table th span {
  width: 100%;
}
.container[page-name=magazine-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr {
  display: grid;
  grid-template-columns: 408rem 1fr;
}
@media (max-width: 992px) {
  .container[page-name=magazine-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr {
    grid-template-columns: 190rem 1fr;
  }
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) {
    --margin-inline: var(--margin-2);
    max-width: var(--max-width, 1580px);
    width: calc(100vw - var(--margin-inline) * 2);
    margin-left: auto;
    margin-right: auto;
  }
  .container[page-name=magazine-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr {
    grid-template-columns: 117rem 1fr;
  }
  .container[page-name=magazine-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr th {
    width: 100%;
  }
}
.container[page-name=magazine-single] section.body .wp-block-table table:not(:has(tbody tr > *:nth-of-type(3))) tr span {
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.body .wp-block-table table thead tr td, .container[page-name=magazine-single] section.body .wp-block-table table tbody tr td {
    padding: var(--size-5) var(--size-4);
  }
  .container[page-name=magazine-single] section.body .wp-block-table table thead th.has-text-align-center, .container[page-name=magazine-single] section.body .wp-block-table table thead td.has-text-align-center, .container[page-name=magazine-single] section.body .wp-block-table table tbody th.has-text-align-center, .container[page-name=magazine-single] section.body .wp-block-table table tbody td.has-text-align-center {
    --fix-width: 117rem;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
.container[page-name=magazine-single] section.body a:not(.parts-full-link), .container[page-name=magazine-single] section.body button:not(.parts-full-link) {
  transition-property: color;
  transition-duration: 0.4s;
  transition-timing-function: linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=magazine-single] section.body a:not(.parts-full-link):hover, .container[page-name=magazine-single] section.body button:not(.parts-full-link):hover {
    color: var(--color-black-100);
  }
}
.container[page-name=magazine-single] nav.bottom-nav {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 120rem;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] nav.bottom-nav {
    margin-top: var(--size-11);
  }
}
.container[page-name=magazine-single] nav.bottom-nav .bottom-nav__top {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=magazine-single] nav.bottom-nav > .parts-arrow-link:first-child {
  flex-direction: row-reverse;
}
.container[page-name=magazine-single] nav.bottom-nav > .parts-arrow-link:first-child svg {
  transform: rotate(180deg);
}
.container[page-name=magazine-single] section.other {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.other {
    --padding-border: var(--size-11);
  }
}
.container[page-name=magazine-single] section.other:not(:has(.parts-magazine-item, .parts-award-item)) {
  display: none;
}
.container[page-name=magazine-single] section.other .other__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.other .other__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=magazine-single] section.other .other__title {
  margin-left: 0rem;
}
.container[page-name=magazine-single] section.other .other__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-9) var(--column-gap);
  margin-top: var(--size-10);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.other .other__list {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
}
.container[page-name=magazine-single] section.relevance {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-14);
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.relevance {
    margin-top: var(--size-11);
  }
}
.container[page-name=magazine-single] section.relevance .relevance__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.container[page-name=magazine-single] section.relevance .relevance__list {
  margin-top: var(--size-10);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--column-gap);
  width: 100%;
}
@media (max-width: 750px) {
  .container[page-name=magazine-single] section.relevance .relevance__list {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
}

@media (max-width: 750px) {
  .container[page-name=magazine-special] {
    padding-top: var(--size-12);
  }
}
.container[page-name=magazine-special] hgroup.header {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  height: 300rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 30rem;
}
.container[page-name=magazine-special] hgroup.header:after {
  width: 100svw;
  height: 100%;
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  z-index: -1;
}
@media (max-width: 750px) {
  .container[page-name=magazine-special] hgroup.header {
    height: 180rem;
    margin-top: 0rem;
  }
}
.container[page-name=magazine-special] hgroup.header .header__kv {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 880rem;
  width: 100%;
  height: calc(100% - 2px);
  border: 1px solid var(--color-yellow-100);
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 750px) {
  .container[page-name=magazine-special] hgroup.header .header__kv {
    width: 270rem;
  }
}
.container[page-name=magazine-special] hgroup.header .header__back {
  height: 100%;
  width: fit-content;
  display: flex;
  --gap: -2rem;
  flex-direction: row;
}
.container[page-name=magazine-special] hgroup.header .header__back * + * {
  margin-left: var(--gap);
}
.container[page-name=magazine-special] hgroup.header .header__back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.container[page-name=magazine-special] hgroup.header .header__sub-title {
  background: var(--color-orange-100);
  color: var(--color-white-100);
  width: fit-content;
  padding-left: var(--size-7);
  padding-right: var(--size-7);
  padding-top: var(--size-2);
  padding-bottom: var(--size-2);
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media (max-width: 750px) {
  .container[page-name=magazine-special] hgroup.header .header__sub-title {
    line-break: loose;
    font-size: 24rem;
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    padding: 0rem;
    padding-left: var(--size-4);
    padding-right: var(--size-4);
  }
}
.container[page-name=magazine-special] hgroup.header .header__title {
  background: var(--color-white-100);
  width: fit-content;
  padding-left: var(--size-7);
  padding-right: var(--size-7);
  padding-top: var(--size-3);
  padding-bottom: var(--size-3);
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  .container[page-name=magazine-special] hgroup.header .header__title {
    line-break: loose;
    font-size: 24rem;
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    padding: 0rem;
    padding-left: var(--size-4);
    padding-right: var(--size-4);
  }
}
.container[page-name=magazine-special] section.notice {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: 30rem;
}
@media (max-width: 750px) {
  .container[page-name=magazine-special] section.notice {
    margin-top: var(--size-9);
  }
}
.container[page-name=magazine-special] section.notice .notice__text {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}

.container[page-name*=magazine] section.magazine-list {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--column-gap);
  margin-top: var(--size-12);
}
@media (max-width: 1200px) {
  .container[page-name*=magazine] section.magazine-list {
    grid-template-columns: repeat(2, auto);
    gap: var(--size-8);
  }
}
@media (max-width: 750px) {
  .container[page-name*=magazine] section.magazine-list {
    margin-top: var(--size-9);
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
    align-items: center;
  }
}
@media (min-width: 751px) {
  .container[page-name*=magazine] section.magazine-list .parts-magazine-item {
    --fix-width: 100%;
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
  .container[page-name*=magazine] section.magazine-list .parts-magazine-item .parts-magazine-item__thumbnail img {
    width: 100%;
    height: 100%;
  }
}

.container[page-name=other] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  --gap: var(--size-12);
  flex-direction: column;
  gap: var(--gap);
  margin-top: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=other] section.contents {
    margin-top: var(--size-9);
    --gap: var(--size-11);
  }
}
.container[page-name=other] section.contents .contents__notice {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=other] section.contents .contents__column {
  position: relative;
  min-height: 320rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "contents img" "links img";
  gap: 32rem;
}
@media (max-width: 1200px) {
  .container[page-name=other] section.contents .contents__column {
    display: flex;
    --gap: var(--size-8);
    flex-direction: column;
    gap: var(--gap);
  }
}
.container[page-name=other] section.contents .parts-section-header {
  grid-area: contents;
}
.container[page-name=other] section.contents .contents__column__img {
  width: 100%;
  height: 100%;
  grid-area: img;
  max-height: 320rem;
}
@media (max-width: 1200px) {
  .container[page-name=other] section.contents .contents__column__img {
    height: auto;
    aspect-ratio: 16/9;
    max-height: 100%;
  }
}
.container[page-name=other] section.contents .contents__column__links {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
  grid-area: links;
}

.container[page-name=privacy] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=privacy] section.contents {
    margin-top: var(--size-9);
  }
}
.container[page-name=privacy] section.contents .contents__column:not(:first-child) {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=privacy] section.contents .contents__column:not(:first-child) {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=privacy] section.contents .contents__column:not(:first-child) {
    --padding-border: var(--size-11);
    margin-top: var(--padding-border);
    border-top: 1px solid var(--color-gray-100);
    padding-top: var(--padding-border);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .container[page-name=privacy] section.contents .contents__column:not(:first-child) {
    --padding-border: var(--size-11);
  }
}
.container[page-name=privacy] section.contents .contents__column__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 750px) {
  .container[page-name=privacy] section.contents .contents__column__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=privacy] section.contents .contents__column__body {
  margin-top: var(--size-10);
}
.container[page-name=privacy] section.contents .contents__column__body > * {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
.container[page-name=privacy] section.contents .contents__column__body ol {
  list-style-type: decimal;
  padding-left: 23rem;
}
.container[page-name=privacy] section.contents .contents__column__body ul {
  list-style-type: disc;
  padding-left: 23rem;
}
.container[page-name=privacy] section.contents .contents__column__body a {
  text-decoration: underline;
}

.container[page-name=qa] nav.header-nav {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
  margin-bottom: var(--size-12);
  display: flex;
  --gap: var(--size-9);
  flex-direction: row;
  gap: var(--gap);
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .container[page-name=qa] nav.header-nav {
    gap: var(--size-4) var(--size-9);
  }
}
@media (max-width: 750px) {
  .container[page-name=qa] nav.header-nav {
    display: flex;
    --gap: var(--size-4);
    flex-direction: column;
    gap: var(--gap);
    margin-top: var(--size-9);
    margin-bottom: var(--size-11);
  }
}
.container[page-name=qa] nav.header-nav .header-nav__item {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-orange-100);
  display: flex;
  --gap: var(--size-5);
  flex-direction: row;
  gap: var(--gap);
  align-items: center;
}
@media (max-width: 750px) {
  .container[page-name=qa] nav.header-nav .header-nav__item svg {
    width: 10rem;
    height: 10rem;
  }
}
.container[page-name=qa] nav.header-nav .header-nav__item {
  transition: color 0.2s linear;
}
.container[page-name=qa] nav.header-nav .header-nav__item path {
  transition: fill 0.2s linear;
}
@media (hover: hover) and (pointer: fine) {
  .container[page-name=qa] nav.header-nav .header-nav__item:hover {
    color: var(--color-black-100);
  }
  .container[page-name=qa] nav.header-nav .header-nav__item:hover path {
    fill: var(--color-black-100);
  }
}
.container[page-name=qa] section.contents {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
}
.container[page-name=qa] section.contents:not(:first-of-type) {
  --padding-border: var(--size-12);
  margin-top: var(--padding-border);
  border-top: 1px solid var(--color-gray-100);
  padding-top: var(--padding-border);
}
@media (max-width: 750px) {
  .container[page-name=qa] section.contents:not(:first-of-type) {
    --padding-border: var(--size-11);
  }
}
@media (max-width: 750px) {
  .container[page-name=qa] section.contents {
    --padding-border: var(--size-11);
  }
}
.container[page-name=qa] section.contents .contents__title {
  line-break: loose;
  font-size: var(--text-size-larger-large);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: var(--size-10);
}
@media (max-width: 750px) {
  .container[page-name=qa] section.contents .contents__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    margin-bottom: var(--size-9);
  }
}
.container[page-name=qa] section.contents .contents__list {
  display: flex;
  --gap: var(--size-10);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=qa] section.contents .contents__list {
    --gap: var(--size-9);
  }
}
.container[page-name=qa] section.contents .contents__column {
  display: flex;
  --gap: var(--size-6);
  flex-direction: column;
  gap: var(--gap);
}
@media (max-width: 750px) {
  .container[page-name=qa] section.contents .contents__column {
    --gap: var(--size-3);
  }
}
.container[page-name=qa] section.contents .contents__column__title {
  line-break: loose;
  font-size: var(--text-size-larger-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: var(--size-8);
  border-left: 3rem solid var(--color-orange-100);
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=qa] section.contents .contents__column__title {
    line-break: loose;
    font-size: var(--text-size-middle);
    font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 2;
    letter-spacing: 0.05em;
    padding-left: var(--size-5);
  }
}
.container[page-name=qa] section.contents .contents__column__body {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}

.container[page-name=search] section.search, .container[page-name=en-search] section.search {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--size-12);
}
@media (max-width: 750px) {
  .container[page-name=search] section.search, .container[page-name=en-search] section.search {
    margin-top: var(--size-9);
  }
}
.container[page-name=search] section.search .gsc-control-cse, .container[page-name=en-search] section.search .gsc-control-cse {
  padding: 0;
}
.container[page-name=search] section.search .gsc-control-cse .gsc-selected-option-container, .container[page-name=en-search] section.search .gsc-control-cse .gsc-selected-option-container {
  width: fit-content;
}
.container[page-name=search] section.search .gsc-control-cse .gsc-selected-option, .container[page-name=en-search] section.search .gsc-control-cse .gsc-selected-option {
  white-space: nowrap;
}

.container[page-name=unknown] section.error {
  --margin-inline: var(--margin-2);
  max-width: var(--max-width, 1580px);
  width: calc(100vw - var(--margin-inline) * 2);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--size-7);
  padding-right: var(--size-7);
}
@media (min-width: 751px) {
  .container[page-name=unknown] section.error {
    margin-top: 87rem;
  }
}
@media (max-width: 750px) {
  .container[page-name=unknown] section.error {
    padding-left: var(--size-4);
    padding-right: var(--size-4);
  }
}
.container[page-name=unknown] section.error .error__header {
  display: flex;
  --gap: 0;
  flex-direction: column;
  gap: var(--gap);
}
.container[page-name=unknown] section.error .error__title {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-orange-100);
}
@media (max-width: 750px) {
  .container[page-name=unknown] section.error .error__title {
    line-break: loose;
    font-size: var(--text-size-huge-middle);
    font-family: "Cormorant Infant", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
  }
}
.container[page-name=unknown] section.error .error__text {
  line-break: loose;
  font-size: var(--text-size-huge);
  font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  .container[page-name=unknown] section.error .error__text {
    font-size: 24rem;
    font-family: YakuHanMP, "Zen Old Mincho", YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    line-height: normal;
    line-break: loose;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
}
.container[page-name=unknown] section.error .error__message {
  line-break: loose;
  font-size: var(--text-size-middle);
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Yu Gothic Medium", "Yu Gothic", YuGothic, "A+EqpB-游ゴシック体 Pr6N M", selif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: normal;
  line-break: loose;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 750px) {
  .container[page-name=unknown] section.error .error__message {
    margin-top: var(--size-6);
  }
}

@media (min-width: 751px) {
  .container[page-name=index] section.info, .container[page-name=index] section.about {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=about] section.about, .container[page-name=about] section.context, .container[page-name=about] section.docs, .container[page-name=about] section.forms, .container[page-name=about] section.contents {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=about] section.docs, .container[page-name=about] section.forms, .container[page-name=about] section.contents {
    border: none;
    padding-top: 0;
  }
  .container[page-name=about] section.docs::before, .container[page-name=about] section.forms::before, .container[page-name=about] section.contents::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
  }
  .container[page-name=about] section.contents::before {
    margin-bottom: 0;
  }
  .container[page-name=foundation] section.base-foundation-information {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=foundation-greeting] section.contents, .container[page-name=foundation-greeting] section.people {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=foundation-greeting] section.contents:not(:nth-of-type(1)) {
    border: none;
    padding-top: 0;
  }
  .container[page-name=foundation-greeting] section.contents:not(:nth-of-type(1))::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
  }
  .container[page-name=foundation-greeting] section.people .people__title,
  .container[page-name=foundation-greeting] section.people .people-item {
    width: 100%;
  }
  .container[page-name=foundation-overview] section {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=foundation-overview] section.about {
    margin-top: var(--size-12);
  }
  .container[page-name=foundation-overview] section.base-nav {
    max-width: 1440px;
  }
  .container[page-name=foundation-overview] section.history .history__title {
    width: 100%;
  }
  .container[page-name=foundation-overview] section.overview, .container[page-name=foundation-overview] section.history {
    border: none;
    padding-top: 0;
  }
  .container[page-name=foundation-overview] section.overview::before, .container[page-name=foundation-overview] section.history::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
  }
  .container[page-name=foundation-documents] section.top, .container[page-name=foundation-documents] section.fiscal-year {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=foundation-documents] section.fiscal-year {
    border: none;
    padding-top: 0;
  }
  .container[page-name=foundation-documents] section.fiscal-year::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
  }
  .container[page-name=info-list] form.info, .container[page-name=info-en-list] form.info {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=info-list] section.info-list, .container[page-name=info-en-list] section.info-list {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=info-single] section.info, .container[page-name=info-single] section.body, .container[page-name=info-en-single] section.info, .container[page-name=info-en-single] section.body {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=info-single] .page-header, .container[page-name=info-en-single] .page-header {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=info-single] nav.footer-nav, .container[page-name=info-en-single] nav.footer-nav {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    margin-top: 120rem;
  }
  .container[page-name=qa] nav.header-nav {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=qa] section.contents {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=qa] section.contents:not(:nth-of-type(1)) {
    border: none;
    padding-top: 0;
  }
  .container[page-name=qa] section.contents:not(:nth-of-type(1))::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
  }
  .container[page-name=other] section.contents {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=contact] section.head, .container[page-name=contact] section.info, .container[page-name=contact] section.contact, .container[page-name=contact] section.confirm {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=contact-thanks] section.thanks {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=accessibility] section.contents {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=search] section.search,
  .container[page-name=en-search] section.search {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=awards] section.notice, .container[page-name=awards] section.info, .container[page-name=awards] section.about {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=awards] section.feature, .container[page-name=awards] section.entry, .container[page-name=awards] section.feature, .container[page-name=awards] section.entry {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    border: none;
    padding-top: 0;
  }
  .container[page-name=awards] section.feature::before, .container[page-name=awards] section.entry::before, .container[page-name=awards] section.feature::before, .container[page-name=awards] section.entry::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
    margin-bottom: var(--padding-border);
  }
  .container[page-name*=awards] section.about, .container[page-name*=awards] section.application,
  .container[page-name=awards-culture-tech] section.about,
  .container[page-name=awards-culture-tech] section.application {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    border: none;
    padding-top: 0;
  }
  .container[page-name*=awards] section.about::before, .container[page-name*=awards] section.application::before,
  .container[page-name=awards-culture-tech] section.about::before,
  .container[page-name=awards-culture-tech] section.application::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
    margin-bottom: var(--size-8);
  }
  .container[page-name*=awards] .application-link,
  .container[page-name=awards-culture-tech] .application-link {
    width: calc(100% - 40px);
    max-width: 1024px;
  }
  .container[page-name=awards-contents] section.about::before,
  .container[page-name=awards-culture-tech] section.about::before {
    display: none;
  }
  .container[page-name=awards-gallery] nav.nav, .container[page-name=awards-gallery] nav.social {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=awards-gallery] hgroup.header {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=awards-gallery] section.first, .container[page-name=awards-gallery] section.contents {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=awards-gallery] section.contents .contents__title {
    width: 100%;
  }
  .container[page-name=awards-gallery] section.contents .contents__child__most .parts-award-item__title-list {
    flex-grow: 1;
  }
  .container[page-name=gallery-single] hgroup.header {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=gallery-single] nav.nav {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=gallery-single] section.overview, .container[page-name=gallery-single] section.other {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=grants] section.notice, .container[page-name=grants] section.info, .container[page-name=grants] section.about {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=grants] section.docs, .container[page-name=grants] section.sector {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    border: none;
    padding-top: 0;
  }
  .container[page-name=grants] section.docs::before, .container[page-name=grants] section.sector::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
    margin-bottom: var(--padding-border);
  }
  .container[page-name=grants] section.base-magazine-section {
    border-top: 0;
  }
  .container[page-name=grants-child] nav.page-nav {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=grants-child] section.overview {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=grants-child] section.ex-subjects, .container[page-name=grants-child] section.latest, .container[page-name=grants-child] section.range, .container[page-name=grants-child] section.adoption {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    border: none;
    padding-top: 0;
  }
  .container[page-name=grants-child] section.ex-subjects::before, .container[page-name=grants-child] section.latest::before, .container[page-name=grants-child] section.range::before, .container[page-name=grants-child] section.adoption::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
    margin-bottom: var(--padding-border);
  }
  .container[page-name=grants-child] section.adoption::before {
    margin-bottom: 32rem;
  }
  .container[page-name=grants-child] section.range::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-top: var(--padding-border);
  }
  .container[page-name=grants-child] section.docs {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    border: 0;
    padding-top: 0;
  }
  .container[page-name=forum] section.notice, .container[page-name=forum] section.info, .container[page-name=forum] section.about {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=forum] section.program, .container[page-name=forum] section.district, .container[page-name=forum] section.whole {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    border: none;
    position: relative;
  }
  .container[page-name=forum] section.program::before, .container[page-name=forum] section.district::before, .container[page-name=forum] section.whole::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
    margin-bottom: 0;
    position: absolute;
    top: 0;
  }
  .container[page-name=past-forums-list] section.info {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=magazine-list] section.special, .container[page-name=magazine-list] section.magazine-list {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=magazine-list] section.special {
    border: none;
    padding-bottom: 0;
  }
  .container[page-name=magazine-list] form.magazine-nav {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    padding-top: 0;
    margin-top: var(--size-11);
  }
  .container[page-name=magazine-list] form.magazine-nav::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
    margin-bottom: var(--size-6);
  }
  .container[page-name=magazine-special] section.notice, .container[page-name=magazine-special] section.magazine-list {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=magazine-single] hgroup.header {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=magazine-single] section.body, .container[page-name=magazine-single] section.relevance, .container[page-name=magazine-single] section.other {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=magazine-single] nav.bottom-nav {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name*=en] section.info, .container[page-name*=en] section.about, .container[page-name*=en] section.contents, .container[page-name*=en] section.notice, .container[page-name*=en] section.app {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .container[page-name=en-about] section.contents:not(:nth-of-type(2)) {
    border: none;
    padding-top: 0;
  }
  .container[page-name=en-about] section.contents:not(:nth-of-type(2))::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
  }
  .container[page-name=en-grants] section.guidelines {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    border: none;
    padding-top: 0;
  }
  .container[page-name=en-grants] section.guidelines::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
  }
  .container[page-name=privacy] section.contents {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  nav.base-breadcrumbs {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  section.base-magazine-section:after {
    max-width: calc(100% - 40px);
    width: 1024px;
    padding-left: 0;
    padding-right: 0;
    height: 2px;
    border-radius: 1px;
  }
  section.base-nav {
    max-width: 1440px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  section.base-foundation-information {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
  .parts-pagination .parts-pagination__item {
    width: auto;
    min-width: 40px;
  }
  .parts-pagination .parts-pagination__item--current + * + * {
    margin: 0;
  }
  .parts-pagination .parts-pagination__item--current + * + *:before {
    padding-right: 16rem;
    box-sizing: border-box;
  }
  section.base-awards-history {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
    border: none;
    padding-top: 0;
  }
  section.base-awards-history::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-gray-100);
    margin-bottom: var(--size-12);
    margin-bottom: var(--padding-border);
  }
  .base-gallery {
    max-width: 1024px;
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: content-box;
  }
}
@media (max-width: 1200px) and (min-width: 751px) {
  a.parts-award-item--wide {
    flex-direction: row;
    gap: var(--column-gap);
  }
  a.parts-award-item--wide .parts-award-item__thumbnail {
    --fix-width: calc(var(--column-width-size) * 7 + var(--column-gap) * 6);
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents .parts-award-item {
    max-width: 100%;
  }
}
@media (max-width: 1200px) and (min-width: 751px) {
  a.parts-award-item--wide {
    flex-direction: row;
    gap: var(--column-gap);
  }
  a.parts-award-item--wide .parts-award-item__thumbnail {
    --fix-width: calc(var(--column-width-size) * 7 + var(--column-gap) * 6);
    width: var(--fix-width);
    max-width: var(--fix-width);
    min-width: var(--fix-width);
  }
}
@media (max-width: 750px) {
  .container[page-name=awards-gallery] section.contents .parts-award-item {
    max-width: 100%;
  }
}