@charset "UTF-8";
@layer block {
  [data-field-unique-id] .b-accordion .b-accordion__title::after {
    -webkit-transform: rotate(0) !important;
            transform: rotate(0) !important;
  }
  [data-field-unique-id] .b-accordion .b-accordion__contents {
    height: auto !important;
  }
  .b-accordion__item {
    padding: clamp(1.5rem, 2.7777777778vw, 2.5rem) 0;
    border-bottom: 1px solid #d9d9d9;
  }
  .b-accordion__item:not(.is-open) .b-accordion__title::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .b-accordion__item:not(.is-open) .b-accordion__contents {
    height: 0;
  }
  .b-accordion__title {
    position: relative;
    padding-right: 4.25rem;
    font-weight: bold;
  }
  .b-accordion__title::before, .b-accordion__title::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    margin: auto;
  }
  .b-accordion__title:hover {
    cursor: pointer;
  }
  .b-accordion__contents {
    height: var(--accordion-h, 0);
    overflow: hidden;
    -webkit-transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    transition: height 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
    line-height: 1.8;
  }
  .b-accordion__contents > *:first-child {
    padding-top: 2em;
  }
  .b-accordion__contents > *:not(:first-child) {
    margin-top: 2em;
  }
}
@layer block {
  .b-catchphrase {
    font-size: clamp(1.5rem, 2.2222222222vw, 2rem);
    font-weight: bold;
    line-height: 1.5;
  }
}
@layer block {
  .b-definitation-list {
    display: grid;
    gap: 0.5rem 2rem;
    line-height: 1.8;
  }
  @container b-section (max-width: 768px) {
    .b-definitation-list .b-definitation-list__description {
      padding-bottom: 1em;
    }
  }
  @container b-section (min-width: 768px) {
    .b-definitation-list {
      gap: 1.5rem 2rem;
      grid-template-columns: minmax(80px, auto) 1fr;
    }
  }
  .b-definitation-list__term {
    font-weight: bold;
  }
}
@layer component {
  .c-svg {
    display: block;
    fill: var(--svg-fill, #000);
    stroke: var(--svg-stroke, none);
    -webkit-transition-property: fill, stroke;
    transition-property: fill, stroke;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .c-svg--arrow {
    aspect-ratio: 38/32;
  }
  .c-svg--angle-bracket {
    aspect-ratio: 21/32;
  }
  .c-svg--bg-arch {
    aspect-ratio: 480/32;
  }
  .c-svg--target-blank {
    aspect-ratio: 38/32;
  }
}
@layer component {
  .c-square-icon {
    position: relative;
    width: var(--square-icon-size, 20px);
    height: var(--square-icon-size, 20px);
    border-radius: calc(var(--square-icon-size, 20px) / 5);
    border: 1px solid var(--square-icon-bdc, #d9d9d9);
    background-color: var(--square-icon-bgc, transparent);
    -webkit-transition-property: border-color, background-color;
    transition-property: border-color, background-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    overflow: hidden;
  }
  .c-square-icon--borderless {
    border-color: transparent;
  }
  .c-square-icon svg {
    width: 100%;
    fill: var(--square-icon-fill, var(--clr--theme-primary));
  }
  .c-square-icon .c-svg--arrow {
    width: calc(var(--square-icon-size, 20px) / 2);
  }
  .c-square-icon .c-svg--angle-bracket {
    width: calc(var(--square-icon-size, 20px) / 3.334);
  }
  .c-square-icon .c-svg--target-blank {
    width: calc(var(--square-icon-size, 20px) / 2);
  }
  .c-square-icon[data-variant=plus-minus]::before, .c-square-icon[data-variant=plus-minus]::after {
    content: "";
    display: block;
    width: calc(var(--square-icon-size, 20px) / 2.5);
    height: 1px;
    position: absolute;
    inset: 0;
    margin: auto;
    background-color: var(--square-icon-color, currentColor);
    border-radius: 2px;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .c-square-icon[data-variant=plus-minus]::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@layer block {
  .b-file-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    padding: 2.5rem;
    border: 2px solid #d9d9d9;
    border-radius: 0.5rem;
    position: relative;
  }
  .b-file-link:has(a[href$=pdf])::before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url("/assets/img/common/icon-pdf.png") center center no-repeat;
    background-size: contain;
  }
  .b-file-link__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .b-file-link__content a {
    font-weight: bold;
  }
  .b-file-link__content a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
}
@layer block {
  .b-grid {
    display: grid;
    gap: 2rem clamp(1.25rem, 2.7777777778vw, 2.5rem);
  }
  @container b-section (min-width: 768px) {
    .b-grid--2col {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  .b-grid__item > *:not(:first-child) {
    margin-top: 0.75em;
  }
}
@layer block {
  .b-image-text {
    --stack-space: clamp(1.5rem, 2.7777777778vw, 2.5rem);
    --image-text-gap-x: clamp(1.75rem, 2.7777777778vw, 2.5rem);
    --image-text-gap-y: 0;
    container-name: b-image-text;
    container-type: inline-size;
    display: grid;
    gap: var(--image-text-gap-y) var(--image-text-gap-x);
  }
  @container b-section (max-width: 768px) {
    .b-image-text {
      grid-template-rows: auto auto auto;
      grid-template-columns: auto;
      grid-template-areas: "TITLE" "TEXT" "IMG";
    }
    .b-image-text + * {
      --stack-space: 3rem;
    }
    .b-image-text:not(:has(.b-image-text__title)) {
      grid-template-rows: auto auto;
      grid-template-areas: "TEXT" "IMG";
    }
    .b-image-text:not(:has(.b-image-text__img)) {
      grid-template-rows: auto auto;
      grid-template-areas: "TITLE" "TEXT";
    }
    .b-image-text:not(:is(:has(.b-image-text__title), :has(.b-image-text__img))) {
      grid-template-rows: auto;
      grid-template-areas: "TEXT";
    }
    .b-image-text .b-image-text__title + * {
      margin-top: 0.75rem;
    }
    .b-image-text .b-image-text__description + * {
      margin-top: 2rem;
    }
  }
  @container b-section (min-width: 768px) {
    .b-image-text {
      grid-template-rows: auto 1fr;
      grid-template-columns: 1fr minmax(180px, -webkit-max-content);
      grid-template-columns: 1fr minmax(180px, max-content);
      grid-template-areas: "TITLE IMG" "TEXT IMG";
    }
    .b-image-text:not(:has(.b-image-text__title)) {
      --image-text-gap-y: 0;
      grid-template-rows: auto;
      grid-template-areas: "TEXT IMG";
    }
    .b-image-text:not(:has(.b-image-text__img)) {
      --image-text-gap-x: 0;
      grid-template-columns: auto;
    }
  }
  .b-image-text__title {
    grid-area: TITLE;
    font-weight: 700;
  }
  .b-image-text__title:empty {
    display: none;
  }
  .b-image-text__description {
    grid-area: TEXT;
  }
  .b-image-text__img {
    grid-area: IMG;
  }
  .b-image-text__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  @container b-section (max-width: 768px) {
    .b-image-text__img img {
      margin-inline: auto;
    }
  }
  @container b-section (min-width: 768px) {
    .b-image-text__img {
      max-width: calc(50cqw - 1.25rem);
    }
  }
  .b-image-text__img figcaption {
    font-size: clamp(0.75rem, 0.9027777778vw, 0.8125rem);
    margin-top: 1em;
  }
}
@layer block {
  .b-link-banner {
    border: 1px solid #dddddd;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
  }
  @container b-section (max-width: 768px) {
    .b-link-banner .b-link-banner__grid {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .b-link-banner .b-link-banner__img img {
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }
  }
  @container b-section (min-width: 768px) {
    .b-link-banner .b-link-banner__img {
      width: clamp(15rem, 20.8333333333vw, 18.75rem);
    }
    .b-link-banner .b-link-banner__img img {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
  }
  .b-link-banner__cell {
    gap: 1rem;
  }
  .b-link-banner__cell > *:not(:first-child) {
    margin-top: 1em;
  }
  .b-link-banner__cell:not(:has(.b-link-banner__img)) {
    padding: clamp(1.5rem, 2.7777777778vw, 2.5rem);
  }
  .b-link-banner__img {
    height: 100%;
  }
  .b-link-banner__img a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }
  .b-link-banner__img img {
    width: 100%;
    height: auto !important;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
  .b-link-banner__title {
    font-size: clamp(1.125rem, 1.3888888889vw, 1.25rem);
    font-weight: 500;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-all;
  }
  @container b-section (min-width: 768px) {
    .b-link-banner__title {
      -webkit-line-clamp: 2;
    }
  }
  .b-link-banner__subtitle {
    font-size: clamp(0.75rem, 0.9027777778vw, 0.8125rem);
    font-weight: 500;
    color: #00288c;
  }
}
@layer block {
  .b-notice {
    --stack-space: 1.5rem;
    font-size: 0.875rem;
  }
}
@layer block {
  .b-overflow-contents {
    position: relative;
  }
  .b-overflow-contents::before, .b-overflow-contents::after {
    content: "";
    font-size: 0.875rem;
    position: absolute;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 48px;
    pointer-events: none;
    color: #808080;
    font-weight: bold;
    z-index: 1;
    -webkit-transition: opacity 0.3s ease-out 0s;
    transition: opacity 0.3s ease-out 0s;
  }
  .b-overflow-contents::before {
    content: "◀";
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.1)));
    background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    opacity: 0;
  }
  .b-overflow-contents::after {
    content: "▶";
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(rgb(255, 255, 255)), color-stop(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.1)));
    background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.1));
    opacity: 0;
  }
  .b-overflow-contents > *:not(:first-child) {
    margin-top: var(--stack-space, 2.5em);
  }
  .b-overflow-contents.is-initialized.is-scrolling-x::before {
    opacity: 1;
  }
  .b-overflow-contents.is-initialized:not(.is-scrolled-x)::after {
    opacity: 1;
  }
  .b-overflow-contents__inner {
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
  }
  .b-overflow-contents__content {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  @container b-section (max-width: 768px) {
    .b-overflow-contents__content > * {
      min-width: 576px;
    }
  }
  @container b-section (min-width: 768px) {
    .b-overflow-contents__content > * {
      min-width: 900px;
    }
  }
}
.scroll-wrapper {
  position: relative;
}

.scroll-container {
  overflow-x: auto;
  white-space: nowrap;
}

@layer block {
  .b-section {
    container-name: b-section;
    container-type: inline-size;
  }
  .b-section + .b-section {
    margin-top: clamp(3rem, 5.5555555556vw, 5rem);
  }
  .b-section__heading {
    font-size: clamp(1.25rem, 1.6666666667vw, 1.5rem);
    font-weight: bold;
  }
  .b-section__contents {
    position: relative;
    padding-top: clamp(1.75rem, 2.7777777778vw, 2.5rem);
  }
  .b-section__contents:not(:first-child) {
    margin-top: clamp(2rem, 3.3333333333vw, 3rem);
  }
  .b-section__contents > *:not(:first-child) {
    margin-top: var(--stack-space, clamp(2rem, 2.7777777778vw, 2.5rem));
  }
  .b-section__contents .deck-embed,
  .b-section__contents .speakerdeck-iframe {
    max-width: 1024px;
  }
  .b-section__contents .deck-embed .speakerdeck-embed-wrapper,
  .b-section__contents .speakerdeck-iframe .speakerdeck-embed-wrapper {
    --speakerdec-aspect-ratio: unset;
  }
  .b-section__contents .speakerdeck-embed-wrapper {
    height: 100%;
    aspect-ratio: var(--speakerdec-aspect-ratio, 16/9);
  }
  .b-section__contents .speakerdeck-embed-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
  }
  :where(.b-section__contents > :is(figure, picture, img)) {
    --stack-space: 3rem;
  }
  :where(.b-section__contents p) {
    line-height: 1.8;
  }
  :where(.b-section__contents p):not([class]) {
    --stack-space: 1.5rem;
  }
  :where(.b-section__contents a) {
    text-decoration: underline;
  }
  :where(.b-section__contents a):hover {
    text-decoration: none;
  }
  :where(.b-section__contents :is(ul, ol):not([class])) {
    padding-left: 1.375em;
    line-height: 1.8;
  }
  :where(.b-section__contents :is(ul, ol):not([class])) li {
    list-style: inherit;
  }
  :where(.b-section__contents :is(ul, ol):not([class])) li:not(:first-of-type) {
    margin-top: 0.5em;
  }
  :where(.b-section__contents :is(ul, ol):not([class])) li > * {
    margin-top: 0.375em;
  }
  :where(.b-section__contents ul) {
    list-style: outside disc;
  }
  :where(.b-section__contents ul) ul {
    list-style-type: circle;
  }
  :where(.b-section__contents ul) ul ul {
    list-style-type: square;
  }
  :where(.b-section__contents ol) {
    list-style: outside decimal;
  }
  :where(.b-section__contents ol) ol {
    list-style-type: decimal;
  }
  :where(.b-section__contents ol) ol ol {
    list-style-type: lower-alpha;
  }
  :where(.b-section__contents table) {
    border: 1px solid #d9d9d9;
    line-height: 1.8;
  }
  :where(.b-section__contents table) thead:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
  }
  :where(.b-section__contents table) thead:not(:has(tr[style*=background-color])) {
    background-color: var(--table-thead-bgc, #f0f0f0);
  }
  :where(.b-section__contents table) tbody tr:not(:first-child) {
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #d9d9d9;
  }
  :where(.b-section__contents table) th,
  :where(.b-section__contents table) td {
    padding: 1.25rem;
  }
  :where(.b-section__contents table) th:not(:last-child),
  :where(.b-section__contents table) td:not(:last-child) {
    border-right: 1px solid transparent;
  }
  :where(.b-section__contents table):has(tr > td:nth-child(3)) td {
    min-width: 196px;
  }
  :where(.b-section__contents img) {
    border-radius: 0.5rem;
  }
  :where(.b-section__contents figcaption) {
    font-size: clamp(0.75rem, 0.9027777778vw, 0.8125rem);
    margin-top: 1em;
  }
  .b-section__contents::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, #00288c 0, #00288c 30px, #ccc 30px, #ccc 100%);
  }
}
@layer block {
  .b-subtitle {
    font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
    font-weight: 700;
  }
  .b-subtitle + * {
    --stack-space: 0.75em;
  }
}
@layer block {
  .b-title {
    font-size: clamp(1rem, 1.3888888889vw, 1.25rem);
    font-weight: 500;
  }
}/*# sourceMappingURL=blocks.css.map */