@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

:root {
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt" 1;
  color: #1f1f1f;
}

section, main {
  text-align: center;
}

.time {
  font-family: "Roboto Mono", monospace;
}

.title {
  font-family: "League Gothic", sans-serif;
}

#video-area {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background: url(../images/kv_bg_alt.png); /*動画が表示されない場合の画像を設定!!!!!*/
  background-repeat: no-repeat;
  background-size: cover;
}
#video-area #video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .container {
    max-width: 1080px;
    margin: 0 auto;
  }
  .btn_wrap {
    display: inline-block;
    background: #8dc21f;
    color: #fff;
  }
  .btn_wrap a {
    display: inline-block;
    padding: 1em 3em;
    transition: 0.3s all linear;
  }
  .btn_wrap a:hover {
    background: #4fe7ff;
  }
}
/*------------------------------------------------------
  共通
------------------------------------------------------*/
/*セクションタイトル*/
.section_title li:nth-child(1) {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: #4fe7ff;
  font-family: "League Gothic", sans-serif;
}
.section_title li:nth-child(2) {
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  line-height: 2em;
  padding-bottom: 1rem;
}

#satori_area .section_title li:nth-child(1) {
  color: rgb(59, 75, 107);
}
#satori_area .section_title li:nth-child(2) {
  color: rgba(59, 75, 107, 0.8);
}
#satori_area .satori__btn {
  background: #8dc21f;
  color: #fff;
}

#concept .points .section_title li:first-child {
  color: #4fe7ff;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .container {
    max-width: 767px;
    margin: 0 auto;
  }
}
/*-----------------------------------------------
  ページトップボタン
-----------------------------------------------*/
.back-to-top {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 2%;
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  display: inline-block;
  text-decoration: none;
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1em;
}

.back-to-top::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  z-index: -1;
}

/*------------------------------------------------------
  フッター
------------------------------------------------------*/
footer {
  background: rgb(59, 75, 107);
  color: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  font-size: 0.8rem;
}

/*------------------------------------------------------
  ヘッダー
------------------------------------------------------*/
@media screen and (min-width: 768px) {
  header .header_inner {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    font-size: 0.9rem;
  }
  header .header_inner .logo {
    height: 100%;
  }
  header .header_inner a {
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
  }
  header .header_inner ul {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    color: #fff;
    height: 100%;
    padding: 0 1rem;
  }
  header .header_inner ul li {
    height: 100%;
    padding: 0 1rem;
  }
  header .header_inner ul li a:hover {
    color: #8dc21f;
    transition: 0.5s;
  }
  header .header_inner button {
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    width: 12rem;
    height: 100%;
    color: #fff;
    padding: 0 2rem;
    position: relative;
    z-index: 0;
  }
  header .header_inner button::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #8dc21f;
    position: absolute;
    z-index: -1;
    transition: 0.6s all;
  }
  header .header_inner button::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #4fe7ff;
    position: absolute;
    z-index: -2;
  }
  header .header_inner button:hover::before {
    opacity: 0;
  }
}
@media screen and (max-width: 797px) {
  header .header_inner {
    display: none;
  }
  header .mobile-menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 10;
    box-shadow: 0 0 15px 5px rgba(41, 44, 52, 0.8);
    display: flex;
    height: 4.5rem;
    /*申込ボタン*/
  }
  header .mobile-menu .menu-list {
    width: 75%;
    display: flex;
    justify-content: space-around;
    background: #fff;
    color: rgba(59, 75, 107, 0.8);
    font-size: 0.6rem;
    font-weight: bold;
    padding: 0 10px;
  }
  header .mobile-menu .menu-list li {
    line-height: 2em;
    text-align: center;
  }
  header .mobile-menu .menu-list li a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .mobile-menu .menu-list li a .menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header .mobile-menu .menu-list li a .menu li {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
  }
  header .mobile-menu .menu-list li a .menu li:nth-child(1) {
    align-items: flex-end;
  }
  header .mobile-menu .menu-list li a .menu li:nth-child(2) {
    align-items: center;
    line-height: 1.1em;
  }
  header .mobile-menu .menu-list li a .menu .material-icons {
    color: rgba(59, 75, 107, 0.8);
  }
  header .mobile-menu .btn-wrap {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #8dc21f;
    color: #fff;
    letter-spacing: 0.05em;
  }
  header .mobile-menu .btn-wrap a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*スクロール時*/
.headerColor-default {
  background: rgba(59, 75, 107, 0.8);
  transition: 0.5s;
}

