@charset "UTF-8";
/*
------------------------------------------------------------------------------------------------------------
共通部分CSS
------------------------------------------------------------------------------------------------------------
*/
body {
  background: #f5f5f5; /*全体の背景色*/
  color: #4d4d4d; /*全体の文字色*/
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", "sans-serif"; /*全体のフォント設定*/
}
img {
  width: 100%; /*横幅設定*/
  vertical-align: bottom;
}
.relative {
  position: relative; /*要素の位置をずらす(相対関係)*/
}
h1 {
  color: #393939; /*文字色設定*/
  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: 0px; /*外側上の余白設定*/
}

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

/*
------------------------------------------------------------------------------------------------------------
メニューCSS
------------------------------------------------------------------------------------------------------------
*/
nav {
  text-align: center; /*ブロック要素を中央配置*/
  height: 84px; /*高さ設定*/
  background-color: #574ae7; /*背景色設定*/
}
nav ul {
  margin: 0; /*外側の余白設定*/
  padding: 0; /*内側の余白設定*/
}
nav li {
  list-style: none; /*マーカーの非表示*/
  display: inline-block; /*インライン要素に設定*/
  width: 30%; /*横幅設定*/
  min-width: 90px; /*最小の横幅設定*/
  padding-top: 3%; /*内側上の余白設定*/
  padding-bottom: 3%; /*内側下の余白設定*/
}
nav li:not(:last-child) {
  border-right: 2px solid #292929; /*右外枠の設定*/
}
nav a {
  text-decoration: none; /*テキストの下線の非表示*/
  font-size: 150%; /*文字サイズ*/
  color: #fff; /*文字色設定*/
}
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 {
  height: 80px; /*高さ設定*/
  margin-top: 10px; /*外側上の余白設定*/
  text-align: center; /*ブロック要素を中央配置*/
  background-image: url(../images/fv_02.png); /*Webデザイン体験オンラインイベントのテキストの両サイドの吹き出し*/
  background-repeat: no-repeat; /*背景画像を繰り返さない*/
}
.fv img {
  margin-top: 20px; /*外側上の余白設定*/
  width: 50%; /*横幅設定*/
}
.fv p {
  font-size: 1.8rem; /*文字サイズ*/
  line-height: 1.2; /*行間設定*/
  font-weight: bold; /*文字の太さ設定*/
  color: #27476e; /*文字色設定*/
  padding-top: 10px; /*内側上の余白設定*/
}
/* 絶対配置したい要素の親要素にposition: relative;指定 */
.p-fv__inner {
  position: relative;
  width: inherit;
  height: inherit;
}


/* 絶対配置する要素にposition: absolute;指定 */
.p-fv__textBox {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
  max-width: 500px;
}

/*
------------------------------------------------------------------------------------------------------------
申し込み周りのCSS
------------------------------------------------------------------------------------------------------------
*/
.seminar2 {
  background-color: #ffffff; /*背景色設定*/
  text-align: center; /*ブロック要素を中央配置*/
  margin-top: 0px; /*外側上の余白設定*/
}
.contents_2 {
  position: relative; /*要素の位置をずらす(相対関係)*/
  padding: 0px 0; /*内側の余白設定*/
  margin-top: 0px; /*外側上の余白設定*/
  margin-bottom: 20px; /*外側下の余白設定*/
}
.php {
  position: absolute; /*要素の位置をずらす(絶対関係)*/
  top: 100px; /*上から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: 0px; /*外側上の余白設定*/
  width: 100%; /*横幅設定*/ 
 }
.line_btn {
  margin-top: 0px; /*外側上の余白設定*/
  width: 100%; /*横幅設定*/
}
.line_btn2 {
  margin-top: 0px; /*外側上の余白設定*/
  width: 100%; /*横幅設定*/
}
.step {
  margin-top:50px; /*外側上の余白設定*/
  margin-bottom: 0px; /*外側下の余白設定*/
}
.seireki {
  font-size: 80%; /*文字サイズ*/
  color: #112e5a; /*文字色設定*/
}
.nen {
  font-size: 60%; /*文字サイズ*/
}
.btn {
  display: flex; /*要素を横並びに設定*/
  justify-content: flex-end; /*要素を横並びにして右端に配置*/
  padding-bottom: 0px; /*内側下の余白設定*/
  margin-bottom:-30px; /*外側下の余白設定*/
  width: 100%;
}

