@charset "UTF-8";

/*
------------------------------------------------------------------------------------------------------------
共通部分CSS
------------------------------------------------------------------------------------------------------------
*/
body {
  background: #f5f5f5;
  /*全体の背景色*/
  width: 750px;
  color: #4d4d4d;
  margin: auto;
  /*全体の文字色*/
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", "sans-serif";
  /*全体のフォント設定*/
}

img {
  vertical-align: bottom;
  width: 100%;
  /*横幅設定*/
}

.relative {
  position: relative;
  /*要素の位置をずらす(相対関係)*/
}

h1 {
  color: #292929;
  /*文字色設定*/
  font-size: 75px;
  /*文字サイズ*/
  line-height: 1.2;
  /*行間設定*/
  padding: 15px;
  /*内側の余白設定*/
}

h2 {
  font-size: 2.25rem;
  /*文字サイズ*/
  font-weight: bold;
  /*文字の太さ設定*/
  color: #4d4d4d;
  /*文字色設定*/
  line-height: 1.3;
  /*行間設定*/
  padding-top: 60px;
  /*内側上の余白設定*/
  padding-bottom: 40px;
  /*内側下の余白設定*/
}

.recommend h2 span {
  font-size: 24px;
  /*文字サイズ*/
  font-weight: 500;
  /*文字の太さ設定*/
}

.h2_size_24 {
  font-size: 1.5rem;
  /*文字サイズ*/
  font-weight: 500;
  /*文字の太さ設定*/
  padding-top: 20px;
  /*内側上の余白設定*/
  color: #c8c8c8;
  /*文字色設定*/
}

.h3 {
  font-size: 1.875rem;
  /*文字サイズ*/
  font-weight: bold;
  /*文字の太さ設定*/
  color: #0a498c;
  /*文字色設定*/
  line-height: 1.4;
  /*行間設定*/
  padding-top: 60px;
  /*内側上の余白設定*/
}

h4 {
  margin-top: 20px;
  /*外側上の余白設定*/
  margin-left: 45px;
  /*外側左の余白設定*/
  font-size: 24px;
  /*文字サイズ*/
  float: left;
  /*要素を左に配置*/
}

.size_20 {
  font-size: 1.25rem;
  /*文字サイズ*/
  padding: 20px 80px 60px;
  /*内側の余白設定*/
}

.sp-none {
  display: block !important;
  /*PC画面で表示*/
}

.sp_none {
  display: block !important;
  /*PC画面で表示*/
}

.pc-none {
  display: none !important;
  /*PC画面で非表示*/
}

.pc_none {
  display: none !important;
  /*PC画面で非表示*/
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
    /*SP画面で非表示*/
  }

  .sp_none {
    display: none !important;
    /*SP画面で非表示*/
  }

  .pc-none {
    display: block !important;
    /*SP画面で表示*/
  }

  .pc_none {
    display: block !important;
    /*SP画面で表示*/
  }
}



/*
------------------------------------------------------------------------------------------------------------
表のCSS
------------------------------------------------------------------------------------------------------------
*/
table {
  width: 100%;
  /*横幅設定*/
  font-size: 100%;
  /*文字サイズ*/
  border-spacing: 0;
  /*表組み内のボーダーの隣り合うセルの境界線の間隔を設定*/
}

td,
th {
  border: 1px solid #bbb;
  /*外枠の設定*/
  padding: 10px 20px 7px;
  /*内側の余白設定*/
  line-height: 1.8;
  /*行間設定*/
  background: #fff;
  /*背景色設定*/
}

th {
  width: 25%;
  /*横幅設定*/
  background: #ddd;
  /*背景色設定*/
  font-weight: normal;
  /*文字の太さ設定*/
}

.company_info {
  margin-top: 40px;
  /*外側上の余白設定*/
}

.company_info a {
  color: #0072bc;
  /*文字色設定*/
  text-decoration: underline;
  /*テキストに下線を表示する*/
}

.center {
  text-align: center;
  /*ブロック要素を中央配置*/
}