/*------------------------------------------------------
  キービジュアル
------------------------------------------------------*/
@media screen and (min-width: 768px) {
  #kv {
    width: 100%;
  }
  #kv .kv-wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  #kv .kv-wrap .main-visual {
    width: 100%;
    padding: 5rem 0 0;
  }
  #kv .kv-wrap .main-visual .title-wrap {
    width: 100%;
    height: 60vh;
    display: flex;
    padding-top: 5vh;
    justify-content: center;
    align-items: center;
  }
  #kv .kv-wrap .main-visual .title-wrap img {
    width: 100%;
  }
  #kv .kv-wrap .main-visual .date {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #kv {
    width: 100%;
    height: 100vh;
    padding: 60px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #kv .main-visual {
    height: 85vh;
    padding-bottom: 60px;
    margin: 0 auto;
  }
  #kv .main-visual img {
    height: 100%;
  }
}
/*------------------------------------------------------
  ゲスト
------------------------------------------------------*/
#guest {
  background: radial-gradient(rgba(59, 75, 107, 0.4) 10%, rgba(59, 75, 107, 0.98) 70%);
  padding: 4rem 1rem;
}
#guest .section_title li:nth-child(2) {
  color: rgba(255, 255, 255, 0.7);
}
#guest .container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2rem;
}
#guest .container .guest-wrap {
  background: rgba(255, 255, 255, 0.7);
  width: 49%;
  height: auto;
  display: flex;
  align-items: flex-end;
  font-size: 0.7rem;
  text-align: left;
  line-height: 1.5em;
  padding: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.2);
}
#guest .container .guest-wrap .photo {
  width: 29%;
  padding-right: 1rem;
}
#guest .container .guest-wrap .photo img {
  width: 100%;
}
#guest .container .guest-wrap ul {
  width: 71%;
}
#guest .container .guest-wrap ul .logo {
  height: 100%;
  position: absolute;
  top: 1rem;
  right: 0.5rem;
}
#guest .container .guest-wrap ul li:nth-child(2) {
  font-size: 1.1rem;
  padding: 0.3em 0 0.5em;
}
#guest .container .guest-wrap ul .shizen img {
  height: 22%;
}
#guest .container .guest-wrap ul .mobisavi img {
  height: 15%;
}
#guest .container .guest-wrap ul .nttdata {
  top: 1.4rem;
}
#guest .container .guest-wrap ul .nttdata img {
  height: 25%;
}
#guest .container .guest-wrap ul .igrid img {
  height: 27%;
}
#guest .container .guest-wrap ul .digitalgrid img {
  height: 40%;
}
#guest .container .guest-wrap ul .jera img {
  height: 25%;
}
#guest .container .guest-wrap ul .nedo img {
  height: 40%;
}
#guest .container .guest-wrap ul .lib img {
  height: 25%;
}
#guest .container .coming {
  width: 100%;
}
#guest .container .coming .soon {
  font-size: 0.9rem;
  line-height: 4em;
  color: rgb(144, 143, 143);
  text-align: center;
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dotted #1f1f1f;
}
@media screen and (max-width: 767px) {
  #guest {
    background: rgba(255, 255, 255, 0.9);
    padding: 4rem 1rem 2rem;
  }
  #guest .section_title li:nth-child(1) {
    color: rgb(59, 75, 107);
  }
  #guest .section_title li:nth-child(2) {
    color: rgba(59, 75, 107, 0.8);
  }
  #guest .container {
    max-width: 767px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }
  #guest .container .guest-wrap {
    background: transparent;
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-end;
    font-size: 0.7rem;
    text-align: left;
    line-height: 1.5em;
    padding: 1.5rem 0.5rem 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: none;
    border-top: 1px dotted #1f1f1f;
  }
  #guest .container .guest-wrap .photo {
    width: 29%;
    padding-right: 1rem;
  }
  #guest .container .guest-wrap .photo img {
    width: 100%;
  }
  #guest .container .guest-wrap ul {
    width: 71%;
  }
  #guest .container .guest-wrap ul .logo {
    height: 100%;
    position: absolute;
    top: 0.7rem;
    right: 0;
  }
  #guest .container .guest-wrap ul li:nth-child(2) {
    font-size: 1.1rem;
    padding: 0.3em 0 0.5em;
  }
  #guest .container .guest-wrap ul .shizen img {
    height: 22%;
  }
  #guest .container .guest-wrap ul .mobisavi img {
    height: 15%;
  }
  #guest .container .guest-wrap ul .nttdata {
    top: 1.4rem;
  }
  #guest .container .guest-wrap ul .nttdata img {
    height: 23%;
  }
  #guest .container .guest-wrap ul .igrid img {
    height: 27%;
  }
  #guest .container .guest-wrap ul .nedo img {
    height: 40%;
  }
  #guest .container .guest-wrap ul .lib img {
    height: 25%;
  }
  #guest .container .guest-wrap:last-of-type {
    border-bottom: 1px dotted #1f1f1f;
  }
}

