@charset "UTF-8";
/* font-color */
.white {
  color: #fff;
}
.black {
  color: #000;
}
.sumi {
  color: #333333;
}
.gray {
  color: #707070;
}
.light-gray {
  color: #cccccc;
}
.yellow {
  color: #edf430;
}
.blue {
  color: #006cda;
}
.light-blue {
  color: #cee0f4;
}
.bg-white {
  background-color: #fff;
}
.bg-black {
  background-color: #000;
}
.bg-sumi {
  background-color: #333333;
}
.bg-gray {
  background-color: #707070;
}
.bg-light-gray {
  background-color: #cccccc;
}
.bg-light-light-gray {
  background-color: #f7f7f7;
}
.bg-yellow {
  background-color: #edf430;
}
.bg-blue {
  background-color: #006cda;
}
.bg-light-blue {
  background-color: #cee0f4;
}
/* breakpoint */
/*transition*/
/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
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%;
  font: inherit;
  vertical-align: baseline;
}

@font-face {
  font-family: sans-serif;
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: sans-serif;
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
@font-face {
  font-family: "Hiragino Kaku Gothic Pro W3";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Kaku Gothic Pro W3";
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
@font-face {
  font-family: "ヒラギノ角ゴ Pro W3";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: "ヒラギノ角ゴ Pro W3";
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
@font-face {
  font-family: "ヒラギノ角ゴ ProN W3";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@font-face {
  font-family: "ヒラギノ角ゴ ProN W3";
  src: local(HiraginoSans-W6);
  font-weight: 700;
}
/* HTML5 display-role reset for older browsers
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
} */
html {
  font-size: 10px;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 10px;
  font-family: "Noto Sans Japanese", "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: normal;
  line-height: 1.6;
  color: #333333;
  background: #fff;
}
body.is-fixed {
  width: 100%;
  position: fixed;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (max-width: 768px) {
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

img[src$=".svg"] {
  width: 100%;
}

video {
  display: block;
  max-width: 100%;
  width: 100%;
}

* {
  box-sizing: border-box;
  word-break: break-all;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
a:hover {
  transform: scale(1.05);
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

.no-control {
  overflow: hidden;
}

body.fixed {
  position: fixed;
  width: 100%;
}

input[type=submit], input[type=checkbox] {
  appearance: none;
  border-radius: 0;
}

b {
  font-weight: 700 !important;
}

/*--------------------------------------------------------------------
  utility css
--------------------------------------------------------------------*/
/* Scss Document */
/* clearfix - utility
--------------------------------------------------------- */
.for-pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .for-pc {
    display: none !important;
  }
}

.for-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .for-sp {
    display: inline-block;
  }
}

.u-mt-1 {
  margin-top: 1%;
}

.u-mr-1 {
  margin-right: 1%;
}

.u-mb-1 {
  margin-bottom: 1%;
}

.u-ml-1 {
  margin-left: 1%;
}

.u-pt-1 {
  padding-top: 1%;
}

.u-pr-1 {
  padding-right: 1%;
}

.u-pb-1 {
  padding-bottom: 1%;
}

.u-pl-1 {
  padding-left: 1%;
}

.u-mt-2 {
  margin-top: 2%;
}

.u-mr-2 {
  margin-right: 2%;
}

.u-mb-2 {
  margin-bottom: 2%;
}

.u-ml-2 {
  margin-left: 2%;
}

.u-pt-2 {
  padding-top: 2%;
}

.u-pr-2 {
  padding-right: 2%;
}

.u-pb-2 {
  padding-bottom: 2%;
}

.u-pl-2 {
  padding-left: 2%;
}

.u-mt-3 {
  margin-top: 3%;
}

.u-mr-3 {
  margin-right: 3%;
}

.u-mb-3 {
  margin-bottom: 3%;
}

.u-ml-3 {
  margin-left: 3%;
}

.u-pt-3 {
  padding-top: 3%;
}

.u-pr-3 {
  padding-right: 3%;
}

.u-pb-3 {
  padding-bottom: 3%;
}

.u-pl-3 {
  padding-left: 3%;
}

.u-mt-4 {
  margin-top: 4%;
}

.u-mr-4 {
  margin-right: 4%;
}

.u-mb-4 {
  margin-bottom: 4%;
}

.u-ml-4 {
  margin-left: 4%;
}

.u-pt-4 {
  padding-top: 4%;
}

.u-pr-4 {
  padding-right: 4%;
}

.u-pb-4 {
  padding-bottom: 4%;
}

.u-pl-4 {
  padding-left: 4%;
}

.u-mt-5 {
  margin-top: 5%;
}

.u-mr-5 {
  margin-right: 5%;
}

.u-mb-5 {
  margin-bottom: 5%;
}

.u-ml-5 {
  margin-left: 5%;
}

.u-pt-5 {
  padding-top: 5%;
}

.u-pr-5 {
  padding-right: 5%;
}

.u-pb-5 {
  padding-bottom: 5%;
}

.u-pl-5 {
  padding-left: 5%;
}

.u-mt-6 {
  margin-top: 6%;
}

.u-mr-6 {
  margin-right: 6%;
}

.u-mb-6 {
  margin-bottom: 6%;
}

.u-ml-6 {
  margin-left: 6%;
}

.u-pt-6 {
  padding-top: 6%;
}

.u-pr-6 {
  padding-right: 6%;
}

.u-pb-6 {
  padding-bottom: 6%;
}

.u-pl-6 {
  padding-left: 6%;
}

.u-mt-7 {
  margin-top: 7%;
}

.u-mr-7 {
  margin-right: 7%;
}

.u-mb-7 {
  margin-bottom: 7%;
}

.u-ml-7 {
  margin-left: 7%;
}

.u-pt-7 {
  padding-top: 7%;
}

.u-pr-7 {
  padding-right: 7%;
}

.u-pb-7 {
  padding-bottom: 7%;
}

.u-pl-7 {
  padding-left: 7%;
}

.u-mt-8 {
  margin-top: 8%;
}

.u-mr-8 {
  margin-right: 8%;
}

.u-mb-8 {
  margin-bottom: 8%;
}

.u-ml-8 {
  margin-left: 8%;
}

.u-pt-8 {
  padding-top: 8%;
}

.u-pr-8 {
  padding-right: 8%;
}

.u-pb-8 {
  padding-bottom: 8%;
}

.u-pl-8 {
  padding-left: 8%;
}

.u-mt-9 {
  margin-top: 9%;
}

.u-mr-9 {
  margin-right: 9%;
}

.u-mb-9 {
  margin-bottom: 9%;
}

.u-ml-9 {
  margin-left: 9%;
}

.u-pt-9 {
  padding-top: 9%;
}

.u-pr-9 {
  padding-right: 9%;
}

.u-pb-9 {
  padding-bottom: 9%;
}

.u-pl-9 {
  padding-left: 9%;
}

.u-mt-10 {
  margin-top: 10%;
}

.u-mr-10 {
  margin-right: 10%;
}

.u-mb-10 {
  margin-bottom: 10%;
}

.u-ml-10 {
  margin-left: 10%;
}

.u-pt-10 {
  padding-top: 10%;
}

.u-pr-10 {
  padding-right: 10%;
}

.u-pb-10 {
  padding-bottom: 10%;
}

.u-pl-10 {
  padding-left: 10%;
}

.u-mt-11 {
  margin-top: 11%;
}

.u-mr-11 {
  margin-right: 11%;
}

.u-mb-11 {
  margin-bottom: 11%;
}

.u-ml-11 {
  margin-left: 11%;
}

.u-pt-11 {
  padding-top: 11%;
}

.u-pr-11 {
  padding-right: 11%;
}

.u-pb-11 {
  padding-bottom: 11%;
}

.u-pl-11 {
  padding-left: 11%;
}

.u-mt-12 {
  margin-top: 12%;
}

.u-mr-12 {
  margin-right: 12%;
}

.u-mb-12 {
  margin-bottom: 12%;
}

.u-ml-12 {
  margin-left: 12%;
}

.u-pt-12 {
  padding-top: 12%;
}

.u-pr-12 {
  padding-right: 12%;
}

.u-pb-12 {
  padding-bottom: 12%;
}

.u-pl-12 {
  padding-left: 12%;
}

.u-mt-13 {
  margin-top: 13%;
}

.u-mr-13 {
  margin-right: 13%;
}

.u-mb-13 {
  margin-bottom: 13%;
}

.u-ml-13 {
  margin-left: 13%;
}

.u-pt-13 {
  padding-top: 13%;
}

.u-pr-13 {
  padding-right: 13%;
}

.u-pb-13 {
  padding-bottom: 13%;
}

.u-pl-13 {
  padding-left: 13%;
}

.u-mt-14 {
  margin-top: 14%;
}

.u-mr-14 {
  margin-right: 14%;
}

.u-mb-14 {
  margin-bottom: 14%;
}

.u-ml-14 {
  margin-left: 14%;
}

.u-pt-14 {
  padding-top: 14%;
}

.u-pr-14 {
  padding-right: 14%;
}

.u-pb-14 {
  padding-bottom: 14%;
}

.u-pl-14 {
  padding-left: 14%;
}

.u-mt-15 {
  margin-top: 15%;
}

.u-mr-15 {
  margin-right: 15%;
}

.u-mb-15 {
  margin-bottom: 15%;
}

.u-ml-15 {
  margin-left: 15%;
}

.u-pt-15 {
  padding-top: 15%;
}

.u-pr-15 {
  padding-right: 15%;
}

.u-pb-15 {
  padding-bottom: 15%;
}

.u-pl-15 {
  padding-left: 15%;
}

.u-mt-16 {
  margin-top: 16%;
}

.u-mr-16 {
  margin-right: 16%;
}

.u-mb-16 {
  margin-bottom: 16%;
}

.u-ml-16 {
  margin-left: 16%;
}

.u-pt-16 {
  padding-top: 16%;
}

.u-pr-16 {
  padding-right: 16%;
}

.u-pb-16 {
  padding-bottom: 16%;
}

.u-pl-16 {
  padding-left: 16%;
}

.u-mt-17 {
  margin-top: 17%;
}

.u-mr-17 {
  margin-right: 17%;
}

.u-mb-17 {
  margin-bottom: 17%;
}

.u-ml-17 {
  margin-left: 17%;
}

.u-pt-17 {
  padding-top: 17%;
}

.u-pr-17 {
  padding-right: 17%;
}

.u-pb-17 {
  padding-bottom: 17%;
}

.u-pl-17 {
  padding-left: 17%;
}

.u-mt-18 {
  margin-top: 18%;
}

.u-mr-18 {
  margin-right: 18%;
}

.u-mb-18 {
  margin-bottom: 18%;
}

.u-ml-18 {
  margin-left: 18%;
}

.u-pt-18 {
  padding-top: 18%;
}

.u-pr-18 {
  padding-right: 18%;
}

.u-pb-18 {
  padding-bottom: 18%;
}

.u-pl-18 {
  padding-left: 18%;
}

.u-mt-19 {
  margin-top: 19%;
}

.u-mr-19 {
  margin-right: 19%;
}

.u-mb-19 {
  margin-bottom: 19%;
}

.u-ml-19 {
  margin-left: 19%;
}

.u-pt-19 {
  padding-top: 19%;
}

.u-pr-19 {
  padding-right: 19%;
}

.u-pb-19 {
  padding-bottom: 19%;
}

.u-pl-19 {
  padding-left: 19%;
}

.u-mt-20 {
  margin-top: 20%;
}

.u-mr-20 {
  margin-right: 20%;
}

.u-mb-20 {
  margin-bottom: 20%;
}

.u-ml-20 {
  margin-left: 20%;
}

.u-pt-20 {
  padding-top: 20%;
}

.u-pr-20 {
  padding-right: 20%;
}

.u-pb-20 {
  padding-bottom: 20%;
}

.u-pl-20 {
  padding-left: 20%;
}

.animation {
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.animation.inview {
  opacity: 1;
}

*[class$=_btn] {
  width: fit-content;
  background: linear-gradient(0deg, #e88005, #f4a91a);
  color: #fff;
  padding: 15px 22px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  *[class$=_btn] {
    padding: 23px 35px;
  }
}


.bold {
  font-weight: bold;
}
.top-half {
  margin: .5em 0 0 0;
  display: inline-block;
}

/* ==================================================================
  2024.06.19　デジタル時代の成長戦略：決済トレンドとアフィリエイト広告の最前線
================================================================== */
body {
  position: relative;
  /* padding: 20px 0; */
}
/* body:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, #1c60bc 0%, #02105e 100%);
} */
main.main {
  width: 100%;
}
section {
  background-color: #fff;
  /* background-color: #333; */
  /* color: #fff; */
  padding: 0 calc((100% - 1080px) / 2);
}
section div[class$="__inner"] {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px;
}
@media screen and (max-width: 768px){
  section div[class$="__inner"] {
    padding: 30px 10px;
  }
}
.header {
  opacity: 0;
	top: -100px;
  width: 100%;
  position: fixed;
	transition: all 0.3s ease .2s;
  margin: 0 auto;
  padding: 0 calc((100% - 1280px) / 2);
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  z-index: 200;
}
.header__inner {
  display: flex;
  max-width: 1200px;
  height: 60px;
  padding: 16px 45px;
  align-items: center;
  justify-content: space-between;
}

.header.top_fixed {
	top: 29px;
  opacity: 1;

}
.header__logo {
  width: 20%;
}
.header__nav_list {
  display: flex;
  align-items: center;
  gap: 75px;
  font-size: 18px;
  font-weight: bold;
  color: #1c60bc;
}
.header__nav_list a {
  color: #1c60bc;
}
@media screen and (max-width: 768px){
  .header {
    display: none;
  }
}

.fv {
  padding: 0;
  background: linear-gradient(90deg, #1840a2 0%, #06196a 100%);
  /* background: #0a0a0a; */
}
.fv__image {
  /* aspect-ratio: 1280/601;
  background-color: #02105e; */
  max-height: 628px;
  margin: 0 auto;
  position: relative;
}
.fv__image img[src*="/sp"] {
  display: none;
}
@media screen and (max-width: 650px){
  .fv__image img[src*="img/fv"] {
    display: none;
  }
  .fv__image img[src*="/sp"] {
    display: block;
  }
}
.fv__image.ended img {
  opacity: .8;
}
.fv__image.ended:before {
  /* content: "受付終了"; */
  content: "";
  background: url(../img/full.png) no-repeat center / contain;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  /* width: 50%;
  height: 4em;
  background: #ff0000c9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  letter-spacing: .4em; */
}
@media screen and (max-width: 768px){
  .fv__image.ended:before {
    /* font-size: 20px; */
    background-size: 130%;
  }
}
.fv__image img {
  width: 100%;
  max-height: 628px;
  /* aspect-ratio: 1200/628; */
  aspect-ratio: 16/9;
  object-fit: contain;
}
@media screen and (max-width: 768px){
  .fv__image img {
    aspect-ratio: auto;
  }
}
h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  letter-spacing: .06em;
  margin-bottom: 40px;
  color: #1c60bc;
}
@media screen and (max-width: 768px){
  h2 {
    margin-bottom: 20px;
  }
}
h2 img,
h2 svg {
  height: 40px;
  object-fit: contain;
}

h2 svg g {
  fill: #1c60bc;
}
@media screen and (max-width: 768px){
  h2 img,
  h2 svg {
    height: 30px;
  }
}
.theme {
  background: #f5f5f5;
  /* background: #0a0806; */
}
.theme__inner p {
  font-size: 18px;
  /* text-align: center; */
  /* font-weight: bold; */
}
@media screen and (max-width: 768px){
  .theme__inner p {
    font-size: 16px;
    /* text-align: left; */
  }
}

.speakers__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px){
  .speakers__list ul {
    margin-bottom: 26px;
  }
}
.speakers__list h4 {
  /* font-size: 16px; */
  padding: 15px 30px;
  background: #1c60bc;
  color: #fff;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.speakers__list h4 > span {
  background: #fff;
  color: #1c60bc;
  font-weight: bold;
  padding: 10px;
  /* margin-bottom: 10px; */
  font-size: 13px;
  border-radius: 5px;
  flex: 0 0 auto;
  width: calc(20% - 38px);
  box-sizing: content-box;
  text-align: center;
}
.speakers__list h4 p {
  font-size: 22px;
  font-weight: bold;
}
.speakers__list h4 p span {
  font-size: 16px;
  font-weight: normal;
  display: block;
}


@media screen and (max-width: 768px){
  .speakers__list h4 {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
    gap: 10px;
    margin-bottom: 16px;
  }
  .speakers__list h4 p {
    line-height: 1.3;
  }
  .speakers__list h4 p span {
    font-size: 14px;
    margin: 0 0 5px;
  }
  .speakers__list h4 > span {
    width: fit-content;
    padding: 5px 10px;
    font-size: 12px;
  }
}

li.speakers__speaker {
  width: 49%;
  display: flex;
  /* flex-wrap: wrap; */
  gap: 30px;
  /* justify-content: center; */
  margin-bottom: 56px;
  /* align-items: center; */
  align-items: flex-start;
}
@media screen and (max-width: 650px){
  li.speakers__speaker {
    width: 100%;
    gap: 15px;
    margin-bottom: 26px;
    /* flex-direction: column; */
  }
}
li.speakers__speaker img[src*="speaker"] {
  width: 40%;
  aspect-ratio: 1;
  background-color: #e7e7e7;
  flex: 0 0 auto;
}
@media screen and (max-width: 650px){
  li.speakers__speaker img[src*="speaker"] {
    display: block;
    width: 35%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    /* margin: 17px auto 0; */
    max-width: 400px;
  }
  li.speakers__speaker > img[src*="speaker"] {
    /* display: none; */
  }
}
.speakers__info {
  /* width: calc(70% - 40px); */
  font-size: 16px;
}
.speakers__info img {
  max-height: 50px;
  max-width: 60%;
  object-fit: contain;
  object-position: left;
}
.speakers__info img[src*="tiktok"] {
  max-width: 75%;
  padding-bottom: 5px;
}
@media screen and (min-width: 651px){
  .speakers__info img[src*="speaker"] {
    display: none;
  }
}
.speakers__info > p {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: .1em;
  padding: 15px 0 5px;
  line-height: 1;
}
@media screen and (max-width: 768px){
  .speakers__info > p {
    font-size: 24px;
    padding: 5px 0;
  }
}
.speakers__info > span {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: .1em;
}
@media screen and (max-width: 768px){
  .speakers__info > span {
    font-size: 13px;
  }
}
.speakers__profile,
.speakers__about {
  padding-top: 17px;
}
.speakers__profile {
  font-size: 12px;
  line-height: 1.4;
}
@media screen and (max-width: 768px){
  .speakers__profile {
    line-height: 1.3;
    padding-top: 10px;
  }
}

a[href="#form"] {
  display: block;
  position: relative;
  margin: 0 auto;
  width: fit-content;
  padding: 20px 70px;
  margin-top: 80px;
  font-size: 24px;
  font-weight: bold;
  background: #1acbc8;
  color: #fff;
  border-radius: 10px;
  letter-spacing: .04em;
}
/* a[href="#form"]:after {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(45deg);
} */
@media screen and (max-width: 768px){
  a[href="#form"] {
    font-size: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px){
  section div.overview__inner {
    padding: 30px 10px;
  }
}
.overview table {
  width: 980px;
  margin: 0 auto;
  border-top: 1px solid #dddddd;
  /* border-bottom: none; */
  font-size: 18px;
  /* line-height: 1.3; */
}
@media screen and (max-width: 768px){
  .overview table {
    width: 100%;
    font-size: 15px;
  }
}
.overview table tr {
  border-bottom: 1px solid #e7e7e7;
  display: flex;
}
@media screen and (max-width: 768px){
  .overview table tr {
    border-bottom: 0;
    flex-direction: column;
  }
}
.overview table th,
.overview table td {
  padding: 30px 35px;
}
.overview table td img {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-width: 700px;
}
.overview table td a {
  text-decoration: underline;
}
.overview table td a:hover {
  opacity: .8;
}
@media screen and (max-width: 768px){
  .overview table th,
  .overview table td {
    padding: 10px 15px;
  }
}
.overview table th {
  width: 20%;
  background: #1c60bc;
  color: #fff;
  font-weight: bold;
  flex: 0 0 auto;
  text-align: left;
}
@media screen and (max-width: 768px){
  .overview table th {
    width: 100%;
  }
}
.overview .timetable {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5em;
}
.overview .timetable dd {
  width: fit-content;
  font-weight: bold;
}
.overview .timetable dt {
  width: 80%;
}
@media screen and (max-width: 768px){
  .overview .timetable dt {
    width: calc(100% - 110px);
  }
}
.overview table .time {
  display: block;
  font-weight: bold;
  padding: 12px 24px;
  background-color: #cfdcee;
  line-height: 1;
  border-radius: 5px;
  margin: 15px 0 10px;
}

.text_notice {
  font-size: 15px;
  margin-bottom: 20px;
}
.form_ended {
  /* display: none; */
  text-align: center;
  font-size: 18px;
}
.form_ended a {
  text-decoration: underline;
}
