@charset "UTF-8";
/* =====================
    リセット
===================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
  word-break: break-word;
}

@font-face {
  font-family: "NotoSerifJP";
  src: url("../fonts/NotoSerifJP-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "SmileySans";
  src: url("../fonts/SmileySans-Oblique.ttf.woff2") format("woff2"), url("../fonts/SmileySans-Oblique.ttf") format("truetype");
  font-weight: 400;
  font-style: oblique;
  font-display: swap;
}
@font-face {
  font-family: "BIZUDPGothic";
  src: url("../fonts/BIZUDPGothic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "BIZUDPGothic";
  src: url("../fonts/BIZUDPGothic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
html,
body {
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  font-family: ten-mincho-text, serif;
  font-weight: 400;
  font-style: normal;
  color: #1a1a1a;
}

p {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

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

/* =====================
    Utility
===================== */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  .u-pc-only {
    display: none !important;
  }
}

@media only screen and (min-width: 769px) {
  .u-sp-only {
    display: none !important;
  }
}

/* =====================
    Layout
===================== */
.l-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1rem;
  background: linear-gradient(90deg, #2e69ab 0%, #132a45 100%);
  z-index: 230;
}

.l-wrapper {
  display: flex;
}

.l-nav-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 0;
  z-index: 210;
  width: 4.6rem;
  height: 6.2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: none;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
}
@media only screen and (max-width: 1200px) {
  .l-nav-toggle {
    display: flex;
  }
}
.l-nav-toggle__label {
  font-family: "SmileySans", sans-serif;
  font-weight: 400;
  font-style: oblique;
  font-size: 1.2rem;
  color: #2e69ab;
  line-height: 1.5;
}
.l-nav-toggle__icon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.l-nav-toggle__icon span {
  display: block;
  height: 0.2rem;
  background: #2e69ab;
  transition: width 0.2s ease;
}
.l-nav-toggle__icon span:nth-child(1) {
  width: 2.3rem;
}
.l-nav-toggle__icon span:nth-child(2) {
  width: 1.3rem;
}
.l-nav-toggle__icon span:nth-child(3) {
  width: 0.9rem;
}
.l-nav-toggle.is-open .l-nav-toggle__icon span {
  width: 2.3rem;
}