/*
------------------------------------------------------------------------------------------------------------
こんな方へオススメのCSS
------------------------------------------------------------------------------------------------------------
*/
.recommend {
  height: auto; /*高さ設定*/
  background-color: #eeeeee; /*背景色設定*/
  padding-bottom: 0px; /*内側下の余白設定*/
}
.recommend_width {
  width: 85%; /*横幅設定*/
  display: block; /*ブロック要素に設定*/
  margin: 0 auto; /*外側の余白設定*/
}
.sponsorship {
  color: #26466d; /*文字色設定*/
  padding-bottom: 0; /*内側下の余白設定*/
}
.recommend_main {
  display: block; /*ブロック要素に設定*/
  margin: 0 auto; /*外側の余白設定*/
  width: 100%; /*横幅設定*/
}
.recommend_box {
  display: flex; /*要素を横並びに設定*/
  justify-content: space-between; /*要素を横並びにして余白をもって等間隔に配置*/
  flex-wrap: wrap; /*要素を横並びにして1行で収まりきらなかったら改行する*/
}
.recommend_img {
  width: 64px; /*横幅設定*/
  height: auto; /*高さ設定*/
}
.recommend01 {
  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; /*背景色設定*/
  padding: 20px 10px; /*内側の余白設定*/
}
.recommend p {
  padding-top: 20px; /*内側上の余白設定*/
  font-size: 19px; /*文字サイズ*/
  font-weight: 500; /*文字の太さ設定*/
  line-height: 1.5; /*行間設定*/
  letter-spacing: -1px; /*文字間設定*/
  color: #336699; /*文字色設定*/
}

/*
------------------------------------------------------------------------------------------------------------
本イベントで得られることのCSS
------------------------------------------------------------------------------------------------------------
*/
.topics {
  background-color: #eaf4fe; /*背景色設定*/
  margin-bottom: 0px;
}
.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: 1.5; /*文字間設定*/
}
.topics_box02 {
  width: 16px; /*横幅設定*/
  height: 30px; /*高さ設定*/
  background-color: #cbe0f5; /*背景色設定*/
  margin: 0 auto; /*外側の余白設定*/
}
.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: 30px 6% 0 6%; /*外側の余白設定*/
}
.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 img {
  margin-top: 20px; /*外側上の余白設定*/
}
.join_box_img01 {
  width: 45%; /*横幅設定*/
}
.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; /*内側下の余白設定*/
}
.btn {
  margin: 0px auto; /*外側の余白設定*/
  width: 90%; /*横幅設定*/
  margin-bottom: 10px;
}

/*
------------------------------------------------------------------------------------------------------------
会社紹介のCSS
------------------------------------------------------------------------------------------------------------
*/
.company {
  margin: 60px 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: 40px; /*外側下の余白設定*/
}
.company_box2 {
  width: 100%; /*横幅設定*/
  height: 255px; /*高さ設定*/
  border-radius: 5px; /*要素の角丸設定*/
  margin-top: 20px; /*外側上の余白設定*/
  padding-top: 25px; /*内側上の余白設定*/
  padding-left: 35px; /*内側左の余白設定*/
  background-color: #f6f5f3; /*背景色設定*/
}
.company_box3 {
  width: 100%; /*横幅設定*/
  height: 245px; /*高さ設定*/
  border-radius: 5px; /*要素の角丸設定*/
  margin-top: 20px; /*外側上の余白設定*/
  padding-top: 25px; /*内側上の余白設定*/
  padding-left: 35px; /*内側左の余白設定*/
  background-color: #f6f5f3; /*背景色設定*/
}

/*
------------------------------------------------------------------------------------------------------------
イベント登壇者のCSS
------------------------------------------------------------------------------------------------------------
*/
.speaker {
  height: 980px; /*高さ設定*/
  position: relative; /*要素の位置をずらす(相対関係)*/
  margin: 120px 0; /*外側の余白設定*/
}
.speaker_p {
  position: absolute; /*要素の位置をずらす(絶対関係)*/
  top: 55%; /*上から55%下に配置*/
  left: 60%; /*左から60%右に配置*/
  color: #fff; /*文字色設定*/
  font-size: 1.5rem; /*文字サイズ*/
  font-weight: 400; /*文字の太さ設定*/
  text-align: right; /*ブロック要素を右配置*/
  font-family: "游明朝";
  line-height: 1.5; /*行間設定*/
}
.size_48 {
  font-size: 3rem; /*文字サイズ*/
}
.speaker_box {
  position: absolute; /*要素の位置をずらす(絶対関係)*/
  top: 75%; /*上から75%下に配置*/
  background-color: rgba(0, 0, 0, 0.5); /*背景色設定*/
}
.speaker_box p {
  padding: 45px; /*内側の余白設定*/
  color: #fff; /*文字色設定*/
  font-size: 18px; /*文字サイズ*/
  font-weight: 500; /*文字の太さ設定*/
  line-height: 1.4; /*行間設定*/
  text-align: justify; /*テキストを均等割り付けする設定*/
}