/*------------------------------------------------------
  コンセプト
------------------------------------------------------*/
#concept {
  background-repeat: no-repeat;
  background-size: contain;
  background: linear-gradient(255, 255, 255, 0.1);
}
@media screen and (min-width: 768px) {
  #concept {
    padding: 4rem 1rem;
  }
  #concept .container {
    max-width: 980px;
    margin-bottom: 2rem;
    margin-top: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  #concept .container .concept-wrap {
    background: linear-gradient(-45deg, #eee 0%, #fff 50%, #eee 100%);
    padding: 6rem 6rem 0;
  }
  #concept .container .concept-wrap .message {
    color: #16160e;
    text-align: justify;
    line-height: 2.3rem;
    padding-bottom: 2rem;
  }
  #concept .container .concept-wrap .message .bold {
    font-weight: 900;
  }
  #concept .container .concept-wrap .message .title {
    font-weight: 900;
    font-size: 1.5em;
    letter-spacing: 0.04em;
  }
  #concept .container .concept-wrap .section_title {
    padding-top: 2rem;
  }
  #concept .container .concept-wrap .section_title li:nth-child(1) {
    color: rgb(59, 75, 107);
  }
  #concept .container .concept-wrap .section_title li:nth-child(2) {
    color: rgb(59, 75, 107);
  }
  #concept .container .concept-wrap .concept-image {
    width: 100%;
  }
  #concept .container .concept-wrap .concept-image img {
    width: 100%;
  }
  #concept .container .points {
    background: #dfdfe1;
    line-height: 2rem;
    padding: 4rem 4.5rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  #concept .container .points .section_title li:nth-child(1) {
    color: rgb(59, 75, 107);
  }
  #concept .container .points .section_title li:nth-child(2) {
    color: rgba(59, 75, 107, 0.8);
  }
  #concept .container .points .point-list {
    display: inline-block;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
  }
  #concept .container .points .point-list li {
    padding: 0.7em 2em;
    text-align: justify;
    margin: 0.5em 0;
    background: #fff;
  }
  #concept .container .points .material-icons {
    color: #8dc21f;
    display: inline-flex;
    vertical-align: middle;
    padding-right: 5px;
    position: relative;
    top: -2px;
  }
}
@media screen and (max-width: 767px) {
  #concept {
    background-image: url(../images/kv_bg_mobile.webp);
    background-size: cover;
    padding: 4rem 1rem 2rem;
  }
  #concept .container {
    width: 100%;
    margin-top: 1rem;
  }
  #concept .container .concept-wrap {
    background: linear-gradient(-45deg, #eee 0%, #fff 50%, #eee 100%);
    padding: 1rem 0.5rem 0;
  }
  #concept .container .concept-wrap .message {
    color: #16160e;
    text-align: justify;
    line-height: 2rem;
    padding: 2rem 1.1rem;
  }
  #concept .container .concept-wrap .message .bold {
    font-weight: 900;
  }
  #concept .container .concept-wrap .message .title {
    font-weight: 900;
    font-size: 1.5em;
    letter-spacing: 0.04em;
  }
  #concept .container .concept-wrap .section_title {
    padding-top: 2rem;
  }
  #concept .container .concept-wrap .section_title li:nth-child(1) {
    color: rgb(59, 75, 107);
  }
  #concept .container .concept-wrap .section_title li:nth-child(2) {
    color: rgb(59, 75, 107);
    line-height: 1.5em;
    padding-top: 0.5em;
  }
  #concept .container .concept-wrap .concept-image {
    width: 100%;
    padding-bottom: 2rem;
  }
  #concept .container .concept-wrap .concept-image img {
    width: 100%;
  }
  #concept .container .points {
    background: #cdcdce;
    line-height: 1.5rem;
    padding: 3rem 1em 2rem;
  }
  #concept .container .points .section_title li:nth-child(1) {
    color: rgb(59, 75, 107);
  }
  #concept .container .points .section_title li:nth-child(2) {
    color: rgba(59, 75, 107, 0.8);
  }
  #concept .container .points .point-list {
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
  }
  #concept .container .points .point-list li {
    padding: 0.5em 0.5em 0.8em;
    margin: 0.3em 0;
    background: linear-gradient(-45deg, #eee 0%, #fff 50%, #eee 100%);
  }
  #concept .container .points .point-list li:first-child {
    margin-top: 0;
  }
  #concept .container .points .material-icons {
    display: block;
    padding-bottom: 5px;
  }
}

/*------------------------------------------------------
  プログラム
------------------------------------------------------*/
#program {
  background: rgba(255, 255, 255, 0.5);
  padding: 3rem 0;
}
#program .container {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 5%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.8) 95%);
  padding: 4rem 3rem 2rem;
  margin: 0 auto 2rem auto;
}
#program .container .btn_wrap {
  margin: 1.5rem auto 1rem auto;
}
#program .container .section_title {
  position: relative;
}
#program .container .section_title li:nth-child(1) {
  color: rgb(59, 75, 107);
}
#program .container .section_title li:nth-child(2) {
  color: rgba(59, 75, 107, 0.8);
}
#program .container .section_title .free {
  background: #979696;
  padding: 0.2em 1em;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
}
#program .container .order {
  background: rgb(59, 75, 107);
  margin: 1rem 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0.7em 1em 0.7em 2em;
  color: #fff;
  font-size: 1.3rem;
}
#program .container .order li:nth-child(2) {
  letter-spacing: 0.05em;
  font-family: "Roboto Mono", monospace;
  display: inline-flex;
  align-items: center;
}
#program .container .order li:nth-child(2) span {
  font-size: 0.65em;
  border: 1px solid #656f8d;
  padding: 0.2em 0.7em;
  margin-left: 1em;
  border-radius: 50px;
}
#program .container .wrapper {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.9);
}
#program .container .wrapper .coming {
  font-size: 1rem !important;
  font-weight: bold;
  color: #9c9b9b;
}
#program .container .wrapper .theme {
  text-align: left;
  color: #1f1f1f;
  padding: 0.5rem 0 0.5rem 1.2rem;
  border-left: 4px solid #8dc21f;
}
#program .container .wrapper .theme li:nth-child(1) {
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.5em;
  padding: 0.5em 0 0.3em;
}
#program .container .wrapper .theme li:nth-child(2) {
  font-size: 0.98rem;
  text-align: justify;
  line-height: 1.8em;
  padding-top: 0.8em;
}
#program .container .wrapper .theme li:nth-child(3) {
  padding-top: 0.8em;
}
#program .container .wrapper .theme li:nth-child(n+3) {
  line-height: 1.6em;
}
#program .container .wrapper .coming {
  font-size: 0.8rem;
  font-weight: bold;
  color: #b4b3b3;
}
#program .container .wrapper .speaker {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-top: 1rem;
  align-items: center;
}
#program .container .wrapper .speaker .name {
  width: 20%;
  text-align: center;
  display: flex;
  justify-content: center;
}
#program .container .wrapper .speaker .name li:nth-child(1) {
  font-size: 0.9rem;
  color: rgb(59, 75, 107);
  padding-bottom: 1em;
}
#program .container .wrapper .speaker .photo {
  width: 13%;
}
#program .container .wrapper .speaker .photo img {
  width: 100%;
}
#program .container .wrapper .speaker .company {
  flex-grow: 1;
  font-size: 0.9rem;
  line-height: 1.5em;
  text-align: left;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
}
#program .container .wrapper .speaker .logo {
  width: 30%;
  text-align: right;
}
#program .container .wrapper .speaker .lib img {
  width: 70%;
}
#program .container .wrapper .speaker .shizen img {
  width: 80%;
}
#program .container .wrapper .speaker .mobisavi img {
  width: 50%;
}
#program .container .wrapper .speaker .nttdata img {
  width: 70%;
}
#program .container .wrapper .speaker .igrid img {
  width: 50%;
}
#program .container .wrapper .speaker .jera img {
  width: 45%;
}
#program .container .wrapper .speaker .digitalgrid img {
  width: 70%;
}
#program .container .wrapper .speaker .nedo img {
  width: 60%;
}
@media screen and (max-width: 767px) {
  #program {
    background: rgba(175, 175, 176, 0.9);
    padding: 0;
  }
  #program .container {
    background: rgba(255, 255, 255, 0.8);
    padding: 4rem 1rem 2rem;
    margin: 0 auto;
  }
  #program .container .section_title li:nth-child(2) {
    padding-bottom: 0;
    color: rgb(59, 75, 107);
  }
  #program .container .section_title .free {
    background: none;
    padding: 0.2em 1em;
    margin: 1em 0 2em 0;
    color: rgba(59, 75, 107, 0.8);
    border: 1px solid rgba(59, 75, 107, 0.8);
    position: static;
  }
  #program .container .order {
    width: 100%;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.7em;
    color: #fff;
    font-size: 1.15rem;
  }
  #program .container .order li:nth-child(2) {
    letter-spacing: 0.05em;
    font-family: "Roboto Mono", monospace;
    display: inline-flex;
    align-items: center;
    margin-top: 0.3em;
    padding-left: 5px;
  }
  #program .container .order li:nth-child(2) span {
    font-size: 0.65em;
    border: 2px solid #656f8d;
    padding: 0.2em 0.7em;
    margin-left: 1em;
    border-radius: 50px;
  }
  #program .container .wrapper {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.7);
  }
  #program .container .wrapper .theme {
    text-align: left;
    padding: 0.5rem 0 0.5rem 0;
    border-left: none;
  }
  #program .container .wrapper .theme li:nth-child(1) {
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    line-height: 1.5em;
    padding: 0.5em 0 0.3em 1em;
    text-align: justify;
    border-left: 4px solid #8dc21f;
  }
  #program .container .wrapper .theme li:nth-child(2) {
    font-size: 0.98rem;
    text-align: justify;
    line-height: 1.8em;
    padding-top: 0.8em;
  }
  #program .container .wrapper .theme li:nth-child(3) {
    padding-top: 0.8em;
  }
  #program .container .wrapper .theme li:nth-child(n+3) {
    line-height: 1.6em;
  }
  #program .container .wrapper .speaker {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 1rem;
    align-items: center;
  }
  #program .container .wrapper .speaker .name {
    width: 65%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  #program .container .wrapper .speaker .name li:nth-child(1) {
    font-size: 0.9rem;
    padding-bottom: 0.7em;
  }
  #program .container .wrapper .speaker .name .logo {
    width: 100%;
    text-align: center;
    padding: 0.3rem 0 0.7rem;
  }
  #program .container .wrapper .speaker .name li:nth-child(3) {
    font-size: 1.1rem;
  }
  #program .container .wrapper .speaker .photo {
    width: 35%;
  }
  #program .container .wrapper .speaker .photo img {
    width: 100%;
  }
  #program .container .wrapper .speaker .company {
    width: 100%;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.5em;
    text-align: right;
    padding-left: 1rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
  }
  #program .container .wrapper .speaker .evooster .logo01 {
    width: 49%;
  }
  #program .container .wrapper .speaker .evooster .logo02 {
    width: 49%;
    padding-left: 10px;
  }
  #program .container .wrapper .speaker .powerx img {
    width: 55%;
  }
  #program .container .wrapper .speaker .lib img {
    width: 75%;
  }
}

#program .comming {
  color: #cacacc;
  font-weight: bold;
}

#outline {
  background: rgba(44, 55, 96, 0.8);
  color: #fff;
  padding: 5rem 1rem 4rem 1rem;
}
#outline .partnerlogo {
  padding-top: 3rem;
}
#outline .partner {
  width: 300px;
  margin: 0 auto;
}
#outline .partner img {
  width: 100%;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.9));
}
#outline .timetable {
  margin: 5rem auto 2rem auto;
}
#outline .free {
  background: rgb(59, 75, 107);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 0.4em 1em;
  margin-bottom: 1rem;
}
#outline .section_title {
  border-bottom: 1px solid #4fe7ff;
  margin: 0 auto 3rem auto;
}
#outline .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2rem;
  /*イベント名*/
}
#outline .container .event {
  width: 40%;
}
#outline .container .event .logo img {
  width: 190px;
  padding-bottom: 5px;
}
#outline .container .event .eventmanagement {
  font-size: 0.7rem;
  line-height: 1.4em;
  font-weight: normal;
  padding-bottom: 1.2em;
}
#outline .container .event ul li:nth-child(1) {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5em;
  border-top: 1px solid #fff;
  border-bottom: 1px dotted #fff;
  padding: 1em;
  margin: 1em 0 0.7em;
}
#outline .container .event ul li:nth-child(2) {
  font-size: 1.3rem;
  line-height: 1.5em;
  padding: 0.5em 1em 1em;
  border-bottom: 1px solid #fff;
  margin-bottom: 1em;
}
#outline .container .event ul li:nth-child(3) {
  font-size: 1.3rem;
  line-height: 1.5em;
}
#outline .container .event ul li:nth-child(4), #outline .container .event ul li:nth-child(5) {
  font-size: 0.95rem;
  line-height: 1.5em;
}
#outline .container .detail table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 1.05rem;
  line-height: 2em;
}
#outline .container .detail table tbody tr th {
  font-weight: normal;
  text-align: right;
  color: rgb(178, 178, 178);
  padding: 0.5em 1em 0.5em 0;
}
#outline .container .detail table tbody tr td {
  text-align: left;
  padding: 0.5em 0;
}
#outline .container .detail table tbody tr td small {
  font-size: 0.7rem;
  line-height: 1.1em;
}
#outline .container .detail table tbody tr td .material-icons {
  color: rgb(178, 178, 178);
  position: relative;
  top: 5px;
  padding-right: 3px;
}
#outline .container .detail table tbody tr td a {
  transition: 0.5s;
}
#outline .container .detail table tbody tr td a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
    /*イベント名*/
  }
  .container .event {
    width: 90% !important;
    padding-bottom: 2rem;
  }
  .container .event .logo img {
    width: 190px;
    padding-bottom: 5px;
  }
  .container .event .eventmanagement {
    font-size: 0.7rem;
    line-height: 1.4em;
    font-weight: normal;
    padding-bottom: 1.2em;
  }
  .container .event ul li:nth-child(1) {
    color: #fff;
    font-size: 1rem;
    line-height: 1.5em;
    border-top: 1px solid #fff;
    border-bottom: 1px dotted #fff;
    padding: 1em;
    margin: 1em 0 0.7em;
  }
  .container .event ul li:nth-child(2) {
    font-size: 1.3rem;
    line-height: 1.5em;
    padding: 0.5em 1em 1em;
    border-bottom: 1px solid #fff;
    margin-bottom: 1em;
  }
  .container .event ul li:nth-child(3) {
    font-size: 1.3rem;
    line-height: 1.5em;
  }
  .container .event ul li:nth-child(4), .container .event ul li:nth-child(5) {
    font-size: 0.95rem;
    line-height: 1.5em;
  }
  .container .detail table {
    width: 100%;
    font-size: 1.05rem;
    line-height: 2em;
  }
  .container .detail table tbody tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .container .detail table tbody tr th {
    width: 100%;
    font-weight: normal;
    text-align: left !important;
    color: #eee;
    padding: 0.5em 1em 0.5em 0;
  }
  .container .detail table tbody tr td {
    width: 100%;
    text-align: left;
    padding: 0.5em 0;
  }
  .container .detail table tbody tr td small {
    font-size: 0.7rem;
    line-height: 1.1em !important;
  }
  .container .detail table tbody tr td .material-icons {
    color: #eee;
    position: relative;
    top: 5px;
    padding-right: 3px;
  }
  .container .detail table tbody tr td a {
    transition: 0.5s;
  }
  .container .detail table tbody tr td a:hover {
    opacity: 0.5;
  }
}
/*------------------------------------------------------
  タイムテーブル
------------------------------------------------------*/
#timetable {
  max-width: 980px;
  padding: 0;
  border: 2rem solid rgba(255, 255, 255, 0.5);
  color: #1f1f1f;
}
#timetable table {
  width: 100%;
  font-size: 1.05rem;
  line-height: 2em;
  background: rgba(255, 255, 255, 0.9);
}
#timetable table thead,
#timetable table tbody {
  width: 100%;
}
#timetable table thead tr {
  color: rgb(59, 75, 107);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#timetable table thead tr .time {
  width: 15%;
}
#timetable table thead tr .program {
  width: 50%;
}
#timetable table thead tr .speakers {
  width: 35%;
}
#timetable table thead th {
  text-align: center;
  padding: 0.5em 0;
  font-family: "Roboto Mono", monospace;
}
#timetable table tbody tr {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  line-height: 1.5em;
  padding: 0.5em 0;
  border-top: 1px dotted #1f1f1f;
}
#timetable table tbody tr td {
  display: flex;
  align-self: stretch;
  align-items: center;
  text-align: left;
}
#timetable table tbody tr .time {
  width: 15%;
  text-align: center;
  justify-content: center;
  line-height: 1.2rem;
}
#timetable table tbody tr .time li:nth-child(2) {
  font-size: 0.7rem;
}
#timetable table tbody tr .program {
  width: 50%;
  padding-left: 16px;
  padding-bottom: 0.5em;
  border-left: 1px solid #8dc21f;
}
#timetable table tbody tr .program ul li:nth-child(1) {
  font-size: 0.8rem;
  line-height: 3em;
}
#timetable table tbody tr .program ul li:nth-child(2) {
  font-size: 1rem;
}
#timetable table tbody tr .program ul .coming02 {
  font-size: 0.8rem;
  font-weight: bold;
  color: #b4b3b3;
}
#timetable table tbody tr .speakers {
  width: 35%;
}
#timetable table tbody tr .speakers ul li:nth-child(odd) {
  font-size: 0.95rem;
}
#timetable table tbody tr .speakers ul li:nth-child(even) {
  font-size: 0.8rem;
  line-height: 1.5em;
}
#timetable table tbody tr .speakers ul .takahashi {
  padding-top: 0.4em;
}
#timetable table tbody .cs {
  font-size: 0.7rem !important;
  font-weight: bold;
  color: #c8c7c7;
}
#timetable table tbody .break {
  font-size: 0.8rem;
  line-height: 1em;
  padding: 0.5em 0;
}
@media screen and (max-width: 767px) {
  #timetable {
    max-width: 767px;
    padding: 0;
    border: 0.5rem solid rgb(178, 178, 178);
  }
  #timetable table {
    width: 100%;
    font-size: 1.05rem;
    line-height: 2em;
  }
  #timetable table thead,
  #timetable table tbody {
    width: 100%;
  }
  #timetable table thead {
    display: none;
  }
  #timetable table thead tr {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  #timetable table tbody tr {
    display: flex;
    flex-direction: column;
    flex-flow: row wrap;
    align-items: center;
    line-height: 1.5em;
    padding: 1em 0.5em;
    border-top: 2px dotted #1f1f1f;
  }
  #timetable table tbody tr td {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    align-items: flex-start;
    text-align: left;
  }
  #timetable table tbody tr .time {
    width: 100%;
    text-align: center;
    justify-content: center;
    line-height: 1.2rem;
  }
  #timetable table tbody tr .time > ul {
    display: flex;
    align-items: center;
  }
  #timetable table tbody tr .time > ul li:nth-child(2) {
    font-size: 0.7rem;
    padding: 0;
  }
  #timetable table tbody tr .program {
    width: 100%;
    padding-top: 0.8rem;
    padding-left: 1rem;
    padding-bottom: 0.2rem;
    border-top: 1px solid #1f1f1f;
    border-left: 1px solid #1f1f1f;
    margin-top: 0.5rem;
  }
  #timetable table tbody tr .program ul li:nth-child(1) {
    font-size: 0.8rem;
    line-height: 2em;
  }
  #timetable table tbody tr .program ul li:nth-child(2) {
    font-size: 1rem;
    padding-top: 0;
  }
  #timetable table tbody tr .program ul .cs {
    font-size: 0.8rem;
    font-weight: bold;
    color: #b4b3b3;
  }
  #timetable table tbody tr .speakers {
    width: 100%;
    margin-top: 0.8em;
  }
  #timetable table tbody tr .speakers ul li:nth-child(odd) {
    font-size: 0.95rem;
  }
  #timetable table tbody tr .speakers ul li:nth-child(even) {
    font-size: 0.8rem;
    line-height: 1.5em;
    padding-top: 0;
  }
  #timetable table tbody .break {
    font-size: 0.8rem;
    line-height: 1em;
    padding: 0.5em 0 0.5em 0.5rem;
  }
  #timetable table tbody .break .time {
    padding-bottom: 0;
  }
  #timetable table tbody .break td:nth-of-type(2) {
    font-size: 0.8rem;
    padding-top: 0;
  }
  #timetable table tbody .opening {
    border-top: none;
  }
  #timetable table tbody .closing {
    border-bottom: none;
  }
}

/*------------------------------------------------------
  form
------------------------------------------------------*/
@media screen and (min-width: 768px) {
  #satori_area {
    max-width: 980px;
    padding: 3rem 0;
    margin: 3rem auto 3rem auto;
    background: rgba(255, 255, 255, 0.8);
  }
  #satori_area #satori__creative_container {
    margin: 0 3rem;
  }
  #satori_area .satori__custom_form {
    padding: 3rem;
  }
  #satori_area .satori__input_group {
    text-align: left;
  }
  #satori_area .satori__input_group select {
    padding-left: 0.8em;
    width: 100%;
  }
  #satori_area .satori__input_group .satori__notes {
    margin: 1em 0;
  }
  #satori_area input,
  #satori_area .satori__notes,
  #satori_area #satori__custom_field_ef745fc157d7e8de8 {
    text-align: justify;
  }
  #satori_area .satori__submit_group .satori__btn {
    padding: 0.8em 5em;
  }
  #satori_area #satori__submit_confirm {
    text-align: center;
  }
  #satori_area .satori__notes {
    font-size: 0.85rem;
    border: none;
    background: #eee;
  }
  #satori_area #satori__privacy_policy_agreement_wrapper .satori__input_group {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #satori_area {
    max-width: 767px;
    padding: 3rem 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
  }
  #satori_area label {
    font-size: 1rem;
  }
  #satori_area #satori__creative_container {
    margin: 0 1rem;
  }
  #satori_area .satori__custom_form {
    padding: 1rem;
  }
  #satori_area .satori__input_group {
    text-align: left;
  }
  #satori_area .satori__input_group select {
    padding-left: 0.8em;
    width: 100%;
  }
  #satori_area input,
  #satori_area .satori__notes,
  #satori_area #satori__custom_field_ef745fc157d7e8de8 {
    text-align: left;
  }
  #satori_area #satori__submit_confirm {
    text-align: center;
  }
  #satori_area .satori__input_group .satori__notes {
    margin: 1em 0;
  }
  #satori_area .satori__notes {
    font-size: 0.85rem;
    border: none;
    background: #eee;
  }
  #satori_area .satori__submit_group .satori__btn {
    font-size: 1.2rem;
    padding: 0.8em 1em;
    width: 100%;
  }
  #satori_area #satori__privacy_policy_agreement_wrapper .satori__input_group {
    text-align: center;
  }
}