.disclaimer {
  overflow-y: scroll;
  /*要素を縦方向にスクロールして表示する*/
  height: 100px;
  /*高さ設定*/
  width: 70%;
  /*横幅設定*/
  padding: 1em;
  /*内側の余白設定*/
  font-size: 80%;
  /*文字サイズ*/
  color: #888;
  /*文字色設定*/
  margin: 20px auto 0;
  /*外側の余白設定*/
  text-align: left;
  /*ブロック要素を左配置*/
}



/*
------------------------------------------------------------------------------------------------------------
メニューCSS
------------------------------------------------------------------------------------------------------------
*/
nav {
  text-align: center;
  /*ブロック要素を中央配置*/
  height: 82px;
  /*高さ設定*/
  background-color: #ffffff;
  /*背景色設定*/
}

nav ul {
  margin: 0;
  /*外側の余白設定*/
  padding: 0;
  /*内側の余白設定*/
}

nav li {
  list-style: none;
  /*マーカーの非表示*/
  display: inline-block;
  /*インライン要素に設定*/
  width: 30%;
  /*横幅設定*/
  min-width: 90px;
  /*最小の横幅設定*/
  padding-top: 3%;
  /*内側上の余白設定*/
  padding-bottom: 30%;
  /*内側下の余白設定*/
}

nav li:not(:last-child) {
  border-right: 2px solid #ffffff;
  /*右外枠の設定*/
}

nav a {
  text-decoration: none;
  /*テキストの下線の非表示*/
  font-size: 150%;
  /*文字サイズ*/
  color: #292929;
  /*文字色設定*/
}

nav a:hover {
  color: #F7CB4D;
  /*文字色設定*/
}



/*
------------------------------------------------------------------------------------------------------------
リンク（全般）設定のCSS
------------------------------------------------------------------------------------------------------------
*/
a {
  color: #555;
  /*文字色設定*/
  text-decoration: none;
  /*テキストの下線の非表示*/
}

a:hover {
  color: #006ddc;
  /*文字色設定*/
}

a:hover img {
  position: relative;
  /*要素の位置をずらす(相対関係)*/
  top: 3pt;
  /*要素の位置を下に3ptずらす*/
  left: 3pt;
  /*要素の位置を右に3ptずらす*/
}



/*
------------------------------------------------------------------------------------------------------------
コンテナー（HPを囲むブロック）のCSS
------------------------------------------------------------------------------------------------------------
*/
#container {
  width: 750px;
  /*コンテナー幅*/
  background-color: #fff;
  /*背景色設定*/
  border-left: 1px solid #ccc;
  /*左外枠の設定*/
  border-right: 1px solid #ccc;
  /*右外枠の設定*/
  margin: 0 auto;
  /*外側の余白設定*/
}



/*
------------------------------------------------------------------------------------------------------------
FVのCSS
------------------------------------------------------------------------------------------------------------
*/
.fv-lead {
  height: 80px;
  /*高さ設定*/
  margin-top: 10px;
  /*外側上の余白設定*/
  text-align: center;
  /*ブロック要素を中央配置*/
  background-image: url(../images/fv_02.png);
  /*Webデザイン体験オンラインイベントのテキストの両サイドの吹き出し*/
  background-repeat: no-repeat;
  /*背景画像を繰り返さない*/
}

.fv-lead__text {
  font-size: 1.8rem;
  /*文字サイズ*/
  line-height: 1.2;
  /*行間設定*/
  font-weight: bold;
  /*文字の太さ設定*/
  color: #27476e;
  /*文字色設定*/
  padding-top: 10px;
  /*内側上の余白設定*/
}



/*
------------------------------------------------------------------------------------------------------------
申し込み周りのCSS
------------------------------------------------------------------------------------------------------------
*/
.seminar2 {
  background-color: #f7f7f7;
  /*背景色設定*/
  text-align: center;
  /*ブロック要素を中央配置*/
 
}

.contents_2 {
  position: relative;
  /*要素の位置をずらす(相対関係)*/
  margin-bottom: 10px;

}

.php {
  position: absolute;
  /*要素の位置をずらす(絶対関係)*/
  top: 120px;
  /*上から120px下に配置*/
  left: 55px;
  /*左から55px右に配置*/
  color: #112e5a;
  /*文字色設定*/
  font-size: 230%;
  /*文字サイズ*/
  line-height: 1.2;
  /*行間設定*/
  font-weight: bold;
  /*文字の太さ設定*/
  text-align: center;
  /*ブロック要素を中央配置*/
}

.php_02 {
  position: absolute;
  /*要素の位置をずらす(絶対関係)*/
  top: 120px;
  /*上から120px下に配置*/
  left: 55px;
  /*左から55px右に配置*/
  color: #112e5a;
  /*文字色設定*/
  font-size: 230%;
  /*文字サイズ*/
  line-height: 1.2;
  /*行間設定*/
  font-weight: bold;
  /*文字の太さ設定*/
  text-align: center;
  /*ブロック要素を中央配置*/
}

.main_btn {
  margin-top: 60px;
  margin-bottom: 30px;
  margin: auto;
  display: block;
  margin: auto;
  width: 86%
}


.line_btn {
  margin-top: 60px;
  margin: auto;
  display: block;
  width: 86% !important;
  vertical-align: bottom;
}
  


.step {
  margin-top: 0px;
  /*外側上の余白設定*/
}

.seireki {
  font-size: 80%;
  /*文字サイズ*/
  color: #112e5a;
  /*文字色設定*/
}

.nen {
  font-size: 60%;
  /*文字サイズ*/
}


.sponsorship {
  color: #26466d;
  /*文字色設定*/
  padding-bottom: 0;
  /*内側下の余白設定*/
}


/*
------------------------------------------------------------------------------------------------------------
こんな方へオススメのCSS
------------------------------------------------------------------------------------------------------------
*/
.recommend {
  height: auto;
  /*高さ設定*/
}

.recommend__head {
  text-align: center;
}

.recommend__head img {
  width: 65%;
}

.recommend__main {
  width: 80%;
  /*横幅設定*/
  display: block;
  /*ブロック要素に設定*/
  margin: 0 auto;
  /*外側の余白設定*/
}

.recommend__items {
  display: auto;
  /*要素を横並びに設定*/
  justify-content: space-between;
  /*要素を横並びにして余白をもって等間隔に配置*/
  flex-wrap: wrap;
  /*要素を横並びにして1行で収まりきらなかったら改行する*/
}

.recommend_img {
  width: 64px;
  /*横幅設定*/
  height: auto;
  /*高さ設定*/
}

.recommend__item {
  display: inline-block;
  /*インライン要素に設定*/
  width: 205px;
  /*横幅設定*/
  height: auto;
  /*高さ設定*/
  border-radius: 5px;
  /*要素の角丸設定*/
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  /*影の設定*/
  margin-top: 20px;
  /*外側上の余白設定*/
  text-align: center;
  /*ブロック要素を中央配置*/
  background-color: #fff;
  /*背景色設定*/

  /*内側の余白設定*/
}

.recommend p {
  padding-top: 20px;
  /*内側上の余白設定*/
  font-size: 19px;
  /*文字サイズ*/
  font-weight: 500;
  /*文字の太さ設定*/
  line-height: 1.5;
  /*行間設定*/
  letter-spacing: -1px;
  /*文字間設定*/
  color: #336699;
  /*文字色設定*/
}



/*
------------------------------------------------------------------------------------------------------------
本イベントで得られることのCSS
------------------------------------------------------------------------------------------------------------
*/
.topics {padding-bottom: 30px;
}



.topics_box {
  width: 660px;
  /*横幅設定*/
  margin-left: 45px;
  /*外側左の余白設定*/
  background-color: #fff;
  /*背景色設定*/
  border-radius: 5px;
  /*要素の角丸設定*/
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  /*影の設定*/
  text-align: center;
  /*ブロック要素を中央配置*/
}

.topics_box h3 {
  padding-top: 40px;
  /*内側上の余白設定*/
}

.topics_box p {
  font-size: 1.375rem;
  /*文字サイズ*/
  font-weight: 500;
  /*文字の太さ設定*/
  padding: 30px;
  /*内側の余白設定*/
  text-align: justify;
  /*テキストを均等割り付けする設定*/
  line-height: 1.5;
  /*行間設定*/
  letter-spacing: 0.05em;
  /*文字間設定*/
}

.topics_box02 {
  width: 16px;
  /*横幅設定*/
  height: 30px;
  /*高さ設定*/
  background-color: #cbe0f5;
  /*背景色設定*/
  margin: 0 auto;
  /*外側の余白設定*/
}

.event_topics_img01,
.event_topics_img02,
.event_topics_img03,
.event_topics_img04,
.event_topics_img05 {
  margin-top: 30px;
}

.event_topics_img01 {
  width: 45%;
  /*横幅設定*/
}

.event_topics_img02 {
  width: 55%;
  /*横幅設定*/
}

.event_topics_img03 {
  width: 35%;
  /*横幅設定*/
}

.event_topics_img04 {
  width: 55%;
  /*横幅設定*/
}

.event_topics_img05 {
  width: 90%;
  /*横幅設定*/
}



/*
------------------------------------------------------------------------------------------------------------
イベントの参加方法のCSS
------------------------------------------------------------------------------------------------------------
*/
.join {
  margin: 0px 

  /*外側の余白設定*/
  
}

.join_box {
  width: 100%;
  /*横幅設定*/
  background-color: #fff;
  /*背景色設定*/
  border-radius: 5px;
  /*要素の角丸設定*/
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  /*ブロック要素を中央配置*/
}



.join_box_img01 {
  width: 100%;
  /*横幅設定*/
}

.join_box_img02 {
  width: 70%;
  /*横幅設定*/
}

.join_box_img03 {
  width: 58%;
  /*横幅設定*/
}

.join_box h3 {
  padding-top: 20px;
  /*内側上の余白設定*/
}

.join_box p {
  font-size: 24px;
  /*文字サイズ*/
  padding-top: 20px;
  /*内側上の余白設定*/
  padding-bottom: 30px;
  /*内側下の余白設定*/
}




/*
------------------------------------------------------------------------------------------------------------
本イベントは株式会社Live出版が主催していますのCSS
------------------------------------------------------------------------------------------------------------
*/
.company {
  margin: 0% 6% 0;
  /*外側の余白設定*/
}

.company_box {
  width: 100%;
  /*横幅設定*/
  height: 255px;
  /*高さ設定*/
  border-radius: 5px;
  /*要素の角丸設定*/
  margin-top: 55px;
  /*外側上の余白設定*/
  padding-top: 25px;
  /*内側上の余白設定*/
  padding-left: 35px;
  /*内側左の余白設定*/
  background-color: #f6f5f3;
  /*背景色設定*/
}

.size_30 {
  font-size: 1.875rem;
  /*文字サイズ*/
}

.size_30 span {
  vertical-align: middle;
  /*縦の中央配置*/
  color: #6cd1c3;
  /*文字色設定*/
}

.size_24 {
  font-size: 1.5rem;
  /*文字サイズ*/
}

.size_16 {
  padding-left: 20px;
  /*内側左の余白設定*/
}

hr {
  width: 350px;
  /*横幅設定*/
  margin: 20px 0;
  /*外側の余白設定*/
}

.absolute_img {
  position: absolute;
  /*要素の位置をずらす(絶対関係)*/
  margin-top: -170px;
  /*外側上の余白設定*/
  margin-left: 350px;
  /*外側左の余白設定*/
  width: 250px;
  /*横幅設定*/
  height: 200px;
  /*高さ設定*/
}

.map {
  margin-bottom: 10px;
  margin-top: 10px;

}




/*
------------------------------------------------------------------------------------------------------------
イベント登壇者のCSS
------------------------------------------------------------------------------------------------------------
*/
.speaker {
  height: 980px;
  /*高さ設定*/
  position: relative;
  /*要素の位置をずらす(相対関係)*/
  margin: 120px 0;
  /*外側の余白設定*/
}






/*
------------------------------------------------------------------------------------------------------------
イベント参加者の声のCSS
------------------------------------------------------------------------------------------------------------
*/
.voice_box {
  margin-bottom: 20px;
  /*外側下の余白設定*/
}

.voice_hr {
  margin: 0 45px;
  /*外側の余白設定*/
  width: 660px;
  /*横幅設定*/
}

.caution {
  margin: 20px 45px;
  /*外側の余白設定*/
  text-align: right;
  /*ブロック要素を右配置*/
  color: #838383;
  /*文字色設定*/
}

.date {
  margin-top: 20px;
  /*外側上の余白設定*/
  margin-right: 45px;
  /*外側右の余白設定*/
  text-align: right;
  /*ブロック要素を右配置*/
  font-size: 1.25rem;
  /*文字サイズ*/
  color: #838383;
  /*文字色設定*/
}

.evaluation {
  margin-top: 10px;
  /*外側上の余白設定*/
  margin-bottom: 10px;
  /*外側下の余白設定*/
  margin-left: 45px;
  /*外側左の余白設定*/
  font-size: 1.25rem;
  /*文字サイズ*/
  text-align: left;
  /*ブロック要素を左配置*/
  color: #6cd1c3;
  /*文字色設定*/
}

.voice_p {
  margin: 0 45px;
  /*外側の余白設定*/
  font-size: 1.25rem;
  /*文字サイズ*/
  text-align: justify;
  /*テキストを均等割り付けする設定*/
}



/*
------------------------------------------------------------------------------------------------------------
よくある質問のCSS
------------------------------------------------------------------------------------------------------------
*/
.question {
  margin: 0% 0;
  /*外側の余白設定*/

}

.tokuten01 {
  width: 660px;
  /*横幅設定*/
  border-radius: 5px;
  /*要素の角丸設定*/
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
  /*要素の影の設定*/
  margin: 0 45px;
  /*外側の余白設定*/
}




  



/*
------------------------------------------------------------------------------------------------------------
FooterのCSS
------------------------------------------------------------------------------------------------------------
*/
.footer {
  width: 100%;
  /*横幅設定*/
  height: auto;
  /*高さ設定*/
  color: #fff;
  /*文字色設定*/
  background-color: #1073B8;
  /*背景色設定*/

  padding-top: 0px;
}

.footer__inner {
  text-align: left;
  /*ブロック要素を左配置*/
}

.footer__inner a {
  padding: 5px 50px;
  /*内側の余白設定*/
  color: #fff;
  /*文字色設定*/
  padding-left: 30px;
  /*内側左の余白設定*/
  /*footerの矢印画像の設定*/
  display: block;
  width: 100%;
}

.footer__inner a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/listmark-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
}

.footer__inner li {
  padding: 8px;
  /*内側の余白設定*/
  font-size: 120%;
  /*文字サイズ*/
 
}

.footer__inner a:hover {
  opacity: 0.5;
  /*不透明度50%*/
  background: #26466d;
  /*背景色設定*/
}

footer p.copy {
  text-align: center;
  /*ブロック要素を中央配置*/
  padding: 10px 0;
  /*内側の余白設定*/
  color: #393939;
  font-size: 100%;
  background: #ffffff;
  /*文字サイズ*/
  
}



/*
===================================================================================================================================
スマホ版のCSS
===================================================================================================================================
*/

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

  h1 {
    font-size: 250%;
    /*文字サイズ*/
    padding: 5px;
    /*内側の余白設定*/
  }

  h2 {
    font-size: 180%;
    /*文字サイズ*/
    font-weight: bold;
    /*文字の太さ設定*/
    text-align: center;
    /*ブロック要素を中央配置*/
    color: #4d4d4d;
    /*文字色設定*/
    line-height: 1.3;
    /*行間設定*/
    padding-top: 60px;
    /*内側上の余白設定*/
    padding-bottom: 40px;
    /*内側下の余白設定*/
  }

  .h3 {
    font-size: 130%;
    /*文字サイズ*/
    font-weight: bold;
    /*文字の太さ設定*/
    text-align: center;
    /*ブロック要素を中央配置*/
    color: #0a498c;
    /*文字色設定*/
    line-height: 1.4;
    /*行間設定*/
    padding-top: 60px;
    /*内側上の余白設定*/
    padding-left: 4%;
    /*内側左の余白設定*/
    padding-right: 4%;
    /*内側左の余白設定*/
  }

  h4 {
    margin-top: 20px;
    /*外側上の余白設定*/
    margin-left: 4%;
    /*外側左の余白設定*/
    font-size: 120%;
    /*文字サイズ*/
    float: none;
    /*floatの初期値*/
  }

  .size_20 {
    font-size: 100%;
    /*文字サイズ*/
    padding: 20px 4% 60px;
    /*内側の余白設定*/
  }
}
  /*
------------------------------------------------------------------------------------------------------------
メニューCSS
------------------------------------------------------------------------------------------------------------
*/
  .sp_menu {
    display: flex;
    /*要素を横並びに設定*/
    width: 100%;
    /*横幅設定*/
    flex-direction: row;
    /*フレックスアイテムの配置方向を指定(初期値)*/
    padding: 0;
    /*内側の余白設定*/
    margin-bottom: -2px;
    /*外側下の余白設定*/
  }


  /*
------------------------------------------------------------------------------------------------------------
コンテナー（HPを囲むブロック）のCSS
------------------------------------------------------------------------------------------------------------
*/
  #container {
    width: 100%;
    /*横幅設定*/
  }



  /*
------------------------------------------------------------------------------------------------------------
FVのCSS
------------------------------------------------------------------------------------------------------------
*/

  .fv-lead {
    height: 50px;
    /*高さ設定*/
    margin-top: 10px;
    /*外側上の余白設定*/
    text-align: center;
    /*ブロック要素を中央配置*/
    background-image: url(../images/fv_02.png);
    /*Webデザイン体験オンラインイベントのテキストの両サイドの吹き出し*/
    background-size: contain;
    /*縦横比を保ったまま、背景画像が領域に収まる表示サイズに調整*/
    background-repeat: no-repeat;
    /*背景画像を繰り返さない*/
  }

  .fv-lead p {
    font-size: 90%;
    /*文字サイズ*/
  }


  /*
------------------------------------------------------------------------------------------------------------
申し込み周りのCSS
------------------------------------------------------------------------------------------------------------
*/
  .contents_2 {
    position: relative;
    /*要素の位置をずらす(相対関係)*/
    height: auto;
    /*高さ設定*/
  }

  .php {
    position: absolute;
    /*要素の位置をずらす(絶対関係)*/
    top: 37%;
    /*上から37%下に配置*/
    left: 6%;
    /*左から6%右に配置*/
    color: #112e5a;
    /*文字色設定*/
    font-size: 130%;
    /*文字サイズ*/
    line-height: 1.1;
    /*行間設定*/
    font-weight: bold;
    /*文字の太さ設定*/
  }

  .php_02 {
    position: absolute;
    /*要素の位置をずらす(絶対関係)*/
    top: 38%;
    /*上から38%下に配置*/
    left: 6%;
    /*左から6%右に配置*/
    color: #112e5a;
    /*文字色設定*/
    font-size: 130%;
    /*文字サイズ*/
    line-height: 1.1;
    /*行間設定*/
    font-weight: bold;
    /*文字の太さ設定*/
  }

 
  




   

  .step {
    margin-top: 30px;
    /*外側上の余白設定*/
  }

 



  /*
------------------------------------------------------------------------------------------------------------
こんな方へオススメのCSS
------------------------------------------------------------------------------------------------------------
*/


  .recommend__head {
    width: 100%;
    /*横幅設定*/
  }

  .recommend__item {
    display: inline-block;
    /*インライン要素に設定*/
    width: 47.5%;
    /*横幅設定*/
    height: auto;
    /*高さ設定*/
    border-radius: 5px;
    /*要素の角丸設定*/
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    /*影の設定*/
    margin-top: 20px;
    /*外側上の余白設定*/
    text-align: center;
    /*ブロック要素を中央配置*/
    background-color: #fff;
    /*背景色設定*/
    padding: 20px 10px;
    /*内側の余白設定*/
  }



  /*
------------------------------------------------------------------------------------------------------------
本イベントで得られることのCSS
------------------------------------------------------------------------------------------------------------
*/
  .topics {
    padding-bottom: 0%;
  }

  .topics_box {
    width: 92%;
    /*横幅設定*/
    margin-left: 4%;
    /*外側左の余白設定*/
  }

  .topics_box p {
    font-size: 100%;
    /*文字サイズ*/
  }

  .gray_bg {
    height: 50px;
    /*高さ設定*/
  }

  .recommend__head img {
    width: 95%;
    /*横幅設定*/
  }

  .event_topics_img01 {
    width: 88%;
    /*横幅設定*/
  }

  .event_topics_img02 {
    width: 90%;
    /*横幅設定*/
  }

  .event_topics_img03 {
    width: 67%;
    /*横幅設定*/
  }

  .event_topics_img04 {
    width: 85%;
    /*横幅設定*/
  }

  .event_topics_img05 {
    width: 90%;
    /*横幅設定*/
  }



  /*
------------------------------------------------------------------------------------------------------------
イベントの参加方法のCSS
------------------------------------------------------------------------------------------------------------
*/
  .join_box {
    width: 90%;
    /*横幅設定*/
  }

  .join_box p {
    font-size: 100%;
    /*文字サイズ*/
  }

  .join_box_img01 {
    width: 90%;
    /*横幅設定*/
  }

  .join_box_img02 {
    width: 90%;
    /*横幅設定*/
  }

  .join_box_img03 {
    width: 90%;
    /*横幅設定*/
  }



  /*
------------------------------------------------------------------------------------------------------------
本イベントは株式会社Live出版が主催していますのCSS
------------------------------------------------------------------------------------------------------------
*/


  .absolute_img {
    position: static;
    /*要素の位置設定(初期値)*/
    margin: 0;
    /*外側の余白設定*/
    padding: 5% 0;
    /*内側の余白設定*/
    width: 100%;
    /*横幅設定*/
    height: 100%;
    /*高さ設定*/
  }

  hr {
    width: 98%;
    /*横幅設定*/
  }

  .size_24 {
    font-size: 100%;
    /*文字サイズ*/
  }

  .size_30 {
    font-size: 160%;
    /*文字サイズ*/
  }


  /*
------------------------------------------------------------------------------------------------------------
イベント登壇者のCSS
------------------------------------------------------------------------------------------------------------
*/
  .speaker { 
    height: 0%;
    margin:0%
  }







  /*
------------------------------------------------------------------------------------------------------------
イベント参加者の声のCSS
------------------------------------------------------------------------------------------------------------
*/
  .voice_hr {
    margin: 0 4%;
    /*外側の余白設定*/
    width: 92%;
    /*横幅設定*/
  }

  .caution {
    margin: 20px 4%;
    /*外側の余白設定*/
    text-align: center;
    /*ブロック要素を中央配置*/
  }

  .date {
    margin-top: 10px;
    /*外側上の余白設定*/
    margin-right: 4%;
    /*外側右の余白設定*/
    text-align: right;
    /*ブロック要素を右配置*/
    font-size: 90%;
    /*文字サイズ*/
    float: right;
    /*要素を右に配置*/
  }

  .evaluation {
    margin-top: 10px;
    /*外側上の余白設定*/
    margin-bottom: 10px;
    /*外側下の余白設定*/
    margin-left: 4%;
    /*外側左の余白設定*/
    font-size: 100%;
    /*文字サイズ*/
  }

  .voice_p {
    margin: 0%
    /*外側の余白設定*/
   
  }




  /*
------------------------------------------------------------------------------------------------------------
よくある質問のCSS
------------------------------------------------------------------------------------------------------------
*/
  .question img {
    margin: auto;
  }



  .tokuten01 {
    width: 100%;
    /*横幅設定*/
    border-radius: 5px;
    /*要素の角丸設定*/
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    /*影の設定*/
    margin: auto;
  }
  
  .element style{
    margin-top: 0px;
    margin-bottom: 0px
  }

  /*
------------------------------------------------------------------------------------------------------------
FooterのCSS
------------------------------------------------------------------------------------------------------------
*/
  footer {
    /*mobile*/
    width: 100%;
    /*横幅設定*/
    font-size: 60%;
    /*文字サイズ*/
    margin-bottom: 15px;
    /*外側下の余白設定*/
  }

  .footer__inner li {
    font-size: 150%;
    /*文字サイズ*/
  }

  footer .img-center {
    font-size: 120%;
    /*文字サイズ*/
  }

  .footer__p {
    color: #ffffff;
    background-color: #292929;
  }