@charset "UTF-8";
/* ==================================================
+ Reset
-------------------------------------------------- */
html, body, header, footer, section, nav, article, aside, figure, figcaption, div, address, h1, h2, h3, h4, h5, h6, p, blockquote, span, pre, code, var, time, samp, kbd, a, em, strong, small, s, q, cite, mark, ins, del, ol, ul, li, hr, sub, sup, i, b, u, br, wbr, dl, dt, dd, dfn, abbr, ruby, rt, rp, bdi, bdo, img, iframe, embed, object, param, video, audio, source, track, canvas, map, area, table, caption, colgroup, col, tbody, thead, tfoot, tr, td, th, form, fieldset, legend, label, input, button, select, datalist, optgroup, option, textarea, keygen, output, progress, meter, details, summary, command, menu {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: inherit;
}

*, ::before, ::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

table {
  font-size: 100%;
}

ul, ol {
  list-style: none;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.4s;
}
a img {
  transition: all 0.4s;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  opacity: 0.7;
}

picture {
  display: block;
}

main {
  display: block;
}

/* ==================================================
+ 基本設定
-------------------------------------------------- */
:root {
  --header: 49px;
  scroll-padding: var(--header);
}
@media screen and (max-width: 1024px) {
  :root {
    --header: 46px;
  }
}
@media screen and (max-width: 750px) {
  :root {
    --header: 43px;
  }
}

html {
  font-size: 62.5%;
  line-height: 1;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, Helvetica Neue, Segoe UI, Hiragino Kaku Gothic ProN, Hiragino Sans, ヒラギノ角ゴ ProN W3, Arial, メイリオ, Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #595758;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  overflow: hidden;
  position: relative;
}

.u-xl, .u-lg, .u-md, .u-sm, .u-xs, .u-pc, .u-sp {
  display: none;
}
@media screen and (min-width: 1201px) and (max-width: 1920px) {
  .u-xl {
    display: inherit;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .u-lg {
    display: inherit;
  }
}
@media screen and (min-width: 751px) and (max-width: 1024px) {
  .u-md {
    display: inherit;
  }
}
@media screen and (min-width: 375px) and (max-width: 750px) {
  .u-sm {
    display: inherit;
  }
}
@media screen and (max-width: 374px) {
  .u-xs {
    display: inherit;
  }
}
@media screen and (min-width: 751px) {
  .u-pc {
    display: inherit;
  }
}
@media screen and (max-width: 750px) {
  .u-sp {
    display: inherit;
  }
}
.u-bold {
  font-weight: bold !important;
}
.u-ti1 {
  text-indent: -1em;
  padding-left: 1em;
}
.u-tal {
  text-align: left;
}
.u-tac {
  text-align: center;
}
.u-tar {
  text-align: right;
}
.u-fadeInUp {
  opacity: 0;
  transform: translateY(5%);
  filter: blur(10px);
  transition: filter 0.8s, transform 0.8s, opacity 0.8s;
}
.u-fadeInUp.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.u-btn {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #211c18;
  text-align: center;
  padding: 0.75em 2em 0.75em 1em;
  background-color: #f6dd17;
  border: 2px solid #211c18;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(33, 28, 24, 0.2);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .u-btn {
    display: block;
    padding: 1em;
    text-align: center;
    font-size: 16px;
  }
}
.u-btn::before, .u-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  transition: border-color 0.4s;
}
.u-btn::before {
  display: inline-block;
  width: 0;
  height: 0;
  transform: translate(calc(50% + 1px), -50%);
  border-width: 4px 0 4px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #211c18;
}
.u-btn::after {
  display: block;
  width: 25px;
  height: 25px;
  transform: translate(50%, -50%);
  border: 1px solid #211c18;
  border-radius: 50%;
}
.u-btn:hover {
  background-color: #f2c910;
}
.u-btn.-disabled {
  color: #eee;
  background-color: #aaa;
  border-color: #aaa;
  box-shadow: none;
  pointer-events: none;
}
.u-btn.-disabled::before {
  content: none;
}
.u-btn.-disabled::after {
  content: none;
}
.u-ttl {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 750px) {
  .u-ttl {
    font-size: 24px;
  }
}
.u-ttl.-white {
  color: #fff;
}
.u-ttl .-sm {
  font-size: 80%;
}
.u-ttl .-notes {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-top: 1em;
}
@media screen and (max-width: 750px) {
  .u-ttl .-notes {
    font-size: 12px;
  }
}
.u-inner {
  max-width: 940px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .u-inner {
    max-width: 680px;
  }
}