#book {
  background: rgba(0, 0, 0, 0.5);
  margin-top: 0;
  padding: 5rem 1rem;
}
#book .container {
  width: 80%;
  margin: 0 auto;
  padding: 1rem;
}
#book .container h1 {
  width: 55%;
  margin: 0 auto;
  padding-top: 2rem;
}
#book .container h1 img {
  width: 100%;
}
#book .container .book {
  width: 100%;
  padding: 2rem 0;
}
#book .container .book img {
  width: 60%;
}
#book .container .detail {
  color: #fff;
  text-align: justify;
  font-size: 1.1rem;
  line-height: 2.1em;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  #book {
    padding: 3rem 1rem 5rem 1rem;
  }
  #book .container {
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
  }
  #book .container h1 {
    width: 100%;
    margin: 0 auto;
    padding-top: 2rem;
  }
  #book .container h1 img {
    width: 100%;
  }
  #book .container .book {
    width: 100%;
    padding: 2rem 0;
  }
  #book .container .book img {
    width: 100%;
  }
  #book .container .detail {
    color: #fff;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 2.1em;
    letter-spacing: 0.06em;
  }
}

#suggestion {
  background: rgba(0, 0, 0, 0.5);
  padding: 6rem 1rem 5rem 1rem;
  margin-top: 3rem;
}
#suggestion .container {
  width: 80%;
  padding-top: 5rem;
}
#suggestion .container .wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}
#suggestion .container .wrapper .suggestion {
  width: 48%;
  margin: 0 auto;
}
#suggestion .container .wrapper .suggestion img {
  width: 100%;
  filter: drop-shadow(0 0 15px #0071BC);
  border: 3px solid #fff;
}
#suggestion .container .wrapper .txt-wrap {
  width: 45%;
}
#suggestion .container .wrapper .txt-wrap .txt {
  color: #fff;
  text-align: justify;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
}
#suggestion .container .wrapper .txt-wrap .txt .bold {
  font-weight: bold;
}
#suggestion .container .wrapper .txt-wrap button {
  margin-top: 1.5rem;
  background: #4fe7ff;
  color: rgb(59, 75, 107);
  display: inline-block;
  width: 14em;
  height: 2.5em;
  transition: all 0.3s ease;
}
#suggestion .container .wrapper .txt-wrap button > a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#suggestion .container .wrapper .txt-wrap button:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  #suggestion {
    padding: 4rem 0 2rem 0;
    margin-top: 0;
  }
  #suggestion .container {
    width: 100%;
    padding-top: 3rem;
  }
  #suggestion .container .headline {
    color: #fff;
    font-family: serif;
    margin: 2em 0 0 0;
  }
  #suggestion .container .headline li:first-child {
    font-size: 1.4rem;
  }
  #suggestion .container .headline li:last-child {
    font-size: 1.9rem;
    line-height: 1.5em;
    padding-bottom: 0;
  }
  #suggestion .container .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #suggestion .container .wrapper .suggestion {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
  #suggestion .container .wrapper .suggestion img {
    width: 100%;
  }
  #suggestion .container .wrapper .txt-wrap {
    width: 100%;
    padding-top: 1rem;
  }
  #suggestion .container .wrapper .txt-wrap .txt {
    color: #fff;
    text-align: justify;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    line-height: 2em;
  }
  #suggestion .container .wrapper .txt-wrap .txt .bold {
    font-weight: bold;
  }
  #suggestion .container .wrapper .txt-wrap button {
    margin-top: 1.5rem;
    background: #4fe7ff;
    color: rgb(59, 75, 107);
    display: inline-block;
    width: 100%;
    height: 3em;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: bold;
  }
  #suggestion .container .wrapper .txt-wrap button > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #suggestion .container .wrapper .txt-wrap button:hover {
    opacity: 0.75;
  }
}