.l-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 32rem;
  height: 100vh;
  overflow-y: auto;
}
@media only screen and (max-width: 850px) {
  .l-sidebar {
    overflow-y: hidden;
  }
}
.l-sidebar {
  background: #fff;
  border-right: 1px solid #eae0e0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1200px) {
  .l-sidebar {
    width: 100%;
    max-width: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 220;
  }
  .l-sidebar.is-open {
    transform: translateX(0);
  }
}
.l-sidebar__close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 0;
  width: 4.6rem;
  height: 6.2rem;
  background: #d9d9d9;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0;
  z-index: 1;
}
@media only screen and (max-width: 1200px) {
  .l-sidebar__close {
    display: flex;
  }
}
.l-sidebar__close-text {
  font-family: "SmileySans", sans-serif;
  font-style: oblique;
  font-size: 1.2rem;
  color: #2e69ab;
  line-height: 1;
}
.l-sidebar__close-icon {
  position: relative;
  width: 2rem;
  height: 2rem;
}
.l-sidebar__close-icon::before, .l-sidebar__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 0.2rem;
  background: #2e69ab;
}
.l-sidebar__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-sidebar__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.l-sidebar__logo {
  padding: 2.9rem 1.8rem 0;
}
.l-sidebar__logo a {
  display: block;
}
.l-sidebar__logo img {
  width: 100%;
  max-width: 28.2rem;
}
@media only screen and (max-width: 1200px) {
  .l-sidebar__logo {
    padding-right: 6rem;
  }
  .l-sidebar__logo img {
    max-width: 22rem;
  }
}
.l-sidebar__nav {
  margin-top: 1.6rem;
  border-top: 1px solid;
  -o-border-image: linear-gradient(90deg, #c6d1dd, #2e69ab 10% 90%, #c6d1dd) 1;
     border-image: linear-gradient(90deg, #c6d1dd, #2e69ab 10% 90%, #c6d1dd) 1;
}
.l-sidebar__nav ul {
  list-style: none;
}
.l-sidebar__nav li {
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, #c6d1dd, #2e69ab 10% 90%, #c6d1dd) 1;
     border-image: linear-gradient(90deg, #c6d1dd, #2e69ab 10% 90%, #c6d1dd) 1;
}
.l-sidebar__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.4rem;
  height: 5.5rem;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #071320;
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  border-left: 3px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-left-color 0.2s ease;
}
.l-sidebar__nav a:hover {
  color: #2e69ab;
  background: rgba(46, 105, 171, 0.06);
  border-left-color: #2e69ab;
}
.l-sidebar__nav a::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1.3rem;
  background: url(../images/icon-arrow.png) no-repeat center/contain;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.l-sidebar__nav a:hover::after {
  transform: translateX(0.3rem);
}
@media only screen and (max-width: 1200px) {
  .l-sidebar__nav a {
    height: 4.8rem;
    font-size: 1.4rem;
    padding: 0 2.4rem 0 4.1rem;
    border-left: none;
  }
}
.l-sidebar__entry {
  padding: 3rem 1.3rem;
}
@media only screen and (max-width: 1200px) {
  .l-sidebar__entry {
    padding: 2rem 3.7rem;
  }
  .l-sidebar__entry .c-btn-entry {
    width: 100%;
  }
}

.l-main {
  margin-left: 32rem;
  flex: 1;
  min-width: 0;
  padding-top: 1rem;
}
@media only screen and (max-width: 1200px) {
  .l-main {
    margin-left: 0;
  }
}

/* =====================
    Component: Entry Button
===================== */
.c-btn-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 28rem;
  height: 7rem;
  border-radius: 5rem;
  background: linear-gradient(108deg, #9435c8 13.4%, #4b429c 56.7%, #2e69ab 100%);
  box-shadow: 0 0.4rem 0.4rem #c0cfe0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-btn-entry:hover {
  opacity: 0.6;
}
.c-btn-entry__en {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c-btn-entry__ja {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* =====================
    Component: Report Button
===================== */
.c-report-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
}
.c-report-btn:hover {
  opacity: 0.75;
}
.c-report-btn__glass {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22rem;
  padding: 2rem 1.6rem;
  border-radius: 25rem;
  background: rgba(255, 255, 255, 0.59);
  border: 2px solid rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(11px) saturate(143%);
  -webkit-backdrop-filter: blur(11px) saturate(143%);
}
@media only screen and (max-width: 768px) {
  .c-report-btn__glass {
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 6rem;
    padding: 0 1.6rem;
    border-radius: 6rem;
    background: rgba(255, 255, 255, 0.68);
    border: 2px solid #fff;
    gap: 1rem;
    position: relative;
    overflow: visible;
  }
}
.c-report-btn__body {
  display: contents;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }
}
.c-report-btn__logo {
  width: 5.4rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__logo {
    width: 3rem;
    flex-shrink: 0;
  }
}
.c-report-btn__catch {
  font-family: "ZenAntique", serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 1;
  background: linear-gradient(126deg, #9435c8 13.4%, #4b429c 56.7%, #2e69ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0.8rem 0 0;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__catch {
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 0.11em;
  }
}
.c-report-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.2rem 0 0;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__text {
    flex-direction: row;
    align-items: baseline;
    margin: 0;
  }
}
.c-report-btn__text-sm {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #071320;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__text-sm {
    font-size: 1.8rem;
    line-height: 1.33;
    letter-spacing: 0.05em;
  }
}
.c-report-btn__text-lg {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #071320;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: -5px;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__text-lg {
    font-size: 1.8rem;
    line-height: 1.33;
    margin-top: 0;
  }
}
.c-report-btn__credit {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #071320;
  letter-spacing: 0.03em;
  align-self: center;
  margin: 1rem 0 0;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__credit {
    font-size: 1rem;
    margin: 0;
    align-self: flex-start;
    letter-spacing: 0.03em;
  }
}
.c-report-btn__arrow {
  width: 3.2rem;
  height: auto;
  margin: 1rem 0 0;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__arrow {
    display: none;
  }
}
.c-report-btn__photos {
  display: none;
}
@media only screen and (max-width: 768px) {
  .c-report-btn__photos {
    display: block;
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    width: 8.3rem;
    height: 9.1rem;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-report-btn__photo {
    position: absolute;
    width: 5.8rem;
    height: auto;
    border: 3px solid #fff;
  }
  .c-report-btn__photo--1 {
    transform: rotate(25deg);
    top: -1.8rem;
    right: 0.4rem;
  }
  .c-report-btn__photo--2 {
    transform: rotate(-12deg);
    bottom: -0.6rem;
    right: 0;
  }
}

/* =====================
    KV
===================== */
.p-kv {
  position: relative;
  z-index: 1;
}
.p-kv__bg {
  line-height: 0;
}
.p-kv__bg img {
  width: 100%;
  height: auto;
  display: block;
}
.p-kv__content {
  position: absolute;
  inset: 0;
}
@media only screen and (max-width: 768px) {
  .p-kv__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
  }
}
.p-kv__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 2.9rem;
  width: 73.5rem;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-kv__logo {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 54rem;
    padding: 0;
    top: 4rem;
    margin: 0 auto;
  }
}
.p-kv__logo img {
  width: 100%;
}
.p-kv__date {
  background-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 2rem;
}
@media only screen and (min-width: 769px) {
  .p-kv__date {
    position: absolute;
    left: 50%;
    top: 48.3rem;
    max-width: 60.8rem;
    width: 100%;
    height: 13.5rem;
    align-content: space-between;
    padding: 1.6rem 2rem;
    animation: kvDateFadeIn 0.9s ease 0.3s both;
  }
}
@media only screen and (max-width: 768px) {
  .p-kv__date {
    position: relative;
    width: auto;
    height: auto;
    padding: 3rem 2rem;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    animation: kvDateFadeInSp 0.9s ease 0.3s both;
  }
}
@media screen and (max-width: 400px) {
  .p-kv__date {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
}
.p-kv__banner {
  position: absolute;
  right: 5rem;
  top: 63rem;
  width: 27.7rem;
}
@media only screen and (max-width: 768px) {
  .p-kv__banner {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 3rem;
  }
}
.p-kv__date-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.9rem;
  height: 1.9rem;
}
@media only screen and (max-width: 768px) {
  .p-kv__date-deco {
    top: -1px;
    left: -1px;
  }
}
.p-kv__date-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.p-kv__date-num {
  font-family: "SmileySans", sans-serif;
  font-weight: 400;
  font-style: oblique;
  color: #071320;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.p-kv__date-year {
  font-size: 2.8rem;
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 0.5rem;
}
.p-kv__date-main {
  font-size: 6rem;
}
.p-kv__date-dot {
  font-size: 4rem;
}
.p-kv__date-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background: linear-gradient(160deg, #9435c8 0%, #4b429c 55%, #2e69ab 100%);
  color: #fff;
  font-family: "SmileySans", sans-serif;
  font-weight: 400;
  font-style: oblique;
  font-size: 2.4rem;
  flex-shrink: 0;
}
.p-kv__venue {
  font-family: "BIZUDPGothic", sans-serif;
  color: #000;
  line-height: 1.72;
  letter-spacing: 0.04em;
}
.p-kv__venue strong {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 1.6rem;
}
.p-kv__venue p {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .p-kv__venue strong {
    font-size: 1.4rem;
  }
}
.p-kv__date-event {
  font-family: "BIZUDPGothic", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  background: linear-gradient(28.91deg, #9435c8 0%, #4b429c 50%, #2e69ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media only screen and (min-width: 769px) {
  .p-kv__date-event {
    flex: 0 0 100%;
    line-height: 1;
  }
}
@media only screen and (max-width: 768px) {
  .p-kv__date-event {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.6;
  }
}

/* =====================
    新事業創出全国フォーラムとは？
===================== */
.p-about {
  position: relative;
  z-index: 0;
  margin-top: calc((100vw - 32rem) * -0.167);
}
@media only screen and (max-width: 768px) {
  .p-about {
    padding-top: 2rem;
    margin-top: -16.7vw;
  }
}
.p-about::before {
  content: "";
  position: absolute;
  top: calc((100vw - 32rem) * 0.229);
  right: 0;
  width: 36.35rem;
  height: 48.7rem;
  background: url(../images/before-about.png) no-repeat top right/contain;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .p-about::before {
    top: 24.9vw;
    right: 0;
    width: 23rem;
    height: 67rem;
    background: url(../images/sp-before-about.png) no-repeat top right/contain;
  }
}
.p-about::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc((100vw - 32rem) * 0.753);
  background: url(../images/bg-keynote.png) no-repeat top center/100% auto;
  z-index: 0;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .p-about::after {
    height: 75.3vw;
  }
}
.p-about__inner {
  position: relative;
  z-index: 1;
  max-width: 108rem;
  margin: 0 auto;
  padding: calc((100vw - 32rem) * 0.24) 3rem 14rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .p-about__inner {
    padding: 24vw 1rem 6rem;
  }
}
.p-about__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-about__label {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  letter-spacing: 0.03em;
  text-shadow: 0 0 10px #fff;
}
@media only screen and (min-width: 769px) {
  .p-about__label {
    line-height: 1;
  }
}
.p-about__label-en {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 1rem;
}
.p-about__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.p-about__lead {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.375;
  letter-spacing: 0.03em;
  color: #071320;
  text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.8);
}
.p-about__video {
  position: relative;
  width: 80rem;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 768px) {
  .p-about__video {
    width: 100%;
  }
}
.p-about__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.p-about__divider {
  width: 100%;
  height: 0.1rem;
  margin-top: 1.7rem;
  background: linear-gradient(90deg, #bbbcfa 0%, #def4f9 100%);
}
.p-about__organizers {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem 4.8rem;
  margin-top: 1.7rem;
}
.p-about__organizer {
  position: relative;
  flex: 0 0 calc(50% - 2.4rem);
}
.p-about__organizer::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #2e69ab;
}
.p-about__organizer--full {
  flex-basis: 100%;
}
@media only screen and (max-width: 768px) {
  .p-about__organizer {
    flex-basis: 100%;
  }
}
.p-about__organizer-title {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.785;
  letter-spacing: 0.03em;
  color: #071320;
  padding-left: 1.5rem;
}
.p-about__organizer-text {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.785;
  letter-spacing: 0.03em;
  color: #071320;
  margin-top: 0.8rem;
}

