@charset "UTF-8";
* {
  list-style: none;
  margin: 0px;
  padding: 0px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  box-sizing: border-box;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small,
strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, hgroup, menu, nav,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

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

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

a {
  text-decoration: none;
}

body {
  background-color: #000;
}

/* カラー設定 (ここ以外は基本編集しない) ====== */
.color_1 {
  color: #0071cc;
}

.color_2 {
  color: #e66d00;
}

.color_3 {
  color: #cc01aa;
}

/* ====================================== */
.only_sp {
  display: block !important;
}

.only_pc {
  display: none !important;
}

@media all and (min-width: 767px) {
  .only_pc {
    display: block !important;
  }
  .only_sp {
    display: none !important;
  }
}
.wrapper {
  width: 100%;
}

@media all and (min-width: 767px) {
  .wrapper {
    min-width: 1200px;
    margin: 0 auto;
  }
}
/* ----- 背景 ---- */
.bg {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-image: url(../images/bg.jpg?0000);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate3d(0, 0, 0);
}

#hamburger {
  position: fixed;
  top: 0;
  right: 10px;
  z-index: 9999;
  padding: 17px 8px 8px;
  width: 45px;
}
#hamburger span {
  display: block;
  margin-bottom: 10px;
  height: 2px;
  background: #fff;
  transform: 0;
  transition: 0.3s;
  box-shadow: 0 0 5px #000;
}
#hamburger.open span:first-child {
  transform: translate(0, 6px) rotate(45deg);
  background: #fff;
}
#hamburger.open span:last-child {
  transform: translate(0, -6px) rotate(-45deg);
  background: #fff;
}

@media all and (min-width: 767px) {
  #hamburger {
    display: none;
  }
}
.linkButton {
  width: 240px;
  background: linear-gradient(135deg, #b8751e 0%, #ffce08 30%, #fefeb2 47%, #fafad6 50%, #fefeb2 53%, #e1ce08 65%, #b8751e 100%);
  color: #000;
  font-size: 21px;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 3px 3px 8px #000;
  letter-spacing: 2px;
}

@media all and (min-width: 767px) {
  .linkButton {
    width: 400px;
    letter-spacing: 4px;
    margin: 50px auto 50px;
    transition: 0.3s;
    font-size: 28px;
  }
  .linkButton:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 20px #000;
  }
}
#buttonWrap {
  position: fixed;
  z-index: 4;
  right: 10px;
  bottom: 10px;
  display: block;
}
#buttonWrap a {
  font-size: 19px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  display: block;
  padding: 25px 0;
  background: linear-gradient(135deg, #b8751e 0%, #ffce08 30%, #fefeb2 47%, #fafad6 50%, #fefeb2 53%, #e1ce08 65%, #b8751e 100%);
  width: 100px;
  height: 100px;
  border-radius: 60px;
  box-shadow: 3px 3px 8px #000;
  transition: 0.5s;
}