/*
------------------------------------------------------------------------------------------------------------
イベント参加者の声の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: 120px 0; /*外側の余白設定*/
}
.gray_bg {
  height: 100px; /*高さ設定*/
  background: #eee; /*背景色設定*/
}
.question img {
  margin-left: 45px; /*外側左の余白設定*/
  float: left; /*要素を左に配置*/
  width: 55px; /*横幅設定*/
}
.question_box {
  width: 600px; /*横幅設定*/
  height: 140px; /*高さ設定*/
  border-radius: 5px; /*要素の角丸設定*/
  margin-top: 35px;
  margin-right: 45px; /*外側右の余白設定*/
  margin-left: 110px; /*外側左の余白設定*/
  background-color: #f6f5f3; /*背景色設定*/
}
.question_box_02 {
  width: 600px; /*横幅設定*/
  height: 105px; /*高さ設定*/
  border-radius: 5px; /*要素の角丸設定*/
  margin-top: 35px; /*外側上の余白設定*/
  margin-right: 45px; /*外側右の余白設定*/
  margin-left: 110px; /*外側左の余白設定*/
  background-color: #f6f5f3; /*背景色設定*/
}
.question_box_03 {
  width: 600px; /*横幅設定*/
  height: 75px; /*高さ設定*/
  border-radius: 5px; /*要素の角丸設定*/
  margin-top: 35px; /*外側上の余白設定*/
  margin-right: 45px; /*外側右の余白設定*/
  margin-left: 110px; /*外側左の余白設定*/
  background-color: #f6f5f3; /*背景色設定*/
}
.question_box_04 {
  width: 600px; /*横幅設定*/
  height: 135px; /*高さ設定*/
  border-radius: 5px; /*要素の角丸設定*/
  margin-top: 35px; /*外側上の余白設定*/
  margin-right: 45px; /*外側右の余白設定*/
  margin-left: 110px; /*外側左の余白設定*/
  background-color: #f6f5f3; /*背景色設定*/
}
.question_h {
  margin-top: 0; /*外側上の余白設定*/
  margin-left: 10px; /*外側左の余白設定*/
}
.question p {
  padding: 20px; /*内側の余白設定*/
  text-align: justify; /*テキストを均等割り付けする設定*/
  font-size: 20px; /*文字サイズ*/
}
.tokuten01 {
  width: 660px; /*横幅設定*/
  border-radius: 5px; /*要素の角丸設定*/
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); /*要素の影の設定*/
  margin: 0 45px; /*外側の余白設定*/
}
.form {
  margin-top: 10%; /*外側上の余白設定*/
}
.form_img {
  margin-top: -10%; /*外側上の余白設定*/
}

/*
------------------------------------------------------------------------------------------------------------
FooterのCSS
------------------------------------------------------------------------------------------------------------
*/
footer {
  width: 100%; /*横幅設定*/
  height: auto; /*高さ設定*/
  color: #fbfafa; /*文字色設定*/
  background-color: #f39a0a; /*背景色設定*/
  margin-top: 50px; /*外側上の余白設定*/
}
.footer-inner {
  text-align: left; /*ブロック要素を左配置*/
}
.footer-inner a {
  padding: 5px; /*内側の余白設定*/
  margin: 50px; /*外側の余白設定*/
  color: #fffefe; /*文字色設定*/
  padding-left: 25px; /*内側左の余白設定*/ 
  background: url(../images/listmark-arrow.png) no-repeat left 0 top 5px; /*footerの矢印画像の設定*/
}

