/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
:after,
:before {
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
  min-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
}
main {
  display: block;
}
address,
blockquote,
dl,
figure,
form,
iframe,
p,
pre,
table {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
hr {
  border-top-width: 1px;
  box-sizing: content-box;
  clear: both;
  color: inherit;
  height: 0;
  margin: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, 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;
}
embed,
iframe,
img,
object,
svg {
  vertical-align: bottom;
}
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  cursor: pointer;
}
[type="button"]:disabled,
[type="reset"]:disabled,
[type="submit"]:disabled,
button:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
fieldset,
option {
  padding: 0;
}
fieldset {
  margin: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[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;
}
[type="number"] {
  -moz-appearance: textfield;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-collapse: collapse;
  border-color: inherit;
}
caption {
  text-align: left;
}
td,
th {
  padding: 0;
  vertical-align: top;
}
th {
  font-weight: 700;
  text-align: left;
}
/* ==========================================================================
   Base
   ========================================================================== */

:root {
  --red: #8e1728;
  --white: #fffcf7;
  --card: #fffefc;
  --gold-light: #ffd790;
  --gold-note: #c29b60;
  --navy: #13294b;
}
body {
  background: #fff;
  color: var(--navy);
  font-family:
    Avenir,
    Noto Sans JP,
    sans-serif;
}
/* Scroll reveal animation */
html.js-enabled .js-reveal,
html.js-enabled [data-reveal] {
  --reveal-duration: 1.15s;
  --reveal-ease: cubic-bezier(0.16, 0.8, 0.22, 1);
  --reveal-distance: 28px;
  --reveal-delay: 0s;
  filter: blur(6px);
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transform-origin: center;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
    filter var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
  will-change: opacity, transform, filter;
}
html.js-enabled .js-reveal.is-visible,
html.js-enabled [data-reveal].is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}
html:not(.js-enabled) .js-reveal,
html:not(.js-enabled) [data-reveal] {
  filter: none;
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js-enabled .js-reveal,
  html.js-enabled [data-reveal] {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ==========================================================================
   Main Visual
   ========================================================================== */

.mv {
  aspect-ratio: 1920/1080;
  background-image: url(../images/mv/mv_pc.jpg);
  background-position: 50%;
  background-size: cover;
  padding: 115px 100px 80px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv {
    aspect-ratio: 375/590;
    background-image: url(../images/mv/mv_sp.jpg);
    padding: 108px 20px 0;
    width: 100%;
  }
}
.mv__inner {
  aspect-ratio: 1520/885;
  margin-inline: auto;
  max-width: 1520px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    aspect-ratio: auto;
    height: 100%;
  }
}
.mv__title {
  left: 0;
  position: absolute;
  top: 15.819%;
  width: 49.21%;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mv__title {
    top: 0;
    width: 57.91045%;
  }
}
.mv__button {
  --close-button-size: 26px;
  left: 0;
  min-width: 340px;
  opacity: 1;
  position: absolute;
  top: 48.135%;
  transform: scale(1);
  transform-origin: center;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  width: 32.171%;
  z-index: 3;
}
.mv__button > a {
  position: relative;
}
.mv__button-image {
  display: block;
  transition: opacity 0.3s ease;
  width: 100%;
}
.mv__button-image--active {
  inset: 0;
  opacity: 0;
  position: absolute;
}
.mv__button > a:hover .mv__button-image--default,
.mv__button > a:focus-visible .mv__button-image--default {
  opacity: 0;
}
.mv__button > a:hover .mv__button-image--active,
.mv__button > a:focus-visible .mv__button-image--active {
  opacity: 1;
}
.mv__button::after {
  background: url(../images/mv/button-x.svg) center / contain no-repeat;
  content: "";
  cursor: pointer;
  height: var(--close-button-size);
  pointer-events: auto;
  position: absolute;
  right: calc(var(--close-button-size) / -2);
  top: calc(var(--close-button-size) / -2);
  width: var(--close-button-size);
}
.mv__button.is-dismissing {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}
@media screen and (max-width: 767px) {
  .mv__button {
    min-width: 0;
    top: 36%;
    width: 47.164%;
  }
}
.mv__logo {
  left: -60px;
  min-width: 280px;
  position: absolute;
  top: -65px;
  width: 21.44737%;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .mv__logo {
    left: 0;
    min-width: 0;
    position: absolute;
    top: -88px;
    width: 176px;
  }
}
.mv__douzou {
  aspect-ratio: 672/885;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__douzou {
    aspect-ratio: 240/316;
    bottom: 20%;
    height: auto;
    position: absolute;
    right: 0;
    top: auto;
    width: 71.64179%;
  }
}
.mv__scroll {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 1.18421%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    bottom: -5.67164%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 21.79104%;
    z-index: 2;
  }
}
.mv__floting-cta {
  bottom: 80px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  position: fixed;
  right: 0;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .mv__floting-cta {
    background-color: #fff;
    bottom: 0;
    gap: 7px;
    grid-template-columns: 1fr 1fr;
    padding: 7px;
    width: 100%;
  }
}
.mv__floting-cta-item {
  max-width: 76px;
  width: 8.44vh;
}
@media screen and (max-width: 767px) {
  .mv__floting-cta-item {
    margin: 0 auto;
    max-width: 176px;
    width: 100%;
  }
}
.mv__floting-cta-item a {
  transition: opacity 0.3s ease;
}
.mv__floting-cta-item a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: revert;
  }
}

