@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

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

a {
  cursor: pointer;
  text-decoration: none;
}

summary {
  display: block;
  list-style: none;
}

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

/* ===============================================
# メディアクエリー
=============================================== */
/* ===============================================
# line-heightの余白削除
=============================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  overflow-wrap: break-word;
}

body {
  background-color: #EDEE00;
  color: #0023A0;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 80px;
}
@media (max-width: 1000px) {
  body {
    padding-top: 100px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

[lang=ja] {
  font-family: "Noto Sans JP", sans-serif;
}

[lang=en] {
  font-family: "Poppins", sans-serif;
}

img {
  display: block;
}

a,
span {
  display: inline-block;
}

video,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1360px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.25rem;
    max-width: 600px;
  }
}

.l-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 20px;
  background: #0023A0;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 0 0 17px;
  }
}

.l-header__inner {
  display: grid;
  grid-template-columns: 431px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  min-height: 80px;
}
@media (max-width: 1200px) {
  .l-header__inner {
    grid-template-columns: 300px 1fr;
  }
}
@media (max-width: 1000px) {
  .l-header__inner {
    min-height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    grid-template-columns: 277px 1fr;
  }
}
@media (max-width: 374px) {
  .l-header__inner {
    grid-template-columns: 200px 1fr;
  }
}

.l-header__logo {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}
.l-header__logo svg {
  height: auto;
  display: block;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media (max-width: 1000px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.l-header__list li a {
  min-width: 150px;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .l-header__list li a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1300px) {
  .l-header__list li a {
    min-width: 100px;
  }
}
.l-header__list li:not(:last-child) {
  position: relative;
}
.l-header__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: #FFF;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -10px;
}

.l-drawer__icon {
  display: none;
  position: fixed;
  top: 13px;
  right: 40px;
  width: 30px;
  height: 22px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 40;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .l-drawer__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .l-drawer__icon {
    right: 20px;
  }
}

.l-drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #FFF;
  -webkit-transition: rotate 0.3s ease 0s, translate 0.3s ease 0s;
  transition: rotate 0.3s ease 0s, translate 0.3s ease 0s;
}

.l-drawer__icon.js-show .l-drawer__icon--bar {
  width: 32px;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 37deg;
  translate: 0 10px;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -37deg;
  translate: 0 -10px;
}

.l-drawer {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 332px;
  background: #0023A0;
  z-index: 19;
  border-radius: 0px 0px 30px 30px;
  overflow-y: scroll;
  translate: 0 calc(-100% - 50px);
  -webkit-transition: translate 0.3s ease 0s;
  transition: translate 0.3s ease 0s;
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 90px 0 50px;
}

.l-drawer__list {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}
.l-drawer__list li a {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .l-drawer__list li a:hover {
    opacity: 0.7;
  }
}

.l-drawer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
}
.l-drawer__sns a {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .l-drawer__sns a:hover {
    opacity: 0.7;
  }
}

.l-followBtn {
  display: none;
  background: #EDEE00;
  border: 2px solid #EDEE00;
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  height: 50px;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 40;
  -webkit-transition: color 0.3s ease 0s, background 0.3s ease 0s;
  transition: color 0.3s ease 0s, background 0.3s ease 0s;
}
@media (max-width: 1000px) {
  .l-followBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (any-hover: hover) {
  .l-followBtn:hover {
    color: #EDEE00;
    background: #0023A0;
  }
  .l-followBtn:hover svg path {
    fill: #EDEE00;
  }
}

.l-followBtn svg {
  width: 21px;
  height: 21px;
}
.l-followBtn svg path {
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}

.l-footer {
  background: #0023A0;
  padding: 64px 0 80px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0 50px;
  }
}

.l-footer__logo {
  margin-inline: auto;
  width: 281px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 218px;
  }
}

.l-footer__domain {
  color: #FFF;
  font-family: "Inter", serif;
  font-size: max(1.5rem, 19.2px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer__domain {
    font-size: max(1.125rem, 14.4px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    margin-top: 15px;
  }
}

.l-footer__sns {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.l-footer__sns li a {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .l-footer__sns li a:hover {
    opacity: 0.7;
  }
}

.l-footer__contact {
  margin-top: 33px;
  font-size: max(0.875rem, 11.2px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__contact {
    margin-top: 30px;
  }
}
.l-footer__contact span {
  font-family: "Inter", serif;
}

.l-footer__word {
  margin-top: 10px;
  font-family: "Inter", "Noto Sans JP", serif;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  padding-bottom: 5px;
  position: relative;
}
.l-footer__word::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 285px;
  height: 1px;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .l-footer__word::before {
    width: 294px;
  }
}
@media (any-hover: hover) {
  .l-footer__word:hover::before {
    display: none;
  }
}

.l-footer__copyright {
  margin-top: 45px;
  font-size: max(0.875rem, 11.2px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Inter", serif;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: 32px;
    font-size: max(0.75rem, 9.6px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
  }
}

.l-editArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  padding: 40px 0 73px;
  position: relative;
}
@media (max-width: 1000px) {
  .l-editArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .l-editArea {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-editArea {
    padding: 20px 0 50px;
  }
}
.l-editArea::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #0023a0;
  top: 0;
  left: 0;
}

.l-editArea__texts {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-editArea__imgs {
  margin-inline: auto;
}

.l-editArea__img {
  max-width: 357px;
  aspect-ratio: 357/196;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: auto;
}
@media screen and (max-width: 767px) {
  .l-editArea__img {
    max-width: 100%;
  }
}

.l-editArea__imgs .l-editArea__img:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-editArea__imgs .l-editArea__img:not(:first-of-type) {
    margin-top: 10px;
  }
}

.l-editArea__img__caption {
  margin-top: 10px;
  font-size: max(0.75rem, 9.6px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Inter", "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .l-editArea__img__caption {
    margin-top: 6px;
  }
}

.c-btn {
  border-radius: 50px;
  background: #EDEE00;
  border: 2px solid #EDEE00;
  min-width: 277px;
  min-height: 50px;
  font-size: 20px;
  font-weight: 900;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-transition: color 0.3s ease 0s, background 0.3s ease 0s;
  transition: color 0.3s ease 0s, background 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: max(1rem, 12.8px);
    font-weight: 900;
    line-height: 1.25;
    min-width: min(100%, 277px);
  }
}
@media (any-hover: hover) {
  .c-btn:hover {
    color: #EDEE00;
    background: transparent;
  }
  .c-btn:hover svg path {
    fill: #EDEE00;
  }
}

.c-btn svg {
  width: 21px;
  height: 21px;
}
.c-btn svg path {
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}

.c-btn--blue {
  background: #0023A0;
  border: 2px solid #0023A0;
  color: #EDEE00;
}
.c-btn--blue svg path {
  fill: #EDEE00;
}
@media (any-hover: hover) {
  .c-btn--blue:hover {
    color: #0023A0;
    background: transparent;
  }
  .c-btn--blue:hover svg path {
    fill: #0023A0;
  }
}

.c-btn--red {
  background: #DB1B0F;
  border: 2px solid #DB1B0F;
  color: #fff;
}
.c-btn--red svg path {
  fill: #fff;
}
@media (any-hover: hover) {
  .c-btn--red:hover {
    color: #DB1B0F;
    background: transparent;
  }
  .c-btn--red:hover svg path {
    fill: #DB1B0F;
  }
}

.c-btn--white {
  background: #fff;
  border: 2px solid #0023A0;
  color: #0023A0;
}
.c-btn--white svg path {
  fill: #0023A0;
}
@media (any-hover: hover) {
  .c-btn--white:hover {
    background: #EDEE00;
    color: #0023A0;
  }
  .c-btn--white:hover svg path {
    fill: #0023A0;
  }
}

.c-btn--large {
  font-size: max(1.75rem, 22.4px);
  font-weight: 900;
  line-height: 1;
  min-width: 388px;
  min-height: 70px;
}
@media screen and (max-width: 767px) {
  .c-btn--large {
    font-size: max(1.4375rem, 18.4px);
    font-weight: 900;
    line-height: 0.8695652174;
    min-width: min(100%, 333px);
    min-height: 58px;
  }
}
.c-btn--large svg {
  width: 29.4px;
  height: 29.4px;
}
@media screen and (max-width: 767px) {
  .c-btn--large svg {
    width: 24.36px;
    height: 24.36px;
  }
}

@media screen and (max-width: 767px) {
  .c-btn--large2 {
    font-size: max(1.25rem, 16px);
    font-weight: 900;
    line-height: 1.15;
    min-height: 58px;
  }
}

.c-btn--notActive {
  background: #a0a0a0;
}

.c-title {
  color: #0023A0;
  text-align: center;
}

.c-title__main {
  font-family: "Poppins", sans-serif;
  font-size: max(5rem, 64px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title__main {
    font-size: max(2.5rem, 32px);
    font-weight: 900;
    line-height: 1;
  }
}

.c-title__sub {
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 1;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .c-title__sub {
    font-size: max(1rem, 12.8px);
    font-weight: 900;
    line-height: 1;
    margin-top: 4px;
  }
}

.c-titleDetail {
  border-radius: 40px;
  border: 1px solid #0023A0;
  padding: 8px;
  text-align: center;
  font-size: max(1.125rem, 14.4px);
  font-weight: 400;
  line-height: 1.1111111111;
  letter-spacing: 0.4em;
}
@media screen and (max-width: 767px) {
  .c-titleDetail {
    font-size: max(1rem, 12.8px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.4em;
  }
}

.c-titleDetail--lightBlue {
  border-color: #D7F3FF;
  background: #D7F3FF;
}

.c-titleLine {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.1111111111;
  letter-spacing: 0.4em;
  font-family: "Inter", "Noto Sans JP", serif;
  text-align: center;
  padding: 12px 0 12px;
  border-top: 1px solid #0023A0;
  border-bottom: 1px solid #0023A0;
}
@media screen and (max-width: 767px) {
  .c-titleLine {
    font-size: max(1.125rem, 14.4px);
    font-weight: 700;
    line-height: 1.1111111111;
    letter-spacing: 0.4em;
    padding: 9px 0 11px;
  }
}

.c-titleLine--ja {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-titleLine--ja {
    font-size: max(1rem, 12.8px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.4em;
  }
}

.c-session {
  max-width: 358px;
  max-height: 404px;
  width: 100%;
  border-radius: 0 0 10px 10px;
  background: #FFF;
  -webkit-box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 20px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .c-session {
    max-width: 270px;
    max-height: 329px;
  }
}

.c-session__thumbnail {
  height: 201px;
}
@media screen and (max-width: 767px) {
  .c-session__thumbnail {
    height: 152px;
  }
}

.c-session__thumbnail img {
  aspect-ratio: 358/201;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}

.c-session__texts {
  padding: 10px 15px 15px;
  height: 203px;
}
@media screen and (max-width: 767px) {
  .c-session__texts {
    padding: 8px 12.5px 13px;
    height: 177px;
  }
}

.c-session__title {
  font-size: max(1.0625rem, 13.6px);
  font-weight: 900;
  line-height: 1.4117647059;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 表示したい最大行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .c-session__title {
    font-size: max(0.875rem, 11.2px);
    font-weight: 900;
    line-height: 1.4285714286;
  }
}

.c-session__speakers {
  margin-top: 10px;
  padding-top: 11px;
  border-top: 1px solid #0023A0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}
@media screen and (max-width: 767px) {
  .c-session__speakers {
    margin-top: 8px;
    padding-top: 10px;
    gap: 10px 19px;
  }
}

.c-session__speaker__name {
  font-size: max(0.875rem, 11.2px);
  font-weight: 700;
  line-height: 1.2857142857;
  font-family: "Inter", "Noto Sans JP", serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* ← 表示したい最大行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .c-session__speaker__name {
    font-size: max(0.75rem, 9.6px);
    font-weight: 700;
    line-height: 1.5;
  }
}

.c-session__speaker__job {
  margin-top: 4px;
  font-size: max(0.625rem, 8px);
  font-weight: 400;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 表示したい最大行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .c-session__speaker__job {
    margin-top: 2px;
    font-size: max(0.5rem, 6.4px);
    font-weight: 400;
    line-height: 1.5;
  }
}

.p-fv {
  position: relative;
}

.p-fv__text {
  position: absolute;
  top: 41.5277777778vw;
  left: 50%;
  translate: -50%;
  width: 100%;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", serif;
  color: #0023A0;
  font-size: 1.1111111111vw;
  font-weight: 700;
  line-height: 1.6666666667vw;
}
@media screen and (max-width: 767px) {
  .p-fv__text {
    width: 90.6666666667vw;
    top: 77.6vw;
    text-align: left;
    font-size: 3.7333333333vw;
    line-height: 6.1333333333vw;
  }
}

.p-outline {
  background: #EDEE00;
  padding: 87px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-outline {
    padding: 40px 0 50px;
  }
}

.p-outline__inner {
  max-width: 1025px;
}

.p-outline__contents {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1050px) {
  .p-outline__contents {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-outline__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }
}

.p-outline__item {
  width: 100%;
}

.p-outline__item__head {
  max-width: 282px;
  margin-inline: auto;
  border-radius: 30px;
  padding: 5px;
  border: 2px solid #0023A0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  letter-spacing: 3.2px;
  font-family: "Inter", "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .p-outline__item__head {
    max-width: 150px;
    font-size: 0.875rem;
    padding: 6px;
  }
}

.p-outline__item__text {
  font-size: max(1.25rem, 16px);
  font-weight: 500;
  line-height: 1;
  margin-top: 14px;
  text-align: center;
  font-family: "Inter", "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .p-outline__item__text {
    margin-top: 10px;
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1;
  }
}
.p-outline__item__text span {
  font-size: max(0.875rem, 11.2px);
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-outline__item__text span {
    margin-left: 5px;
  }
}

.p-outline__btn {
  margin-top: 40px;
  max-width: 390px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-outline__btn {
    margin-top: 32px;
    max-width: 335px;
  }
}

.p-sponsor {
  background: #fff;
  padding: 95px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-sponsor {
    padding: 35px 0 50px;
  }
}

.p-sponsor__inner {
  max-width: 1091px;
}

.p-sponsor__list {
  margin-top: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-sponsor__list {
    margin-top: 42px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-sponsor__item {
  max-width: 297px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-sponsor__item {
    max-width: 236px;
  }
}

.p-sponsor__item__link {
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media (any-hover: hover) {
  .p-sponsor__item__link:hover {
    opacity: 0.5;
  }
}

.p-top-productions {
  background: #d7f3ff;
  padding: 90px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-top-productions {
    padding: 40px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-productions__title .c-title .c-title__sub {
    letter-spacing: 0.06em;
  }
}

.p-top-productions__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 305px));
  grid-template-rows: 1fr;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1300px) {
  .p-top-productions__list {
    grid-template-columns: repeat(3, minmax(0, 305px));
  }
}
@media screen and (max-width: 767px) {
  .p-top-productions__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 22px;
  }
}

.p-top-productions__item__link {
  background: #fff;
  min-height: 261px;
  height: 100%;
  padding: 20px;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-top-productions__item__link {
    min-height: 175px;
    padding: 15px 12.5px 17px;
  }
}
@media (any-hover: hover) {
  .p-top-productions__item__link:hover {
    opacity: 0.7;
  }
}

.p-top-productions__item__img img {
  aspect-ratio: 265/150;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-top-productions__item__title {
  margin-top: 15px;
  font-size: max(1.25rem, 16px);
  font-weight: 700;
  line-height: 1.4;
  font-family: "Inter", "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .p-top-productions__item__title {
    margin-top: 8px;
    font-size: max(0.875rem, 11.2px);
    font-weight: 700;
    line-height: 1.4285714286;
  }
}

.p-production {
  background: #d7f3ff;
}

.p-production__content {
  background: #fff;
  padding: 40px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-production__content {
    padding: 20px 0 50px;
  }
}

.p-production__content__inner {
  width: 100%;
  max-width: 1048px;
  margin-inline: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-production__content__inner {
    max-width: 100%;
  }
}

.p-production__mv {
  max-width: 832px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-production__mv {
    max-width: 100%;
  }
}

.p-production__mv img {
  aspect-ratio: 832/468;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-production__head {
  margin-top: 77px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-production__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 20px;
    gap: 22px;
  }
}

.p-production__logo {
  max-width: 240px;
  border: 1px solid rgb(200, 200, 200);
}
@media screen and (max-width: 767px) {
  .p-production__logo {
    max-width: 210px;
  }
}
.p-production__logo img {
  aspect-ratio: 240/135;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-production__title {
  font-size: max(1.75rem, 22.4px);
  font-weight: 700;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .p-production__title {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 1.5;
  }
}

.p-production__job__body {
  padding: 24px 0 71px;
}
@media screen and (max-width: 767px) {
  .p-production__job__body {
    padding: 20px 0 50px;
  }
}

.p-production__job__btn {
  margin-top: 43px;
  max-width: 279px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-production__job__btn {
    margin-top: 40px;
    max-width: 295px;
  }
}

.p-production__company__body {
  padding: 20px 0 22px;
  border-bottom: 1px solid #0023A0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.p-production__company__item {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 10px;
}

.p-production__company__item__title,
.p-production__company__item__text {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.6666666667;
  font-family: "Inter", "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .p-production__company__item__title,
  .p-production__company__item__text {
    font-size: max(0.75rem, 9.6px);
    font-weight: 400;
    line-height: 1.5;
  }
}

.p-production__company__item__text--url {
  text-decoration: underline;
  overflow-wrap: break-word;
  word-break: break-all;
}
@media (any-hover: hover) {
  .p-production__company__item__text--url:hover {
    text-decoration: none;
  }
}

.p-production__company__item__text--lineHeight22 {
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .p-production__company__item__text--lineHeight22 {
    line-height: 18px;
  }
}

.p-production__topBtn {
  margin-top: 100px;
  max-width: 279px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-production__topBtn {
    margin-top: 46px;
    max-width: 295px;
  }
}

.p-session {
  background: #edee00;
}

.p-session__content {
  background: #fff;
  padding: 40px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-session__content {
    padding: 20px 0 50px;
  }
}

.p-session__content__inner {
  width: 100%;
  max-width: 1048px;
  margin-inline: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-session__content__inner {
    max-width: 100%;
  }
}

.p-session__mv {
  max-width: 1008px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-session__mv {
    max-width: 100%;
  }
}

.p-session__mv img {
  aspect-ratio: 1008/567;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-session__head {
  padding: 33px 0 25px;
}
@media screen and (max-width: 767px) {
  .p-session__head {
    padding: 19px 0 26px;
  }
}

.p-session__liveBtn {
  max-width: 279px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-session__liveBtn {
    max-width: 295px;
  }
}

.p-session__liveBtn a.is-notActive {
  background: #a0a0a0;
  border-color: #a0a0a0;
  pointer-events: none;
}
@media (any-hover: hover) {
  .p-session__liveBtn a.is-notActive:hover {
    color: #fff;
  }
}

.p-session__time {
  margin-top: 47px;
  font-size: max(1.25rem, 16px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-session__time {
    margin-top: 26px;
  }
}

.p-session__title {
  margin-top: 23px;
  font-size: max(1.75rem, 22.4px);
  font-weight: 900;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .p-session__title {
    margin-top: 14px;
    font-size: max(1.25rem, 16px);
    font-weight: 900;
    line-height: 1.5;
  }
}

.p-session__sponsorTitle {
  margin-top: 28px;
  font-size: max(1rem, 12.8px);
  font-weight: 400;
  line-height: 1;
}

.p-session__sponsorImg {
  margin-top: 10px;
  max-width: 210px;
  border: 1px solid rgb(200, 200, 200);
}

.p-session__sponsorImg img {
  aspect-ratio: 210/116;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-session__speakers__wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 70px;
     -moz-column-gap: 70px;
          column-gap: 70px;
  row-gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-session__speakers__wrapper {
    margin-top: 30px;
    -webkit-column-gap: 41px;
       -moz-column-gap: 41px;
            column-gap: 41px;
    row-gap: 30px;
  }
}

.p-session__speaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .p-session__speaker {
    gap: 14px;
  }
}
.p-session__speaker:nth-child(even) {
  position: relative;
}
.p-session__speaker:nth-child(even)::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: -35px;
  top: 0;
  background: url(./../img/line_dots.svg) repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-session__speaker:nth-child(even)::before {
    left: -20px;
  }
}

.p-session__speaker__img {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .p-session__speaker__img {
    width: 100%;
  }
}

.p-session__speaker__img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-session__speaker__content {
  width: 244px;
}
@media screen and (max-width: 767px) {
  .p-session__speaker__content {
    width: 100%;
  }
}

.p-session__speaker__name {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: 1.3333333333;
  font-family: "Inter", "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .p-session__speaker__name {
    font-size: max(0.875rem, 11.2px);
    font-weight: 700;
    line-height: 1;
  }
}

.p-session__speaker__job {
  margin-top: 10px;
  font-size: max(0.75rem, 9.6px);
  font-weight: 400;
  line-height: 1.4166666667;
  font-family: "Inter", "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .p-session__speaker__job {
    font-size: max(0.625rem, 8px);
    font-weight: 400;
    line-height: 1.4;
  }
}

.p-session__speaker__profile {
  margin-top: 15px;
  padding-top: 13px;
  font-size: max(0.75rem, 9.6px);
  font-weight: 400;
  line-height: 1.75;
  border-top: 1px solid #0023a0;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .p-session__speaker__profile {
    margin-top: 16px;
    padding-top: 10px;
    font-size: max(0.6875rem, 8.8px);
    font-weight: 400;
    line-height: 1.7272727273;
    letter-spacing: -0.06em;
  }
}
.p-session__speaker__profile a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .p-session__speaker__profile a:hover {
    text-decoration: none;
  }
}

.p-session__information {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .p-session__information {
    margin-top: 50px;
  }
}

.p-session__information__texts {
  margin-top: 20px;
}

.p-session__information__items {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-session__information__items {
    margin-top: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-session__information__item img {
  aspect-ratio: 323/177;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-session__information__item__caption {
  margin-top: 9px;
  font-size: max(0.75rem, 9.6px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Inter", "Noto Sans JP", serif;
}
@media screen and (max-width: 767px) {
  .p-session__information__item__caption {
    font-size: max(0.6875rem, 8.8px);
    font-weight: 400;
    line-height: 1.7272727273;
    letter-spacing: -0.06em;
  }
}

.p-session__topBtn {
  margin-top: 73px;
  max-width: 279px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-session__topBtn {
    margin-top: 50px;
    max-width: 295px;
  }
}

.p-top-timetable {
  background: url(./../img/timetable_bg.png) no-repeat center center/cover;
  padding: 90px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-top-timetable {
    background: #EDEE00;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-top-timetable {
    padding: 0 0 44px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-timetable__title {
    margin-top: -10px;
  }
}

.p-top-timetable__body {
  margin-top: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  max-width: 926px;
  width: 100%;
  margin-inline: auto;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .p-top-timetable__body {
    margin-top: 67px;
    grid-template-columns: 45px 1fr;
    gap: 116px 20px;
    max-width: 335px;
  }
}

.p-top-timetable__time {
  width: 120px;
  height: 2378px;
}
@media screen and (max-width: 767px) {
  .p-top-timetable__time {
    width: 45px;
    height: 1886px;
  }
}

.p-top-timetable__time img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-timetable__track {
  position: relative;
  max-width: 358px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-timetable__track {
    max-width: 270px;
  }
}

.p-top-timetable__track__title {
  text-align: center;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .p-top-timetable__track__title {
    translate: -32px -51px;
  }
}

.p-top-timetable__track__title__main {
  font-size: max(1.75rem, 22.4px);
  font-weight: 700;
  line-height: 0.6428571429;
  letter-spacing: -0.02em;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-top-timetable__track__title__main {
    font-size: max(1.25rem, 16px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}

.p-top-timetable__track__title__sub {
  margin-top: 14px;
  font-size: max(1.125rem, 14.4px);
  font-weight: 900;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-top-timetable__track__title__sub {
    margin-top: 4px;
    font-size: max(1rem, 12.8px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.05em;
  }
}

.p-top-timetable__track__session {
  position: absolute;
  top: var(--top-pc);
  left: 0;
  width: 100%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-top-timetable__track__session {
    top: var(--top-sp);
  }
}
@media (any-hover: hover) {
  .p-top-timetable__track__session:hover {
    opacity: 0.7;
  }
}

.u-visually-hidden {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
@media (min-width: 768px) {
  .u-is--pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-is--pcTab {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-is--sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-is--sp {
    display: block;
  }
}

.u-color__blue {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: 4.8vw;
  color: #629DE2;
}

.u-color__blue2 {
  color: #629DE2;
}

.u-wysiwyg h2 {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.3333333333;
}
.u-wysiwyg h3 {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: 1.6;
}
.u-wysiwyg h4 {
  font-size: max(0.9375rem, 12px);
  font-weight: 500;
  line-height: 1.6;
}
.u-wysiwyg p {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.8666666667;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg p {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.6428571429;
  }
}
.u-wysiwyg a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .u-wysiwyg a:hover {
    text-decoration: none;
  }
}
.u-wysiwyg ul li {
  list-style: disc;
  list-style-position: inside;
}
.u-wysiwyg ol li {
  list-style: decimal;
  list-style-position: inside;
}
.u-wysiwyg h2 {
  margin-bottom: 15px;
}
.u-wysiwyg h3,
.u-wysiwyg h4 {
  margin-bottom: 10px;
}
.u-wysiwyg p + p {
  margin-top: 10px;
}
.u-wysiwyg figure {
  margin-block: 20px;
}
.u-wysiwyg table {
  margin-block: 20px;
}
.u-wysiwyg p + ul,
.u-wysiwyg p + ol,
.u-wysiwyg ul + p,
.u-wysiwyg ol + p,
.u-wysiwyg ul + ol,
.u-wysiwyg ol + ul {
  margin-top: 10px;
}
.u-wysiwyg p + h2,
.u-wysiwyg ul + h2,
.u-wysiwyg ol + h2,
.u-wysiwyg figure + h2,
.u-wysiwyg table + h2 {
  margin-top: 40px;
}
.u-wysiwyg p + h3,
.u-wysiwyg ul + h3,
.u-wysiwyg ol + h3,
.u-wysiwyg figure + h3,
.u-wysiwyg table + h3 {
  margin-top: 20px;
}
.u-wysiwyg p + h4,
.u-wysiwyg ul + h4,
.u-wysiwyg ol + h4,
.u-wysiwyg figure + h4,
.u-wysiwyg table + h4 {
  margin-top: 10px;
}
.u-wysiwyg table + table {
  margin-top: 20px;
}

.u-wysiwyg--h3 h3 {
  font-size: max(1.125rem, 14.4px);
  font-weight: 700;
  line-height: 1.3333333333;
}
.u-wysiwyg--h3 h4 {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: 1.6;
}
.u-wysiwyg--h3 h5 {
  font-size: max(0.9375rem, 12px);
  font-weight: 500;
  line-height: 1.6;
}
.u-wysiwyg--h3 p {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .u-wysiwyg--h3 p {
    font-size: max(0.875rem, 11.2px);
    font-weight: 400;
    line-height: 1.6428571429;
  }
}
.u-wysiwyg--h3 a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .u-wysiwyg--h3 a:hover {
    text-decoration: none;
  }
}
.u-wysiwyg--h3 ul li {
  list-style: disc;
  list-style-position: inside;
}
.u-wysiwyg--h3 ol li {
  list-style: decimal;
  list-style-position: inside;
}
.u-wysiwyg--h3 h3 {
  margin-bottom: 10px;
}
.u-wysiwyg--h3 h4,
.u-wysiwyg--h3 h5 {
  margin-bottom: 5px;
}
.u-wysiwyg--h3 p + p {
  margin-top: 5px;
}
.u-wysiwyg--h3 figure {
  margin-block: 10px;
}
.u-wysiwyg--h3 table {
  margin-block: 10px;
}
.u-wysiwyg--h3 p + ul,
.u-wysiwyg--h3 p + ol,
.u-wysiwyg--h3 ul + p,
.u-wysiwyg--h3 ol + p,
.u-wysiwyg--h3 ul + ol,
.u-wysiwyg--h3 ol + ul {
  margin-top: 5px;
}
.u-wysiwyg--h3 p + h3,
.u-wysiwyg--h3 ul + h3,
.u-wysiwyg--h3 ol + h3,
.u-wysiwyg--h3 figure + h3,
.u-wysiwyg--h3 table + h3 {
  margin-top: 25px;
}
.u-wysiwyg--h3 p + h4,
.u-wysiwyg--h3 ul + h4,
.u-wysiwyg--h3 ol + h4,
.u-wysiwyg--h3 figure + h4,
.u-wysiwyg--h3 table + h4 {
  margin-top: 20px;
}
.u-wysiwyg--h3 p + h5,
.u-wysiwyg--h3 ul + h5,
.u-wysiwyg--h3 ol + h5,
.u-wysiwyg--h3 figure + h5,
.u-wysiwyg--h3 table + h5 {
  margin-top: 15px;
}
.u-wysiwyg--h3 table + table {
  margin-top: 15px;
}

.u-wysiwyg--h3-small h3 {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: 1.4666666667;
}
.u-wysiwyg--h3-small h4 {
  font-size: max(0.9375rem, 12px);
  font-weight: 700;
  line-height: 1.4666666667;
}
.u-wysiwyg--h3-small h5 {
  font-size: max(0.9375rem, 12px);
  font-weight: 500;
  line-height: 1.4666666667;
}
.u-wysiwyg--h3-small p {
  font-size: max(0.9375rem, 12px);
  font-weight: 400;
  line-height: 1.4666666667;
}
.u-wysiwyg--h3-small a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .u-wysiwyg--h3-small a:hover {
    text-decoration: none;
  }
}
.u-wysiwyg--h3-small ul li {
  list-style: disc;
  list-style-position: inside;
}
.u-wysiwyg--h3-small ol li {
  list-style: decimal;
  list-style-position: inside;
}
.u-wysiwyg--h3-small h3 {
  margin-bottom: 10px;
}
.u-wysiwyg--h3-small h4,
.u-wysiwyg--h3-small h5 {
  margin-bottom: 5px;
}
.u-wysiwyg--h3-small p + p {
  margin-top: 5px;
}
.u-wysiwyg--h3-small figure {
  margin-block: 10px;
}
.u-wysiwyg--h3-small table {
  margin-block: 10px;
}
.u-wysiwyg--h3-small p + ul,
.u-wysiwyg--h3-small p + ol,
.u-wysiwyg--h3-small ul + p,
.u-wysiwyg--h3-small ol + p,
.u-wysiwyg--h3-small ul + ol,
.u-wysiwyg--h3-small ol + ul {
  margin-top: 5px;
}
.u-wysiwyg--h3-small p + h3,
.u-wysiwyg--h3-small ul + h3,
.u-wysiwyg--h3-small ol + h3,
.u-wysiwyg--h3-small figure + h3,
.u-wysiwyg--h3-small table + h3 {
  margin-top: 25px;
}
.u-wysiwyg--h3-small p + h4,
.u-wysiwyg--h3-small ul + h4,
.u-wysiwyg--h3-small ol + h4,
.u-wysiwyg--h3-small figure + h4,
.u-wysiwyg--h3-small table + h4 {
  margin-top: 20px;
}
.u-wysiwyg--h3-small p + h5,
.u-wysiwyg--h3-small ul + h5,
.u-wysiwyg--h3-small ol + h5,
.u-wysiwyg--h3-small figure + h5,
.u-wysiwyg--h3-small table + h5 {
  margin-top: 15px;
}
.u-wysiwyg--h3-small table + table {
  margin-top: 15px;
}

.u-fontWeight--700 {
  font-weight: 700;
}