/* =====================
    基調講演
===================== */
.p-keynote {
  scroll-margin-top: 6rem;
  position: relative;
  padding: 0 0;
  background: url(../images/bg-hara.png) no-repeat center/cover;
}
@media only screen and (min-width: 769px) {
  .p-keynote {
    margin-top: -5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-keynote {
    padding: 6rem 1rem;
  }
}
.p-keynote__bg {
  position: absolute;
  top: 34.1rem;
  left: 0;
  width: 100%;
  bottom: 0;
  background: url(../images/bg-hara.png) no-repeat center/cover;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .p-keynote__bg {
    top: 60rem;
  }
}
.p-keynote__inner {
  position: relative;
  z-index: 1;
  max-width: 102rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-keynote__inner {
    padding: 0 2rem;
  }
}
.p-keynote__head {
  text-align: center;
  margin-bottom: 2.4rem;
}
.p-keynote__label {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 10px #fff;
}
.p-keynote__label-en {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.p-keynote__title {
  text-align: center;
  margin-bottom: 4.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-keynote__title img {
  width: 44.4rem;
  max-width: 100%;
}
.p-keynote__lead {
  max-width: 80rem;
  margin: 0 auto 4.8rem;
}
@media only screen and (min-width: 769px) {
  .p-keynote__lead {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .p-keynote__lead {
    margin-bottom: 3rem;
  }
}
.p-keynote__lead p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.06rem;
  background: linear-gradient(55.84deg, #9435c8 17.5%, #4b429c 44.68%, #2e69ab 72.86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media only screen and (min-width: 769px) {
  .p-keynote__lead p {
    line-height: 4.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-keynote__lead p {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.p-keynote__profile {
  display: flex;
  gap: 4.5rem;
  margin-bottom: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .p-keynote__profile {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-keynote__photo {
  display: block;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .p-keynote__photo {
    flex: 0 1 49.1rem;
    max-width: 49.1rem;
    min-width: 0;
    height: 33.6rem;
  }
}
.p-keynote__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}
@media only screen and (max-width: 768px) {
  .p-keynote__photo {
    max-width: 100%;
    height: auto;
  }
}
.p-keynote__info {
  flex: 1;
  min-width: 0;
}
.p-keynote__company {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 2rem;
  color: #071320;
  letter-spacing: 0.06rem;
}
@media only screen and (max-width: 768px) {
  .p-keynote__company {
    font-size: 1.8rem;
  }
}
.p-keynote__position {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #071320;
  letter-spacing: 0.048rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .p-keynote__position {
    font-size: 1.4rem;
  }
}
.p-keynote__name {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 4rem;
  color: #071320;
  letter-spacing: 0.048rem;
  margin-top: 0.3rem;
}
@media only screen and (max-width: 768px) {
  .p-keynote__name {
    font-size: 3.2rem;
  }
}
.p-keynote__name-suffix {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.8rem;
}
.p-keynote__name-en {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #651e87;
  letter-spacing: 0.054rem;
  margin-left: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .p-keynote__name-en {
    font-size: 1.4rem;
  }
}
.p-keynote__history p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.048rem;
  color: #071320;
}
@media only screen and (max-width: 768px) {
  .p-keynote__history p {
    font-size: 1.4rem;
  }
}
.p-keynote__bio {
  position: relative;
  background: #fff;
  padding: 2.4rem 2.8rem 2.8rem;
  border-radius: 0px 0px 100px 100px;
}
@media only screen and (max-width: 768px) {
  .p-keynote__bio {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 2rem;
  }
}
.p-keynote__bio-head {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 3.2rem;
  letter-spacing: 0.042rem;
  color: #071320;
}
@media only screen and (max-width: 768px) {
  .p-keynote__bio-head {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}
.p-keynote__bio p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 3.2rem;
  letter-spacing: 0.042rem;
  color: #071320;
}
@media only screen and (max-width: 768px) {
  .p-keynote__bio p {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
}

/* =====================
    パネルディスカッション
===================== */
.p-panel {
  padding: 16rem 0 14rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-panel {
    padding: 6rem 1rem;
  }
}
.p-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 75.3%;
  background: url(../images/bg-panel-top.png) no-repeat top center/100% auto;
  z-index: 0;
  pointer-events: none;
}
.p-panel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding-top: 74.14%;
  background: url(../images/bg-panel.png) no-repeat top center/100% auto;
  z-index: 0;
  pointer-events: none;
}
.p-panel__inner {
  position: relative;
  z-index: 1;
  max-width: 102rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-panel__inner {
    padding: 0 2rem;
  }
}
.p-panel__head {
  text-align: center;
  margin-bottom: 2.4rem;
}
.p-panel__label {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 10px #fff;
}
@media only screen and (max-width: 768px) {
  .p-panel__label {
    font-size: 2.8rem;
  }
}
.p-panel__label-en {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .p-panel__label-en {
    font-size: 1.2rem;
  }
}
.p-panel__title {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 769px) {
  .p-panel__title {
    position: relative;
  }
}
.p-panel__title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: -100vw;
  background: #fff;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .p-panel__title::before {
    display: none;
  }
}
.p-panel__title img {
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}
@media only screen and (min-width: 769px) {
  .p-panel__title img {
    position: relative;
  }
}
.p-panel__title-sp {
  position: relative;
  margin-left: -1rem;
  margin-right: -1rem;
  background: #fff url(../images/sp-2023_w.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  .p-panel__title-sp {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
  }
}
@media only screen and (max-width: 768px) {
  .p-panel__title-sp__overlay {
    padding: 0.7rem 0 0;
    max-width: 3300px;
    margin: auto;
  }
}
.p-panel__visual {
  width: 80rem;
  max-width: 100%;
  margin: 0 auto 4rem;
}
.p-panel__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.p-panel__lead {
  text-align: center;
  max-width: 49.2rem;
  margin: 0 auto 2.4rem;
}
@media only screen and (max-width: 768px) {
  .p-panel__lead {
    max-width: 100%;
  }
}
.p-panel__lead p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 4.2rem;
  letter-spacing: 0.06rem;
  background: linear-gradient(50.11deg, #9435c8 17.5%, #4b429c 44.68%, #2e69ab 72.86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .p-panel__lead p {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
}
.p-panel__text {
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-panel__text {
    text-align: left;
  }
}
.p-panel__text p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3.2rem;
  letter-spacing: 0.03em;
  color: #071320;
}
@media only screen and (max-width: 768px) {
  .p-panel__text p {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}
.p-panel__members {
  position: relative;
  padding-bottom: 60px;
}
.p-panel__row {
  display: flex;
  justify-content: center;
  gap: 7.7rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-panel__row {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }
}
.p-panel__row--bottom {
  gap: 11.5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .p-panel__row--bottom {
    gap: 4rem;
  }
}
.p-panel__member {
  position: relative;
  z-index: 1;
  width: 25rem;
}
@media only screen and (max-width: 768px) {
  .p-panel__member {
    width: 25rem;
  }
}
.p-panel__member--sm {
  width: 22.1rem;
}
@media only screen and (max-width: 768px) {
  .p-panel__member--sm {
    width: 22.1rem;
  }
}
.p-panel__photo {
  line-height: 0;
  margin-bottom: 1.2rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
.p-panel__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-panel__role {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #071320;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-shadow: 0 0 10px #fff;
  margin-bottom: 0.8rem;
}
.p-panel__org {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-panel__org-sub {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.67;
  letter-spacing: 0.03em;
  color: #071320;
  margin-bottom: 0.8rem;
}
.p-panel__name {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.027em;
  color: #071320;
  line-height: 1.3;
}
.p-panel__name span {
  font-size: 1.4rem;
}

/* =====================
    イベント情報
===================== */
.p-event {
  position: relative;
  padding: 4rem 0 0;
}
@media only screen and (min-width: 769px) {
  .p-event {
    margin-top: -14rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-event {
    padding: 4rem 1rem 0;
  }
}
.p-event__inner {
  position: relative;
  z-index: 1;
  max-width: 102rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-event__inner {
    padding: 0 2rem;
  }
}
.p-event__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-event__label {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 10px #fff;
}
.p-event__label-en {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-top: 0.5rem;
}
.p-event__night {
  display: flex;
}
@media only screen and (min-width: 769px) {
  .p-event__night {
    gap: 3rem;
  }
}
.p-event__night {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-event__night {
    flex-direction: column;
  }
  .p-event__night .p-event__night-title {
    order: 1;
  }
  .p-event__night .p-event__night-lead {
    order: 2;
  }
  .p-event__night .p-event__night-photos {
    order: 3;
  }
  .p-event__night .p-event__night-text {
    order: 4;
  }
  .p-event__night .p-event__night-table {
    order: 5;
  }
  .p-event__night .p-event__night-content {
    display: contents;
  }
}
.p-event__night-photos {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media only screen and (min-width: 769px) {
  .p-event__night-photos {
    gap: 3.5rem;
    flex: 0 1 39rem;
    max-width: 39rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-event__night-photos {
    max-width: 100%;
    flex-basis: 100%;
    gap: 1rem;
  }
}
.p-event__night-photo {
  border-radius: 1.5rem;
  overflow: hidden;
  line-height: 0;
}
.p-event__night-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-event__night-content {
  flex: 1;
  min-width: 0;
}
.p-event__night-title {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #071320;
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px #fff;
}
@media only screen and (min-width: 769px) {
  .p-event__night-title {
    margin-bottom: 2rem;
  }
}
.p-event__night-lead {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.03em;
  background: linear-gradient(26deg, #9435c8 17.5%, #4b429c 44.68%, #2e69ab 72.86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.6rem;
}
.p-event__night-text {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .p-event__night-text {
    margin-top: 1rem;
  }
}
.p-event__night-text p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-event__night-row {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, #bbbcfa, #def4f9) 1;
     border-image: linear-gradient(90deg, #bbbcfa, #def4f9) 1;
}
@media only screen and (max-width: 768px) {
  .p-event__night-row {
    flex-direction: column;
    gap: 0.4rem;
  }
  .p-event__night-row:last-child {
    border-bottom: none;
  }
}
.p-event__night-row dt {
  flex-shrink: 0;
  width: 8.4rem;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #071320;
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.64;
}
.p-event__night-row dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #2e69ab;
}
.p-event__night-row dd {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.64;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-event__divider {
  height: 1px;
  background: linear-gradient(90deg, #bbbcfa, #def4f9);
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-event__divider {
    display: none;
  }
}
.p-event__divider--in-list {
  margin-bottom: 0;
}
.p-event__list {
  display: flex;
  flex-direction: column;
}
.p-event__item {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding-top: 4rem;
}
.p-event__item:first-child {
  padding-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-event__item {
    flex-direction: column;
    gap: 2rem;
  }
  .p-event__item .p-event__night-title {
    order: 1;
  }
  .p-event__item .p-event__night-photos {
    order: 2;
  }
  .p-event__item .p-event__night-text {
    order: 3;
  }
  .p-event__item .p-event__night-table {
    order: 4;
  }
  .p-event__item .p-event__body {
    display: contents;
  }
}
.p-event__photo {
  flex: 0 1 47rem;
  max-width: 47rem;
  min-width: 0;
  line-height: 0;
}
@media only screen and (max-width: 768px) {
  .p-event__photo {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.p-event__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-event__body {
  flex: 1;
  min-width: 0;
}
.p-event__body p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
}

/* =====================
    InspirationRound
===================== */
.p-inspiration {
  position: relative;
  padding: 8rem 0 6.8rem;
}
@media only screen and (max-width: 768px) {
  .p-inspiration {
    padding: 6rem 1rem 6.8rem;
  }
}
.p-inspiration::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54.8rem;
  background: url(../images/bg-after-ir.png) no-repeat bottom center/100% auto;
  pointer-events: none;
  z-index: -1;
}
.p-inspiration__inner {
  max-width: 102rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-inspiration__inner {
    padding: 0 2rem;
  }
}
.p-inspiration__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-inspiration__label {
  font-family: "NotoSerifJP", serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #071320;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 10px #fff;
  margin-bottom: -0.4rem;
}
.p-inspiration__label-en {
  font-family: "Hurricane", cursive;
  font-weight: 400;
  font-size: 6rem;
  color: #9435c8;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-shadow: 0 0 10px #fff;
  margin-bottom: 0.5rem;
}
.p-inspiration__bar {
  height: 0.5rem;
  margin: 0 auto;
  background: linear-gradient(90deg, #bbbcfa 0%, #def4f9 100%);
}
@media only screen and (min-width: 769px) {
  .p-inspiration__bar {
    width: 38.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-inspiration__bar {
    width: 100%;
  }
}
.p-inspiration__list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-top: 6rem;
}
@media only screen and (max-width: 768px) {
  .p-inspiration__list {
    gap: 6rem;
    padding-top: 4rem;
  }
}
.p-inspiration__item {
  display: flex;
  align-items: flex-start;
}
@media only screen and (min-width: 769px) {
  .p-inspiration__item {
    gap: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-inspiration__item {
    flex-direction: column;
    gap: 1rem;
  }
  .p-inspiration__item .p-inspiration__title {
    order: 1;
  }
  .p-inspiration__item .p-inspiration__lead {
    order: 2;
  }
  .p-inspiration__item .p-inspiration__photos {
    order: 3;
  }
  .p-inspiration__item .p-inspiration__text {
    order: 4;
  }
  .p-inspiration__item .p-inspiration__gains {
    order: 5;
  }
  .p-inspiration__item .p-inspiration__table {
    order: 6;
  }
  .p-inspiration__item .p-inspiration__body {
    display: contents;
  }
}
.p-inspiration__photos {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  flex: 0 1 39rem;
  max-width: 39rem;
  min-width: 0;
}
@media only screen and (max-width: 768px) {
  .p-inspiration__photos {
    max-width: 100%;
    flex-basis: 100%;
    gap: 1rem;
  }
}
.p-inspiration__photo {
  border-radius: 1.5rem;
  overflow: hidden;
  line-height: 0;
}
.p-inspiration__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.p-inspiration__body {
  flex: 1;
  min-width: 0;
}
.p-inspiration__title {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #071320;
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px #fff;
  line-height: 1.4;
}
@media only screen and (min-width: 769px) {
  .p-inspiration__title {
    margin-bottom: 2rem;
  }
}
.p-inspiration__lead {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.03em;
  background: linear-gradient(26deg, #9435c8 17.5%, #4b429c 44.68%, #2e69ab 72.86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2rem;
}
.p-inspiration__text {
  margin-bottom: 2.4rem;
}
.p-inspiration__text p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-inspiration__text p + p {
  margin-top: 1rem;
}
.p-inspiration__gains {
  background: #e9e9e9;
  border-radius: 1.5rem;
  padding: 2rem 3rem;
}
@media only screen and (min-width: 769px) {
  .p-inspiration__gains {
    margin-bottom: 2.4rem;
  }
}
.p-inspiration__gains-title {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.03em;
  background: linear-gradient(40deg, #9435c8 17.5%, #4b429c 44.68%, #2e69ab 72.86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.p-inspiration__gains-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-inspiration__gains-list li {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-inspiration__divider {
  height: 1px;
  background: linear-gradient(90deg, #bbbcfa, #def4f9);
}
.p-inspiration__table {
  margin-top: 2.4rem;
}
.p-inspiration__row {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, #bbbcfa, #def4f9) 1;
     border-image: linear-gradient(90deg, #bbbcfa, #def4f9) 1;
}
@media only screen and (max-width: 768px) {
  .p-inspiration__row {
    flex-direction: column;
    gap: 0.4rem;
  }
}
.p-inspiration__row--nav {
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: none;
}
.p-inspiration__row dt {
  flex-shrink: 0;
  width: 10rem;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #071320;
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.64;
}
.p-inspiration__row dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #2e69ab;
}
.p-inspiration__row dd {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.64;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-inspiration__row dd a {
  color: #2e69ab;
  word-break: break-all;
}

/* =====================
    宿泊情報
===================== */
.p-hotel {
  padding: 8rem 0;
}
@media only screen and (max-width: 768px) {
  .p-hotel {
    padding: 6rem 1rem;
  }
}
.p-hotel__inner {
  max-width: 102rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-hotel__inner {
    padding: 0 2rem;
  }
}
.p-hotel__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-hotel__label {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 10px #fff;
}
.p-hotel__label-en {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-top: 0.5rem;
}
.p-hotel__content {
  max-width: 80rem;
  margin: 0 auto;
}
.p-hotel__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 4rem;
}
.p-hotel__table--price {
  margin-top: 4rem;
}
.p-hotel__price-head {
  background: #6492c5;
  color: #fff;
  font-family: "NotoSansJP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  padding: 0 1.6rem;
  height: 5.6rem;
  letter-spacing: 0.03em;
  vertical-align: middle;
}
.p-hotel__price-head:first-child {
  width: 18rem;
}
.p-hotel__th {
  background: #2e69ab;
  color: #fff;
  font-family: "NotoSansJP", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  width: 18rem;
  padding: 0 1.6rem;
  height: 5.6rem;
  border-top: 1px solid #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .p-hotel__th {
    width: 12rem;
    font-size: 1.2rem;
    white-space: normal;
  }
}
.p-hotel__td {
  background: #fff;
  color: #212145;
  font-family: "NotoSansJP", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  padding: 0 2rem;
  height: 5.6rem;
  border-top: 1px solid #a4c0de;
  border-left: 1px solid #a4c0de;
  border-bottom: 1px solid #a4c0de;
  vertical-align: middle;
}
.p-hotel__td--stripe {
  background: #f5faff;
}
.p-hotel__notes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}
.p-hotel__notes li {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-hotel__deadline {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #071320;
  margin: 1.6rem 0 3.6rem;
}
.p-hotel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  max-width: 34.3rem;
  width: 100%;
  height: 5.8rem;
  background: #2e69ab;
  color: #fff;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.045em;
  text-decoration: none;
  margin: 3rem auto;
}
@media only screen and (max-width: 768px) {
  .p-hotel__btn {
    width: 100%;
  }
}
.p-hotel__note {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-hotel__btn-arrow {
  display: block;
  width: 0;
  height: 0;
  border-top: 0.55rem solid transparent;
  border-bottom: 0.55rem solid transparent;
  border-left: 0.9rem solid #fff;
  flex-shrink: 0;
}

/* =====================
    アクセス
===================== */
.p-access {
  padding: 8rem 0 0;
}
@media only screen and (max-width: 768px) {
  .p-access {
    padding: 6rem 1rem 0;
  }
}
.p-access__inner {
  max-width: 102rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-access__inner {
    padding: 0 2rem;
  }
}
.p-access__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-access__label {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 10px #fff;
}
.p-access__label-en {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.p-access__content {
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 768px) {
  .p-access__content {
    flex-direction: column;
  }
}
.p-access__map {
  flex: 0 1 49rem;
  max-width: 49rem;
  min-width: 0;
  line-height: 0;
}
@media only screen and (max-width: 768px) {
  .p-access__map {
    max-width: 100%;
    flex-basis: 100%;
  }
}
.p-access__map img {
  width: 100%;
  height: auto;
  display: block;
}
.p-access__info {
  flex: 1;
  min-width: 0;
}
.p-access__routes {
  margin-bottom: 2.4rem;
  list-style: none;
}
.p-access__routes li {
  position: relative;
  padding-left: 1.8rem;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-access__routes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #2e69ab;
}
.p-access__note {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
  margin-bottom: 4rem;
}
.p-access__venue {
  margin-bottom: 2.4rem;
}
.p-access__venue:last-child {
  margin-bottom: 0;
}
.p-access__venue-title {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #071320;
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px #fff;
  margin-bottom: 0.8rem;
}
.p-access__venue-title span {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .p-access__venue-title span {
    font-size: 1.4rem;
  }
}
.p-access__venue-address {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
  margin-bottom: 1.6rem;
}
.p-access__venue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 2rem;
  background: #2e69ab;
  color: #fff;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  gap: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .p-access__venue-btn {
    width: 100%;
    gap: 1rem;
    padding: 0 1rem;
  }
}
.p-access__venue-btn::after {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background: url(../images/icon-access-right.png) no-repeat center/contain;
}

/* =====================
    プログラム
===================== */
.p-program {
  position: relative;
  padding: 13rem 0 7rem;
}
@media only screen and (max-width: 768px) {
  .p-program {
    padding: 6rem 1rem;
  }
}
.p-program::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: url(../images/bg-prog.png) no-repeat top center/100% auto;
  z-index: -1;
  padding-top: 69%;
}
.p-program__inner {
  max-width: 102rem;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .p-program__inner {
    padding: 0 2rem;
  }
}
.p-program__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-program__label-head {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  letter-spacing: 0.06em;
  line-height: 1;
  text-shadow: 0 0 10px #fff;
}
@media only screen and (max-width: 768px) {
  .p-program__label-head {
    font-size: 2.8rem;
  }
}
.p-program__label-en {
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px) {
  .p-program__label-en {
    font-size: 1.2rem;
  }
}
.p-program__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .p-program__list {
    gap: 1rem;
  }
}
.p-program__item {
  display: flex;
  align-items: center;
  position: relative;
  gap: 0;
}
.p-program__time {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: "SmileySans", sans-serif;
  font-style: oblique;
  font-size: 4rem;
  color: #071320;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .p-program__time {
    font-size: 3.2rem;
    left: 0;
  }
}
.p-program__card {
  flex: 1;
  padding: 1.6rem 3rem 1.6rem 7.2rem;
  margin-left: 4.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #fff 59.55%, #ececec 92.14%);
  box-shadow: 0 0.4rem 0.4rem rgba(142, 142, 142, 0.5);
}
@media only screen and (min-width: 769px) {
  .p-program__card {
    min-height: 8.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .p-program__card {
    padding: 1.6rem 2rem 1.6rem 5.5rem;
    margin-left: 2.5rem;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-program__label {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.03em;
  background: linear-gradient(100deg, #9435c8 13.4%, #4b429c 56.7%, #2e69ab 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 768px) {
  .p-program__label {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 769px) {
  .p-program__title {
    margin: 0.8rem 0;
  }
}
.p-program__title img {
  display: block;
  height: auto;
}
@media only screen and (min-width: 769px) {
  .p-program__title img {
    margin-top: 0.5em;
  }
}
.p-program__title-sp {
  max-width: 100%;
  margin: 0 auto;
}
.p-program__sub {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: #071320;
  margin-top: 0.4rem;
}
@media only screen and (max-width: 768px) {
  .p-program__sub {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 768px) {
  .p-program__sub-note {
    display: block;
    font-size: 1.4rem;
  }
}
.p-program__people {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-program__people span {
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .p-program__people p {
    margin-top: 0.5em;
  }
}
@media only screen and (max-width: 768px) {
  .p-program__people:not(:has(p))::before,
  .p-program__people p::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #4b429c;
    margin-right: 0.6rem;
    vertical-align: middle;
  }
}
.p-program__overview {
  background: #fff;
  margin-left: 4.5rem;
  margin-bottom: 4rem;
  padding: 3rem 4rem;
}
@media only screen and (max-width: 768px) {
  .p-program__overview {
    margin-left: 0;
    padding: 2rem;
    margin-bottom: 3rem;
  }
}
.p-program__overview-title {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #071320;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .p-program__overview-title {
    font-size: 2rem;
  }
}
.p-program__overview-table {
  display: flex;
  flex-direction: column;
}
.p-program__overview-row {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid;
  -o-border-image: linear-gradient(90deg, #bbbcfa, #def4f9) 1;
     border-image: linear-gradient(90deg, #bbbcfa, #def4f9) 1;
}
@media only screen and (max-width: 768px) {
  .p-program__overview-row {
    flex-direction: column;
    gap: 0.4rem;
  }
}
.p-program__overview-row dt {
  flex-shrink: 0;
  width: 8rem;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #071320;
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.64;
}
.p-program__overview-row dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #2e69ab;
}
.p-program__overview-row dd {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.64;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-program__section-title {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #071320;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  margin-left: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .p-program__section-title {
    margin-left: 0;
    text-align: center;
    font-size: 2rem;
  }
}

/* =====================
    全国NBCのPR行脚 旅日記
===================== */
.p-pr {
  padding: 0 0 6rem;
}
@media only screen and (min-width: 769px) {
  .p-pr {
    margin-top: -6rem;
    padding-top: 6rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-pr {
    margin-top: -2rem;
    padding-top: 2rem;
  }
}
.p-pr__inner {
  max-width: 102rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.p-pr__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-pr__label-catch {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  background: linear-gradient(114.44deg, #9435c8 13.4%, #4b429c 56.7%, #2e69ab 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  margin-bottom: 0.4rem;
}
.p-pr__label {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  letter-spacing: 0.096rem;
  line-height: 1.5;
  margin: 0;
}
.p-pr__label-en {
  margin-top: 0.5rem;
  font-family: "NotoSerifJP", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.03rem;
}
.p-pr__intro {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}
.p-pr__intro-body {
  flex: 1;
}
.p-pr__intro-body p {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  color: #071320;
  letter-spacing: 0.048rem;
  margin: 0;
}
.p-pr__intro-sign {
  margin-top: 2rem !important;
}
.p-pr__intro-img {
  width: 30rem;
  flex-shrink: 0;
  margin: 0;
}
.p-pr__intro-img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-pr__slider {
  position: relative;
}
.p-pr__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 5.6rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.p-pr__nav img {
  display: block;
  width: 100%;
  height: auto;
}
.p-pr__nav--prev {
  left: -2.8rem;
}
.p-pr__nav--next {
  right: -2.8rem;
}
.p-pr__card-wrap {
  overflow: hidden;
  border-radius: 2rem;
}
.p-pr__card {
  padding: 4rem 8rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, #fff 59.55%, #ececec 92.14%);
  box-shadow: 0 0.4rem 0.4rem rgba(142, 142, 142, 0.5);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.p-pr__card.is-exit-left {
  transform: translateX(-100%);
  opacity: 0;
}
.p-pr__card.is-exit-right {
  transform: translateX(100%);
  opacity: 0;
}
.p-pr__card.is-enter-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: none;
}
.p-pr__card.is-enter-right {
  transform: translateX(100%);
  opacity: 0;
  transition: none;
}
.p-pr__title {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0.072rem;
  background: linear-gradient(100deg, #9435c8 13.4%, #4b429c 56.7%, #2e69ab 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.p-pr__bar {
  width: 30rem;
  height: 0.5rem;
  margin: 1.6rem auto 3rem;
  background: linear-gradient(90deg, #bbbcfa 0%, #def4f9 100%);
}
.p-pr__photos {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
}
.p-pr__photo {
  flex: 1;
  border-radius: 1rem;
  overflow: hidden;
}
.p-pr__photo img {
  display: block;
  width: 100%;
}
.p-pr__text {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  color: #071320;
  letter-spacing: 0.048rem;
}
.p-pr__text p {
  margin: 0;
}
.p-pr__list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  list-style: none;
}
.p-pr__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  border: none;
  border-radius: 0.4rem;
  overflow: hidden;
  cursor: pointer;
}
.p-pr__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-pr__thumb span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  background: rgba(0, 0, 0, 0.41);
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.042rem;
  color: #fff;
  text-align: center;
}
.p-pr__item.is-active .p-pr__thumb span {
  background: transparent;
}
@media only screen and (max-width: 768px) {
  .p-pr__intro {
    flex-direction: column;
    gap: 2.4rem;
  }
  .p-pr__intro-img {
    width: 100%;
  }
  .p-pr__nav {
    width: 3.6rem;
  }
  .p-pr__nav--prev {
    left: -1rem;
  }
  .p-pr__nav--next {
    right: -1rem;
  }
  .p-pr__card {
    padding: 2.4rem 1.6rem;
  }
  .p-pr__title {
    font-size: 1.8rem;
  }
  .p-pr__bar {
    width: 60%;
  }
  .p-pr__photos {
    flex-direction: column;
    gap: 1.6rem;
  }
  .p-pr__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
  .p-pr__thumb span {
    padding: 0.4rem;
    font-size: 1.1rem;
  }
}

.p-sponsor {
  position: relative;
  padding: 10rem 0 5rem;
  background: url(../images/bg-kyosan_sm.png) no-repeat top center;
  background-size: 100% 100%;
}
@media screen and (min-width: 1501px) {
  .p-sponsor {
    padding: 10rem 0 10rem;
  }
}
.p-sponsor__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.p-sponsor__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-sponsor__label {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12rem;
}
.p-sponsor__label-en {
  margin-top: 0.5rem;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
}
.p-sponsor__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-sponsor__row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.p-sponsor__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.p-sponsor__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-sponsor__item--lg {
  width: calc((100% - 1rem) / 2);
  aspect-ratio: 385/195;
}
.p-sponsor__item--md {
  width: calc((100% - 2rem) / 3);
  aspect-ratio: 261/125;
}
.p-sponsor__item--sm {
  width: calc((100% - 3rem) / 4);
  aspect-ratio: 11/4;
}
.p-sponsor__item--sq {
  width: calc((100% - 6rem) / 7);
  aspect-ratio: 1/1;
}
.p-sponsor__item--sq6 {
  width: calc((100% - 6rem) / 7);
  aspect-ratio: 1/1;
}
.p-sponsor__item--dummy {
  background: #fff;
  box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.25);
}
.p-sponsor__item--dummy span {
  font-size: 1.2rem;
  color: #999;
}
@media only screen and (max-width: 768px) {
  .p-sponsor::before {
    padding-top: 56.8981481481vw;
  }
  .p-sponsor__inner {
    padding: 0 1.6rem;
  }
  .p-sponsor__row {
    gap: 0.8rem;
  }
  .p-sponsor__item--lg {
    width: 100%;
    aspect-ratio: 385/195;
  }
  .p-sponsor__item--md {
    width: calc((100% - 0.8rem) / 2);
    aspect-ratio: 261/125;
  }
  .p-sponsor__item--sm {
    width: calc((100% - 0.8rem) / 2);
    aspect-ratio: 11/4;
  }
  .p-sponsor__item--sq {
    width: calc((100% - 1.6rem) / 3);
    aspect-ratio: 1/1;
  }
  .p-sponsor__item--sq6 {
    width: calc((100% - 1.6rem) / 3);
    aspect-ratio: 1/1;
  }
}

.p-greeting {
  scroll-margin-top: 6rem;
  position: relative;
  padding: 0 0 13rem;
}
@media only screen and (min-width: 769px) {
  .p-greeting::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: calc((100vw - 32rem) * 548.5 / 1040);
    background: url(../images/bg-goaisatu.png) no-repeat top center/100% auto;
    z-index: -1;
    pointer-events: none;
  }
}
.p-greeting__inner {
  position: relative;
  z-index: 1;
  max-width: 102rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}
.p-greeting__head {
  text-align: center;
  margin-bottom: 4rem;
}
.p-greeting__label {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12rem;
}
.p-greeting__label-en {
  margin-top: 0.5rem;
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
}
.p-greeting__content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
@media only screen and (min-width: 769px) {
  .p-greeting__profile {
    flex: 0 1 27.7rem;
    max-width: 27.7rem;
    min-width: 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-greeting__profile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.p-greeting__photo {
  display: block;
  width: 100%;
  margin-bottom: 1.2rem;
}
.p-greeting__org {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
}
.p-greeting__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #071320;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
  margin: 0.4rem 0;
}
.p-greeting__text {
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #071320;
  flex: 1;
  min-width: 0;
}
.p-greeting__text p + p {
  margin-top: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .p-greeting {
    padding: 6rem 0;
  }
  .p-greeting::before {
    padding-top: 52.7403846154vw;
  }
  .p-greeting__content {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .p-greeting__profile {
    width: 100%;
    text-align: left;
    margin: 0;
    position: relative;
  }
  .p-greeting__profile::before {
    content: "";
    position: absolute;
    top: 9.6rem;
    left: -1.6rem;
    width: calc(100% + 3.2rem);
    height: auto;
    padding-top: 96%;
    background: url(../images/sp-bg-greeting.png) no-repeat center/100%;
    z-index: -1;
  }
  .p-greeting__photo {
    width: 27.7rem;
    position: relative;
    z-index: 1;
  }
  .p-greeting__org, .p-greeting__name {
    position: relative;
    z-index: 1;
  }
  .p-greeting__text {
    font-size: 1.4rem;
    line-height: 3.2rem;
  }
}

/* =====================
    フォーラム参加お申込み
===================== */
.p-entry {
  position: relative;
  background: url(../images/bg-cv.png) no-repeat center/cover;
  padding: 5rem 0 6rem;
}
@media only screen and (max-width: 768px) {
  .p-entry {
    padding: 7rem 1.6rem 14rem;
  }
}
.p-entry__inner {
  max-width: 102rem;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-entry__head {
  text-align: center;
  margin-bottom: 3rem;
}
.p-entry__label {
  font-family: "NotoSerifJP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #071320;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12rem;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .p-entry__label {
    line-height: 1.4;
  }
}
.p-entry__label-en {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #651e87;
  letter-spacing: 0.048rem;
  margin-top: 0.5rem;
}
.p-entry__btn-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 53.6rem;
  width: 100%;
  height: 8.3rem;
  border-radius: 5rem;
  background: linear-gradient(117.62deg, #9435c8 13.4%, #4b429c 56.7%, #2e69ab 100%);
  box-shadow: 0 0.4rem 0.57rem #c0cfe0;
  text-decoration: none;
  margin-bottom: 1.6rem;
  transition: opacity 0.2s ease;
}
.p-entry__btn-link:hover, .p-entry__btn-link.js-reveal.is-visible:hover {
  opacity: 0.6;
}
.p-entry__btn-en {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.06rem;
  line-height: 1;
}
.p-entry__btn-ja {
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 0.16rem;
  line-height: 1.2;
}
.p-entry__inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29.5rem;
  height: 4.6rem;
  border: 1px solid #9435c8;
  border-radius: 5rem;
  background: #fff;
  box-shadow: 0 0.4rem 0.57rem #c0cfe0;
  font-family: "BIZUDPGothic", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.048rem;
  color: #071320;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.p-entry__inquiry-btn:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 768px) {
  .p-entry__inner {
    padding: 0;
  }
  .p-entry__btn-link {
    width: 100%;
    height: 7rem;
    margin-bottom: 1.2rem;
  }
  .p-entry__btn-ja {
    font-size: 2.4rem;
  }
  .p-entry__inquiry-btn {
    width: 100%;
  }
}

/* =====================
    Scroll Reveal
===================== */
.js-reveal,
.js-reveal-left,
.js-reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js-reveal {
  transform: translateY(3rem);
}

@media only screen and (min-width: 769px) {
  .js-reveal-left {
    transform: translateX(-4rem);
  }
  .js-reveal-right {
    transform: translateX(4rem);
  }
}
@media only screen and (max-width: 768px) {
  .js-reveal-left,
  .js-reveal-right {
    transform: translateY(3rem);
  }
}
.js-reveal.is-visible,
.js-reveal-left.is-visible,
.js-reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes kvDateFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes kvDateFadeInSp {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.blur {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  filter: blur(1em);
  scale: 1.1;
}
.blur.isActive {
  opacity: 1;
  filter: blur(0);
  scale: 1;
  transition: scale 1s var(--ease-out-quart), opacity 1s var(--ease-out-quart), filter 1.4s var(--ease-out-quart);
}

.js-char-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-char-reveal.is-visible span {
  opacity: 1;
  transform: none;
}

/* =====================
    footer
===================== */
.l-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
  padding: 3rem 1.6rem;
  flex-direction: column;
}
.l-footer__logo {
  display: block;
  width: 22.5rem;
  height: auto;
}
.l-footer__copyright {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #071320;
  letter-spacing: 0.024rem;
}
@media only screen and (max-width: 768px) {
  .l-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */