/* 配色設定

====================================================*/
:root {
  --btn-bg: linear-gradient(
    270deg,
    #edd994 0%,
    #dfbd64 20%,
    #e7cc83 40%,
    #fffcde 60%,
    #eddfa7 80%,
    #deb96b 100%
  );
  --btn-border: linear-gradient(
    135deg,
    #a2682a 0%,
    #be8c3c 8%,
    #be8c3c 18%,
    #d3b15f 27%,
    #e7d180 35%,
    #ffffc2 40%,
    #faf0a0 50%,
    #d3b15f 58%,
    #be8c3c 67%,
    #b17b32 77%,
    #bb8332 83%,
    #d4a245 88%,
    #e1b453 93%,
    #a4692a 100%
  );
  --btn-color: #101010;
  --btn-svg: brightness(0) saturate(100%) invert(0%) sepia(9%) saturate(4%)
    hue-rotate(325deg) brightness(101%) contrast(97%);
  --svg-white: brightness(0) saturate(100%) invert(98%) sepia(97%) saturate(0%)
    hue-rotate(345deg) brightness(105%) contrast(104%);
  --svg-black: brightness(0) saturate(100%);
  --key-color: #5e96d8;
  --key-svg: brightness(0) saturate(100%) invert(65%) sepia(99%) saturate(3287%)
    hue-rotate(144deg) brightness(98%) contrast(101%);
  --main-color: #5e96d8;
  --pink: #ff73b1;
  --gray: #f0f2f4;

  --bg-close-blue: repeating-linear-gradient(
      45deg,
      rgba(0, 193, 210, 0.5),
      rgba(0, 193, 210, 0.5) 1px,
      transparent 0,
      transparent 10px
    ),
    repeating-linear-gradient(
      315deg,
      rgba(0, 193, 210, 0.5),
      rgba(0, 193, 210, 0.5) 1px,
      transparent 0,
      transparent 10px
    );

  --bg-close-pink: repeating-linear-gradient(
      45deg,
      rgba(255, 115, 177, 0.5),
      rgba(255, 115, 177, 0.5) 1px,
      transparent 0,
      transparent 4px
    ),
    repeating-linear-gradient(
      315deg,
      rgba(255, 115, 177, 0.5),
      rgba(255, 115, 177, 0.5) 1px,
      transparent 0,
      transparent 4px
    );

  --red: #ff3838;

  --font-color: #101010;
  --form-bg: #fff;
  --form-color: #101010;
  --border-color: #c3c6d1;
  --agreement-bg: rgba(195, 198, 209, 0.5);
  --checkbox-bg: #0b4679;
  --form-border-style: 1px solid #c3c6d1;
  --form-border-radius: 3px;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--font-color);
}

.body__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: url(img/bg.webp) no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

#fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100px;
  z-index: 5;
  transition: opacity 0.5s ease;
}

#fixed::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(18, 47, 88, 0.8);
  backdrop-filter: blur(10px);
}
#fixed .link-form-ttl {
  font-size: 12px;
  font-weight: 600;
}

#fixed .link-form-ttl::after,
#fixed .link-form-ttl::before {
  height: 18px;
  width: 2px;
}

#fixed .link-form-ttl::before {
  margin-right: 8px;
}

#fixed .link-form-ttl::after {
  margin-left: 8px;
}

#fixed .link-form-wrap {
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  opacity: 1;
}

#fixed .link-form {
  padding: 8px 32px;
}
@media screen and (max-width: 800px) {
  #fixed .link-form-wrap {
    padding: 0 16px;
  }

  #fixed .link-form-ttl {
    line-height: 1.2;
    margin-bottom: 8px;
  }
  #fixed .link-form {
    font-size: 18px;
    padding: 8px;
    width: 100%;
  }
}

/*.fade-slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease;
}*/

.fade-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 企業ロゴ

====================================================*/
#mainVisual .logo_wrap {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  margin: 0 -24px;
  white-space: nowrap;
}

.logo ul {
  display: inline-flex;
  justify-content: center;
  height: 100%;
  padding: 0;
  /* animation: logo-scroll 55s infinite linear 1.5s both; */
  list-style: none;
}

.logo ul li {
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  min-height: 60px;
  border-radius: 16px;
  margin-right: 16px;
}

.logo ul li img {
  width: auto;
  max-width: inherit;
  height: 30px;
}

@media screen and (max-width: 800px) {
  .logo {
    padding: 0;
  }
  .logo ul li img {
    height: 30px;
  }
  .logo ul li img.logo-tokai {
    height: 25px;
  }
}

/* base

====================================================*/

.only--sp {
  display: none !important;
}
.only--pc {
  display: block;
}

@media screen and (max-width: 786px) {
  .body__bg {
    background: url(img/bg-sp.webp) no-repeat center center / cover;
  }
  .only--sp {
    display: flex !important;
  }
  .only--pc {
    display: none !important;
  }
}

/* mainVisual

====================================================*/
#mainVisual {
  background-size: 100%;
  padding: 120px 24px 0;
  text-align: center;
  position: relative;
  display: grid;
  gap: 40px;
}

#mainVisual .ogp {
  width: 100%;
  margin: 0 auto 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  /* height: 60vh; */
  max-width: 1440px;
  overflow: hidden;
  gap: 45px;
}
#mainVisual .ogp > div {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.ogp__img img,
.opg__ttl img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  max-height: 100%;
}
.ogp__date {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  gap: 16px;
}
.ogp__date img {
  margin-left: 16px;
  max-width: 120px;
  width: 100%;
}
.ogp__date-inner {
  white-space: nowrap;
}
.ogp__date .date {
  font-size: 50px;
  margin-right: 8px;
}
.ogp__date .week {
  font-size: 24px;
  margin-right: 16px;
}
.ogp__date .time {
  font-size: 40px;
}
.ogp__logo {
  padding: 16px;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.ogp__logo img {
  background: #fff;
  padding: 10px 16px;
  height: 45px;
}
/* .ogp__img {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overflow: hidden;
  width: 100%;
} */
/* .slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider__track {
  display: flex;
  transition: transform 0.6s ease;
  height: 100%;
}

.slider__slide {
  flex: 0 0 100%;
  margin: auto;
  height: 100%;
}

.slider__slide img {
  width: 99%;
  height: 99%;
  display: block;
  object-fit: contain;
} */

.font__family--protest {
  font-family: "Protest Strike", sans-serif;
  font-weight: 400;
  font-size: 100px;
  position: relative;
  z-index: 1;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.font__family--japanese {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 50px;
  line-height: 140%;
}

@media screen and (max-width: 786px) {
  #mainVisual {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #mainVisual .ogp {
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    gap: 24px;
  }

  .ogp__img,
  .opg__ttl {
    height: inherit;
  }
  .ogp__date {
    font-size: 32px;
    line-height: 85%;
    padding-top: 16px;
  }
  .ogp__date .date {
    font-size: 24px;
  }
  .ogp__date .week {
    font-size: 16px;
    margin-right: 0;
  }
  .ogp__date .time {
    font-size: 24px;
    display: block;
    margin-top: 8px;
  }
  .ogp__logo {
    padding-top: 16px;
    gap: 16px;
  }
  .font__family--japanese {
    font-size: 24px;
  }
  .opg__ttl .font__family--japanese::before {
    font-size: 16px;
  }
  /* .opg__outline {
    font-size: 18px;
    gap: 8px;
    flex-direction: column;
  }
  .opg__outline .ogp__week {
    font-size: 14px;
    margin-left: 4px;
  } */
  .ogp__logo {
    flex-direction: column;
  }
  .ogp__list {
    width: 100%;
  }
  .ogp__list li.sub {
    width: 100%;
    justify-content: end;
  }
  .ogp__list li.sub img {
    height: 20px;
  }
}

.link-form-wrap {
  margin: 0 auto;
}
.link-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: var(--btn-bg);
  color: var(--btn-color);
  padding: 8px 16px;
  font-size: 24px;
  font-weight: 600;
  max-width: 472px;
  width: 100%;
  transition: 0.2s;
  border-radius: 50px;
  position: relative;
}

.link-form::before {
  content: "";
  background: var(--btn-border);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 2px solid transparent;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}

.link-form img {
  width: 20px;
  height: auto;
  margin-right: 10px;
  filter: var(--svg-black) !important;
}

.link-form-ttl {
  margin-bottom: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  padding: 0 24px;
  border-radius: 16px;
  color: #fff;
}
.link-form-ttl_black {
  color: #121212;
}

.link-form-ttl::after,
.link-form-ttl::before {
  height: 44px;
  width: 2px;
  content: "";
  display: block;
  background-color: #fff;
}
.link-form-ttl_black::after,
.link-form-ttl_black::before {
  background-color: #121212;
}

.link-form-ttl::before {
  margin-right: 16px;
  transform: rotate(-30deg);
}

.link-form-ttl::after {
  margin-left: 16px;
  transform: rotate(30deg);
}

@media screen and (max-width: 786px) {
  .link-form-ttl {
    padding: 0;
    font-size: 16px;
  }
  .link-form {
    font-size: 24px;
  }
}
/* マウスオーバーした際のデザイン */
a.btn:hover,
.wpcf7 .wpcf7-submit:hover {
  transform: translate(0, 3px);
}
/* 
@media screen and (max-width: 786px) {
  #fixed::before {
    background-size: cover;
  }

  #fixed .link-form-wrap {
    padding: 0 16px;
  }

  .wpcf7 .wpcf7-submit {
    font-size: 18px;
  }
  .link-form {
    font-size: 18px;
  }
} */

.only-sp {
  display: none;
}
@media screen and (max-width: 786px) {
  .only-pc {
    display: none;
  }
  .only-sp {
    display: flex;
  }
}
/* header

====================================================*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 16px;
  position: fixed;
  z-index: 5;
  backdrop-filter: blur(10px);
}
.header.scrolled::after {
  content: "";
  opacity: 0.7;
  z-index: -1;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header > div.header_nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: space-between;
}
.menus-entry {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .logo {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin: 0;
}
.header .logo img {
  height: 20px;
}
.header ul.menus {
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  row-gap: 8px;
}

.header ul.menus a {
  color: #fff;
  padding: 0 15px;
  display: block;
  font-weight: 600;
}

.header ul.menus a:hover {
  opacity: 0.5;
}

#overlay .link-form {
  max-width: inherit;
  width: auto;
  font-size: 18px;
  padding: 8px 16px;
}

#header.fixed {
  position: fixed;
  background-color: #fff;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}

@media screen and (max-width: 786px) {
  /* .header .logo img {
    height: 15px;
  } */
  .header {
    height: 68px;
    gap: 8px;
    padding: 12px 16px;
  }
  #overlay.open .logo,
  #overlay.open .link-form {
    display: block;
  }
  .header .logo {
    /* position: fixed; */
    z-index: 13;
  }
  .header .link-form {
    font-size: 16px;
    width: initial;
    margin: 0;
    margin-left: auto;
    white-space: nowrap;
  }
  .link-form-ttl.only-sp {
    display: flex;
  }
  .header > div.header_nav {
    flex-grow: initial;
  }

  #overlay {
    opacity: 0;
    z-index: -5;
    width: 1px;
  }

  #overlay .logo {
    display: block;
    position: absolute;
    left: 12px;
    top: 17px;
    z-index: 5;
  }

  #overlay.open {
    opacity: 1;
    z-index: 10;
    position: fixed;
    top: 0;
    bottom: 0;
    background-size: cover;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 24px;
    height: 100vh;
    background: url(img/bg-sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
    flex-direction: column;
    width: 100%;
  }

  .header ul.menus {
    display: none;
    margin: 0 auto;
    padding: 97px 0 0;
    flex-direction: column;
  }

  .header ul.menus a {
    padding: 0;
    font-size: 20px;
    font-size: 16px;
    font-weight: 600;
  }

  #overlay.open ul.menus {
    display: block;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }

  .header ul.menus li {
    margin-bottom: 20px;
  }

  #overlay.open .wpcf7-submit {
    max-width: 386px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }

  body.open {
    overflow: hidden;
  }

  #overlay .link-form {
    /* background: linear-gradient(90deg, #fbb907 0%, #f45124 100%); */
    max-width: 400px;
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    position: relative;
    align-items: center;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
  }

  #overlay .link-form::after {
    margin-left: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31px;
    height: 31px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  #overlay .link-form img {
    width: 16px;
  }
}

/* スマホ : メニューボタン */
.menus_btn-wrap {
  position: relative;
  display: none;
  right: 0;
  top: 0;
  z-index: 50;
}

#overlay-button {
  z-index: 5;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
}

#overlay-button span {
  height: 2px;
  width: 18px;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
}

#overlay-button span::before {
  top: -8px;
  visibility: visible;
}

#overlay-button span::after {
  top: 8px;
}

#overlay-button span::before,
#overlay-button span::after {
  height: 2px;
  width: 18px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}

#overlay-button:hover span,
#overlay-button:hover span::before,
#overlay-button:hover span::after {
  background: #fff;
}

.menus_btn-wrap input[type="checkbox"] {
  display: none;
}

.menus_btn-wrap input[type="checkbox"]:checked ~ #overlay {
  visibility: visible;
}

.menus_btn-wrap input[type="checkbox"]:checked ~ #overlay-button:hover span,
.menus_btn-wrap input[type="checkbox"]:checked ~ #overlay-button span {
  background: transparent;
}

.menus_btn-wrap input[type="checkbox"]:checked ~ #overlay-button span::before {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.menus_btn-wrap input[type="checkbox"]:checked ~ #overlay-button span::after {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

@media screen and (max-width: 786px) {
  .menus_btn-wrap {
    display: block;
  }

  .header ul.menus a {
    display: flex;
    align-items: center;
    font-weight: 600;
    text-shadow: none;
    color: #fff;
    padding-bottom: 12px;
  }

  .header ul.menus a:hover {
    opacity: 0.7;
  }

  .header ul.menus a::before {
    content: "";
    width: 15px;
    height: 2px;
    margin-right: 8px;
    background: #fff;
  }

  .menus_btn-wrap.open #overlay-button span::before,
  .menus_btn-wrap.open #overlay-button span::after {
    background-color: #fff;
  }

  .menus_btn-wrap.open #overlay-button:hover span,
  .menus_btn-wrap.open #overlay-button:hover span::before,
  .menus_btn-wrap.open #overlay-button:hover span::after {
    background: #fff;
  }
}
/* section

====================================================*/
section {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 112px 32px;
  position: relative;
}

@media screen and (max-width: 786px) {
  section {
    padding: 64px 24px;
  }
  #timetable section {
    padding-left: 16px;
  }
  #timetable .section-ttl-en {
    margin-bottom: 0;
  }
}

.section-ttl {
  /* text-align: center; */
  margin-bottom: 64px;
  color: #fff;
}

.section-ttl-en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
  color: #121212;
}
.section-ttl-ja {
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 786px) {
  .section-ttl {
    margin-bottom: 32px;
  }

  .section-ttl-en {
    font-size: 32px;
  }
  #timetable .section-ttl {
    padding-left: 8px;
  }
}

/* concept

====================================================*/

.triangle--overlay::after {
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.triangle--overlay--left::before {
  /* clip-path: polygon(0 100%, 0 0, 100% 100%); */
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
.triangle--overlay--left::before,
.triangle--overlay::after {
  content: "";
  display: block;
  height: 97px;
  width: 100%;
  aspect-ratio: 1;
  background-color: #fff;
}
/* .concept-section-bg {
  position: relative;
} */
#concept {
  width: 100%;
  max-width: none;
  background-color: #fff;
  padding: 120px 0;
  margin-top: -2px;
  margin-bottom: -2px;
  color: #121212;
}
#concept .section-content {
  display: grid;
  gap: 52px;
}

#concept .section-ttl {
  text-align: center;
  margin-bottom: 16px;
}
#concept .font__family--japanese {
  justify-content: center;
}
#concept .section-content-ttl {
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #121212;
}
#concept .section-content-ttl h1 {
  font-weight: 600;
  font-size: 60px;
}
#concept .section-content-ttl p {
  font-size: 24px;
}
.section-content-subttl p {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
}

#concept .section-content .section-content-txt {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 180%;
}

#concept .section-content .section-content-txt p {
  margin-bottom: 16px;
}

#concept .section-content .section-content-txt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 786px) {
  #concept {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  #concept .section-content {
    gap: 40px;
  }
  #concept .section-ttl {
    margin: 0;
  }
  #concept .section-content-ttl {
    text-align: left;
  }
  #concept .section-ttl-en {
    font-size: 16px;
  }
  #concept .font__family--japanese {
  }

  section#concept {
    padding: calc(80px - 16px) 24px 64px;
  }

  #concept .section-content-ttl,
  .section-content-subttl p {
    text-align: left;
    font-size: 24px;
    margin-bottom: 0;
  }
  #concept .section-content-ttl h1 {
    font-size: 28px;
    text-align: center;
  }
  #concept .section-content-ttl p {
    font-size: 20px;
  }
  #concept .flex {
    flex-direction: column;
  }

  #concept .flex .section-ttl {
    margin-right: 0;
    text-align: center;
    margin-bottom: 32px;
  }
  p.font__family--japanese {
    text-align: left;
  }
  .triangle--overlay--left::before,
  .triangle--overlay::after {
    height: 40px;
  }
}

/* cta

====================================================*/
.cta {
  /* background: rgba(0, 0, 0, 0.5); */
  color: #fff;
  padding: 80px 16px;
  text-align: center;
}
.cta__title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.cta__title::after,
.cta__title::before {
  height: 44px;
  width: 2px;
  content: "";
  display: block;
  background-color: #fff;
}

.cta__title::before {
  margin-right: 16px;
  transform: rotate(-30deg);
}

.cta__title::after {
  margin-left: 16px;
  transform: rotate(30deg);
}
.cta__note {
  color: #fff;
}
@media screen and (max-width: 786px) {
  .cta__title {
    font-size: 18px;
    gap: 0;
  }
  .cta__title::after,
  .cta__title::before {
    height: 22px;
  }
}

/* スポンサー

====================================================*/
#sponsor .section-ttl {
  color: #fff;
  text-align: center;
}

.sponsor__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 8px 0;
  gap: 16px;
  justify-content: center;
}

.sponsor__item {
  background-color: #fff;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  min-height: 80px;
  border-radius: 16px;
}
.sponsor__item img {
  height: 60px;
  width: auto;
}

.sponsor__item a {
  display: block;
}
.sponsor__item a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 500px) {
  .sponsor__item {
    width: 100%;
  }
}

/* about

====================================================*/

.about-section-bg {
  background-color: #fff;
}
#about {
  max-width: 1020px;
  width: 100%;
  background-color: #fff;
  padding: 200px 0;
  color: #121212;
  margin-top: -2px;
  margin-bottom: -2px;
}

#about .section-ttl {
  text-align: center;
}
#about .section-ttl-en {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
#about .section-ttl-ja {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #121212;
}

#about table {
  width: 100%;
  border-top: 1px solid var(--border-color);
  border-spacing: 0;
}

#about th,
#about td {
  border-bottom: 1px solid var(--border-color);
  padding: 40px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
}
#about th {
  font-weight: 600;
}
#about td .sp_block {
  display: none;
}

@media screen and (max-width: 786px) {
  #about {
    padding: 100px 0;
  }
  #about table {
    width: 85%;
    margin: 0 auto;
  }
  #about th,
  #about td {
    padding: 24px 16px;
    line-height: inherit;
  }

  #about td {
    padding-left: 0;
  }

  #about td .sp_block {
    display: block;
  }
}

/* form

====================================================*/
#form {
  color: #fff;
  padding-bottom: 120px;
}

@media screen and (max-width: 786px) {
  .form-section-bg .section-ttl-en {
    font-size: 48px !important;
  }
  .form-section-bg .section-ttl-ja {
    font-size: 16px !important;
  }
}
/*====================================================*/

/* footer

====================================================*/
footer {
  padding: 40px 16px 16px;
  text-align: center;
  /* background: #000; */
  /*backdrop-filter: blur(16px);*/
  background: rgba(18, 18, 18, 0.5);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 82px;
}

.footer-wrap img {
  height: 35px;
  width: auto;
  /* filter: brightness(0) saturate(100%); */
}

.footer-wrap .menu {
  display: flex;
  list-style: none;
}

.footer-wrap .menu li {
  margin-right: 40px;
}

.footer-wrap .menu li:last-child {
  margin-right: 0;
}

.footer-wrap .menu a {
  font-size: 16px;
  color: #fff;
}

small {
  font-size: 16px;
  line-height: 16px;
  color: #fff;
}

@media screen and (max-width: 786px) {
  footer {
  }

  .footer-wrap {
    flex-direction: column;
    margin-bottom: 64px;
  }

  .footer-wrap img {
    height: 45px;
  }

  .footer-wrap .menu {
    margin-top: 64px;
    flex-direction: column;
  }

  .footer-wrap .menu li {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .footer-wrap .menu li:last-child {
    margin-bottom: 0;
  }

  .footer-wrap .menu a {
  }

  small {
  }
}

/* modal

====================================================*/

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: calc(100% - 32px);
  z-index: 10;
  background: #121212;
  height: 90vh;
  backdrop-filter: blur(16px);
  border-radius: 8px;
  border: 1px solid #fff;
}

.modal__scroll {
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 24px;
  max-height: 100%;
  overflow: auto;
}
.modal__bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  z-index: 5;
  cursor: pointer;
}
/* .modal__bg {
  background: url(img/bg.webp);
  background-size: cover;
  opacity: 0.7;
} */
.modal__header {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  padding: 0;
  border-radius: 8px 8px 0 0;
  position: sticky;
  top: 0;
  flex-grow: 1;
}
.modal__close {
  margin-left: auto;
  position: absolute;
  top: 24px;
  right: 24px;
  background: url(img/icon-close.svg);
  width: 32px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.modal__time {
  font-size: 18px;
  font-weight: 600;
}
.modal__session {
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
}

.modal__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: baseline;
  /* overflow: scroll; */
  padding: 0 40px 40px;
}
.modal__time {
  font-size: 24px;
  font-weight: 600;
}
.modal__line {
  display: block;
  width: 89px;
  background-color: #fff;
  padding: 4px 8px;
  text-align: center;
  font-size: 14px;
  color: #121212;
  font-weight: 600;
  margin-top: 40px;
}
.modal__subtitle:empty {
  display: none;
}
.modal__title {
  font-size: 26px;
  font-weight: 600;
}

.modal__speaker {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
}
.modal__speaker-item {
  display: flex;
  gap: 24px;
  align-items: self-start;
}
.modal__img {
  width: 246px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.modal__img-speaker {
  max-width: 400px;
  width: 246px;
  aspect-ratio: 1/1;
  overflow: hidden;
  order: 2;
}
.modal__img-speaker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal__img-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal__img-logo {
  order: 1;
  background-color: #fff;
  text-align: center;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
}
.modal__img-logo:empty {
  display: none;
}
.modal__profile {
  max-width: calc(100% - 200px - 24px);
  width: 100%;
  font-size: 14px;
  padding-top: 24px;
}
.modal__name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.modal__bio {
  margin-top: 16px;
}
.modal__subtitle {
  background: linear-gradient(-45deg, #b582f7 0%, #0095ed 50%, #00a4cc 100%);
  padding: 4px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.modal__name:empty {
  display: none;
}
.modal__moderator-item {
  border-top: 1px solid #fff;
  padding-top: 32px;
}
.modal__moderator-block {
  display: flex;
  gap: 32px;
}
.modal__moderator-title {
  width: 89px;
  padding: 4px 8px;
  background-color: #fff;
  color: #121212;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 24px;
}
.modal__moderator-item .modal__img {
  width: 150px;
}
.modal__moderator-block .modal__profile{
  max-width: calc(100% - 150px - 24px);
}
.modal__img-moderator {
  width: 100%;
}
.modal__moderator-item .modal__name {
  margin-bottom: 0;
}
.modal__program {
  width: 100%;
}
.modal__description {
  font-size: 14px;
}
@media screen and (max-width: 786px) {
  .modal {
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
    transform: translate(0);
    height: calc(100% - 48px);
  }
  .modal__scroll {
    padding: 0;
  }
  .modal__header {
    flex-wrap: wrap;
    font-size: 18px;
  }
  .modal__img {
    width: 100%;
  }
  .modal__img-speaker {
    max-width: 300px;
    /* width: 150px; */
    margin: 0 auto;
  }
  .modal__line {
    font-size: 12px;
    margin-top: 0;
  }
  .modal__speaker-item {
    /* gap: 16px; */
    flex-wrap: wrap;
    flex-direction: column;
  }
  .modal__profile {
    max-width: 100%;
    padding-top: 0;
  }
  .modal__img-logo {
    padding: 0 12px;
    min-height: 40px;
  }
  .modal__img-logo img {
    object-fit: contain;
  }
  .modal__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .modal__img-wrap {
    gap: 8px;
  }
  .modal__body {
    padding: 20px;
  }
  .modal__time {
    font-size: 18px;
  }
  .modal__session {
    font-size: 18px;
  }
  .modal__moderator-block {
    gap: 24px;
  }
}

@media screen and (max-width: 414px) {
  .modal__profile {
    max-width: 100%;
  }
  .modal__img-wrap {
    flex-direction: column;
  }
  .modal__moderator-block {
    gap: 24px;
    flex-direction: column;
    align-items: center;
  }
  .modal__moderator-block .modal__profile{
    max-width: calc(100% );
  }
  /* .modal__img-logo {
    max-width: 126px;
  } */
  .modal__title {
    font-size: 18px;
  }
}

/**/

/* timetable

====================================================*/
.timetable__content {
  color: #fff;
}
.timetable__content {
  display: flex;
  gap: 16px;
}
.timetable__content:has(.program) {
  flex-direction: column;
  gap: 0;
}
#timetable .section-ttl-en {
  color: #fff;
  font-size: 48px;
}
.timetable__time {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}
.timetable__time::before {
  content: "";
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background: #fff;
}
.subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}

.timetable__section {
  position: relative;
  padding: 24px 0;
}
.timetable__section span {
  background: url(img/section-bg.webp) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 16px 0;
  padding-left: calc(48px + 24px);
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}

.timetable__section::before {
  content: "";
  background: #fff;
  width: 2px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(24px / 2 - 1px);
}

.program {
  display: flex;
  position: relative;
  justify-content: end;
}
.program::before {
  content: "";
  background: #fff;
  width: 2px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(24px / 2 - 1px);
}
.program-ed::before {
  display: none;
}
.program__wrap {
  display: flex;
  max-width: calc(100% - 24px);
  width: 100%;
  margin: 32px 0px 32px calc(48px + 24px);
  padding: 60px;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  color: #fff;
  position: relative;
  flex-wrap: wrap;
}
.program__wrap::after {
  content: "→";
  transition: transform 0.3s ease;
  position: absolute;
  bottom: 16px;
  right: 24px;
  color: #fff;
}
.program-ed .program__wrap::after {
  display: none;
}
.program__wrap:hover::after {
  transform: translateX(8px);
}

.program__wrap:hover {
  opacity: 0.9;
  cursor: pointer;
}
.program-ed .program__wrap:hover {
  opacity: 1;
  cursor: auto;
}

/* .program__wrap > * {
  width: 50%;
} */
.program__img {
  max-width: 400px;
  width: 100%;
}
.program__text {
  max-width: calc(100% - 400px - 24px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-right: 24px;
}
.program__number-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}
.program-ed .program__number-wrap {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.program__number {
  font-size: 40px;
  font-weight: 600;
}

.program__logos {
  display: flex;
}

.program__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #fff;
  border-radius: 8px;
  min-height: 62px;
  overflow: hidden;
}
.program-ed .program__logo {
  margin-right: auto;
  display: inline-flex;
}
.program__logo2-kakeru {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像のはみ出し防止（高さ基準＋比率維持） */
.program__logo img {
  width: auto !important;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.program-ed .program__logo img {
  height: 20px !important;
}
.program__title {
  font-size: 24px;
  font-weight: 600;
}
.program__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* object-position: bottom; */
}
.program__speakers_wrap,
.program__moderator_wrap {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.program__speakers_title,
.program__moderator_title {
  width: 89px;
  font-size: 12px;
  color: #121212;
  background-color: #fff;
  padding: 4px 8px;
  text-align: center;
  font-weight: 600;
}
.program__speakers_block,
.program__moderator_block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.program__speaker_item,
.program__moderator_item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.program__speakers,
.program__moderator_name {
  font-weight: 600;
  font-size: 14px;
}
.program__company,
.program__moderator_company {
  font-size: 12px;
}
.program__speakers_wrap_closing {
  margin-top: 20px;
}

.form-section-bg .section-ttl {
  text-align: center;
}
.form-section-bg .section-ttl-en {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}
.form-section-bg .section-ttl-ja {
  font-size: 16px;
}
.program__detail {
  font-size: 14px;
}
.program__detail:empty {
  display: none;
}
@media screen and (max-width: 900px) {
  .timetable__section span {
    padding-left: 32px;
    font-size: 16px;
  }
  .timetable__time {
    font-size: 14px;
  }
  .program__wrap {
    flex-direction: column;
    max-width: calc(100% - 24px);
    width: 100%;
    margin: 16px 0px 24px 24px;
    padding: 32px 24px 40px;
  }
  .program-ed .program__wrap{
    padding: 32px 24px 32px;
  }
  /* .program__wrap > * {
    width: 100%;
  } */
  .program__number-wrap {
    display: block;
  }
  .program__img {
    /* display: none; */
    margin: 0 auto;
  }
  .subtitle {
    font-size: 16px !important;
  }
  .program__text {
    max-width: 100%;
    gap: 16px;
    margin-right: 0;
  }
  .program__number {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .program__logo {
    border-radius: 4px;
    padding: 0 8px;
    min-height: 40px;
  }
  .program__logo img {
    height: 25px;
    max-height: 30px;
    width: auto;
    object-fit: contain;
  }

  .program__title {
    font-size: 18px;
    font-weight: 600;
  }
  .timetable__section {
    padding: 16px 0;
  }
  .program::before,
  .timetable__section::before {
    left: calc(18px / 2 - 1px);
  }
  .program__detail {
    font-size: 14px;
  }
  .program__img {
    max-width: 400px;
  }
  .timetable__time::before {
    width: 18px;
    height: 18px;
  }
  .program__speakers_wrap,
  .program__moderator_wrap {
    flex-direction: column;
    gap: 16px;
  }
  .program__speaker_item,
  .program__moderator_item {
    align-items: baseline;
    gap: 0 12px;
    flex-wrap: wrap;
  }
  .program__moderator_wrap {
    display: none;
  }
}

.modal__img:empty {
  display: none;
}
.modal__speaker-item:has(.modal__img:empty) .modal__profile {
  max-width: 100%;
}
/**/
/* 
.timetable__time,
.modal__time {
  display: none;
}
.subtitle {
  display: flex;
  gap: 16px;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}
.subtitle::before {
  content: "";
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background: #fff;
}
.timetable__section::after {
  content: "";
  border-radius: 50%;
  width: 24px;
  height: 24px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.timetable__section span{
  margin-left: 12px;
}

@media screen and (max-width: 900px) {

  .subtitle::before {
    width: 18px;
    height: 18px;
  }
.timetable__section::after {
  width: 18px;
  height: 18px;
}
.timetable__section span{
  margin-left: 8px;
}
} */