.footer-inner a:hover {
  text-decoration: underline; /*テキストに下線を設定する*/
}
.footer-inner ul {
  margin: 0; /*外側の余白設定*/
  padding: 0; /*内側の余白設定*/
  list-style: none; /*マークを非表示にする*/
}
.footer-inner li {
  text-align: center; /*ブロック要素を左配置*/
  padding: 8px 0; /*内側の余白設定*/
  font-size: 85%; /*文字サイズ*/
  border-bottom: 1px solid #fbfcfd; /*下外枠の設定*/
}
.footer-inner li:hover {
  opacity: 0.5; /*不透明度50%*/
  background: #26466d; /*背景色設定*/
}
.fotter-inner li:last-child::after {
  content: none; /*擬似要素は生成しない*/
}
.footer-inner span.copy {
  font-size: 80%; /*文字サイズ*/
}
footer p.copy {
  text-align: center; /*ブロック要素を中央配置*/
  padding: 20px 0; /*内側の余白設定*/
  font-size: 90%; /*文字サイズ*/
}
.text-center {
  width: 310px !important; /*横幅設定*/
}

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

@media screen and (max-width: 768px) {
  /*
------------------------------------------------------------------------------------------------------------
共通部分CSS
------------------------------------------------------------------------------------------------------------
*/
  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
------------------------------------------------------------------------------------------------------------
*/

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

  /*
------------------------------------------------------------------------------------------------------------
リンク（全般）設定のCSS
------------------------------------------------------------------------------------------------------------
*/

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

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

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

  /*
------------------------------------------------------------------------------------------------------------
申し込み周りのCSS
------------------------------------------------------------------------------------------------------------
*/
  .contents_2 {
    margin-top: 0px; /*外側上の余白設定*/
    position: relative; /*要素の位置をずらす(相対関係)*/
    height: auto; /*高さ設定*/
    vertical-align: 0px;
    margin-bottom: 10px;
  }
  .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; /*文字の太さ設定*/
  }
  .absolute a {
    width: 80%; /*横幅設定*/
    top: 66%; /*上から66%下に配置*/
    left: 10%; /*左から10%右に配置*/
  }
  .main_btn {
    margin-top: 0px; /*外側上の余白設定*/
    width: 100% !important; /*横幅設定*/
    vertical-align: bottom; /*要素を縦の下端に設定*/
  }
  .line_btn {
    width: 100%; /*横幅設定*/
    margin-top: 0px; /*外側上の余白設定*/
  }
  .line_btn2 {
    width: 100%; /*横幅設定*/
    margin-top: 0px; /*外側上の余白設定*/
  }
  .step {
    margin: top 10px;/*外側上の余白設定*/ 
  }
  .btn {
    width: 85%; /*横幅設定*/
    height: 100%; /*高さ設定*/ 
  }

  /*
------------------------------------------------------------------------------------------------------------
こんな方へオススメのCSS
------------------------------------------------------------------------------------------------------------
*/
  .recommend_box {
    flex-wrap: wrap; /*要素を横並びにして1行で収まりきらなかったら改行する*/
  }
  .recommend p {
    padding-top: 20px; /*内側上の余白設定*/
    font-size: 100%; /*文字サイズ*/
    font-weight: 500; /*文字の太さ設定*/
    line-height: 1.5; /*行間設定*/
    letter-spacing: -1px; /*文字間設定*/
    color: #336699; /*文字色設定*/
  }
  .recommend_width {
    width: 100%; /*横幅設定*/
  }
  .recommend01 {
    display: inline-block; /*インライン要素に設定*/
    width: 100%; /*横幅設定*/
    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_box {
    width: 92%; /*横幅設定*/
    margin-left: 4%; /*外側左の余白設定*/
    vertical-align: bottom;    
  }
  .topics_box p {
    font-size: 100%; /*文字サイズ*/
  }
  .gray_bg {
    height: 50px; /*高さ設定*/
  }
  .recommend_main {
    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: 100%; /*横幅設定*/
  }
  .join_box p {
    font-size: 100%; /*文字サイズ*/
  }
  .join_box_img01 {
    width: 90%; /*横幅設定*/
  }
  .join_box_img02 {
    width: 90%; /*横幅設定*/
  }
  .join_box_img03 {
    width: 90%; /*横幅設定*/
  }

  /*
------------------------------------------------------------------------------------------------------------
本イベントは株式会社Live出版が主催していますのCSS
------------------------------------------------------------------------------------------------------------
*/
  .company_box {
    width: 100%; /*横幅設定*/
    height: auto; /*高さ設定*/
    margin-top: 0px; /*外側上の余白設定*/
    padding: 5% 5%; /*内側の余白設定*/
  }
  .company_box2 {
    width: 100%; /*横幅設定*/
    height: auto; /*高さ設定*/
    margin-top: 0px; /*外側上の余白設定*/
    padding: 5% 5%; /*内側の余白設定*/
  }
  .company_box3 {
    width: 100%; /*横幅設定*/
    height: auto; /*高さ設定*/
    margin-top: 0px; /*外側上の余白設定*/
    padding: 5% 5%; /*内側の余白設定*/
  }
  .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: 200px; /*高さ設定*/
    position: relative; /*要素の位置をずらす(相対関係)*/
  }
  .speaker_p {
    position: absolute; /*要素の位置をずらす(絶対関係)*/
    color: #fff; /*文字色設定*/
    font-size: 100%; /*文字サイズ*/
    top: 60%; /*上から60%下に配置*/
    left: 0%; /*左から0%右に配置*/
    right: 4%; /*右から4%左に配置*/
    text-shadow: 1px 2px 3px #000; /*テキストに影をつける設定*/
  }
  .size_48 {
    font-size: 150%; /*文字サイズ*/
  }
  .speaker_box p {
    padding: 4%; /*内側の余白設定*/
    font-size: 100%; /*文字サイズ*/
    color: #fff; /*文字色設定*/
  }
  .speaker_box span {
    display: none; /*要素を非表示に設定*/
  }

  /*
------------------------------------------------------------------------------------------------------------
イベント参加者の声の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 4%; /*外側の余白設定*/
    font-size: 100%; /*文字サイズ*/
  }

  /*
------------------------------------------------------------------------------------------------------------
よくある質問のCSS
------------------------------------------------------------------------------------------------------------
*/
  .question img {
    margin-left: 4%; /*外側左の余白設定*/
    margin-right: 10px; /*外側右の余白設定*/
    width: 32px; /*横幅設定*/
  }
  .question_h {
    margin: 0 4%; /*外側の余白設定*/
    font-size: 110%; /*文字サイズ*/
    vertical-align: middle; /*縦の中央配置*/
  }
  .question p {
    padding: 2px 0; /*内側の余白設定*/
    font-size: 100%; /*文字サイズ*/
    background-color: #fff; /*背景色設定*/
  }
  .question_box {
    width: 80%; /*横幅設定*/
    height: auto; /*高さ設定*/
    margin: 0 4% 20px 15%; /*外側の余白設定*/
  }
  .question_box_02 {
    width: 80%; /*横幅設定*/
    height: auto; /*高さ設定*/
    margin: 0 4% 20px 15%; /*外側の余白設定*/
  }
  .question_box_03 {
    width: 80%; /*横幅設定*/
    height: auto; /*高さ設定*/
    margin: 0 4% 20px 15%; /*外側の余白設定*/
  }
  .question_box_04 {
    width: 80%; /*横幅設定*/
    height: auto; /*高さ設定*/
    margin: 0 4% 20px 15%; /*外側の余白設定*/
  }
  .tokuten01 {
    width: 92%; /*横幅設定*/
    border-radius: 5px; /*要素の角丸設定*/
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2); /*影の設定*/
    margin: 0 4%; /*外側の余白設定*/
  }

  /*
------------------------------------------------------------------------------------------------------------
FooterのCSS
------------------------------------------------------------------------------------------------------------
*/
  footer {
    /*mobile*/
    width: 100%; /*横幅設定*/
    font-size: 80%; /*文字サイズ*/
    margin-bottom: 15px; /*外側下の余白設定*/
  }
  .footer-inner {
    text-align: left; /*ブロック要素を中央配置*/
  }
  .footer-inner li { 
    text-align: center; /*ブロック要素を左配置*/
    padding: 8px 0; /*内側の余白設定*/
    font-size: 85%; /*文字サイズ*/
    border-bottom: 1px solid #fbfcfd; /*下外枠の設定*/
  }
  .footer-inner a {
    padding: 5px;/*内側の余白設定*/
    margin: 50px; /*外側の余白設定*/
    color: #fffefe; /*文字色設定*/
    padding-left: 5px; /*内側左の余白設定*/ 
    background: url(../images/listmark-arrow.png) no-repeat left 0 top 5px; /*footerの矢印画像の設定*/
  }
  footer .img-center {
    font-size: 100%; /*文字サイズ*/
  }
}