/* ==========================================================================
   About / Participating Companies
   ========================================================================== */

.facilitator__photo .c-image-image,
.message__image .c-image-image {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.background-red {
  background: var(--red);
  display: flex;
  justify-content: center;
  padding: 120px 80px;
}
.info {
  max-width: 1920px;
  width: 100%;
}
.info__inner {
  gap: 140px;
}
.about,
.info__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about {
  gap: 120px;
  max-width: 1080px;
}
.about__intro {
  display: flex;
  flex-direction: column;
  gap: 72px;
  width: 100%;
}
.about__lead {
  color: var(--white);
  font-size: 18px;
  line-height: 2;
  margin: 0;
}
.info-card {
  background: var(--card);
  background-image:
    url(../images/info/corner-tl.svg), url(../images/info/corner-tr.svg),
    url(../images/info/corner-bl.svg), url(../images/info/corner-br.svg);
  background-position:
    0 0,
    100% 0,
    0 100%,
    100% 100%;
  background-position:
    left 8px top 8px,
    right 8px top 8px,
    left 8px bottom 8px,
    right 8px bottom 8px;
  background-repeat: no-repeat;
  background-size: 72px 72px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1080px;
  padding: 60px 80px;
  width: 100%;
}
.section-subheading {
  display: inline-block;
  margin-inline: auto;
  position: relative;
}
.section-subheading:after,
.section-subheading:before {
  background-repeat: repeat-x;
  background-size: auto 13px;
  content: "";
  height: 13px;
  max-width: 500px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  z-index: 0;
}
.section-subheading:before {
  background-image: url(../images/info/title-decoration_left.svg);
  background-position: 100%;
  margin-right: 15px;
  right: 100%;
}
.section-subheading:after {
  background-image: url(../images/info/title-decoration_right.svg);
  background-position: 0;
  left: 100%;
  margin-left: 15px;
}
.section-subheading img,
.section-subheading picture {
  display: block;
  width: 100%;
}
.message {
  display: flex;
  flex-direction: column;
  gap: 56px;
  overflow: hidden;
}
.message,
.message__content {
  align-items: flex-start;
  width: 100%;
}
.message__content {
  display: grid;
  gap: 60px;
  grid-template-columns: 43.4% 1fr;
}
.message__image {
  flex-shrink: 0;
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
}
.message__text {
  width: 100%;
}
.message__text .body {
  line-height: 2;
  margin: 0;
}
.message__text .body,
.speaker {
  color: var(--navy);
  font-size: 16px;
}
.speaker {
  line-height: 1.3;
  margin: 24px 0 0;
  text-align: left;
}
.speaker-text {
  font-size: 12px;
}
.inline-block {
  display: inline-block;
}
.facilitators {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}
.facilitators__head {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.facilitators__note {
  color: var(--gold-note);
  font-size: 12px;
  line-height: 1.3;
  margin: 12px 0 0;
  text-align: center;
}
.facilitators__grid {
  -moz-column-gap: clamp(24px, 5vw, 60px);
  column-gap: clamp(24px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 185px));
  justify-content: center;
  row-gap: 80px;
  width: 100%;
}
.facilitator {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 185px;
  width: 100%;
}
.facilitator__photo {
  aspect-ratio: 1/1;
  width: 100%;
}
.facilitator__name {
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-top: 20px;
  text-align: center;
}
.facilitator__title {
  align-items: center;
  background: var(--navy);
  box-sizing: border-box;
  color: var(--gold-light);
  display: flex;
  height: 58px;
  justify-content: center;
  margin-top: 10px;
}
.facilitator__title p {
  font-size: 12px;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}
.facilitator__title-2 {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}
.facilitator__title-2 span {
  display: block;
  padding-inline: 8px;
}
.facilitator__title-2 span + span {
  border-top: 1px solid currentColor;
  margin-top: 4px;
  padding-top: 4px;
}
.companies {
  gap: 72px;
}
.companies,
.companies__card {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: 1080px;
  width: 100%;
}
.companies__card {
  background: var(--card);
  background-image:
    url(../images/info/corner-tl.svg), url(../images/info/corner-tr.svg),
    url(../images/info/corner-bl.svg), url(../images/info/corner-br.svg);
  background-position:
    0 0,
    100% 0,
    0 100%,
    100% 100%;
  background-position:
    left 8px top 8px,
    right 8px top 8px,
    left 8px bottom 8px,
    right 8px bottom 8px;
  background-repeat: no-repeat;
  background-size: 72px 72px;
  box-sizing: border-box;
  gap: 40px;
  padding: 60px 80px;
}
.companies__header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.companies__subheading {
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.companies__note,
.companies__subheading {
  color: var(--navy);
  margin: 0;
  text-align: center;
}
.companies__note {
  font-size: 12px;
  line-height: 1.3;
}
.companies__list-wrapper {
  max-width: 920px;
  position: relative;
  width: 100%;
}
.companies__list {
  color: var(--navy);
  font-size: 16px;
  line-height: 2;
  margin: 0;
}
.companies__overlay {
  align-items: flex-end;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, #fff 40px, #fff);
  bottom: 0;
  display: none;
  height: 80px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
}
.companies__more {
  align-items: center;
  background: none;
  border: none;
  color: var(--navy);
  display: flex;
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 16px;
  gap: 8px;
  justify-content: center;
  line-height: 1.2;
  margin-inline: auto;
  z-index: 1;
}
.companies__more img {
  display: block;
  height: 11px;
  transition: transform 0.2s ease;
  width: 12px;
}
.companies__list-wrapper.is-expanded {
  max-height: none;
}
.companies__list-wrapper.is-expanded .companies__overlay {
  display: none;
}
@media (max-width: 765px) {
  .background-red {
    padding: 21vw 20px 80px;
  }
  .info__inner {
    gap: 100px;
  }
  .section-label {
    font-size: 28px;
    line-height: 1.2;
    width: 100%;
  }
  .about {
    gap: 80px;
  }
  .about__intro {
    gap: 60px;
  }
  .about__lead {
    font-size: 16px;
  }
  .info-card {
    background-position:
      left 4px top 4px,
      right 4px top 4px,
      left 4px bottom 4px,
      right 4px bottom 4px;
    background-size: 48px 48px;
    gap: 60px;
    padding: 40px 20px;
    width: 100%;
  }
  .message {
    gap: 24px;
  }
  .message__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .message__text {
    order: 1;
    width: 100%;
  }
  .message__image {
    order: 2;
    width: 100%;
  }
  .message__text .body,
  .speaker {
    font-size: 14px;
  }
  .speaker {
    margin-top: 8px;
    text-align: left;
  }
  .speaker-text {
    font-size: 9px;
  }
  .facilitators {
    gap: 24px;
  }
  .facilitators__head {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }
  .facilitators__note {
    font-size: 9px;
    margin: 0;
    text-align: center;
  }
  .facilitators__grid {
    -moz-column-gap: 13px;
    column-gap: 13px;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    row-gap: 50px;
  }
  .facilitator {
    gap: 9px;
    max-width: none;
  }
  .facilitator__photo {
    aspect-ratio: 1/1;
    width: 100%;
  }
  .facilitator__name {
    font-size: 16px;
  }
  .facilitator__title {
    padding: 10px 8px;
  }
  .facilitator__title p {
    font-size: 9px;
    line-height: 1.3;
  }
  .companies {
    gap: 60px;
    width: 100%;
  }
  .companies__card {
    background-position:
      left 4px top 4px,
      right 4px top 4px,
      left 4px bottom 4px,
      right 4px bottom 4px;
    background-size: 48px 48px;
    gap: 23px;
    padding: 40px 20px;
    width: 100%;
  }
  .companies__header {
    gap: 7px;
    max-width: 180px;
    width: 100%;
  }
  .companies__subheading {
    font-size: 20px;
    line-height: 1.4;
  }
  .companies__note {
    font-size: 9px;
  }
  .companies__list-wrapper {
    max-height: 200px;
    overflow: hidden;
    padding-bottom: 40px;
    width: 100%;
  }
  .companies__list-wrapper.is-expanded {
    max-height: none;
  }
  .companies__list {
    font-size: 14px;
  }
  .companies__overlay {
    display: flex;
    padding-right: 0;
  }
}
.companies__more.is-open img {
  transform: rotate(180deg);
}

/* ==========================================================================
   Reports
   ========================================================================== */

.report {
  background: #f5f5f3;
  background-image: url(../images/report/report-pattern-pc.svg);
  background-position: top;
  background-repeat: repeat;
  background-size: auto;
  overflow: hidden;
  padding: 72px 100px 120px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .report {
    background-size: 370%;
  }
}
.report__pattern img {
  display: block;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0;
  width: 100%;
}
.report__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  z-index: 1;
}
.section-label--navy {
  color: var(--navy);
}
.report__latest {
  background: var(--card);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  max-width: 1080px;
  width: 100%;
}
.report__latest-subheading {
  align-items: center;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 24px;
  font-weight: 500;
  height: 60px;
  justify-content: center;
  line-height: 1;
}
.report__latest-content {
  align-items: flex-start;
  -moz-column-gap: 60px;
  column-gap: 60px;
  display: grid;
  grid-template-columns: 1fr 43.4%;
  padding: 60px 80px;
  row-gap: 48px;
}
.report__latest-body {
  color: var(--navy);
  font-size: 16px;
  line-height: 2;
  margin: 0;
  width: 100%;
}
.report__latest-image {
  flex-shrink: 0;
  max-width: 400px;
  width: 100%;
}
.report__latest-image .c-image-image {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.report__latest-button {
  align-items: center;
  background: var(--red);
  background-image:
    url(../images/report/button-corner-tl.svg),
    url(../images/report/button-corner-tr.svg),
    url(../images/report/button-corner-bl.svg),
    url(../images/report/button-corner-br.svg);
  background-position:
    0 0,
    100% 0,
    0 100%,
    100% 100%;
  background-position:
    left 6px top 6px,
    right 6px top 6px,
    left 6px bottom 6px,
    right 6px bottom 6px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: 1px solid var(--red);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: var(--gold-light);
  display: inline-flex;
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 20px;
  font-weight: 500;
  gap: 10px;
  grid-column: 1/3;
  height: 72px;
  justify-content: center;
  margin: 0 auto;
  max-width: 620px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    background-image 0.3s ease,
    border 0.3s ease;
  width: 100%;
}
.report__latest-button img {
  height: 15px;
  transition: all 0.3s ease;
  width: 13px;
}
.report__latest-button:hover {
  background-color: #fffcf7;
  background-image:
    url(../images/report/button-corner-tl-act.svg),
    url(../images/report/button-corner-tr-act.svg),
    url(../images/report/button-corner-bl-act.svg),
    url(../images/report/button-corner-br-act.svg);
  border: 1px solid #8e1728;
  color: #8e1728;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    background-image 0.3s ease,
    border 0.3s ease;
}
.report__latest-button:hover img {
  content: url(../images/report/button-arrow-act.svg);
  transition: all 0.3s ease;
}
.report-archive {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  max-width: 1080px;
  width: 100%;
}
.report-archive__toggle {
  align-items: center;
  background: var(--navy);
  border: none;
  border-radius: 6px 6px 6px 6px;
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 28px;
  font-weight: 500;
  gap: 10px;
  height: 90px;
  justify-content: center;
  position: relative;
  transition: border-radius 0.3s ease;
  width: 100%;
}
.report-archive__toggle:before {
  background-image: url(../images/report/accordion-decoration_pc.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 74px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 151px;
}
.report-archive__toggle img {
  height: 16px;
  transition: transform 0.25s ease;
  width: 16px;
}
.report-archive__panel {
  background: var(--card);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease;
}
.report-archive__panel.is-open {
  opacity: 1;
}
.report-archive__list {
  -moz-column-gap: 160px;
  column-gap: 160px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px 60px 48px;
  position: relative;
}
.report-archive__divider {
  background: #f5f4f2;
  bottom: 48px;
  left: 50%;
  position: absolute;
  top: 40px;
  width: 2px;
}
.report-archive__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.report-archive__column.of-left {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.report-archive__column.of-left .report-archive__link {
  text-align: left;
}
.report-archive__link {
  align-items: center;
  border-bottom: 1px solid #a54553;
  color: var(--red);
  display: inline-flex;
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 16px;
  font-weight: 500;
  gap: 15px;
  line-height: 1;
  padding: 0 2px 6px;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
}
.report-archive__icon {
  background: url(../images/report/pdf-Icon.svg) 50% / contain no-repeat;
  display: inline-block;
  height: 16px;
  width: 14px;
}
.report-archive.is-open .report-archive__panel {
  max-height: 1200px;
}
.report-archive.is-open .report-archive__toggle img {
  transform: rotate(180deg);
}
.report-archive.is-open .report-archive__toggle {
  border-radius: 6px 6px 0 0;
  transition: border-radius 0.3s ease;
}
@media (max-width: 765px) {
  .report {
    padding: 80px 20px;
  }
  .report__inner {
    gap: 60px;
    width: 100%;
  }
  .section-label--navy {
    font-size: 28px;
    line-height: 1.2;
    width: 100%;
  }
  .report__latest {
    width: 100%;
  }
  .report__pattern {
    background-image: url(../images/report/report-pattern-sp.svg);
    background-repeat: repeat;
    background-size: auto;
  }
  .report__latest-subheading {
    font-size: 20px;
    height: 52px;
    line-height: 1.4;
  }
  .report__latest-content {
    display: block;
    gap: 24px;
    padding: 40px 20px;
  }
  .report__latest-body {
    font-size: 14px;
    width: 100%;
  }
  .report__latest-image {
    margin: 24px auto;
    width: 295px;
  }
  .report__latest-button {
    background-position:
      left 3px top 3px,
      right 3px top 3px,
      left 3px bottom 3px,
      right 3px bottom 3px;
    background-size: 18px 18px;
    font-size: 20px;
    height: 72px;
    margin: 0 auto 0px;
    width: 100%;
  }
  .report-archive {
    width: 100%;
  }
  .report-archive__toggle {
    border-radius: 6px 6px 6px 6px;
    font-size: 24px;
    height: 72px;
  }
  .report-archive__toggle:before {
    background-image: url(../images/report/accordion-decoration_sp.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 48px;
    height: 42px;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 87px;
    width: 68px;
  }
  .report-archive__list {
    -moz-column-gap: 0;
    column-gap: 0;
    grid-template-columns: 1fr;
    margin: 0 auto;
    padding: 28px 30px 32px;
    row-gap: 18px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .report-archive__column {
    row-gap: 18px;
    text-align: left;
  }
  .report-archive__divider {
    display: none;
  }
  .report-archive__panel.is-open {
    max-height: 1200px;
  }
  .report-archive__link {
    font-size: 14px;
    padding-bottom: 4px;
  }
}
/* ==========================================================================
   Open Waseda Conference
   ========================================================================== */

.open {
  background: var(--red);
  display: flex;
  justify-content: center;
  padding: 72px 160px 120px;
}
.open__inner {
  gap: 72px;
  max-width: 1920px;
}
.open__blocks,
.open__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.open__blocks {
  gap: 80px;
  max-width: 1080px;
}
.open__block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  overflow-x: hidden;
  width: 100%;
}
.open__subheading {
  display: inline-block;
  margin-inline: auto;
  position: relative;
}
.open__subheading:after,
.open__subheading:before {
  background-repeat: repeat-x;
  background-size: auto 13px;
  content: "";
  height: 13px;
  max-width: 500px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40vw;
  z-index: 0;
}
.open__subheading:before {
  background-image: url(../images/open/title-decoration_left.svg);
  background-position: 100%;
  margin-right: 33px;
  right: 100%;
}
.open__subheading:after {
  background-image: url(../images/open/title-decoration_right.svg);
  background-position: 0;
  left: 100%;
  margin-left: 33px;
}
.open__subheading img,
.open__subheading picture {
  display: block;
  width: 100%;
}
.open__movie {
  aspect-ratio: 16/12;
  max-width: 800px;
  position: relative;
  width: 100%;
}
.open__movie iframe {
  border: none;
  display: block;
  height: 100%;
  width: 100%;
}
.open__play {
  background: none;
  border: none;
  cursor: pointer;
  height: clamp(63px, 10vw, 96px);
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(63px, 10vw, 96px);
}
.open__play img {
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 765px) {
  .open {
    padding: 80px 20px;
  }
  .open__inner {
    gap: 60px;
  }
  .open__blocks {
    gap: 40px;
  }
  .open__block {
    gap: 20px;
  }
  .open__movie {
    aspect-ratio: 16/20;
    max-width: 100%;
    width: 100%;
  }
}
/* ==========================================================================
   Initiatives
   ========================================================================== */

.initiative {
  background: var(--red);
  background-image: url(../images/report/report-pattern-pc.svg);
  background-position: top;
  background-repeat: repeat;
  background-size: auto;
  color: var(--navy);
  overflow: hidden;
  padding: 72px 160px 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .initiative {
    background-size: 370%;
  }
}
.initiative__pattern {
  display: block;
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.initiative__pattern img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.initiative__inner {
  align-items: center;
  gap: 72px;
  margin: 0 auto;
  max-width: 1080px;
  position: relative;
  z-index: 1;
}
.initiative__content,
.initiative__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.initiative__content {
  gap: 120px;
}
.initiative__row {
  align-items: start;
  -moz-column-gap: 60px;
  column-gap: 60px;
  display: grid;
  grid-template-areas: "image text" "image button";
  grid-template-columns: 37% 1fr;
  row-gap: 28px;
  width: 100%;
}
.initiative__row--reverse {
  grid-template-areas: "text image" "button image";
  grid-template-columns: 1fr 37%;
}
@media screen and (max-width: 1200px) {
  .initiative__row {
    justify-content: center;
  }
  .initiative__row,
  .initiative__row--reverse {
    grid-template-areas: "text" "image" "button";
    grid-template-columns: 1fr;
  }
  .initiative__block {
    margin-inline: auto;
  }
}
.initiative__block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 620px;
  width: 100%;
}
.initiative__image {
  grid-area: image;
  margin-inline: auto;
  max-width: 400px;
  width: 100%;
}
.initiative__image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.initiative__image.of-pc-only {
  display: block;
}
.initiative__image.of-sp-only {
  display: none;
}
@media screen and (max-width: 1200px) {
  .initiative__image.of-pc-only {
    display: none;
  }
  .initiative__image.of-sp-only {
    display: block;
  }
}
.initiative__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  grid-area: text;
}
.initiative__subheading {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 28px;
  font-weight: 500;
  gap: 12px;
  line-height: 1;
}
.initiative__subheading-deco {
  background: linear-gradient(180deg, #dbb36b, #ac8756 50%, #dbb36b);
  display: block;
  height: 28px;
  width: 2px;
}
.initiative__body {
  color: var(--navy);
  font-family:
    Avenir,
    Noto Sans JP,
    sans-serif;
  font-size: 16px;
  line-height: 2;
}
.initiative__button {
  align-items: center;
  background: var(--navy);
  background-image:
    url(../images/report/button-corner-tl.svg),
    url(../images/report/button-corner-tr.svg),
    url(../images/report/button-corner-bl.svg),
    url(../images/report/button-corner-br.svg);
  background-position:
    0 0,
    100% 0,
    0 100%,
    100% 100%;
  background-position:
    left 6px top 6px,
    right 6px top 6px,
    left 6px bottom 6px,
    right 6px bottom 6px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: var(--gold-light);
  display: inline-flex;
  font-family:
    Yu Mincho,
    游明朝,
    YuMincho,
    Hiragino Mincho ProN,
    Hiragino Mincho ProN W3,
    MS Mincho,
    serif;
  font-size: 20px;
  font-weight: 500;
  gap: 12px;
  justify-content: center;
  line-height: 1.2;
  max-width: 620px;
  padding: 26px 32px;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.initiative__button,
.initiative__button:hover {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    background-image 0.3s ease;
}
.initiative__button:hover {
  background-color: #fffcf7;
  background-image:
    url(../images/initiative/button-corner-tl-act.svg),
    url(../images/initiative/button-corner-tr-act.svg),
    url(../images/initiative/button-corner-bl-act.svg),
    url(../images/initiative/button-corner-br-act.svg);
  color: #13294b;
}
.initiative__button:hover img {
  content: url(../images/initiative/window-icon-act.svg);
  transition: all 0.3s ease;
}
.initiative__button img {
  display: block;
  flex-shrink: 0;
  height: 16px;
  transition: all 0.3s ease;
  width: 16px;
}
.initiative__button {
  grid-area: button;
}
@media screen and (max-width: 765px) {
  .initiative {
    padding: 80px 20px;
  }
  .initiative__inner {
    gap: 60px;
  }
  .initiative__content {
    gap: 80px;
  }
  .initiative__row,
  .initiative__row--reverse {
    grid-template-areas: "text" "image" "button";
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .initiative__block {
    gap: 24px;
    max-width: 100%;
  }
  .initiative__text {
    gap: 24px;
  }
  .initiative__image {
    max-width: 335px;
  }
  .initiative__image img {
    height: auto;
  }
  .initiative__subheading {
    font-size: 24px;
  }
  .initiative__body {
    font-size: 14px;
    line-height: 2;
  }
  .initiative__button {
    background-position:
      left 3px top 3px,
      right 3px top 3px,
      left 3px bottom 3px,
      right 3px bottom 3px;
    background-size: 18px 18px;
    font-size: 16px;
    gap: 15px;
    max-width: none;
    padding: 21px 22px;
    width: 100%;
  }
}