/* ==================================================
+ 個別設定
-------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f6dd17;
  border-bottom: 1px solid #fff;
  overflow-x: auto;
  z-index: 999;
}
.l-header-list {
  display: flex;
  min-width: max-content;
}
.l-header-list > li {
  flex: 1 1 auto;
  text-align: center;
}
.l-header-list > li:nth-child(n+2):not(.-apply) {
  position: relative;
}
.l-header-list > li:nth-child(n+2):not(.-apply)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 80%;
  transform: translateY(-50%);
  background-color: rgba(89, 87, 88, 0.4);
}
.l-header-list > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #211c18;
  padding: 0.75em;
  transition: background-color 0.4s;
}
@media screen and (max-width: 1024px) {
  .l-header-list > li > a {
    font-size: 15px;
  }
}
@media screen and (max-width: 750px) {
  .l-header-list > li > a {
    font-size: 14px;
  }
}
.l-header-list > li > a:hover {
  background-color: #f2c910;
}

.sec__mv {
  text-align: center;
  margin-top: var(--header);
}

.sec__lead {
  padding: 80px 0;
  background-color: #f8f2e8;
}
@media screen and (max-width: 750px) {
  .sec__lead {
    padding: 40px 0;
  }
}
.sec__lead-txt {
  font-size: 18px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .sec__lead-txt {
    font-size: 15px;
  }
}
.sec__lead-txt p + p {
  margin-top: 1em;
}
.sec__lead-txt p.-lg {
  font-size: 120%;
}
.sec__lead-txt .-label {
  font-size: 111%;
  font-weight: bold;
  color: #211c18;
  letter-spacing: 0.04em;
  background: linear-gradient(transparent 70%, #f6dd17 70%);
}
.sec__lead-tbl {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (max-width: 750px) {
  .sec__lead-tbl {
    margin-top: 30px;
  }
}
.sec__lead-tbl dl {
  display: flex;
}
@media screen and (max-width: 750px) {
  .sec__lead-tbl dl {
    flex-direction: column;
  }
}
.sec__lead-tbl dt,
.sec__lead-tbl dd {
  font-size: 18px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .sec__lead-tbl dt,
  .sec__lead-tbl dd {
    font-size: 15px;
  }
}
.sec__lead-tbl dt .-sm,
.sec__lead-tbl dd .-sm {
  font-size: 85%;
}
.sec__lead-tbl dt {
  flex: 0 0 auto;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-align: center;
  padding: 0.5em;
  background-color: #f6dd17;
}
@media screen and (max-width: 750px) {
  .sec__lead-tbl dt {
    width: 100%;
  }
}
.sec__lead-tbl dd {
  flex: 1 1 auto;
  padding: 1em 1.5em;
}
@media screen and (max-width: 750px) {
  .sec__lead-tbl dd {
    text-align: center;
    padding: 1em;
  }
}

.sec__howto {
  padding: 80px 0;
  background-color: #f6dd17;
}
@media screen and (max-width: 750px) {
  .sec__howto {
    padding: 40px 0;
  }
}
.sec__howto-list {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .sec__howto-list {
    gap: 30px;
  }
}
@media screen and (max-width: 750px) {
  .sec__howto-list {
    flex-direction: column;
  }
}
.sec__howto-list li {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(89, 87, 88, 0.2);
}
@media screen and (max-width: 750px) {
  .sec__howto-list li {
    padding: 30px 20px;
  }
}
.sec__howto-list-img {
  text-align: center;
  margin-bottom: 5px;
}
.sec__howto-list-ttl {
  font-size: 24px;
  font-weight: bold;
  color: #211c18;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .sec__howto-list-ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 750px) {
  .sec__howto-list-ttl {
    font-size: 20px;
  }
}
.sec__howto-list-txt {
  margin-bottom: 20px;
}
.sec__howto-list-txt p {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .sec__howto-list-txt p {
    font-size: 15px;
  }
}
.sec__howto-list-txt p + p {
  margin-top: 0.75em;
}
.sec__howto-list-btn {
  margin-top: auto;
}
.sec__howto-movie {
  max-width: 800px;
  margin: 60px auto 0;
}
@media screen and (max-width: 750px) {
  .sec__howto-movie {
    margin-top: 30px;
  }
}
.sec__howto-movie-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.sec__howto-movie-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec__program {
  padding: 80px 0;
  background-color: #efefef;
}
@media screen and (max-width: 750px) {
  .sec__program {
    padding: 40px 0;
  }
}
.sec__program-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 750px) {
  .sec__program-list {
    gap: 30px;
  }
}
.sec__program-list-label {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 750px) {
  .sec__program-list-label {
    font-size: 20px;
  }
}
.sec__program-list-label:before {
  content: "■";
  display: inline-block;
  margin-right: 0.5em;
  font-size: 75%;
  color: #f2c910;
}
.sec__program-list-label .-sm {
  font-size: 80%;
  margin-top: auto;
}
.sec__program-list-wrap {
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .sec__program-list-wrap {
    padding: 20px;
  }
}
.sec__program-list-shoulder {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 750px) {
  .sec__program-list-shoulder {
    font-size: 16px;
  }
}
.sec__program-list-ttl {
  font-size: 28px;
  font-weight: bold;
  color: #211c18;
}
@media screen and (max-width: 750px) {
  .sec__program-list-ttl {
    font-size: 18px;
  }
}
.sec__program-list-ttl .-sm {
  font-size: 80%;
}
.sec__program-list-txt {
  margin-top: 1em;
}
.sec__program-list-txt p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .sec__program-list-txt p {
    font-size: 14px;
  }
}
.sec__program-list-txt p + p {
  margin-top: 0.5em;
}
.sec__program-list-person {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
.sec__program-list-person p {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .sec__program-list-person p {
    flex-wrap: wrap;
    font-size: 15px;
  }
}
.sec__program-list-person p + p {
  margin-top: 0.5em;
}
.sec__program-list-person p .-sm {
  font-size: 80%;
}
.sec__program-list-person .-label {
  flex: 0 0 auto;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #211c18;
  line-height: 1.25;
  padding: 2px 8px;
  background-color: #f6dd17;
  margin-top: 1em;
  margin-right: 0.5em;
}
@media screen and (max-width: 750px) {
  .sec__program-list-person .-label {
    margin-bottom: 0.25em;
  }
}
.sec__program-list-person .-label:first-child {
  margin-top: 0;
}
.sec__program-list-person .-sub {
  flex: 0 0 auto;
  display: inline-block;
  width: calc(5em + 2px);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  padding: 1px 0.5em;
  border: 1px solid currentColor;
  margin-right: 0.5em;
}
@media screen and (max-width: 750px) {
  .sec__program-list-person .-sub {
    font-size: 14px;
    margin-bottom: 0.25em;
  }
}

.sec__speaker {
  padding: 80px 0;
  background-color: #595758;
}
@media screen and (max-width: 750px) {
  .sec__speaker {
    padding: 40px 0;
  }
}
.sec__speaker-wrap {
  position: relative;
}
.sec__speaker-wrap + .sec__speaker-wrap {
  margin-top: 40px;
}
.sec__speaker-ttl {
  display: inline-block;
  position: relative;
  right: 0;
  font-size: 18px;
  font-weight: bold;
  color: #211c18;
  line-height: 1.25;
  padding: 0.5em 1em;
  border-radius: 6px 6px 0 0;
  background-color: #f6dd17;
}
@media screen and (max-width: 750px) {
  .sec__speaker-ttl {
    font-size: 16px;
    border-radius: 4px 4px 0 0;
  }
}
.sec__speaker-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 40px;
  border-radius: 0 10px 10px 10px;
}
@media screen and (max-width: 750px) {
  .sec__speaker-list {
    padding: 20px;
    gap: 40px;
    border-radius: 0 6px 6px 6px;
  }
}
.sec__speaker-list li {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 750px) {
  .sec__speaker-list li {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.sec__speaker-list-img {
  flex: 0 0 auto;
}
@media screen and (max-width: 750px) {
  .sec__speaker-list-img img {
    width: 120px;
    height: auto;
  }
}
@media screen and (max-width: 750px) {
  .sec__speaker-list-info {
    width: 100%;
  }
}
.sec__speaker-list-ttl {
  font-size: 20px;
  font-weight: bold;
  color: #211c18;
  line-height: 1.25;
}
@media screen and (max-width: 750px) {
  .sec__speaker-list-ttl {
    font-size: 18px;
    text-align: center;
  }
}
.sec__speaker-list-ttl .-sm {
  font-size: 75%;
}
.sec__speaker-list-posi {
  font-size: 15px;
  margin-top: 0.5em;
}
@media screen and (max-width: 750px) {
  .sec__speaker-list-posi {
    font-size: 13px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.sec__speaker-list-txt {
  margin-top: 0.75em;
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .sec__speaker-list-txt {
    margin-top: 1em;
    font-size: 15px;
  }
}
.sec__speaker-list-txt p + p {
  margin-top: 0.75em;
}

.sec__sponsor {
  padding: 80px 0;
}
@media screen and (max-width: 750px) {
  .sec__sponsor {
    padding: 40px 0;
  }
}
.sec__sponsor-nothing {
  margin-top: 2em;
  font-size: 18px;
  text-align: center;
  padding: 2em;
  border: 1px solid #595758;
}
@media screen and (max-width: 750px) {
  .sec__sponsor-nothing {
    font-size: 15px;
    padding: 1.5em;
  }
}
.sec__sponsor-txt {
  margin-top: 40px;
}
.sec__sponsor-txt p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .sec__sponsor-txt p {
    font-size: 14px;
  }
}
.sec__sponsor-txt p + p {
  margin-top: 0.5em;
}
.sec__sponsor-txt p a {
  color: #1274c9;
  text-decoration: underline;
}
.sec__sponsor-txt p a:hover {
  color: #37478e;
}
.sec__sponsor-txt p.-arrowR {
  display: flex;
  align-items: center;
}
.sec__sponsor-txt p.-arrowR::before {
  content: "▶";
  display: inline-block;
  font-size: 12px;
  padding-right: 0.75em;
}
.sec__sponsor-list {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 60px;
}
.sec__sponsor-list .alpha {
  font-size: 0.8em;
  font-weight: 700;
  text-align: right;
  flex-basis: 100%;
}

.sec__movie {
  padding: 80px 0;
  background-color: #f6dd17;
}
@media screen and (max-width: 750px) {
  .sec__movie {
    padding: 40px 0;
  }
}
.sec__movie-body {
  max-width: 800px;
  margin: 0 auto;
}
.sec__movie-wrap {
  position: relative;
  height: 0;
  padding-top: 56.25%;
}
.sec__movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sec__apply {
  padding: 60px 0;
  background-color: #efefef;
}
@media screen and (max-width: 750px) {
  .sec__apply {
    padding: 40px 0;
  }
}
.sec__apply-wrap {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .sec__apply-wrap {
    padding: 20px;
  }
}
.sec__apply-ttl {
  font-size: 18px;
  font-weight: bold;
  color: #211c18;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 750px) {
  .sec__apply-ttl {
    font-size: 15px;
  }
}
.sec__apply-txt + .sec__apply-ttl {
  margin-top: 1.5em;
}
@media screen and (max-width: 750px) {
  .sec__apply-txt p {
    font-size: 14px;
  }
}
.sec__apply-txt p + p {
  margin-top: 0.5em;
}
.sec__apply-txt a {
  color: #1274c9;
  text-decoration: underline;
}
.sec__apply-txt a:hover {
  color: #37478e;
}

.sec__press {
  padding: 60px 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .sec__press {
    padding: 40px 0;
    text-align: left;
  }
}
.sec__press-txt {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .sec__press-txt {
    font-size: 14px;
  }
}
.sec__press-txt p + p {
  margin-top: 0.75em;
}
.sec__press-contact {
  width: fit-content;
  margin: 30px auto 0;
  padding: 30px 40px;
  border: 1px solid #595758;
  border-radius: 6px;
}
@media screen and (max-width: 750px) {
  .sec__press-contact {
    padding: 20px 15px;
    text-align: center;
  }
}
.sec__press-contact-ttl {
  font-size: 18px;
  font-weight: bold;
  color: #211c18;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 750px) {
  .sec__press-contact-ttl {
    font-size: 16px;
  }
}
.sec__press-contact-txt {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .sec__press-contact-txt {
    font-size: 14px;
  }
}
.sec__press-contact-txt p + p {
  margin-top: 0.75em;
}
.sec__press-contact-txt p.-sm {
  font-size: 80%;
}
.sec__press-contact-txt a {
  color: #1274c9;
  text-decoration: underline;
}
.sec__press-contact-txt a:hover {
  color: #37478e;
}

#pagetop {
  position: fixed;
  right: 15px;
  bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25em;
  background-color: #f6dd17;
  border: 1px solid #211c18;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 999;
}
@media screen and (max-width: 750px) {
  #pagetop {
    right: 10px;
    bottom: 10px;
    padding: 1em;
  }
}
#pagetop:before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #211c18;
  border-left: 2px solid #211c18;
  transform: translateY(3px) rotate(45deg);
}
@media screen and (max-width: 750px) {
  #pagetop:before {
    width: 8px;
    height: 8px;
  }
}
#pagetop:hover {
  background-color: #f2c910;
}/*# sourceMappingURL=style.css.map */