@media all and (min-width: 767px) {
  #buttonWrap {
    right: 50%;
    margin-right: -580px;
    bottom: 25px;
  }
  #buttonWrap a {
    width: 140px;
    height: 140px;
    font-size: 26px;
    line-height: 35px;
    padding: 35px 0;
    border-radius: 70px;
  }
  #buttonWrap a:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 20px #000;
  }
  #buttonWrap.hide a {
    transform: translateY(120%);
  }
}
/* --------------
ヘッダー
-------------- */
header {
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
}
header > div {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}
header nav {
  position: fixed;
  top: 0;
  right: -200px;
  z-index: 5;
  padding-top: 60px;
  width: 200px;
  background: rgba(17, 17, 17, 0.9);
  height: 100%;
  transition: 0.7s;
}
header nav a {
  color: #fff;
  font-size: 16px;
  text-align: center;
  display: block;
}
header nav li {
  padding: 10px 25px;
}
header nav.act {
  right: 0;
}
header .logoArea {
  width: 82%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logoArea a {
  width: 30%;
  display: block;
}
header .logoArea a.logo2 {
  width: 65%;
}

@media all and (min-width: 767px) {
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    min-width: 1200px;
  }
  header > div {
    padding: 21px 0 16px;
    position: relative;
  }
  header nav {
    position: absolute;
    right: 0;
    background: none;
    top: 18px;
    width: 580px;
    padding-top: 0px;
    height: auto;
  }
  header nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header nav li {
    padding: 0px 10px;
  }
  header nav li.weeklogo {
    width: 125px;
  }
  header nav a {
    font-size: 15px;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
    display: inline-block;
  }
  header nav a::after {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  header nav a:hover::after {
    bottom: -4px;
    opacity: 1;
    visibility: visible;
  }
  header .logoArea {
    width: 400px;
    margin-left: 5px;
  }
}
/* --------------
メインビジュアル タイトルとか
-------------- */
.mvCts {
  width: 90%;
  margin: 0 auto;
}
.mvCts .titleWrap .number {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 5px;
  text-shadow: 0 0 8px #000;
}
.mvCts .titleWrap .number strong {
  font-size: 150%;
  color: #fff;
}
.mvCts .titleWrap h1 {
  margin: 0 auto;
}
.mvCts .titleWrap h1 img {
  max-width: 470px;
  filter: drop-shadow(0 0 5px #000);
  margin: 0 auto;
}
.mvCts .titleWrap .subttl {
  text-align: center;
  color: #fff;
  font-size: min(5.5vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 0 10px #000, 1px 1px 3px #000, -1px -1px 3px #000;
  margin: 10px 0;
}
.mvCts .leadWrap {
  background-color: rgba(0, 0, 0, 0.6);
  border-left: solid 3px #fff;
  border-image: linear-gradient(180deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  border-image-slice: 1;
  padding: 20px 15px;
  margin: 20px auto;
  max-width: 560px;
  position: relative;
}
.mvCts .leadWrap::before, .mvCts .leadWrap::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
}
.mvCts .leadWrap::before {
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
.mvCts .leadWrap::after {
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.mvCts .leadWrap .border-right {
  position: absolute;
  display: block;
  height: 100%;
  width: 3px;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.mvCts .leadWrap .dayFlex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.mvCts .leadWrap .dayFlex > div {
  width: 48%;
}
.mvCts .leadWrap .dayFlex > div:nth-of-type(2) {
  margin-left: 4%;
}
.mvCts .leadWrap .dayFlex > div p {
  color: #fff;
  text-align: center;
  font-size: min(4.2vw, 16px);
  font-weight: bold;
}
.mvCts .leadWrap .dayFlex > div .ttl {
  font-size: min(4.2vw, 15px);
  font-weight: bold;
  padding: 4px 0 6px;
  letter-spacing: 2px;
  line-height: 1.2;
  background-color: #00a4e7;
  max-width: 230px;
  margin: 0 auto 4px;
}
.mvCts .leadWrap .dayFlex > div .day {
  font-size: min(4.2vw, 16px);
}
.mvCts .leadWrap .dayFlex > div .day span {
  color: #fff;
  font-size: 170%;
  font-weight: bold;
}
.mvCts .leadWrap .lead {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
}

@media all and (min-width: 767px) {
  .mvCts {
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 105px auto 40px;
  }
  .mvCts .titleWrap {
    margin-right: 40px;
    margin-top: -10px;
  }
  .mvCts .titleWrap .number {
    font-size: 25px;
  }
  .mvCts .titleWrap h1 img {
    width: 470px;
  }
  .mvCts .titleWrap .subttl {
    font-size: 28px;
    text-shadow: 0 0 16px #000, 1px 1px 3px #000, -1px -1px 3px #000;
    margin-top: 25px;
  }
  .mvCts .leadWrap {
    padding: 35px 50px 30px;
    margin: 0;
  }
  .mvCts .leadWrap .dayFlex {
    margin-bottom: 13px;
  }
  .mvCts .leadWrap .dayFlex > div p, .mvCts .leadWrap .dayFlex > div .day, .mvCts .leadWrap .dayFlex > div .ttl {
    font-size: 22px;
  }
  .mvCts .leadWrap .dayFlex > div .ttl {
    margin-bottom: 8px;
  }
  .mvCts .leadWrap .lead {
    font-size: 14px;
  }
}
/* --------------
セクション 共通 小見出し
-------------- */
section {
  max-width: 1200px;
  margin: 0 auto;
}
section h2 {
  font-family: "Source Serif Pro", serif;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 55px;
  letter-spacing: 2px;
  margin: 30px 0;
  padding-top: 10px;
  text-shadow: 0 0 8px #000;
  line-height: 1.1;
}
section h2 span {
  background-color: #00a4e7;
  color: #fff;
  display: block;
  width: 200px;
  margin: 0 auto;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 700;
  text-shadow: none;
}

@media all and (min-width: 767px) {
  section h2 {
    margin: 100px 0 30px;
    padding-top: 0px;
    font-size: 80px;
  }
  section h2 span {
    font-size: 18px;
    width: 220px;
    letter-spacing: 4px;
  }
}
/* --------------
ピックアップ
-------------- */
.pickupCts {
  width: 94%;
  margin: 0 auto;
}
.pickupCts h2 span {
  margin-top: 10px;
}
.pickupCts ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.pickupCts ul li {
  width: 50%;
  margin-bottom: 15px;
  max-width: 230px;
  position: relative;
}
.pickupCts ul li .speaker {
  position: absolute;
  top: 60%;
  width: 100%;
  z-index: 2;
}
.pickupCts ul li .name {
  background-color: #00a4e7;
  color: #fff;
  z-index: 3;
  padding: 4px 6px 7px 6px;
  font-size: min(4.7vw, 25px);
  font-weight: 700;
  line-height: 1;
  box-shadow: 5px -5px 5px rgba(0, 0, 0, 0.8);
  display: inline-block;
  margin-bottom: 3px;
}
.pickupCts ul li .name span {
  color: #fff;
  font-size: 80%;
  font-weight: 700;
  padding-left: 3px;
}
.pickupCts ul li .degree {
  color: #fff;
  font-size: 10px;
  line-height: 1.5;
  width: 87%;
  padding-right: 10%;
  margin: 0 auto;
}
.pickupCts ul .img {
  display: block;
  background: linear-gradient(5deg, rgba(0, 0, 0, 0.8) 30%, rgba(0, 164, 231, 0.8) 100%);
  clip-path: polygon(16% 0%, 100% 0, 84% 100%, 0% 100%);
  -webkit-clip-path: polygon(16% 0%, 100% 0, 84% 100%, 0% 100%);
  position: relative;
}
.pickupCts ul .img::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  top: 50%;
  background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

@media all and (min-width: 767px) {
  .pickupCts {
    width: 100%;
  }
  .pickupCts h2 {
    display: none;
  }
  .pickupCts ul {
    width: 1200px;
  }
  .pickupCts ul li {
    margin-bottom: 35px;
  }
  .pickupCts ul li .name {
    font-size: 25px;
    margin-bottom: 7px;
  }
  .pickupCts ul li .name span {
    font-size: 16px;
  }
  .pickupCts ul li .degree {
    font-size: 11px;
    width: 100%;
    padding: 0 17% 0 7%;
    box-sizing: border-box;
  }
  .pickupCts ul li a {
    transition: 0.3s;
    display: block;
  }
  .pickupCts ul li a:hover {
    filter: drop-shadow(0 0 5px #fff);
    transform: translateY(-3px);
  }
}
/* --------------
開催趣旨
-------------- */
.aboutCts {
  width: 90%;
  margin: 0 auto;
}
.aboutCts > div {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 5%;
  margin: 20px auto;
}
.aboutCts p {
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1em;
  text-indent: 1em;
}
.aboutCts p:last-of-type {
  margin-bottom: 0;
}

@media all and (min-width: 767px) {
  .aboutCts > div {
    max-width: 800px;
    padding: 50px;
  }
}
/* --------------
タイムテーブル
-------------- */
.timetableCts .dayTime {
  margin: 20px 0;
}
.timetableCts .dayTime p {
  font-family: "Source Serif Pro", serif;
  font-size: 25px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #000;
  line-height: 1.2;
}
.timetableCts .dayTime p span {
  font-family: "Source Serif Pro", serif;
  font-size: 150%;
  color: #fff;
}
.timetableCts .breakTime {
  font-family: "Source Serif Pro", serif;
  font-size: 23px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 8px #000;
  margin: 30px 0;
  letter-spacing: 1px;
}
.timetableCts ul li {
  width: 90%;
  background-color: #fff;
  padding: 3% 5% 5%;
  margin: 0 auto 25px;
}
.timetableCts ul li .ttlArea {
  position: relative;
  margin-bottom: 15px;
}
.timetableCts ul li .ttlArea .time {
  display: inline-block;
  font-family: "Source Serif Pro", serif;
  background-color: #00a4e7;
  font-weight: 600;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  padding: 2px 7px;
  margin-left: -11%;
  margin-bottom: 10px;
}
.timetableCts ul li .ttlArea .time + p {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
}
.timetableCts ul li .ttlArea .time + p span {
  position: absolute;
  left: 5.5em;
  top: 4px;
  display: block;
  color: #00a4e7;
  font-size: 15px;
  font-weight: bold;
}
.timetableCts ul li .speakerWrap {
  margin-bottom: 20px;
}
.timetableCts ul li .speaker-ttl {
  font-size: 13px;
  font-weight: bold;
}
.timetableCts ul li .speaker {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
}
.timetableCts ul li .speaker-photo {
  width: 95px;
  margin-right: 5px;
}
.timetableCts ul li .speaker-photo > img {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  object-fit: cover;
  object-position: top center;
}
.timetableCts ul li .speaker-photo .profile_btn {
  border: solid 2px #00a4e7;
  text-align: center;
  font-size: 11px;
  padding: 3px 5px;
  border-radius: 25px;
  font-weight: bold;
  line-height: 1;
  display: block;
  width: 100%;
  max-width: 100px;
  margin: 5px auto 0;
}
.timetableCts ul li .speaker-photo .profile_btn small {
  font-size: 80%;
  color: #00a4e7;
}
.timetableCts ul li .speaker-text {
  width: calc(100% - 100px);
}
.timetableCts ul li .speaker-name {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
}
.timetableCts ul li .speaker-name span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 75%;
}
.timetableCts ul li .speaker-position {
  font-size: 11px;
  line-height: 1.5;
}
.timetableCts ul li .speaker-profile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -10;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}
.timetableCts ul li .speaker-profile.open {
  opacity: 1;
  z-index: 100;
  pointer-events: auto;
}
.timetableCts ul li .speaker-profile.open .speaker-profile-inner {
  z-index: 102;
}
.timetableCts ul li .speaker-profile.open .close-btn {
  z-index: 101;
}
.timetableCts ul li .speaker-profile .speaker-profile-inner {
  width: 84%;
  background-color: #fff;
  border: solid 4px #00a4e7;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  overflow: scroll;
  max-height: 70%;
}
.timetableCts ul li .speaker-profile .speaker-profile-inner img {
  width: 50%;
  margin: 0 auto 20px;
}
.timetableCts ul li .speaker-profile .speaker-profile-inner .speaker-position + p {
  font-size: 13px;
  line-height: 1.6;
  margin: 1em 0 0;
}
.timetableCts ul li .speaker-profile .close-btn {
  display: block;
  cursor: pointer;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.timetableCts ul li .speaker-profile .close-btn span {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  right: 0%;
  margin-top: calc(-50% - 80px);
  filter: drop-shadow(0 0 5px #000);
}
.timetableCts ul li .speaker-profile .close-btn span::before {
  content: "";
  display: block;
  width: 23px;
  height: 3px;
  background: #FFF;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: 11px;
  left: 12px;
}
.timetableCts ul li .speaker-profile .close-btn span::after {
  content: "";
  display: block;
  width: 23px;
  height: 3px;
  background: #FFF;
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  position: absolute;
  top: 11px;
  right: 12px;
}
.timetableCts ul li .lectureWrap > p {
  font-size: 15px;
  line-height: 1.67;
}
.timetableCts ul li .lectureWrap > p small {
  font-size: 80%;
  display: block;
  margin-top: 5px;
}

@media all and (min-width: 767px) {
  .timetableCts .dayTime p {
    font-size: 40px;
  }
  .timetableCts .breakTime {
    font-size: 40px;
    margin: 60px 0;
  }
  .timetableCts ul li {
    width: 950px;
    padding: 20px 50px 30px;
    margin-bottom: 60px;
  }
  .timetableCts ul li .ttlArea {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 35px;
  }
  .timetableCts ul li .ttlArea .time {
    font-size: 26px;
    width: 170px;
    text-align: center;
    padding: 2px 10px;
    letter-spacing: 1px;
    margin-left: -75px;
    margin-right: 20px;
    margin-bottom: 0;
  }
  .timetableCts ul li .ttlArea .time + p {
    font-size: 23px;
  }
  .timetableCts ul li .ttlArea .time + p span {
    position: relative;
    left: 0;
    top: 0;
    line-height: 36px;
    font-size: 20px;
  }
  .timetableCts ul li .speaker {
    width: 410px;
    margin-bottom: 20px;
  }
  .timetableCts ul li .speaker:nth-of-type(2n) {
    margin-left: 30px;
  }
  .timetableCts ul li .speaker:nth-of-type(n+3) {
    margin-top: 10px;
  }
  .timetableCts ul li .speaker-photo {
    width: 120px;
    margin-right: 15px;
  }
  .timetableCts ul li .speaker-photo > img {
    width: 120px;
    height: 140px;
  }
  .timetableCts ul li .speaker-photo .profile_btn {
    margin: 10px auto 0;
    font-size: 12px;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  .timetableCts ul li .speaker-photo .profile_btn:hover {
    background-color: rgba(0, 164, 231, 0.2);
  }
  .timetableCts ul li .speaker-text {
    width: calc(100% - 135px);
  }
  .timetableCts ul li .speaker-name {
    font-size: 24px;
  }
  .timetableCts ul li .speaker-name span {
    font-size: 16px;
  }
  .timetableCts ul li .speaker-position {
    font-size: 12px;
    line-height: 1.6;
  }
  .timetableCts ul li .speakerWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10px;
  }
  .timetableCts ul li .type_A {
    display: flex;
    justify-content: space-between;
  }
  .timetableCts ul li .type_A > p {
    width: 410px;
  }
  .timetableCts ul li .type_B > p {
    margin-top: 10px;
  }
  .timetableCts ul li .speaker-profile .speaker-profile-inner {
    width: 880px;
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-height: none;
    overflow: visible;
  }
  .timetableCts ul li .speaker-profile .speaker-profile-inner img {
    width: 250px;
    margin: 0;
  }
  .timetableCts ul li .speaker-profile .speaker-profile-inner img + div {
    width: 510px;
  }
  .timetableCts ul li .speaker-profile .close-btn span {
    top: 50%;
    right: 50%;
    margin: -210px -460px 0 0;
    transform: translateX(20px);
  }
}
/* --------------
weekリンク
-------------- */
.weeklinkCts {
  width: 90%;
  max-width: 800px;
  border: solid 1px #00a4e7;
  margin: 50px auto;
  padding: 20px 5%;
  background-color: rgba(0, 0, 0, 0.6);
}
.weeklinkCts > p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}
.weeklinkCts > div a {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 20px auto;
}
.weeklinkCts > div a span {
  font-size: 12px;
  background-color: #fff;
  font-weight: bold;
  padding: 4px 5px;
  line-height: 1;
  margin-right: 12px;
  vertical-align: middle;
  min-width: 40px;
  text-align: center;
  width: 24%;
}
.weeklinkCts > div a > p {
  width: 85%;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  vertical-align: middle;
}
.weeklinkCts > div a > p small {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-bottom: 1px;
  margin-left: 0.5em;
}
.weeklinkCts .banner {
  background-color: #00a4e7;
  display: block;
  width: 90%;
  max-width: 440px;
  margin: 0px auto;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.weeklinkCts .banner p {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  width: calc(100% - 35px);
}
.weeklinkCts .banner::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media all and (min-width: 767px) {
  .weeklinkCts {
    padding: 30px 0;
  }
  .weeklinkCts > p {
    text-align: center;
    font-size: 15px;
  }
  .weeklinkCts > div {
    margin-top: 25px;
    width: 640px;
    margin: 0 auto;
  }
  .weeklinkCts > div a span {
    width: 150px;
    font-size: 23px;
    padding: 10px 5px;
    margin-right: 15px;
  }
  .weeklinkCts > div a > p {
    font-size: 23px;
    width: calc(100% - 165px);
  }
  .weeklinkCts > div a > p small {
    transition: 0.3s;
  }
  .weeklinkCts > div a:hover > p small {
    margin-left: 0.7em;
  }
  .weeklinkCts .banner {
    margin: 30px auto 0;
    padding: 15px 0;
  }
  .weeklinkCts .banner p {
    font-size: 23px;
    width: calc(100% - 63px);
    transition: 0.3s;
    margin: 0 5px;
  }
  .weeklinkCts .banner::after {
    width: 10px;
    height: 10px;
    transition: 0.3s;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .weeklinkCts .banner:hover p {
    width: calc(100% - 48px);
  }
}
/* --------------
開催概要
-------------- */
.outlineCts {
  width: 90%;
}
.outlineCts table {
  margin: 0 auto 50px;
  border-collapse: separate;
  border-spacing: 0px;
  background-color: rgba(0, 0, 0, 0.6);
  border-top: solid 2px #00a4e7;
  border-bottom: solid 2px #00a4e7;
}
.outlineCts table tr:last-of-type th {
  border-bottom: none;
}
.outlineCts table tr:last-of-type td {
  border-bottom: none;
}
.outlineCts table th {
  display: block;
  text-align: center;
  padding: 15px 0 10px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #00a4e7;
  width: 90%;
  margin: 0 auto;
}
.outlineCts table td {
  display: block;
  text-align: left;
  padding: 0 0 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  border-bottom: solid 1px #fff;
  width: 90%;
  margin: 0 auto;
}
.outlineCts table td > div {
  display: flex;
  margin: 3px 0;
  justify-content: space-around;
}
.outlineCts table td > div .jb_logo {
  display: inline-block;
  width: 35%;
  max-width: 130px;
}
.outlineCts table td > div .jir_logo {
  display: inline-block;
  width: 65%;
  max-width: 300px;
}
.outlineCts table td small {
  font-size: 85%;
  color: #fff;
  line-height: 1.4;
  margin-top: 7px;
  display: block;
}

@media all and (min-width: 767px) {
  .outlineCts table {
    width: 840px;
    border-spacing: 10px;
    margin: 50px auto 80px;
  }
  .outlineCts table th {
    display: table-cell;
    width: 23%;
    padding: 10px 0 20px;
    font-size: 21px;
    border-bottom: solid 1px #fff;
  }
  .outlineCts table td {
    display: table-cell;
    padding: 10px 5px 20px 10px;
    font-size: 16px;
  }
  .outlineCts table td span {
    font-size: 14px;
  }
  .outlineCts table td > div {
    justify-content: flex-start;
  }
  .outlineCts table td > div .jb_logo {
    margin-right: 20px;
  }
}
/* --------------
スポンサー
-------------- */
.sponsorList {
  margin: 50px auto;
}
.sponsorList h2 span {
  margin-top: 10px;
}
.sponsorList ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 840px;
  margin: 0 auto;
  background-color: #fff;
}
.sponsorList ul li {
  width: min(48%, 240px);
}

@media all and (min-width: 767px) {
  .sponsorList {
    margin-bottom: 80px;
  }
  .sponsorList ul {
    padding: 30px 0;
    margin-top: 50px;
  }
}
/* --------------
配信について
-------------- */
.othersCts {
  margin-bottom: 0;
  padding: 20px 0;
  background-color: #eff1f1;
}
.othersCts h2 {
  font-family: "Source Serif Pro", serif;
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 55px;
  letter-spacing: 2px;
  margin: 5px 0 40px;
  line-height: 1.1;
}
.othersCts h2 span {
  background-color: #00a4e7;
  color: #fff;
  display: block;
  width: 200px;
  margin: 0 auto;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 700;
  text-shadow: none;
}
.othersCts > div {
  width: 90%;
  margin: 0 auto;
  max-width: 700px;
}
.othersCts h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 1em;
}
.othersCts li {
  position: relative;
  margin-bottom: 1em;
  padding-left: 1em;
  font-size: 12px;
  line-height: 1.5;
}
.othersCts li:before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: -0.5em;
}
.othersCts li a {
  word-break: break-all;
  text-decoration: underline;
}

/* othersCts */
@media all and (min-width: 767px) {
  .othersCts {
    padding: 40px 0 60px 0;
    margin-top: 80px;
  }
  .othersCts h2 {
    margin: 0 0 20px;
    font-size: 80px;
  }
  .othersCts h2 span {
    font-size: 18px;
    width: 220px;
    letter-spacing: 4px;
  }
  .othersCts li a {
    text-decoration: none;
  }
  .othersCts li a:hover {
    text-decoration: underline;
  }
}
/* --------------
フッター
-------------- */
.footerArea {
  padding-bottom: 100px;
  background: linear-gradient(90deg, #1e5799, #008b5b);
}
.footerArea .ft_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0 0;
  max-width: 750px;
  margin: 0 auto;
}
.footerArea .ft_logo a {
  width: 25%;
  display: block;
}
.footerArea .ft_logo a:first-of-type {
  margin-right: 10px;
}
.footerArea .ft_logo .header-logo2 {
  width: 50%;
}
.footerArea .ft_box {
  margin: 0 auto 0 auto;
  padding: 10px 0 12px 0;
  max-width: 500px;
}
.footerArea p {
  text-align: center;
  line-height: 1.85;
  font-weight: 600;
  font-size: 12px;
  color: #ffffff;
}
.footerArea p.name {
  font-size: 16px;
}
.footerArea p.small {
  padding: 0px 8px 20px 8px;
  line-height: 1.5;
  font-weight: 500;
}
.footerArea small {
  display: block;
  padding: 4px 0 4px 0;
  text-align: center;
  font-size: 10px;
  color: #ffffff;
}

@media all and (min-width: 767px) {
  .footerArea {
    padding: 10px 0 30px;
  }
  .footerArea a {
    width: 100px;
  }
}/*# sourceMappingURL=format_style.css.map */