@charset "UTF-8";
/*----------------------------------------------------------------------
共通パーツ
----------------------------------------------------------------------*/
/* レスポンシブ対応 */
/* MV */
/* ぱんくず */
/* 研修リスト */
/* 研修動画 */
/* 旧デザイン・研修リスト */
/* 旧デザイン・研修動画 */
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: webseminar.scss

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	sub
10.	footer
11.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

body {
  font-size: 10px;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", arial, helvetica, sans-serif;
}

* html body {
  font-size: 62.5%;
}

* + html body {
  font-size: 62.5%;
}

/* start \*/
html:\66irst-child body {
  font-size: 62.5%;
}

/* end */
body:first-of-type {
  font-size: 62.5%;
}

body > iframe {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

caption, th {
  font-weight: normal;
  text-align: left;
}

th, td {
  padding: 0px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

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

header, footer, article, section, aside,
nav,
figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------------------------
3.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000;
}
body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body ::selection {
  color: #F7F7F7;
  background: #02348b;
  /* Safari */
}
body ::-moz-selection {
  color: #F7F7F7;
  background: #02348b;
  /* Firefox */
}

a, a:before, a:after {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a > * {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
a:hover > * {
  text-decoration: none;
}

body {
  overflow-x: hidden;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.fll {
  float: left;
}

.flr {
  float: right;
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.box {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 8% 0;
  }
}
.box-title {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .box-title {
    font-size: 23px;
    font-size: 6.13333vw;
  }
}
.box-title:before, .box-title:after {
  content: "";
  position: absolute;
  bottom: 0;
}
.box-title:before {
  left: 0;
  right: 0;
  width: 62px;
  height: 3px;
  margin: 0 auto;
  background: #272838;
}
.box-title:after {
  left: -52px;
  right: 0;
  width: 10px;
  height: 3px;
  margin: 0 auto;
  background: #065fe3;
}

.right-nav {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
}
.right-nav a {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  display: block;
}
.right-nav a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .right-nav img {
    width: 45px;
    height: 45px;
  }
}

@media screen and (min-width: 769px) {
  #drawernav {
    display: none;
  }
}

.slick-prev, .slick-next {
  top: 44% !important;
  background: none !important;
}
.slick-prev:before, .slick-next:before {
  display: block;
  content: "\f054";
  color: #FFF;
  font-size: 40px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
@media screen and (max-width: 1300px) {
  .slick-prev {
    left: 0 !important;
  }
}
@media screen and (max-width: 1300px) {
  .slick-next {
    right: 0 !important;
  }
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-active:before {
  content: none;
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.slick-dots {
  left: -3px !important;
  bottom: 15px !important;
  z-index: 100;
}

.movie {
  position: relative;
  padding: 60px 0 50px;
  height: 388px;
  background: url("../img/common/movie_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .movie {
    padding: 6% 0 30%;
    height: auto;
  }
}
.movie:before, .movie:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #b17c2d;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFB17C2D', endColorstr='#FFB99315');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2IxN2MyZCIvPjxzdG9wIG9mZnNldD0iMzAlIiBzdG9wLWNvbG9yPSIjZGNkNDk0Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjYjk5MzE1Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, #b17c2d 0%, #dcd494 30%, #b99315 100%);
  background-image: -webkit-linear-gradient(left, #b17c2d 0%, #dcd494 30%, #b99315 100%);
  background-image: linear-gradient(to right, #b17c2d 0%, #dcd494 30%, #b99315 100%);
}
.movie:before {
  top: 0;
}
.movie:after {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  bottom: 0;
}
.movie-inner {
  width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .movie-inner {
    width: auto;
  }
}
.movie-title {
  display: flex;
  float: left;
  align-items: center;
  margin-bottom: 40px;
  color: #312E43;
  font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .movie-title {
    margin-left: 15px;
  }
}
@media screen and (max-width: 940px) {
  .movie-title {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .movie-title {
    float: none;
    margin: 0 0 7%;
    font-size: 30px;
    font-size: 8vw;
    text-align: center;
  }
}
.movie-title-sub {
  margin-left: 30px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 940px) {
  .movie-title-sub {
    display: block;
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .movie-title-sub {
    margin: 3% 0 0;
    font-size: 18px;
    font-size: 4.8vw;
    line-height: 1.3;
  }
}
.movie-title em {
  color: #F132AB;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .movie-title-border {
    display: none;
  }
}
.movie-link {
  float: right;
  margin: -4px 0 40px;
  z-index: 100;
}
@media screen and (max-width: 1280px) {
  .movie-link {
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .movie-link {
    float: none;
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: 0;
  }
}
.movie-link a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 195px;
  height: 40px;
  background: #a5a19b;
  border-radius: 20px;
  color: #FFF;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .movie-link a {
    width: 70%;
    height: auto;
    margin: 0 auto;
    padding: 3%;
    font-size: 14px;
    font-size: 3.73333vw;
    border-radius: 25px;
  }
}
.movie-list {
  clear: both;
}
.movie-list .slick-prev,
.movie-list .slick-next {
  top: 22% !important;
}
@media screen and (max-width: 480px) {
  .movie-list .slick-prev,
  .movie-list .slick-next {
    text-align: right;
  }
}
.movie-list .slick-prev:before,
.movie-list .slick-next:before {
  color: #777;
  font-size: 30px;
}
@media screen and (max-width: 1280px) {
  .movie-list .slick-prev:before,
  .movie-list .slick-next:before {
    color: #FFF;
  }
}
@media screen and (max-width: 768px) {
  .movie-list .slick-prev:before,
  .movie-list .slick-next:before {
    font-size: 24px;
    font-size: 6.4vw;
  }
}
.movie-list .slick-prev {
  left: -50px !important;
}
@media screen and (max-width: 1280px) {
  .movie-list .slick-prev {
    left: 1% !important;
  }
}
@media screen and (max-width: 480px) {
  .movie-list .slick-prev {
    top: 30% !important;
  }
}
.movie-list .slick-next {
  right: -50px !important;
}
@media screen and (max-width: 1280px) {
  .movie-list .slick-next {
    right: 1% !important;
  }
}
@media screen and (max-width: 480px) {
  .movie-list .slick-next {
    top: 30% !important;
  }
}
.movie-item {
  margin: 0 16px;
  padding-top: 14px;
  background: none;
}
@media screen and (max-width: 768px) {
  .movie-item {
    margin: 0 0.5%;
  }
}
.movie-item:before {
  content: none !important;
}
.movie-item a {
  display: block;
  color: #000;
  outline: none;
}
.movie-item dl {
  position: relative;
}
.movie-item .pic {
  margin-bottom: 10px;
  border-top: 12px solid #FFF;
  border-bottom: 11px solid #FFF;
}
@media screen and (max-width: 768px) {
  .movie-item .pic {
    margin-bottom: 3%;
  }
}
.movie-item .description {
  color: #000;
  font-size: 14px;
  line-height: 1.42857;
}
@media screen and (max-width: 768px) {
  .movie-item .description {
    line-height: 1.71429;
  }
}
.movie-item.new dl {
  position: relative;
}
.movie-item.new dl:before {
  content: "";
  position: absolute;
  left: 10px;
  top: -14px;
  width: 54px;
  height: 36px;
  background: url("../img/common/icon_new.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .movie-item.new dl:before {
    width: 37.8px;
    height: 25.2px;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}

/* 研修別キーカラー設定 */
/* 研修別キーカラー登録 */
/* 内定者研修 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#prospective_employee .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFE388B9', endColorstr='#FFB82274');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2UzODhiOSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iI2I4MjI3NCIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiODIyNzQiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(227, 136, 185, 0.9) 0%, rgba(184, 34, 116, 0.9) 35%, rgba(184, 34, 116, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(227, 136, 185, 0.9) 0%, rgba(184, 34, 116, 0.9) 35%, rgba(184, 34, 116, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(227, 136, 185, 0.9) 0%, rgba(184, 34, 116, 0.9) 35%, rgba(184, 34, 116, 0.9) 100%);
}
#prospective_employee .training-item:before {
  color: #E388B9;
}
#prospective_employee .main-subbox-title,
#prospective_employee .training-box-title,
#prospective_employee .training-item-title .num,
#prospective_employee .training-content-item:before,
#prospective_employee .training-item:after,
#prospective_employee .training-content-work .icon {
  color: #B82274;
}
#prospective_employee .training-item-title {
  border-color: #B82274;
}
#prospective_employee .training-content-work .icon {
  background: rgba(227, 136, 185, 0.4);
}
#prospective_employee .training-box-button a {
  background: #B82274;
}
#prospective_employee .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(184, 34, 116, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(184, 34, 116, 0.5);
  box-shadow: 6px 6px 0 rgba(184, 34, 116, 0.5);
}

/* 新入社員研修 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#new_employee .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF84BCEC', endColorstr='#FF064177');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg0YmNlYyIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iIzA2NDE3NyIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwNjQxNzciIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(132, 188, 236, 0.9) 0%, rgba(6, 65, 119, 0.9) 35%, rgba(6, 65, 119, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(132, 188, 236, 0.9) 0%, rgba(6, 65, 119, 0.9) 35%, rgba(6, 65, 119, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(132, 188, 236, 0.9) 0%, rgba(6, 65, 119, 0.9) 35%, rgba(6, 65, 119, 0.9) 100%);
}
#new_employee .training-item:before {
  color: #84bcec;
}
#new_employee .main-subbox-title,
#new_employee .training-box-title,
#new_employee .training-item-title .num,
#new_employee .training-content-item:before,
#new_employee .training-item:after,
#new_employee .training-content-work .icon {
  color: #0066bf;
}
#new_employee .training-item-title {
  border-color: #0066bf;
}
#new_employee .training-content-work .icon {
  background: rgba(132, 188, 236, 0.4);
}
#new_employee .training-box-button a {
  background: #0066bf;
}
#new_employee .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(0, 102, 191, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(0, 102, 191, 0.5);
  box-shadow: 6px 6px 0 rgba(0, 102, 191, 0.5);
}

/* 若手社員研修 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#young_employee .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF85C9B4', endColorstr='#FF006847');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzg1YzliNCIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iIzAwNjg0NyIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDY4NDciIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(133, 201, 180, 0.9) 0%, rgba(0, 104, 71, 0.9) 35%, rgba(0, 104, 71, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(133, 201, 180, 0.9) 0%, rgba(0, 104, 71, 0.9) 35%, rgba(0, 104, 71, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(133, 201, 180, 0.9) 0%, rgba(0, 104, 71, 0.9) 35%, rgba(0, 104, 71, 0.9) 100%);
}
#young_employee .training-item:before {
  color: #85c9b4;
}
#young_employee .main-subbox-title,
#young_employee .training-box-title,
#young_employee .training-item-title .num,
#young_employee .training-content-item:before,
#young_employee .training-item:after,
#young_employee .training-content-work .icon {
  color: #1b7a5c;
}
#young_employee .training-item-title {
  border-color: #1b7a5c;
}
#young_employee .training-content-work .icon {
  background: rgba(133, 201, 180, 0.4);
}
#young_employee .training-box-button a {
  background: #1b7a5c;
}
#young_employee .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(27, 122, 92, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(27, 122, 92, 0.5);
  box-shadow: 6px 6px 0 rgba(27, 122, 92, 0.5);
}

/* 中堅社員研修 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#midlevel_employee .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFFFB199', endColorstr='#FFF04509');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmYjE5OSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iI2YwNDUwOSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMDQ1MDkiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(255, 177, 153, 0.9) 0%, rgba(240, 69, 9, 0.9) 35%, rgba(240, 69, 9, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(255, 177, 153, 0.9) 0%, rgba(240, 69, 9, 0.9) 35%, rgba(240, 69, 9, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(255, 177, 153, 0.9) 0%, rgba(240, 69, 9, 0.9) 35%, rgba(240, 69, 9, 0.9) 100%);
}
#midlevel_employee .training-item:before {
  color: #ffb199;
}
#midlevel_employee .main-subbox-title,
#midlevel_employee .training-box-title,
#midlevel_employee .training-item-title .num,
#midlevel_employee .training-content-item:before,
#midlevel_employee .training-item:after,
#midlevel_employee .training-content-work .icon {
  color: #ff6333;
}
#midlevel_employee .training-item-title {
  border-color: #ff6333;
}
#midlevel_employee .training-content-work .icon {
  background: rgba(255, 177, 153, 0.4);
}
#midlevel_employee .training-box-button a {
  background: #ff6333;
}
#midlevel_employee .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(255, 99, 51, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(255, 99, 51, 0.5);
  box-shadow: 6px 6px 0 rgba(255, 99, 51, 0.5);
}

/* 初級管理者研修 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#beginner_manager .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF8FBA7F', endColorstr='#FF2A9503');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzhmYmE3ZiIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iIzJhOTUwMyIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyYTk1MDMiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(143, 186, 127, 0.9) 0%, rgba(42, 149, 3, 0.9) 35%, rgba(42, 149, 3, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(143, 186, 127, 0.9) 0%, rgba(42, 149, 3, 0.9) 35%, rgba(42, 149, 3, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(143, 186, 127, 0.9) 0%, rgba(42, 149, 3, 0.9) 35%, rgba(42, 149, 3, 0.9) 100%);
}
#beginner_manager .training-item:before {
  color: #8fba7f;
}
#beginner_manager .main-subbox-title,
#beginner_manager .training-box-title,
#beginner_manager .training-item-title .num,
#beginner_manager .training-content-item:before,
#beginner_manager .training-item:after,
#beginner_manager .training-content-work .icon {
  color: #1f7600;
}
#beginner_manager .training-item-title {
  border-color: #1f7600;
}
#beginner_manager .training-content-work .icon {
  background: rgba(143, 186, 127, 0.4);
}
#beginner_manager .training-content-block-term {
  color: #1f7600;
}
#beginner_manager .training-box-button a {
  background: #1f7600;
}
#beginner_manager .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(31, 118, 0, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(31, 118, 0, 0.5);
  box-shadow: 6px 6px 0 rgba(31, 118, 0, 0.5);
}

/* 中級管理者研修 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#intermediate_manager .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF7590AD', endColorstr='#FF323D50');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzc1OTBhZCIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iIzMyM2Q1MCIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMjNkNTAiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(117, 144, 173, 0.9) 0%, rgba(50, 61, 80, 0.9) 35%, rgba(50, 61, 80, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(117, 144, 173, 0.9) 0%, rgba(50, 61, 80, 0.9) 35%, rgba(50, 61, 80, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(117, 144, 173, 0.9) 0%, rgba(50, 61, 80, 0.9) 35%, rgba(50, 61, 80, 0.9) 100%);
}
#intermediate_manager .training-item:before {
  color: #7590ad;
}
#intermediate_manager .main-subbox-title,
#intermediate_manager .training-box-title,
#intermediate_manager .training-item-title .num,
#intermediate_manager .training-content-item:before,
#intermediate_manager .training-item:after,
#intermediate_manager .training-content-work .icon {
  color: #036;
}
#intermediate_manager .training-item-title {
  border-color: #036;
}
#intermediate_manager .training-content-work .icon {
  background: rgba(117, 144, 173, 0.4);
}
#intermediate_manager .training-content-block-term {
  color: #036;
}
#intermediate_manager .training-box-button a {
  background: #036;
}
#intermediate_manager .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(0, 51, 102, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(0, 51, 102, 0.5);
  box-shadow: 6px 6px 0 rgba(0, 51, 102, 0.5);
}

/* 役員・上級管理者研修 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#senior_manager .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFCEC277', endColorstr='#FF704C12');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NlYzI3NyIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iIzcwNGMxMiIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3MDRjMTIiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(206, 194, 119, 0.9) 0%, rgba(112, 76, 18, 0.9) 35%, rgba(112, 76, 18, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(206, 194, 119, 0.9) 0%, rgba(112, 76, 18, 0.9) 35%, rgba(112, 76, 18, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(206, 194, 119, 0.9) 0%, rgba(112, 76, 18, 0.9) 35%, rgba(112, 76, 18, 0.9) 100%);
}
#senior_manager .training-item:before {
  color: #bca894;
}
#senior_manager .main-subbox-title,
#senior_manager .training-box-title,
#senior_manager .training-item-title .num,
#senior_manager .training-content-item:before,
#senior_manager .training-item:after,
#senior_manager .training-content-work .icon {
  color: #704c12;
}
#senior_manager .training-item-title {
  border-color: #704c12;
}
#senior_manager .training-content-work .icon {
  background: rgba(188, 168, 148, 0.4);
}
#senior_manager .training-box-button a {
  background: #704c12;
}
#senior_manager .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(112, 76, 18, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(112, 76, 18, 0.5);
  box-shadow: 6px 6px 0 rgba(112, 76, 18, 0.5);
}

/* 次世代経営幹部 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#next_senior_manager .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFAFAFAF', endColorstr='#FF333333');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FmYWZhZiIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iIzMzMzMzMyIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzMzMzMzMiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(175, 175, 175, 0.9) 0%, rgba(51, 51, 51, 0.9) 35%, rgba(51, 51, 51, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(175, 175, 175, 0.9) 0%, rgba(51, 51, 51, 0.9) 35%, rgba(51, 51, 51, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(175, 175, 175, 0.9) 0%, rgba(51, 51, 51, 0.9) 35%, rgba(51, 51, 51, 0.9) 100%);
}
#next_senior_manager .training-item:before {
  color: #afafaf;
}
#next_senior_manager .main-subbox-title,
#next_senior_manager .training-box-title,
#next_senior_manager .training-item-title .num,
#next_senior_manager .training-content-item:before,
#next_senior_manager .training-item:after,
#next_senior_manager .training-content-work .icon {
  color: #333;
}
#next_senior_manager .training-item-title {
  border-color: #333;
}
#next_senior_manager .training-content-work .icon {
  background: #eee;
}
#next_senior_manager .training-box-button a {
  background: #333;
}
#next_senior_manager .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(51, 51, 51, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(51, 51, 51, 0.5);
  box-shadow: 6px 6px 0 rgba(51, 51, 51, 0.5);
}

/* 中途入社者研修 */
/* 薄い方のキーカラー */
/* 濃い方のキーカラー */
#midcareer_hires .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFC097D9', endColorstr='#FF5E1689');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2MwOTdkOSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjM1JSIgc3RvcC1jb2xvcj0iIzVlMTY4OSIgc3RvcC1vcGFjaXR5PSIwLjkiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1ZTE2ODkiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(192, 151, 217, 0.9) 0%, rgba(94, 22, 137, 0.9) 35%, rgba(94, 22, 137, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(192, 151, 217, 0.9) 0%, rgba(94, 22, 137, 0.9) 35%, rgba(94, 22, 137, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(192, 151, 217, 0.9) 0%, rgba(94, 22, 137, 0.9) 35%, rgba(94, 22, 137, 0.9) 100%);
}
#midcareer_hires .training-item:before {
  color: #b27fcc;
}
#midcareer_hires .main-subbox-title,
#midcareer_hires .training-box-title,
#midcareer_hires .training-item-title .num,
#midcareer_hires .training-content-item:before,
#midcareer_hires .training-item:after,
#midcareer_hires .training-content-work .icon {
  color: #609;
}
#midcareer_hires .training-item-title {
  border-color: #609;
}
#midcareer_hires .training-content-work .icon {
  background: rgba(178, 127, 204, 0.4);
}
#midcareer_hires .training-box-button a {
  background: #609;
}
#midcareer_hires .training-pic img {
  -moz-box-shadow: 6px 6px 0 rgba(102, 0, 153, 0.5);
  -webkit-box-shadow: 6px 6px 0 rgba(102, 0, 153, 0.5);
  box-shadow: 6px 6px 0 rgba(102, 0, 153, 0.5);
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  background: #FFF;
  border-bottom: 1px solid #02348B;
}

.header-top {
  padding-top: 20px;
}
@media screen and (max-width: 1180px) {
  .header-top {
    padding-top: 0;
  }
}
.header-top-inner {
  position: relative;
  width: 1280px;
  z-index: 1000;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .header-top-inner {
    width: 97%;
    padding: 2% 0 0;
  }
}
@media screen and (max-width: 940px) {
  .header-top-inner {
    justify-content: center;
    padding: 2% 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .header-top-inner {
    padding: 3% 0;
  }
}
@media screen and (max-width: 940px) {
  .header-top-inner > .logo {
    float: none;
  }
}
@media screen and (max-width: 940px) {
  .header-top-inner > .logo img {
    width: 157.14286px;
  }
}
@media screen and (max-width: 768px) {
  .header-top-inner > .logo img {
    width: 110px;
  }
}
.header-top-inner .sp_link {
  position: absolute;
  top: 13px;
  right: 0;
  height: fit-content;
  border: 1px solid #00116D;
  border-radius: 8px;
  padding: 2px 8px;
  color: #000;
  font-size: 9px;
  font-weight: 500;
}
@media screen and (max-width: 940px) {
  .header-right {
    display: none;
  }
}
.header-right-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.header-right-top > div:not(.last) {
  margin-right: 10px;
}
.header-right-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-subnav {
  clear: both;
  float: right;
  margin-top: 20px;
}
.header-subnav-list {
  *zoom: 1;
}
.header-subnav-list:after {
  content: "";
  display: table;
  clear: both;
}
.header-subnav-item {
  float: left;
}
.header-subnav-item:not(:last-child) {
  margin-right: 30px;
}
.header-subnav-item a {
  color: #000;
  font-size: 14px;
  text-decoration: underline;
}
.header-subnav-item a:after {
  content: " ＞";
}
.header-subnav-item a:hover {
  text-decoration: none;
}

.header-nav {
  position: relative;
  margin: 11px 0 0;
}
@media screen and (max-width: 940px) {
  .header-nav {
    display: none;
  }
}

.header-nav-list {
  display: flex;
  justify-content: space-evenly;
  margin: auto;
  width: 1180px;
}
@media screen and (max-width: 1180px) {
  .header-nav-list {
    width: 100%;
  }
}

.header-nav-item {
  padding: 21px 0 20px;
  font-size: 14px;
  color: #2D2F31;
  cursor: pointer;
}
@media screen and (max-width: 1180px) {
  .header-nav-item {
    float: none;
  }
}
.header-nav-item:hover span.header-nav-item-inner {
  position: relative;
}
.header-nav-item:hover span.header-nav-item-inner::before {
  content: "";
  display: flex;
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 5px;
  background: #485DCD;
}
.header-nav-item a {
  display: block;
  color: #2D2F31;
}
.header-nav-item a:hover {
  opacity: 1;
}
.header-nav-item.link {
  padding: 0;
}
.header-nav-item.link a {
  padding: 21px 0 20px;
}
.header-nav-item.header-nav-item__none {
  display: none;
}

.header-nav-item-inner {
  padding: 0 20px;
  font-weight: bold;
}
@media screen and (max-width: 1180px) {
  .header-nav-item-inner {
    padding: 0;
  }
}
.header-nav-item-inner.header-nav-item-inner__active {
  position: relative;
}
.header-nav-item-inner.header-nav-item-inner__active::before {
  content: "";
  display: flex;
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 5px;
  background: #485DCD;
}

.megamenu {
  padding: 21px 0 20px;
}

.megamenu-box {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 56px;
  z-index: 10000;
  margin: 0 auto;
  padding: 20px 0 0;
  width: 100%;
  max-height: 50vh;
  overflow-y: scroll;
  background: #d8e9f1;
  cursor: auto;
}

.megamenu-box-inner {
  margin: auto;
  padding: 0 0 12px;
  width: 1180px;
}
@media screen and (max-width: 1180px) {
  .megamenu-box-inner {
    width: 100%;
  }
}

.megamenu-box-title {
  margin: 0 0 15px;
  padding: 0 0 10px;
  border-bottom: 1px solid #00116D;
  color: #00116D;
}
.megamenu-box-title span {
  font-size: 11px;
}
.megamenu-box-title a {
  display: inline-block;
  color: #00116D;
}
.megamenu-box-title a:after {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  right: -12px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #00116D;
  border-right: 2px solid #00116D;
  transform: rotate(45deg);
}
.megamenu-box-title a:hover {
  opacity: .5;
  color: #2D2F31;
}
.megamenu-box-title em {
  margin: 0 0 0 100px;
}

.megamenu-box-subtitle {
  margin: 0 0 10px;
}
.megamenu-box-subtitle::before {
  content: "■";
}

.megamenu-box-list ul {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.megamenu-box-list ul li {
  margin: 0 30px 15px 0;
  width: 200px;
}
.megamenu-box-list ul li.w150 {
  width: 150px;
}
.megamenu-box-list ul li.w250 {
  width: 250px;
}
.megamenu-box-list ul li.w300 {
  width: 300px;
}
.megamenu-box-list ul li:nth-child(5n) {
  margin: 0 0 15px 0;
}
.megamenu-box-list ul li a {
  position: relative;
  transition: all .4 ease-out;
  font-size: 14px;
  color: #2D2F31;
}
.megamenu-box-list ul li a:hover {
  color: #00116D;
}
.megamenu-box-list ul li a:hover:after {
  opacity: .5;
}
.megamenu-box-list ul li a:after {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  right: -12px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #00116D;
  border-right: 2px solid #00116D;
  transform: rotate(45deg);
}
.megamenu-box-list + .megamenu-box-title {
  margin: 20px 0 15px;
}

.megamenu-box-inner__sub .megamenu-box-list ul {
  margin: 0 0 10px 1em;
}

.megamenu-box-list__column3 ul {
  width: 750px;
}
.megamenu-box-list__column3 ul li:nth-child(5n) {
  margin: 0 30px 15px 0;
}

.megamenu-box-list__column3_w1000 ul {
  width: 1000px;
}
.megamenu-box-list__column3_w1000 ul li:nth-child(5n) {
  margin: 0 30px 15px 0;
}

.megamenu-box-list__column4 ul {
  width: 1080px;
}
.megamenu-box-list__column4 ul li:nth-child(5n) {
  margin: 0 30px 15px 0;
}

.megamenu-box-list__columnnone ul li {
  width: auto;
}
.megamenu-box-list__columnnone ul li:nth-child(5n) {
  margin: 0 30px 15px 0;
}

.search {
  display: flex;
  position: relative;
  z-index: 10001;
  float: right;
}
.search-sp {
  float: none;
  width: 100%;
  margin-bottom: 5%;
}
.search::before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  content: "\f002";
  color: #CCC;
  font-size: 22px;
  font-family: FontAwesome;
}
.search input[type="text"] {
  width: 250px;
  padding: 7px 20px;
  color: #666;
  font-size: 15px;
  border: 1px solid #CCC;
  text-align: right;
}
@media screen and (max-width: 1280px) {
  .search input[type="text"] {
    width: 150px;
  }
}
@media screen and (max-width: 940px) {
  .search input[type="text"] {
    width: 100%;
  }
}
.search input[type="text"]::-webkit-input-placeholder, .search input[type="text"]::-moz-placeholder, .search input[type="text"]:-ms-input-placeholder, .search input[type="text"]:placeholder-shown {
  color: #888;
}
.search input[type="submit"] {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  width: 34px;
  background: #02348B;
  color: #FFF;
  font-size: 16px;
  font-weight: 900;
  border: none;
  outline: none;
  cursor: pointer;
}
.search input[type="submit"]:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

#___gcse_0 {
  width: 325px;
}
#___gcse_0 .gsc-control-cse {
  padding: 0 1em;
}
#___gcse_0 .gsib_a,
#___gcse_0 .gsib_b {
  height: 28px;
}
#___gcse_0 .gsc-search-button-v2 {
  padding: 9px 11px;
}

.login_box,
.logout_box {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0;
  background: none;
}
.login_box a,
.logout_box a {
  border-radius: 25px;
  display: block;
  width: 130px;
  padding: 13px 5px 12px;
  background: #A5A19B;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .login_box a,
  .logout_box a {
    font-size: 13px;
  }
}
.login_box span,
.logout_box span {
  padding-left: 28px;
}

.login_box {
  display: none;
}

.header-link-login span {
  background-image: url("../img/common/header_icon_login.png");
  background-repeat: no-repeat;
  background-position: left center;
}

.header-link-logout span {
  background-image: url("../img/common/header_icon_logout.png");
  background-repeat: no-repeat;
  background-position: left center;
}

.header-link-mypage a {
  background: #485DCD;
}
.header-link-mypage span {
  background-image: url("../img/common/header_icon_mypage.png");
  background-repeat: no-repeat;
  background-position: left center;
}

.header-link-report a {
  background: #00116D;
  width: 160px;
}
.header-link-report span {
  background-image: url("../img/common/header_icon_report.png");
  background-repeat: no-repeat;
  background-position: left center;
}

.link-lp {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 5px 10px;
  background: #fff;
  border: 2px solid #00116D;
  border-radius: 5px;
}
.link-lp:hover {
  background: rgba(0, 17, 109, 0.5);
  transition: .3s;
}
.link-lp a {
  display: block;
  position: relative;
  color: #000;
  font-size: 15px;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .link-lp a {
    font-size: 13px;
  }
}
.link-lp a span {
  color: #00116D;
  font-weight: bold;
}
.link-lp img {
  width: 80px;
  height: 14px;
}

.link-contact {
  margin: 0 20px 0 0;
  padding: 12px 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
}
.link-contact a {
  display: block;
  position: relative;
  text-align: center;
  padding: 0 0 0 28px;
  font-size: 15px;
  background-image: url("../img/common/header_icon_contact.png");
  background-repeat: no-repeat;
  background-position: left center;
  color: #000;
}
@media screen and (max-width: 1280px) {
  .link-contact a {
    font-size: 13px;
  }
}

.link-yobobako a {
  background-image: url("../img/common/header_icon_yobobako.png");
  background-repeat: no-repeat;
  background-position: left center;
}

.spNav .accordion {
  border-bottom: 1px solid #02348B;
}
.spNav .accordion:first-of-type {
  margin: 5px 0 0;
  border-top: 1px solid #02348B;
}
.spNav .accordion dl dt {
  position: relative;
  padding: 10px 0;
  font-size: 14px;
  font-weight: normal;
}
.spNav .accordion dl dt span {
  font-size: 11px;
}
.spNav .accordion dl dt:before, .spNav .accordion dl dt:after {
  position: absolute;
  content: "";
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: #02348B;
}
.spNav .accordion dl dt:before {
  right: 9px;
  top: 12px;
  width: 2px;
  height: 10px;
}
.spNav .accordion dl dt:after {
  right: 5px;
  top: 16px;
  width: 10px;
  height: 2px;
}
.spNav .accordion dl dt.is-open:before {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.spNav .accordion dl dt.is-open:after {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.spNav .accordion dl dd {
  display: none;
}
.spNav ul li:nth-child(2) {
  padding: 5px 0;
}
.spNav ul li a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.spNav ul li a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #02348b;
}
.spNav ul li > a {
  padding: 10px 0;
}
.spNav ul li.login {
  display: none;
}
.spNav ul li.login, .spNav ul li.logout {
  margin: 20px 0 0;
}
.spNav ul li p {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}
.spNav .spNav-subtitle {
  margin: 0 0 5px;
  padding: 0 0 0 2px;
  font-size: 13px;
  line-height: 1.4;
}
.spNav .spNav-subtitle::before {
  content: "■";
}
.spNav .spNav-sublist ul {
  margin: 0 0 0 15px;
  padding: 0 0 10px;
}
.spNav .spNav-sublist ul li {
  padding: 0 !important;
}
.spNav .spNav-sublist ul li a {
  padding: 0;
  font-size: 13px;
  font-weight: normal;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", arial, helvetica, sans-serif;
  line-height: 1.8;
}
.spNav .accordion__sub .spNav-sublist:not(:last-child) ul {
  padding: 0 0 15px;
}
.spNav .spNav-sublist-extxt a {
  margin: 10px 0 20px;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
.main-visual {
  margin-top: 180px;
}

.lower .main-visual {
  margin-top: 180px;
}
.lower .main-visual.-contact {
  margin-top: 99px;
}
.lower .main-visual-inner {
  display: flex;
  align-items: center;
  width: 1280px;
  height: 250px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .lower .main-visual-inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .lower .main-visual-inner {
    height: 0;
    padding-top: 33.33333%;
  }
}
.lower .main-title {
  text-shadow: 1px 1px 0 #000;
  display: flex;
  align-items: center;
  height: 70px;
  padding: 0 40px;
  color: #FFF;
  font-size: 34px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
}
@media screen and (max-width: 768px) {
  .lower .main-title {
    height: auto;
    margin-top: -33.33333%;
    padding: 2% 4% 2% 5% !important;
    font-size: 25px;
    font-size: 6.66667vw;
    font-weight: bold;
    line-height: 1.1;
  }
}

.topicpath-list {
  display: flex;
  width: 1280px;
  margin: 20px auto;
}
@media screen and (max-width: 1280px) {
  .topicpath-list {
    width: 100%;
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .topicpath-list {
    display: none;
  }
}

.topicpath-item {
  position: relative;
  margin-right: 36px;
  font-size: 16px;
}
.topicpath-item:after {
  content: '＞';
  position: absolute;
  top: 2px;
  right: -27px;
  font-size: 13px;
}
.topicpath-item a {
  color: #006;
  font-size: 16px;
}
.topicpath-item:last-child:after {
  content: none;
}

/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
.footer-banner {
  padding: 50px 0;
  background: #B8D0F2;
}
@media screen and (max-width: 768px) {
  .footer-banner {
    padding: 5% 0;
  }
}
.footer-banner-list {
  display: flex;
  flex-wrap: wrap;
  width: 1180px;
  margin: -25px auto 0;
}
@media screen and (max-width: 1180px) {
  .footer-banner-list {
    width: 94%;
    margin: -2% auto 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-banner-list {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
  }
}
.footer-banner-item {
  margin: 25px 20px 0 0;
}
@media screen and (max-width: 1180px) {
  .footer-banner-item {
    width: 18%;
    margin: 2% 2.5% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-banner-item {
    width: 48%;
    margin: 0;
  }
}
@media screen and (max-width: 1180px) {
  .footer-banner-item img {
    width: 100%;
  }
}
.footer-lower {
  background-color: #55566F;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  width: 1280px;
  padding: 40px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .footer-inner {
    display: block;
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 6% 0;
  }
}
.footer-logo-list {
  display: flex;
}
@media screen and (max-width: 1280px) {
  .footer-logo-list {
    justify-content: center;
    margin-bottom: 4%;
  }
}
.footer-logo-item {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .footer-logo-item {
    margin-right: 4%;
  }
}
.footer-logo-item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .footer-logo-item.isms {
    margin-right: 5%;
    width: 144px;
  }
}
.footer-logo-item.isms img {
  width: 160px;
  height: auto;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .footer-logo-item.isms img {
    width: 100%;
  }
}
.footer-logo-item.isms span {
  display: block;
  color: #FFF;
  text-align: center;
}
.footer-logo-item.secturity-action {
  width: 72px;
}
.footer-logo-item.secturity-action img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-logo-item img {
    width: 80%;
  }
}
.footer-right-inner {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1280px) {
  .footer-right-inner {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .footer-right-inner {
    display: block;
  }
}
.footer-right-list {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer-right-list {
    margin-bottom: 10px;
  }
}
.footer-right-list:first-child {
  margin-bottom: 35px;
}
@media screen and (max-width: 1280px) {
  .footer-right-list:first-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-right-list:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .footer-right-list:last-child {
    margin-bottom: 0;
  }
}
.footer-right-list + .footer-right-list {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .footer-right-list + .footer-right-list {
    margin-left: 0;
  }
}
.footer-right-item {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .footer-right-item {
    margin: 2% 5% 0 0;
  }
}
.footer-right-item:last-child {
  margin-right: 0;
}
.footer-right-item a {
  color: #FFF;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .footer-right-item a {
    font-size: 12px;
  }
}
.footer-right-item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.copyright {
  color: #FFF;
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width: 1280px) {
  .copyright {
    margin-top: 4%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .copyright {
    margin-top: 7%;
    font-size: 10px;
  }
}

/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
#financial_operations_basic.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/financial_operations_basic/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #financial_operations_basic.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/financial_operations_basic/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#suggested_practice.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/suggested_practice/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #suggested_practice.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/suggested_practice/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#case_study.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/case_study/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #case_study.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/case_study/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#risk.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/risk/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #risk.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/risk/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#loan.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/loan/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #loan.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/loan/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#business_succession.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/business_succession/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #business_succession.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/business_succession/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#life_insurance_consulting.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/life_insurance_consulting/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #life_insurance_consulting.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/life_insurance_consulting/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#qualification.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/qualification/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #qualification.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/qualification/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#compliance.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/compliance/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #compliance.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/compliance/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#contact.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/contact/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #contact.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/contact/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#branch.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/branch/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #branch.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/branch/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#headquarters.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/headquarters/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #headquarters.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/headquarters/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#individuals.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/individuals/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #individuals.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/individuals/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#corporations.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/corporations/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #corporations.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/corporations/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#professionals.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/professionals/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #professionals.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/professionals/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#qualification.financial_practice .main-visual {
  background: url("../webseminar/financial_practice/qualification/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #qualification.financial_practice .main-visual {
    background: url("../webseminar/financial_practice/qualification/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#prospective_employee.basic .main-visual {
  background: url("../webseminar/basic/prospective_employee/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #prospective_employee.basic .main-visual {
    background: url("../webseminar/basic/prospective_employee/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#new_employee.basic .main-visual {
  background: url("../webseminar/basic/new_employee/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #new_employee.basic .main-visual {
    background: url("../webseminar/basic/new_employee/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#young_employee.basic .main-visual {
  background: url("../webseminar/basic/young_employee/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #young_employee.basic .main-visual {
    background: url("../webseminar/basic/young_employee/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#midlevel_employee.basic .main-visual {
  background: url("../webseminar/basic/midlevel_employee/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #midlevel_employee.basic .main-visual {
    background: url("../webseminar/basic/midlevel_employee/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#beginner_manager.basic .main-visual {
  background: url("../webseminar/basic/beginner_manager/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #beginner_manager.basic .main-visual {
    background: url("../webseminar/basic/beginner_manager/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#intermediate_manager.basic .main-visual {
  background: url("../webseminar/basic/intermediate_manager/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #intermediate_manager.basic .main-visual {
    background: url("../webseminar/basic/intermediate_manager/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#senior_manager.basic .main-visual {
  background: url("../webseminar/basic/senior_manager/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #senior_manager.basic .main-visual {
    background: url("../webseminar/basic/senior_manager/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#midcareer_hires.basic .main-visual {
  background: url("../webseminar/basic/midcareer_hires/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #midcareer_hires.basic .main-visual {
    background: url("../webseminar/basic/midcareer_hires/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#next_senior_manager.basic .main-visual {
  background: url("../webseminar/basic/next_senior_manager/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #next_senior_manager.basic .main-visual {
    background: url("../webseminar/basic/next_senior_manager/img/main_visual_bg_sp.jpg") center center no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#compliance.theme .main-visual {
  background-image: url("../webseminar/theme/compliance/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #compliance.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #compliance.theme .main-visual {
    background-image: url("../webseminar/theme/compliance/img/main_visual_bg_sp.jpg");
  }
}

#harassment.theme .main-visual {
  background-image: url("../webseminar/theme/harassment/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #harassment.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #harassment.theme .main-visual {
    background-image: url("../webseminar/theme/harassment/img/main_visual_bg_sp.jpg");
  }
}

#risk_management.theme .main-visual {
  background-image: url("../webseminar/theme/risk_management/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #risk_management.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #risk_management.theme .main-visual {
    background-image: url("../webseminar/theme/risk_management/img/main_visual_bg_sp.jpg");
  }
}

#claim.theme .main-visual {
  background-image: url("../webseminar/theme/claim/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #claim.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #claim.theme .main-visual {
    background-image: url("../webseminar/theme/claim/img/main_visual_bg_sp.jpg");
  }
}

#sns.theme .main-visual {
  background-image: url("../webseminar/theme/sns/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #sns.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #sns.theme .main-visual {
    background-image: url("../webseminar/theme/sns/img/main_visual_bg_sp.jpg");
  }
}

#information_security.theme .main-visual {
  background-image: url("../webseminar/theme/information_security/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #information_security.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #information_security.theme .main-visual {
    background-image: url("../webseminar/theme/information_security/img/main_visual_bg_sp.jpg");
  }
}

#writing.theme .main-visual {
  background-image: url("../webseminar/theme/writing/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #writing.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #writing.theme .main-visual {
    background-image: url("../webseminar/theme/writing/img/main_visual_bg_sp.jpg");
  }
}

#logical_thinking.theme .main-visual {
  background-image: url("../webseminar/theme/logical_thinking/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #logical_thinking.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #logical_thinking.theme .main-visual {
    background-image: url("../webseminar/theme/logical_thinking/img/main_visual_bg_sp.jpg");
  }
}

#diversity.theme .main-visual {
  background-image: url("../webseminar/theme/diversity/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #diversity.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #diversity.theme .main-visual {
    background-image: url("../webseminar/theme/diversity/img/main_visual_bg_sp.jpg");
  }
}

#business_improvement.theme .main-visual {
  background-image: url("../webseminar/theme/business_improvement/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #business_improvement.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #business_improvement.theme .main-visual {
    background-image: url("../webseminar/theme/business_improvement/img/main_visual_bg_sp.jpg");
  }
}

#facilitation.theme .main-visual {
  background-image: url("../webseminar/theme/facilitation/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #facilitation.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #facilitation.theme .main-visual {
    background-image: url("../webseminar/theme/facilitation/img/main_visual_bg_sp.jpg");
  }
}

#labor.theme .main-visual {
  background-image: url("../webseminar/theme/labor/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #labor.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #labor.theme .main-visual {
    background-image: url("../webseminar/theme/labor/img/main_visual_bg_sp.jpg");
  }
}

#strategy_planning.theme .main-visual {
  background-image: url("../webseminar/theme/strategy_planning/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #strategy_planning.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #strategy_planning.theme .main-visual {
    background-image: url("../webseminar/theme/strategy_planning/img/main_visual_bg_sp.jpg");
  }
}

#management_plan.theme .main-visual {
  background-image: url("../webseminar/theme/management_plan/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #management_plan.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #management_plan.theme .main-visual {
    background-image: url("../webseminar/theme/management_plan/img/main_visual_bg_sp.jpg");
  }
}

#management_accounting.theme .main-visual {
  background-image: url("../webseminar/theme/management_accounting/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #management_accounting.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #management_accounting.theme .main-visual {
    background-image: url("../webseminar/theme/management_accounting/img/main_visual_bg_sp.jpg");
  }
}

#subordinate_training.theme .main-visual {
  background-image: url("../webseminar/theme/subordinate_training/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #subordinate_training.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #subordinate_training.theme .main-visual {
    background-image: url("../webseminar/theme/subordinate_training/img/main_visual_bg_sp.jpg");
  }
}

#leadership.theme .main-visual {
  background-image: url("../webseminar/theme/leadership/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #leadership.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #leadership.theme .main-visual {
    background-image: url("../webseminar/theme/leadership/img/main_visual_bg_sp.jpg");
  }
}

#coaching.theme .main-visual {
  background-image: url("../webseminar/theme/coaching/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #coaching.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #coaching.theme .main-visual {
    background-image: url("../webseminar/theme/coaching/img/main_visual_bg_sp.jpg");
  }
}

#ojt.theme .main-visual {
  background-image: url("../webseminar/theme/ojt/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #ojt.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #ojt.theme .main-visual {
    background-image: url("../webseminar/theme/ojt/img/main_visual_bg_sp.jpg");
  }
}

#motivation.theme .main-visual {
  background-image: url("../webseminar/theme/motivation/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #motivation.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #motivation.theme .main-visual {
    background-image: url("../webseminar/theme/motivation/img/main_visual_bg_sp.jpg");
  }
}

#hearing.theme .main-visual {
  background-image: url("../webseminar/theme/hearing/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #hearing.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #hearing.theme .main-visual {
    background-image: url("../webseminar/theme/hearing/img/main_visual_bg_sp.jpg");
  }
}

#negotiating.theme .main-visual {
  background-image: url("../webseminar/theme/negotiating/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #negotiating.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #negotiating.theme .main-visual {
    background-image: url("../webseminar/theme/negotiating/img/main_visual_bg_sp.jpg");
  }
}

#presentation.theme .main-visual {
  background-image: url("../webseminar/theme/presentation/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #presentation.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #presentation.theme .main-visual {
    background-image: url("../webseminar/theme/presentation/img/main_visual_bg_sp.jpg");
  }
}

#prevention_of_infection.theme .main-visual {
  background-image: url("../webseminar/theme/prevention_of_infection/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #prevention_of_infection.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #prevention_of_infection.theme .main-visual {
    background-image: url("../webseminar/theme/prevention_of_infection/img/main_visual_bg_sp.jpg");
  }
}

#business_english.theme .main-visual {
  background-image: url("../webseminar/theme/business_english/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #business_english.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #business_english.theme .main-visual {
    background-image: url("../webseminar/theme/business_english/img/main_visual_bg_sp.jpg");
  }
}

#oa.theme .main-visual {
  background-image: url("../webseminar/theme/oa/img/main_visual_bg.jpg");
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1480px) {
  #oa.theme .main-visual {
    background-position: right bottom;
  }
}
@media screen and (max-width: 768px) {
  #oa.theme .main-visual {
    background-image: url("../webseminar/theme/oa/img/main_visual_bg_sp.jpg");
  }
}

#general_education.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/general_education/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #general_education.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/general_education/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#business_foundation.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/business_foundation/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #business_foundation.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/business_foundation/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#habit_formation.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/habit_formation/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #habit_formation.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/habit_formation/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#communication.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/communication/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #communication.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/communication/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#sales_planning.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/sales_planning/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #sales_planning.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/sales_planning/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#marketing.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/marketing/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #marketing.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/marketing/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#accounting.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/accounting/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #accounting.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/accounting/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#leadership.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/leadership/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #leadership.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/leadership/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#human_resources_development.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/human_resources_development/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #human_resources_development.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/human_resources_development/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#human_resources.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/human_resources/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #human_resources.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/human_resources/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#labor.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/labor/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #labor.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/labor/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#management.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/management/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #management.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/management/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#compliance.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/compliance/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #compliance.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/compliance/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#financing.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/financing/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #financing.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/financing/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#financial_accounting.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/financial_accounting/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #financial_accounting.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/financial_accounting/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#legal_affairs.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/legal_affairs/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #legal_affairs.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/legal_affairs/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#harassment.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/harassment/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #harassment.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/harassment/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#prospective_employee.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/prospective_employee/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #prospective_employee.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/prospective_employee/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#archive.brainstorming .main-visual {
  background: url("../webseminar/brainstorming/archive/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #archive.brainstorming .main-visual {
    background: url("../webseminar/brainstorming/archive/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#sales.problem_solving .main-visual {
  background: url("../webseminar/problem_solving/sales/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #sales.problem_solving .main-visual {
    background: url("../webseminar/problem_solving/sales/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#personnel.problem_solving .main-visual {
  background: url("../webseminar/problem_solving/personnel/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #personnel.problem_solving .main-visual {
    background: url("../webseminar/problem_solving/personnel/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#account.problem_solving .main-visual {
  background: url("../webseminar/problem_solving/account/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #account.problem_solving .main-visual {
    background: url("../webseminar/problem_solving/account/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#general.problem_solving .main-visual {
  background: url("../webseminar/problem_solving/general/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #general.problem_solving .main-visual {
    background: url("../webseminar/problem_solving/general/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#legal.problem_solving .main-visual {
  background: url("../webseminar/problem_solving/legal/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #legal.problem_solving .main-visual {
    background: url("../webseminar/problem_solving/legal/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#planning.problem_solving .main-visual {
  background: url("../webseminar/problem_solving/planning/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #planning.problem_solving .main-visual {
    background: url("../webseminar/problem_solving/planning/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#inheritance.specialized .main-visual {
  background: url("../webseminar/specialized/inheritance/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #inheritance.specialized .main-visual {
    background: url("../webseminar/specialized/inheritance/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#medical.specialized .main-visual {
  background: url("../webseminar/specialized/medical/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #medical.specialized .main-visual {
    background: url("../webseminar/specialized/medical/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#care.specialized .main-visual {
  background: url("../webseminar/specialized/care/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #care.specialized .main-visual {
    background: url("../webseminar/specialized/care/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#corona.feature .main-visual {
  background: url("../webseminar/feature/corona/img/main_visual_bg.jpg") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #corona.feature .main-visual {
    background: url("../webseminar/feature/corona/img/main_visual_bg_sp.jpg") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

.webseminar.basic .main-title .small {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .main-title .small {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.webseminar.basic .main-box {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .main-box {
    margin-bottom: 8%;
  }
}
.webseminar.basic .main-box-lead {
  margin-top: 34px;
  padding: 0 5%;
  font-size: 18px;
  /*font-weight: bold;*/
  line-height: 1.56522;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .main-box-lead {
    margin-top: 5%;
    font-size: 17px;
    font-size: 4.53333vw;
    line-height: 1.47059;
    text-align: left;
  }
}
.webseminar.basic .main-subbox {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .main-subbox {
    margin-top: 6%;
  }
}
.webseminar.basic .main-subbox-title {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 18px;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .main-subbox-title {
    margin-bottom: 5%;
    padding-bottom: 4%;
    font-size: 23px;
    font-size: 6.13333vw;
  }
}
.webseminar.basic .main-subbox-title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  margin: 0 auto;
  background: #000;
}
.webseminar.basic .main-subbox-text {
  padding: 0 5%;
  font-size: 16px;
  line-height: 1.77778;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .main-subbox-text {
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
    text-align: left;
  }
}
.webseminar.basic .main-subbox.-goal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.webseminar.basic#prospective_employee .skill-inner {
  background: url("../webseminar/basic/prospective_employee/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#prospective_employee .skill-inner {
    background: none;
  }
}
.webseminar.basic#new_employee .skill-inner {
  background: url("../webseminar/basic/new_employee/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#new_employee .skill-inner {
    background: none;
  }
}
.webseminar.basic#young_employee .skill-inner {
  background: url("../webseminar/basic/young_employee/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#young_employee .skill-inner {
    background: none;
  }
}
.webseminar.basic#midlevel_employee .skill-inner {
  background: url("../webseminar/basic/midlevel_employee/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#midlevel_employee .skill-inner {
    background: none;
  }
}
.webseminar.basic#beginner_manager .skill-inner {
  background: url("../webseminar/basic/beginner_manager/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#beginner_manager .skill-inner {
    background: none;
  }
}
.webseminar.basic#intermediate_manager .skill-inner {
  background: url("../webseminar/basic/intermediate_manager/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#intermediate_manager .skill-inner {
    background: none;
  }
}
.webseminar.basic#senior_manager .skill-inner {
  background: url("../webseminar/basic/senior_manager/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#senior_manager .skill-inner {
    background: none;
  }
}
.webseminar.basic#midcareer_hires .skill-inner {
  background: url("../webseminar/basic/midcareer_hires/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#midcareer_hires .skill-inner {
    background: none;
  }
}
.webseminar.basic#next_senior_manager .skill-inner {
  background: url("../webseminar/basic/next_senior_manager/img/skill_inner_bg.png") center center no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#next_senior_manager .skill-inner {
    background: none;
  }
}
.webseminar.basic .skill-list {
  display: flex;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .webseminar.basic .skill-list {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .skill-list {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.basic .skill-item {
    width: 18%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .skill-item {
    width: 30%;
    margin: 1.5% 2.5%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .skill-item:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .skill-item:nth-child(3) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.basic .skill-item img {
    width: 100%;
  }
}
.webseminar.basic .goal-list {
  padding: 0 5%;
}
.webseminar.basic .goal-item {
  list-style: inside decimal;
  font-size: 16px;
  line-height: 1.77778;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .goal-item {
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
  }
}
.webseminar.basic #step-foundation {
  background: url("../img/training_box_bg.jpg") center top repeat-y;
  border-top: 2px solid #0066BF;
  border-bottom: 30px solid #B8D0F2;
}
.webseminar.basic .training-box {
  position: relative;
  padding: 70px 0 60px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box {
    padding: 12% 0 10%;
  }
}
.webseminar.basic .training-box.brainstorming {
  padding-top: 0;
}
.webseminar.basic .training-box-inner {
  position: relative;
  margin-top: -53px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-inner {
    margin-top: 0;
  }
}
.webseminar.basic .training-box-wrapper {
  width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-box-wrapper {
    width: 94%;
  }
}
.webseminar.basic .training-box-title {
  position: relative;
  width: 280px;
  margin: 0 auto 50px;
  padding: 1px 0 12px;
  color: #000 !important;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 769px) {
  .webseminar.basic .training-box-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.basic .training-box-title {
    display: block;
    margin-bottom: 6%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-title {
    width: 65%;
    margin-bottom: 12%;
    font-size: 26px;
    font-size: 6.93333vw;
  }
}
.webseminar.basic .training-box-title:before, .webseminar.basic .training-box-title:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
}
.webseminar.basic .training-box-title:before {
  top: -5px;
}
.webseminar.basic .training-box-title:after {
  bottom: -5px;
}
.webseminar.basic .training-box-title img {
  margin: 0 auto 8px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-title img {
    width: 23%;
    margin-bottom: 4px;
  }
}
.webseminar.basic .training-box-title.-industry {
  margin-bottom: 50px;
  color: #FFF;
}
.webseminar.basic .training-box-title.-industry:before, .webseminar.basic .training-box-title.-industry:after {
  content: none;
}
.webseminar.basic .training-box-title .step {
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-title .step {
    margin-bottom: 2%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-title .step img {
    width: 50px;
  }
}
.webseminar.basic .training-box-subtitle {
  width: 1180px;
  margin: 0 auto 20px;
  font-size: 22px;
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-box-subtitle {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.webseminar.basic .training-box-subtitle:before {
  content: "●";
  margin-right: 5px;
  color: #27529D;
}
.webseminar.basic .training-box-subcate {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-subcate {
    font-size: 17px;
    margin-bottom: 5px;
  }
}
.webseminar.basic .training-box-icon {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 32px;
  padding: 0 12px;
  background: #6B6BBE;
  color: #FFF;
  font-size: 22px;
  font-weight: bold;
}
.webseminar.basic .training-box-sub {
  text-align: left;
}
.webseminar.basic .training-box-sub.-problem-solving {
  margin-top: 60px;
}
@media screen and (max-width: 580px) {
  .webseminar.basic .training-box-sub.-problem-solving {
    margin-top: 10%;
  }
}
.webseminar.basic .training-box-sub-title {
  width: 1180px;
  margin: 0 auto 20px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-sub-title {
    width: auto;
    padding-left: 4%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.webseminar.basic .training-box-sub-title:before {
  content: "●";
  margin-right: 5px;
  color: #27529D;
}
.webseminar.basic .training-box-lower {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-lower {
    padding: 8% 0 9%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-button {
    width: 90%;
  }
}
.webseminar.basic .training-box-button a {
  -moz-box-shadow: 0 5px 0 rgba(106, 142, 175, 0.75);
  -webkit-box-shadow: 0 5px 0 rgba(106, 142, 175, 0.75);
  box-shadow: 0 5px 0 rgba(106, 142, 175, 0.75);
  display: flex;
  align-items: center;
  position: relative;
  top: 0;
  height: 58px;
  padding: 0 40px 0 60px;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-button a {
    justify-content: center;
    padding: 6% 0 6% 4%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.2;
    text-align: center;
  }
}
.webseminar.basic .training-box-button a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 5px;
}
.webseminar.basic .training-box-button a:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  content: "\f054";
  color: #FFF;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-box-button a:before {
    left: 5%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.basic .training-item {
  position: relative;
  min-height: 370px;
  margin: 0 290px 85px 0;
  padding: 30px 0 40px 8%;
  background: #FFF;
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-item {
    display: flex;
    justify-content: space-between;
    width: 96%;
    min-height: auto;
    margin: 0 auto 5%;
    padding: 4% 4% 5%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-item {
    display: block;
    width: 90%;
  }
}
.webseminar.basic .training-item:before, .webseminar.basic .training-item:after {
  position: absolute;
  z-index: 100;
  left: 520px;
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-size: 70px;
  font-weight: 900;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-item:before, .webseminar.basic .training-item:after {
    display: none;
  }
}
.webseminar.basic .training-item:before {
  bottom: -90px;
}
.webseminar.basic .training-item:after {
  bottom: -120px;
}
.webseminar.basic .training-item:first-child {
  z-index: 10;
}
.webseminar.basic .training-item:nth-child(2) {
  z-index: 9;
}
.webseminar.basic .training-item:nth-child(3) {
  z-index: 8;
}
.webseminar.basic .training-item:nth-child(4) {
  z-index: 7;
}
.webseminar.basic .training-item:nth-child(5) {
  z-index: 6;
}
.webseminar.basic .training-item:nth-child(6) {
  z-index: 5;
}
.webseminar.basic .training-item:nth-child(7) {
  z-index: 4;
}
.webseminar.basic .training-item:nth-child(8) {
  z-index: 3;
}
.webseminar.basic .training-item:nth-child(9) {
  z-index: 2;
}
.webseminar.basic .training-item:nth-child(10) {
  z-index: 1;
}
.webseminar.basic .training-item:nth-child(even) {
  margin: 0 0 85px 290px;
  padding: 30px 0 40px 30%;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-item:nth-child(even) {
    margin: 0 auto 2%;
    padding: 2% 2% 5%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-item:nth-child(even) {
    margin: 0 auto 5%;
    padding: 4%;
  }
}
.webseminar.basic .training-item:nth-child(even):before, .webseminar.basic .training-item:nth-child(even):after {
  left: 580px;
}
.webseminar.basic .training-item:nth-child(even) .training-pic {
  margin: 0px 0 0px -608px;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-item:nth-child(even) .training-pic {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-item:nth-child(even) .training-pic {
    margin-top: 10%;
  }
}
.webseminar.basic .training-item:last-child:before, .webseminar.basic .training-item:last-child:after {
  content: none;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-item > div {
    width: 58%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-item > div {
    width: auto;
    margin-right: 0;
  }
}
.webseminar.basic .training-item-title {
  width: 570px;
  margin-bottom: 20px;
  padding: 0 0 0 10px;
  line-height: 0.8;
  border-bottom: 2px solid;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-item-title {
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-item-title {
    margin-bottom: 3%;
    padding: 0 0 2%;
  }
}
.webseminar.basic .training-item-title > * {
  display: table-cell;
  vertical-align: middle;
}
.webseminar.basic .training-item-title .num {
  position: relative;
  bottom: -3px;
  padding-right: 14px;
  font-family: 'Crimson Text', serif;
  font-size: 76px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-item-title .num {
    padding-right: 2%;
    font-size: 32px;
    font-size: 8.53333vw;
  }
}
.webseminar.basic .training-item-title .text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-item-title .text {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-item-title .text br {
    display: none;
  }
}
.webseminar.basic .training-content-item {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-item {
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
  }
}
.webseminar.basic .training-content-item:before {
  content: "●";
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-item:before {
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.webseminar.basic .training-content-subitem {
  padding-left: 1em;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-subitem {
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
  }
}
.webseminar.basic .training-content-subitem:before {
  content: "・";
}
.webseminar.basic .training-content-subitem .training-content-work {
  margin-left: -1em;
}
.webseminar.basic .training-content-text {
  padding-left: 1em;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-text {
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
  }
}
.webseminar.basic .training-content-link {
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-link {
    margin-top: 5%;
  }
}
.webseminar.basic .training-content-link.-flex {
  display: flex;
  flex-wrap: wrap;
  width: 580px;
}
@media screen and (max-width: 1090px) {
  .webseminar.basic .training-content-link.-flex {
    width: auto;
  }
}
.webseminar.basic .training-content-link.-flex a {
  margin: 0 0 35px 20px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-link.-flex a {
    margin: 0 0 9% 3%;
  }
}
.webseminar.basic .training-content-link.-flex a:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 1090px) {
  .webseminar.basic .training-content-link.-flex a:nth-child(3n+1) {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-link.-flex a:nth-child(3n+1) {
    margin-left: 3%;
  }
}
@media screen and (max-width: 1090px) {
  .webseminar.basic .training-content-link.-flex a:nth-child(odd) {
    margin-left: 0;
  }
}
.webseminar.basic .training-content-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 180px;
  height: 38px;
  padding-left: 15px;
  background: #000;
  color: #FFF;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-link a {
    width: 43.33333%;
    height: auto;
    padding: 3% 0% 3% 3%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.basic .training-content-link a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  background: #0052B2;
}
.webseminar.basic .training-content-link a:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  content: "\f054";
  color: #FFF;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-link a:before {
    left: 10%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.basic .training-content-link a .time {
  position: absolute;
  right: 0;
  bottom: -22px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-link a .time {
    bottom: -18px;
    font-size: 13px;
  }
}
.webseminar.basic .training-content-link a .time:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: -19px;
  top: 0;
  bottom: 0;
  content: "\f017";
  color: #b3a480;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-link a .time:before {
    left: -16px;
    top: -1px;
    font-size: 14px;
  }
}
.webseminar.basic .training-content-work {
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-work {
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-work br {
    display: none;
  }
}
.webseminar.basic .training-content-work .icon {
  display: inline-block;
  width: 73px;
  margin-right: 12px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-work .icon {
    width: auto;
    margin-right: 3%;
    padding: 0 2%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.basic .training-content-block {
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-block {
    margin-bottom: 8%;
  }
}
.webseminar.basic .training-content-block:last-of-type {
  margin-bottom: 0;
}
.webseminar.basic .training-content-block-term {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-content-block-term {
    margin-bottom: 0;
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
  }
}
.webseminar.basic .training-numcontent-item {
  padding-left: 1em;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-numcontent-item {
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-numcontent-item br {
    display: none;
  }
}
.webseminar.basic .training-pic {
  position: absolute;
  top: 90px;
  margin: 0 0 0px 608px;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-pic {
    position: unset;
    width: 40%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-pic {
    width: auto;
    margin-top: 10%;
  }
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .training-pic img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .training-pic img {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
}
.webseminar.basic .basic-training {
  margin-bottom: 30px;
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .basic-training {
    padding: 15% 0 10%;
  }
}
.webseminar.basic#prospective_employee .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/prospective_employee/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#prospective_employee .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic#new_employee .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/new_employee/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#new_employee .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic#young_employee .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/young_employee/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#young_employee .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic#midlevel_employee .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/midlevel_employee/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#midlevel_employee .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic#beginner_manager .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/beginner_manager/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#beginner_manager .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic#intermediate_manager .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/intermediate_manager/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#intermediate_manager .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic#senior_manager .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/senior_manager/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#senior_manager .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic#midcareer_hires .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/midcareer_hires/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#midcareer_hires .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic#next_senior_manager .theme:before {
  position: absolute;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 257px;
  height: 45px;
  margin: auto;
  background: url("../webseminar/basic/next_senior_manager/img/arrow.png") left top no-repeat;
}
@media screen and (max-width: 768px) {
  .webseminar.basic#next_senior_manager .theme:before {
    top: -6%;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.basic .theme {
  position: relative;
  padding: 150px 0 70px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .theme {
    padding: 15% 0 10%;
  }
}
.webseminar.basic .theme-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .theme-list {
    justify-content: space-between;
  }
}
.webseminar.basic .theme-item {
  background: #fff;
  margin: 0 32px 32px 0;
  width: 210px;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .theme-item {
    margin-right: 2%;
    width: calc(92% / 5);
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .theme-item {
    margin: 0 0 4%;
    width: 48%;
  }
}
.webseminar.basic .theme-item:nth-child(5n) {
  margin-right: 0;
}
.webseminar.basic .theme-item a {
  display: block;
  color: #000;
}
.webseminar.basic .theme-item .pic img {
  width: 100%;
  height: auto;
}
.webseminar.basic .theme-item .description {
  font-size: 14px;
  padding: 20px 15px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .theme-item .description {
    font-size: 13px;
    font-size: 3.46667vw;
    padding: 15px 10px;
  }
}
.webseminar.basic #step-expertise {
  background: url(../img/training_box_bg.jpg) center top no-repeat;
  border-top: 2px solid #0066BF;
  border-bottom: 30px solid #B8D0F2;
}
.webseminar.basic .expertise-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .expertise-list {
    justify-content: space-between;
  }
}
.webseminar.basic .expertise-item {
  margin: 0 32px 32px 0;
  width: 210px;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .expertise-item {
    margin-right: 2%;
    width: calc(92% / 5);
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .expertise-item {
    background: #fff;
    margin: 0 0 4%;
    width: 48%;
  }
}
.webseminar.basic .expertise-item:nth-child(5n) {
  margin-right: 0;
}
.webseminar.basic .expertise-item a {
  display: block;
  color: #000;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .expertise-item a {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.basic .expertise-item-description {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 15px;
  background: #fff;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .expertise-item-description {
    font-size: 13px;
    font-size: 3.46667vw;
    background: none;
    height: auto;
    padding: 10px;
  }
}
.webseminar.basic .expertise-item-term img {
  width: 100%;
}
.webseminar.basic #step-brainstorming {
  background: url(../img/training_box_bg.jpg) center top -1380px no-repeat;
  border-top: 2px solid #0066BF;
}
.webseminar.basic #step-brainstorming .training-box-title {
  width: 430px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic #step-brainstorming .training-box-title {
    width: 90%;
  }
}
.webseminar.basic #brainstorming {
  padding-top: 146px;
}
.webseminar.basic #brainstorming:after {
  content: none;
}
.webseminar.basic .brainstorming-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .brainstorming-list {
    justify-content: space-between;
  }
}
.webseminar.basic .brainstorming-item {
  margin: 0 32px 32px 0;
  width: 210px;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .brainstorming-item {
    margin-right: 2%;
    width: calc(92% / 5);
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .brainstorming-item {
    background: #fff;
    margin: 0 0 4%;
    width: 48%;
  }
}
.webseminar.basic .brainstorming-item:nth-child(5n) {
  margin-right: 0;
}
.webseminar.basic .brainstorming-item a {
  display: block;
  color: #000;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .brainstorming-item a {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.basic .brainstorming-item-description {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  background: #fff;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .brainstorming-item-description {
    font-size: 13px;
    font-size: 3.46667vw;
    background: none;
    height: auto;
    padding: 10px;
  }
}
.webseminar.basic .brainstorming-item-term img {
  width: 100%;
}
.webseminar.basic .problem-solving .training-box-contents {
  padding: 0 0 65px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .problem-solving .training-box-contents {
    padding: 0 0 40px;
  }
}
.webseminar.basic .problem-solving-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .problem-solving-list {
    justify-content: space-between;
  }
}
.webseminar.basic .problem-solving-item {
  margin: 0 32px 32px 0;
  width: 210px;
}
@media screen and (max-width: 1280px) {
  .webseminar.basic .problem-solving-item {
    margin-right: 2%;
    width: calc(92% / 5);
  }
}
@media screen and (max-width: 768px) {
  .webseminar.basic .problem-solving-item {
    background: #fff;
    margin: 0 0 4%;
    width: 48%;
  }
}
.webseminar.basic .problem-solving-item:nth-child(5n) {
  margin-right: 0;
}
.webseminar.basic .problem-solving-item a {
  display: block;
  color: #000;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .problem-solving-item a {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.basic .problem-solving-item-description {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 10px;
  background: #fff;
  font-size: 12px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .webseminar.basic .problem-solving-item-description {
    font-size: 13px;
    font-size: 3.46667vw;
    background: none;
    height: auto;
    padding: 10px;
  }
}
.webseminar.basic .problem-solving-item-term img {
  width: 100%;
}

.webseminar.theme .main-title {
  display: block;
  height: auto;
  padding: 21px 40px;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiM1MjY4YjEiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiM3MTkwZTMiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMzEzYzdhIiBzdG9wLW9wYWNpdHk9IjAuOSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -moz-linear-gradient(left, rgba(82, 104, 177, 0.9) 25%, rgba(113, 144, 227, 0.9) 50%, rgba(49, 60, 122, 0.9) 100%);
  background-image: -webkit-linear-gradient(left, rgba(82, 104, 177, 0.9) 25%, rgba(113, 144, 227, 0.9) 50%, rgba(49, 60, 122, 0.9) 100%);
  background-image: linear-gradient(to right, rgba(82, 104, 177, 0.9) 25%, rgba(113, 144, 227, 0.9) 50%, rgba(49, 60, 122, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e65268b1', endColorstr='#e6313c7a',GradientType=1 );
  text-shadow: 1px 1px 0 #000;
}
.webseminar.theme .main-title .small {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .main-title .small {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.webseminar.theme .main-box {
  height: 270px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .main-box {
    height: auto;
    padding: 5% 0 7%;
  }
}
.webseminar.theme .main-box-title {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  padding-bottom: 18px;
  color: #001162;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .main-box-title {
    margin-bottom: 4%;
    padding-bottom: 4%;
    font-size: 23px;
    font-size: 6.13333vw;
  }
}
.webseminar.theme .main-box-title:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  height: 1px;
  margin: 0 auto;
  background: #000;
}
.webseminar.theme .main-box-text {
  padding: 0 3%;
  font-size: 16px;
  /*font-weight: bold;*/
  line-height: 1.77778;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .main-box-text {
    padding: 0 5%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.57143;
    text-align: left;
  }
}
.webseminar.theme .anchor {
  display: none;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .anchor {
    display: block;
    padding-bottom: 5%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.theme .anchor-inner {
    width: 90%;
    margin: 0 auto;
  }
}
.webseminar.theme .anchor-title {
  margin-bottom: 1%;
  color: #000;
  font-size: 16px;
  font-size: 4.26667vw;
  font-weight: bold;
  text-indent: -8px;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .anchor-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.webseminar.theme .anchor-item {
  width: 234px;
  margin: 2px 2px 0 0;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .anchor-item {
    width: 49%;
    margin: 5px 0 0;
  }
}
.webseminar.theme .anchor-item:nth-child(5n) {
  margin-right: 0;
}
.webseminar.theme .anchor-item a {
  display: block;
  position: relative;
  padding-left: 18px;
  background: #bac9f6;
  color: #000;
  font-size: 14px;
  line-height: 40px;
  text-decoration: underline;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .anchor-item a {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.webseminar.theme .anchor-item a:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  content: "\f078";
  color: #e40054;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
}
.webseminar.theme .anchor-item a:hover {
  text-decoration: none;
}
.webseminar.theme .contents {
  margin-bottom: 20px;
  padding: 40px 30px;
  background: url("../webseminar/theme/img/contents_bg.jpg") center top no-repeat #f5f2ec;
}
@media screen and (max-width: 1340px) {
  .webseminar.theme .contents {
    padding: 3%;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents {
    margin-bottom: 8%;
    padding-top: 4%;
  }
}
.webseminar.theme .contents-inner {
  width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1340px) {
  .webseminar.theme .contents-inner {
    width: 100%;
  }
}
.webseminar.theme .contents-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 12px;
  font-size: 26px;
  font-weight: bold;
  border-bottom: 1px solid #000;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  .webseminar.theme .contents-title {
    display: block;
    position: relative;
    padding: 30px 0 12px;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-title {
    margin-bottom: 4%;
    padding: 7% 0 1%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.webseminar.theme .contents-title .target {
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .webseminar.theme .contents-title .target {
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-title .target {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.webseminar.theme .contents-title em {
  margin-right: 5px;
  padding: 0 10px;
  color: #FFF;
  font-size: 13px;
}
.webseminar.theme .contents-title em:last-child {
  margin-right: 0;
}
.webseminar.theme .contents-title .prospective-employee {
  background: #C84087;
}
.webseminar.theme .contents-title .new-employee {
  background: #4a9cd7;
}
.webseminar.theme .contents-title .young-employee {
  background: #1b7a5c;
}
.webseminar.theme .contents-title .midlevel-employee {
  background: #ff7242;
}
.webseminar.theme .contents-title .beginner-manager {
  background: #6daf55;
}
.webseminar.theme .contents-title .intermediate-manager {
  background: #747474;
}
.webseminar.theme .contents-title .senior-manager {
  background: #937940;
}
.webseminar.theme .contents-title .midcareer-hires {
  background: #9457b8;
}
.webseminar.theme .contents-list {
  display: flex;
  flex-wrap: wrap;
  margin: -30px 48px 0;
}
@media screen and (max-width: 1340px) {
  .webseminar.theme .contents-list {
    margin: -30px 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.theme .contents-list {
    margin: -2% 0 0;
  }
}
.webseminar.theme .contents-item {
  width: 260px;
  margin: 30px 48px 0 0;
  background: #FFF;
}
@media screen and (max-width: 1340px) {
  .webseminar.theme .contents-item {
    width: 23.5%;
    margin: 30px 2% 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.theme .contents-item {
    width: 32%;
    margin: 2% 2% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-item {
    width: 48.5%;
  }
}
@media screen and (max-width: 420px) {
  .webseminar.theme .contents-item {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.theme .contents-item:nth-child(3n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-item:nth-child(3n) {
    margin-right: 2% !important;
  }
}
@media screen and (max-width: 420px) {
  .webseminar.theme .contents-item:nth-child(3n) {
    margin-right: 0 !important;
  }
}
.webseminar.theme .contents-item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .webseminar.theme .contents-item:nth-child(4n) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 420px) {
  .webseminar.theme .contents-item:nth-child(4n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-item:nth-child(even) {
    margin-right: 0 !important;
  }
}
.webseminar.theme .contents-item a {
  display: block;
  height: 100%;
  color: #000;
}
.webseminar.theme .contents-item .pic {
  position: relative;
}
.webseminar.theme .contents-item .pic:before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  background: url("../webseminar/theme/img/contents_item_arrow.png") left top no-repeat;
}
@media screen and (max-width: 420px) {
  .webseminar.theme .contents-item .pic:before {
    width: 32px;
    height: 32px;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.theme .contents-item .pic img {
  width: 100%;
  height: auto;
}
.webseminar.theme .contents-item .pic .time {
  position: absolute;
  right: 2px;
  bottom: 2px;
  padding: 3px 2px 3px 17px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 12px;
  font-weight: bold;
}
.webseminar.theme .contents-item .pic .time:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 3px;
  top: 0;
  bottom: 0;
  content: "\f017";
  color: #b3a480;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
}
.webseminar.theme .contents-item dl {
  padding: 10px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-item dl {
    padding: 4%;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.webseminar.theme .contents-item dl * {
  line-height: 1.33333;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-item dl * {
    line-height: 1.46154;
  }
}
.webseminar.theme .contents-subitem {
  position: relative;
  padding-left: 1em;
}
.webseminar.theme .contents-subitem:before {
  content: "・";
  position: absolute;
  left: 0;
}
.webseminar.theme .contents-webtest-button {
  width: 450px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-webtest-button {
    width: 100%;
    margin: 8% auto 6%;
  }
}
.webseminar.theme .contents-webtest-button a {
  -moz-box-shadow: 0 5px 0 rgba(106, 142, 175, 0.65);
  -webkit-box-shadow: 0 5px 0 rgba(106, 142, 175, 0.65);
  box-shadow: 0 5px 0 rgba(106, 142, 175, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  height: 58px;
  background: #5368B1;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-webtest-button a {
    justify-content: center;
    padding: 6% 0 6% 4%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.2;
    text-align: center;
  }
}
.webseminar.theme .contents-webtest-button a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 5px;
}
.webseminar.theme .contents-webtest-button a:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  content: "\f054";
  color: #FFF;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .webseminar.theme .contents-webtest-button a:before {
    left: 5%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}

.webseminar.financial_practice .main-title,
.webseminar.brainstorming .main-title,
.webseminar.problem_solving .main-title,
.webseminar.specialized .main-title,
.webseminar.feature .main-title,
.webseminar.archives .main-title {
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FFFBFBFB', endColorstr='#FFA89F83') !important;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiP…Igd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g) !important;
  background-size: 100%;
  background-image: -moz-linear-gradient(left, #fbfbfb 0%, #cebe8f 15%, #a89f83 100%) !important;
  background-image: -webkit-linear-gradient(left, #fbfbfb 0%, #cebe8f 15%, #a89f83 100%) !important;
  background-image: linear-gradient(to right, #fbfbfb 0%, #cebe8f 15%, #a89f83 100%) !important;
}
.webseminar.financial_practice .main-box,
.webseminar.brainstorming .main-box,
.webseminar.problem_solving .main-box,
.webseminar.specialized .main-box,
.webseminar.feature .main-box,
.webseminar.archives .main-box {
  padding-top: 25px;
  border-bottom: 1px solid #CEC8B7;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .main-box,
  .webseminar.brainstorming .main-box,
  .webseminar.problem_solving .main-box,
  .webseminar.specialized .main-box,
  .webseminar.feature .main-box,
  .webseminar.archives .main-box {
    padding-top: 8%;
  }
}
.webseminar.financial_practice .main-box-title,
.webseminar.brainstorming .main-box-title,
.webseminar.problem_solving .main-box-title,
.webseminar.specialized .main-box-title,
.webseminar.feature .main-box-title,
.webseminar.archives .main-box-title {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  padding-bottom: 18px;
  color: #02348b;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .main-box-title,
  .webseminar.brainstorming .main-box-title,
  .webseminar.problem_solving .main-box-title,
  .webseminar.specialized .main-box-title,
  .webseminar.feature .main-box-title,
  .webseminar.archives .main-box-title {
    margin-bottom: 4%;
    padding: 0 5% 4%;
    font-size: 23px;
    font-size: 6.13333vw;
    line-height: 1.2;
  }
}
.webseminar.financial_practice .main-box-title:before, .webseminar.financial_practice .main-box-title:after,
.webseminar.brainstorming .main-box-title:before,
.webseminar.brainstorming .main-box-title:after,
.webseminar.problem_solving .main-box-title:before,
.webseminar.problem_solving .main-box-title:after,
.webseminar.specialized .main-box-title:before,
.webseminar.specialized .main-box-title:after,
.webseminar.feature .main-box-title:before,
.webseminar.feature .main-box-title:after,
.webseminar.archives .main-box-title:before,
.webseminar.archives .main-box-title:after {
  content: "";
  position: absolute;
  bottom: 0;
}
.webseminar.financial_practice .main-box-title:before,
.webseminar.brainstorming .main-box-title:before,
.webseminar.problem_solving .main-box-title:before,
.webseminar.specialized .main-box-title:before,
.webseminar.feature .main-box-title:before,
.webseminar.archives .main-box-title:before {
  left: 0;
  right: 0;
  width: 62px;
  height: 3px;
  margin: 0 auto;
  background: #272838;
}
.webseminar.financial_practice .main-box-title:after,
.webseminar.brainstorming .main-box-title:after,
.webseminar.problem_solving .main-box-title:after,
.webseminar.specialized .main-box-title:after,
.webseminar.feature .main-box-title:after,
.webseminar.archives .main-box-title:after {
  left: -52px;
  right: 0;
  width: 10px;
  height: 3px;
  margin: 0 auto;
  background: #065fe3;
}
.webseminar.financial_practice .main-box-text,
.webseminar.brainstorming .main-box-text,
.webseminar.problem_solving .main-box-text,
.webseminar.specialized .main-box-text,
.webseminar.feature .main-box-text,
.webseminar.archives .main-box-text {
  margin-bottom: 45px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.55556;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .main-box-text,
  .webseminar.brainstorming .main-box-text,
  .webseminar.problem_solving .main-box-text,
  .webseminar.specialized .main-box-text,
  .webseminar.feature .main-box-text,
  .webseminar.archives .main-box-text {
    margin: 0 5% 8%;
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
    text-align: left;
  }
}
.webseminar.financial_practice .anchor,
.webseminar.brainstorming .anchor,
.webseminar.problem_solving .anchor,
.webseminar.specialized .anchor,
.webseminar.feature .anchor,
.webseminar.archives .anchor {
  padding: 30px 0 25px;
  border-bottom: 1px solid #CEC8B7;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor,
  .webseminar.brainstorming .anchor,
  .webseminar.problem_solving .anchor,
  .webseminar.specialized .anchor,
  .webseminar.feature .anchor,
  .webseminar.archives .anchor {
    padding: 5% 0;
    border: none;
  }
}
.webseminar.financial_practice .anchor-inner,
.webseminar.brainstorming .anchor-inner,
.webseminar.problem_solving .anchor-inner,
.webseminar.specialized .anchor-inner,
.webseminar.feature .anchor-inner,
.webseminar.archives .anchor-inner {
  width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .webseminar.financial_practice .anchor-inner,
  .webseminar.brainstorming .anchor-inner,
  .webseminar.problem_solving .anchor-inner,
  .webseminar.specialized .anchor-inner,
  .webseminar.feature .anchor-inner,
  .webseminar.archives .anchor-inner {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor-inner,
  .webseminar.brainstorming .anchor-inner,
  .webseminar.problem_solving .anchor-inner,
  .webseminar.specialized .anchor-inner,
  .webseminar.feature .anchor-inner,
  .webseminar.archives .anchor-inner {
    width: 90%;
  }
}
.webseminar.financial_practice .anchor-title,
.webseminar.brainstorming .anchor-title,
.webseminar.problem_solving .anchor-title,
.webseminar.specialized .anchor-title,
.webseminar.feature .anchor-title,
.webseminar.archives .anchor-title {
  margin-bottom: 15px;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor-title,
  .webseminar.brainstorming .anchor-title,
  .webseminar.problem_solving .anchor-title,
  .webseminar.specialized .anchor-title,
  .webseminar.feature .anchor-title,
  .webseminar.archives .anchor-title {
    margin-bottom: 1%;
    font-size: 19px;
    font-size: 5.06667vw;
    line-height: 1.2;
  }
}
.webseminar.financial_practice .anchor-list,
.webseminar.brainstorming .anchor-list,
.webseminar.problem_solving .anchor-list,
.webseminar.specialized .anchor-list,
.webseminar.feature .anchor-list,
.webseminar.archives .anchor-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor-list,
  .webseminar.brainstorming .anchor-list,
  .webseminar.problem_solving .anchor-list,
  .webseminar.specialized .anchor-list,
  .webseminar.feature .anchor-list,
  .webseminar.archives .anchor-list {
    justify-content: space-between;
  }
}
.webseminar.financial_practice .anchor-item,
.webseminar.brainstorming .anchor-item,
.webseminar.problem_solving .anchor-item,
.webseminar.specialized .anchor-item,
.webseminar.feature .anchor-item,
.webseminar.archives .anchor-item {
  width: 234px;
  margin: 2px 2px 0 0;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor-item,
  .webseminar.brainstorming .anchor-item,
  .webseminar.problem_solving .anchor-item,
  .webseminar.specialized .anchor-item,
  .webseminar.feature .anchor-item,
  .webseminar.archives .anchor-item {
    width: 49%;
    margin: 5px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor-item.-w100,
  .webseminar.brainstorming .anchor-item.-w100,
  .webseminar.problem_solving .anchor-item.-w100,
  .webseminar.specialized .anchor-item.-w100,
  .webseminar.feature .anchor-item.-w100,
  .webseminar.archives .anchor-item.-w100 {
    width: 100%;
  }
}
.webseminar.financial_practice .anchor-item a,
.webseminar.brainstorming .anchor-item a,
.webseminar.problem_solving .anchor-item a,
.webseminar.specialized .anchor-item a,
.webseminar.feature .anchor-item a,
.webseminar.archives .anchor-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 44px;
  padding: 0 15px 0 33px;
  background: #E4F1FF;
  color: #000;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor-item a,
  .webseminar.brainstorming .anchor-item a,
  .webseminar.problem_solving .anchor-item a,
  .webseminar.specialized .anchor-item a,
  .webseminar.feature .anchor-item a,
  .webseminar.archives .anchor-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 3% 0 11%;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.2;
  }
}
.webseminar.financial_practice .anchor-item a:before,
.webseminar.brainstorming .anchor-item a:before,
.webseminar.problem_solving .anchor-item a:before,
.webseminar.specialized .anchor-item a:before,
.webseminar.feature .anchor-item a:before,
.webseminar.archives .anchor-item a:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  content: "\f078";
  color: #02348B;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor-item a:before,
  .webseminar.brainstorming .anchor-item a:before,
  .webseminar.problem_solving .anchor-item a:before,
  .webseminar.specialized .anchor-item a:before,
  .webseminar.feature .anchor-item a:before,
  .webseminar.archives .anchor-item a:before {
    left: 3%;
    font-size: 13px;
  }
}
.webseminar.financial_practice .anchor-item a:hover,
.webseminar.brainstorming .anchor-item a:hover,
.webseminar.problem_solving .anchor-item a:hover,
.webseminar.specialized .anchor-item a:hover,
.webseminar.feature .anchor-item a:hover,
.webseminar.archives .anchor-item a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .anchor + .training,
  .webseminar.brainstorming .anchor + .training,
  .webseminar.problem_solving .anchor + .training,
  .webseminar.specialized .anchor + .training,
  .webseminar.feature .anchor + .training,
  .webseminar.archives .anchor + .training {
    margin-top: 0;
  }
}
.webseminar.financial_practice .training,
.webseminar.brainstorming .training,
.webseminar.problem_solving .training,
.webseminar.specialized .training,
.webseminar.feature .training,
.webseminar.archives .training {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .training:nth-child(2),
  .webseminar.brainstorming .training:nth-child(2),
  .webseminar.problem_solving .training:nth-child(2),
  .webseminar.specialized .training:nth-child(2),
  .webseminar.feature .training:nth-child(2),
  .webseminar.archives .training:nth-child(2) {
    margin-top: 0;
  }
}
.webseminar.financial_practice .training-title,
.webseminar.brainstorming .training-title,
.webseminar.problem_solving .training-title,
.webseminar.specialized .training-title,
.webseminar.feature .training-title,
.webseminar.archives .training-title {
  background: #888067;
  color: #FFF;
  font-size: 26px;
  font-weight: bold;
  line-height: 68px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .training-title,
  .webseminar.brainstorming .training-title,
  .webseminar.problem_solving .training-title,
  .webseminar.specialized .training-title,
  .webseminar.feature .training-title,
  .webseminar.archives .training-title {
    font-size: 21px;
    font-size: 5.6vw;
    line-height: 50px;
  }
}
.webseminar.financial_practice .summary,
.webseminar.brainstorming .summary,
.webseminar.problem_solving .summary,
.webseminar.specialized .summary,
.webseminar.feature .summary,
.webseminar.archives .summary {
  padding: 40px 0 35px;
  background: #F5F2EC;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .summary,
  .webseminar.brainstorming .summary,
  .webseminar.problem_solving .summary,
  .webseminar.specialized .summary,
  .webseminar.feature .summary,
  .webseminar.archives .summary {
    padding: 8% 0;
  }
}
.webseminar.financial_practice .summary-list,
.webseminar.brainstorming .summary-list,
.webseminar.problem_solving .summary-list,
.webseminar.specialized .summary-list,
.webseminar.feature .summary-list,
.webseminar.archives .summary-list {
  width: 1178px;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .webseminar.financial_practice .summary-list,
  .webseminar.brainstorming .summary-list,
  .webseminar.problem_solving .summary-list,
  .webseminar.specialized .summary-list,
  .webseminar.feature .summary-list,
  .webseminar.archives .summary-list {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .summary-list,
  .webseminar.brainstorming .summary-list,
  .webseminar.problem_solving .summary-list,
  .webseminar.specialized .summary-list,
  .webseminar.feature .summary-list,
  .webseminar.archives .summary-list {
    width: 90%;
  }
}
.webseminar.financial_practice .summary-item,
.webseminar.brainstorming .summary-item,
.webseminar.problem_solving .summary-item,
.webseminar.specialized .summary-item,
.webseminar.feature .summary-item,
.webseminar.archives .summary-item {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .summary-item,
  .webseminar.brainstorming .summary-item,
  .webseminar.problem_solving .summary-item,
  .webseminar.specialized .summary-item,
  .webseminar.feature .summary-item,
  .webseminar.archives .summary-item {
    margin-bottom: 8%;
  }
}
.webseminar.financial_practice .summary-item:last-child,
.webseminar.brainstorming .summary-item:last-child,
.webseminar.problem_solving .summary-item:last-child,
.webseminar.specialized .summary-item:last-child,
.webseminar.feature .summary-item:last-child,
.webseminar.archives .summary-item:last-child {
  margin-bottom: 0;
}
.webseminar.financial_practice .summary-item .term,
.webseminar.brainstorming .summary-item .term,
.webseminar.problem_solving .summary-item .term,
.webseminar.specialized .summary-item .term,
.webseminar.feature .summary-item .term,
.webseminar.archives .summary-item .term {
  position: relative;
  margin-bottom: 14px;
  padding-left: 12px;
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .summary-item .term,
  .webseminar.brainstorming .summary-item .term,
  .webseminar.problem_solving .summary-item .term,
  .webseminar.specialized .summary-item .term,
  .webseminar.feature .summary-item .term,
  .webseminar.archives .summary-item .term {
    margin-bottom: 3%;
    padding-left: 3%;
    font-size: 19px;
    font-size: 5.06667vw;
  }
}
.webseminar.financial_practice .summary-item .term:before,
.webseminar.brainstorming .summary-item .term:before,
.webseminar.problem_solving .summary-item .term:before,
.webseminar.specialized .summary-item .term:before,
.webseminar.feature .summary-item .term:before,
.webseminar.archives .summary-item .term:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 4px;
  height: 17px;
  background: #605534;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .summary-item .term:before,
  .webseminar.brainstorming .summary-item .term:before,
  .webseminar.problem_solving .summary-item .term:before,
  .webseminar.specialized .summary-item .term:before,
  .webseminar.feature .summary-item .term:before,
  .webseminar.archives .summary-item .term:before {
    top: 1px;
    height: 100%;
  }
}
.webseminar.financial_practice .summary-item .description,
.webseminar.brainstorming .summary-item .description,
.webseminar.problem_solving .summary-item .description,
.webseminar.specialized .summary-item .description,
.webseminar.feature .summary-item .description,
.webseminar.archives .summary-item .description {
  font-size: 18px;
  line-height: 1.44444;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .summary-item .description,
  .webseminar.brainstorming .summary-item .description,
  .webseminar.problem_solving .summary-item .description,
  .webseminar.specialized .summary-item .description,
  .webseminar.feature .summary-item .description,
  .webseminar.archives .summary-item .description {
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.5625;
  }
}
.webseminar.financial_practice .contents,
.webseminar.brainstorming .contents,
.webseminar.problem_solving .contents,
.webseminar.specialized .contents,
.webseminar.feature .contents,
.webseminar.archives .contents {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents,
  .webseminar.brainstorming .contents,
  .webseminar.problem_solving .contents,
  .webseminar.specialized .contents,
  .webseminar.feature .contents,
  .webseminar.archives .contents {
    margin-bottom: 8%;
  }
}
.webseminar.financial_practice .contents:last-child,
.webseminar.brainstorming .contents:last-child,
.webseminar.problem_solving .contents:last-child,
.webseminar.specialized .contents:last-child,
.webseminar.feature .contents:last-child,
.webseminar.archives .contents:last-child {
  margin-bottom: 0;
}
.webseminar.financial_practice .contents-title,
.webseminar.brainstorming .contents-title,
.webseminar.problem_solving .contents-title,
.webseminar.specialized .contents-title,
.webseminar.feature .contents-title,
.webseminar.archives .contents-title {
  width: 1280px;
  margin: 50px auto 40px;
  padding-bottom: 8px;
  font-size: 26px;
  font-weight: bold;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 1280px) {
  .webseminar.financial_practice .contents-title,
  .webseminar.brainstorming .contents-title,
  .webseminar.problem_solving .contents-title,
  .webseminar.specialized .contents-title,
  .webseminar.feature .contents-title,
  .webseminar.archives .contents-title {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-title,
  .webseminar.brainstorming .contents-title,
  .webseminar.problem_solving .contents-title,
  .webseminar.specialized .contents-title,
  .webseminar.feature .contents-title,
  .webseminar.archives .contents-title {
    width: 90%;
    margin: 12% auto 6%;
    padding-bottom: 2%;
    font-size: 20px;
    font-size: 5.33333vw;
    line-height: 1.2;
  }
}
.webseminar.financial_practice .contents-webtest-button,
.webseminar.brainstorming .contents-webtest-button,
.webseminar.problem_solving .contents-webtest-button,
.webseminar.specialized .contents-webtest-button,
.webseminar.feature .contents-webtest-button,
.webseminar.archives .contents-webtest-button {
  width: 450px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-webtest-button,
  .webseminar.brainstorming .contents-webtest-button,
  .webseminar.problem_solving .contents-webtest-button,
  .webseminar.specialized .contents-webtest-button,
  .webseminar.feature .contents-webtest-button,
  .webseminar.archives .contents-webtest-button {
    width: 100%;
    margin: 8% auto 6%;
  }
}
.webseminar.financial_practice .contents-webtest-button a,
.webseminar.brainstorming .contents-webtest-button a,
.webseminar.problem_solving .contents-webtest-button a,
.webseminar.specialized .contents-webtest-button a,
.webseminar.feature .contents-webtest-button a,
.webseminar.archives .contents-webtest-button a {
  -moz-box-shadow: 0 5px 0 rgba(106, 142, 175, 0.65);
  -webkit-box-shadow: 0 5px 0 rgba(106, 142, 175, 0.65);
  box-shadow: 0 5px 0 rgba(106, 142, 175, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  height: 58px;
  background: #5368B1;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-webtest-button a,
  .webseminar.brainstorming .contents-webtest-button a,
  .webseminar.problem_solving .contents-webtest-button a,
  .webseminar.specialized .contents-webtest-button a,
  .webseminar.feature .contents-webtest-button a,
  .webseminar.archives .contents-webtest-button a {
    justify-content: center;
    padding: 6% 0 6% 4%;
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.2;
    text-align: center;
    margin: 0 10px;
  }
}
.webseminar.financial_practice .contents-webtest-button a:hover,
.webseminar.brainstorming .contents-webtest-button a:hover,
.webseminar.problem_solving .contents-webtest-button a:hover,
.webseminar.specialized .contents-webtest-button a:hover,
.webseminar.feature .contents-webtest-button a:hover,
.webseminar.archives .contents-webtest-button a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  top: 5px;
}
.webseminar.financial_practice .contents-webtest-button a:before,
.webseminar.brainstorming .contents-webtest-button a:before,
.webseminar.problem_solving .contents-webtest-button a:before,
.webseminar.specialized .contents-webtest-button a:before,
.webseminar.feature .contents-webtest-button a:before,
.webseminar.archives .contents-webtest-button a:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  content: "\f054";
  color: #FFF;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-webtest-button a:before,
  .webseminar.brainstorming .contents-webtest-button a:before,
  .webseminar.problem_solving .contents-webtest-button a:before,
  .webseminar.specialized .contents-webtest-button a:before,
  .webseminar.feature .contents-webtest-button a:before,
  .webseminar.archives .contents-webtest-button a:before {
    left: 5%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.financial_practice .contents .lecture,
.webseminar.brainstorming .contents .lecture,
.webseminar.problem_solving .contents .lecture,
.webseminar.specialized .contents .lecture,
.webseminar.feature .contents .lecture,
.webseminar.archives .contents .lecture {
  *zoom: 1;
  display: flex;
  flex-wrap: wrap;
  width: 1280px;
  margin: -30px auto 50px;
}
.webseminar.financial_practice .contents .lecture:after,
.webseminar.brainstorming .contents .lecture:after,
.webseminar.problem_solving .contents .lecture:after,
.webseminar.specialized .contents .lecture:after,
.webseminar.feature .contents .lecture:after,
.webseminar.archives .contents .lecture:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1280px) {
  .webseminar.financial_practice .contents .lecture,
  .webseminar.brainstorming .contents .lecture,
  .webseminar.problem_solving .contents .lecture,
  .webseminar.specialized .contents .lecture,
  .webseminar.feature .contents .lecture,
  .webseminar.archives .contents .lecture {
    width: 94%;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents .lecture,
  .webseminar.brainstorming .contents .lecture,
  .webseminar.problem_solving .contents .lecture,
  .webseminar.specialized .contents .lecture,
  .webseminar.feature .contents .lecture,
  .webseminar.archives .contents .lecture {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture,
  .webseminar.brainstorming .contents .lecture,
  .webseminar.problem_solving .contents .lecture,
  .webseminar.specialized .contents .lecture,
  .webseminar.feature .contents .lecture,
  .webseminar.archives .contents .lecture {
    width: 90%;
    margin: 0 auto 8%;
  }
}
.webseminar.financial_practice .contents .lecture dl,
.webseminar.brainstorming .contents .lecture dl,
.webseminar.problem_solving .contents .lecture dl,
.webseminar.specialized .contents .lecture dl,
.webseminar.feature .contents .lecture dl,
.webseminar.archives .contents .lecture dl {
  width: 50%;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents .lecture dl,
  .webseminar.brainstorming .contents .lecture dl,
  .webseminar.problem_solving .contents .lecture dl,
  .webseminar.specialized .contents .lecture dl,
  .webseminar.feature .contents .lecture dl,
  .webseminar.archives .contents .lecture dl {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents .lecture dl:not(:first-child),
  .webseminar.brainstorming .contents .lecture dl:not(:first-child),
  .webseminar.problem_solving .contents .lecture dl:not(:first-child),
  .webseminar.specialized .contents .lecture dl:not(:first-child),
  .webseminar.feature .contents .lecture dl:not(:first-child),
  .webseminar.archives .contents .lecture dl:not(:first-child) {
    margin-top: 7%;
  }
}
.webseminar.financial_practice .contents .lecture dl.-w100,
.webseminar.brainstorming .contents .lecture dl.-w100,
.webseminar.problem_solving .contents .lecture dl.-w100,
.webseminar.specialized .contents .lecture dl.-w100,
.webseminar.feature .contents .lecture dl.-w100,
.webseminar.archives .contents .lecture dl.-w100 {
  width: 100%;
}
.webseminar.financial_practice .contents .lecture-pic,
.webseminar.brainstorming .contents .lecture-pic,
.webseminar.problem_solving .contents .lecture-pic,
.webseminar.specialized .contents .lecture-pic,
.webseminar.feature .contents .lecture-pic,
.webseminar.archives .contents .lecture-pic {
  float: left;
  width: 100px;
  height: 100px;
  margin: 0 35px 0 0;
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents .lecture-pic,
  .webseminar.brainstorming .contents .lecture-pic,
  .webseminar.problem_solving .contents .lecture-pic,
  .webseminar.specialized .contents .lecture-pic,
  .webseminar.feature .contents .lecture-pic,
  .webseminar.archives .contents .lecture-pic {
    margin: 0 5% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture-pic,
  .webseminar.brainstorming .contents .lecture-pic,
  .webseminar.problem_solving .contents .lecture-pic,
  .webseminar.specialized .contents .lecture-pic,
  .webseminar.feature .contents .lecture-pic,
  .webseminar.archives .contents .lecture-pic {
    width: 20.89552%;
    height: auto;
  }
}
.webseminar.financial_practice .contents .lecture-pic img,
.webseminar.brainstorming .contents .lecture-pic img,
.webseminar.problem_solving .contents .lecture-pic img,
.webseminar.specialized .contents .lecture-pic img,
.webseminar.feature .contents .lecture-pic img,
.webseminar.archives .contents .lecture-pic img {
  -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: auto;
}
.webseminar.financial_practice .contents .lecture .name,
.webseminar.brainstorming .contents .lecture .name,
.webseminar.problem_solving .contents .lecture .name,
.webseminar.specialized .contents .lecture .name,
.webseminar.feature .contents .lecture .name,
.webseminar.archives .contents .lecture .name {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture .name,
  .webseminar.brainstorming .contents .lecture .name,
  .webseminar.problem_solving .contents .lecture .name,
  .webseminar.specialized .contents .lecture .name,
  .webseminar.feature .contents .lecture .name,
  .webseminar.archives .contents .lecture .name {
    margin-bottom: 3%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.webseminar.financial_practice .contents .lecture .belongs,
.webseminar.brainstorming .contents .lecture .belongs,
.webseminar.problem_solving .contents .lecture .belongs,
.webseminar.specialized .contents .lecture .belongs,
.webseminar.feature .contents .lecture .belongs,
.webseminar.archives .contents .lecture .belongs {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.46667;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture .belongs,
  .webseminar.brainstorming .contents .lecture .belongs,
  .webseminar.problem_solving .contents .lecture .belongs,
  .webseminar.specialized .contents .lecture .belongs,
  .webseminar.feature .contents .lecture .belongs,
  .webseminar.archives .contents .lecture .belongs {
    margin-bottom: 2%;
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.30769;
  }
}
.webseminar.financial_practice .contents .lecture .profile,
.webseminar.brainstorming .contents .lecture .profile,
.webseminar.problem_solving .contents .lecture .profile,
.webseminar.specialized .contents .lecture .profile,
.webseminar.feature .contents .lecture .profile,
.webseminar.archives .contents .lecture .profile {
  display: none;
}
.webseminar.financial_practice .contents .lecture .profile a,
.webseminar.brainstorming .contents .lecture .profile a,
.webseminar.problem_solving .contents .lecture .profile a,
.webseminar.specialized .contents .lecture .profile a,
.webseminar.feature .contents .lecture .profile a,
.webseminar.archives .contents .lecture .profile a {
  position: relative;
  color: #000;
  font-size: 15px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture .profile a,
  .webseminar.brainstorming .contents .lecture .profile a,
  .webseminar.problem_solving .contents .lecture .profile a,
  .webseminar.specialized .contents .lecture .profile a,
  .webseminar.feature .contents .lecture .profile a,
  .webseminar.archives .contents .lecture .profile a {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.webseminar.financial_practice .contents .lecture .profile a:hover,
.webseminar.brainstorming .contents .lecture .profile a:hover,
.webseminar.problem_solving .contents .lecture .profile a:hover,
.webseminar.specialized .contents .lecture .profile a:hover,
.webseminar.feature .contents .lecture .profile a:hover,
.webseminar.archives .contents .lecture .profile a:hover {
  text-decoration: none;
}
.webseminar.financial_practice .contents .lecture .profile a:after,
.webseminar.brainstorming .contents .lecture .profile a:after,
.webseminar.problem_solving .contents .lecture .profile a:after,
.webseminar.specialized .contents .lecture .profile a:after,
.webseminar.feature .contents .lecture .profile a:after,
.webseminar.archives .contents .lecture .profile a:after {
  position: absolute;
  right: -15px;
  content: "\f054";
  color: #e40054;
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: 900;
}
.webseminar.financial_practice .contents .lecture.webtestbtn,
.webseminar.brainstorming .contents .lecture.webtestbtn,
.webseminar.problem_solving .contents .lecture.webtestbtn,
.webseminar.specialized .contents .lecture.webtestbtn,
.webseminar.feature .contents .lecture.webtestbtn,
.webseminar.archives .contents .lecture.webtestbtn {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents .lecture.webtestbtn,
  .webseminar.brainstorming .contents .lecture.webtestbtn,
  .webseminar.problem_solving .contents .lecture.webtestbtn,
  .webseminar.specialized .contents .lecture.webtestbtn,
  .webseminar.feature .contents .lecture.webtestbtn,
  .webseminar.archives .contents .lecture.webtestbtn {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture.webtestbtn,
  .webseminar.brainstorming .contents .lecture.webtestbtn,
  .webseminar.problem_solving .contents .lecture.webtestbtn,
  .webseminar.specialized .contents .lecture.webtestbtn,
  .webseminar.feature .contents .lecture.webtestbtn,
  .webseminar.archives .contents .lecture.webtestbtn {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents .lecture.webtestbtn dl,
  .webseminar.brainstorming .contents .lecture.webtestbtn dl,
  .webseminar.problem_solving .contents .lecture.webtestbtn dl,
  .webseminar.specialized .contents .lecture.webtestbtn dl,
  .webseminar.feature .contents .lecture.webtestbtn dl,
  .webseminar.archives .contents .lecture.webtestbtn dl {
    margin-top: 0 !important;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture.webtestbtn dl,
  .webseminar.brainstorming .contents .lecture.webtestbtn dl,
  .webseminar.problem_solving .contents .lecture.webtestbtn dl,
  .webseminar.specialized .contents .lecture.webtestbtn dl,
  .webseminar.feature .contents .lecture.webtestbtn dl,
  .webseminar.archives .contents .lecture.webtestbtn dl {
    margin-top: 7%;
    width: 100%;
  }
}
.webseminar.financial_practice .contents .lecture.webtestbtn .lecture-webtestbtn,
.webseminar.brainstorming .contents .lecture.webtestbtn .lecture-webtestbtn,
.webseminar.problem_solving .contents .lecture.webtestbtn .lecture-webtestbtn,
.webseminar.specialized .contents .lecture.webtestbtn .lecture-webtestbtn,
.webseminar.feature .contents .lecture.webtestbtn .lecture-webtestbtn,
.webseminar.archives .contents .lecture.webtestbtn .lecture-webtestbtn {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture.webtestbtn .lecture-webtestbtn,
  .webseminar.brainstorming .contents .lecture.webtestbtn .lecture-webtestbtn,
  .webseminar.problem_solving .contents .lecture.webtestbtn .lecture-webtestbtn,
  .webseminar.specialized .contents .lecture.webtestbtn .lecture-webtestbtn,
  .webseminar.feature .contents .lecture.webtestbtn .lecture-webtestbtn,
  .webseminar.archives .contents .lecture.webtestbtn .lecture-webtestbtn {
    justify-content: center;
    margin: 10px 0 0;
  }
}
.webseminar.financial_practice .contents .lecture.webtestbtn .lecture-webtestbtn a,
.webseminar.brainstorming .contents .lecture.webtestbtn .lecture-webtestbtn a,
.webseminar.problem_solving .contents .lecture.webtestbtn .lecture-webtestbtn a,
.webseminar.specialized .contents .lecture.webtestbtn .lecture-webtestbtn a,
.webseminar.feature .contents .lecture.webtestbtn .lecture-webtestbtn a,
.webseminar.archives .contents .lecture.webtestbtn .lecture-webtestbtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 15px 0 0;
  width: 270px;
  height: 30px;
  border-radius: 20px;
  font-size: 13px;
  background: #7B756D;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents .lecture.webtestbtn .lecture-webtestbtn a,
  .webseminar.brainstorming .contents .lecture.webtestbtn .lecture-webtestbtn a,
  .webseminar.problem_solving .contents .lecture.webtestbtn .lecture-webtestbtn a,
  .webseminar.specialized .contents .lecture.webtestbtn .lecture-webtestbtn a,
  .webseminar.feature .contents .lecture.webtestbtn .lecture-webtestbtn a,
  .webseminar.archives .contents .lecture.webtestbtn .lecture-webtestbtn a {
    padding: 0;
    width: 100%;
    height: 40px;
    max-width: 330px;
    font-size: 14px;
  }
}
.webseminar.financial_practice .contents .lecture.webtestbtn .lecture-webtestbtn a::before,
.webseminar.brainstorming .contents .lecture.webtestbtn .lecture-webtestbtn a::before,
.webseminar.problem_solving .contents .lecture.webtestbtn .lecture-webtestbtn a::before,
.webseminar.specialized .contents .lecture.webtestbtn .lecture-webtestbtn a::before,
.webseminar.feature .contents .lecture.webtestbtn .lecture-webtestbtn a::before,
.webseminar.archives .contents .lecture.webtestbtn .lecture-webtestbtn a::before {
  display: flex;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  content: "\f054";
  font-size: 14px;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  color: #FFF;
}
.webseminar.financial_practice .contents-inner,
.webseminar.brainstorming .contents-inner,
.webseminar.problem_solving .contents-inner,
.webseminar.specialized .contents-inner,
.webseminar.feature .contents-inner,
.webseminar.archives .contents-inner {
  clear: both;
  padding: 50px 0;
  background: url("../webseminar/brainstorming/img/contents_inner.gif") right bottom no-repeat #cbdaf0;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-inner,
  .webseminar.brainstorming .contents-inner,
  .webseminar.problem_solving .contents-inner,
  .webseminar.specialized .contents-inner,
  .webseminar.feature .contents-inner,
  .webseminar.archives .contents-inner {
    padding: 15% 0;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.webseminar.financial_practice .contents-inner-title,
.webseminar.brainstorming .contents-inner-title,
.webseminar.problem_solving .contents-inner-title,
.webseminar.specialized .contents-inner-title,
.webseminar.feature .contents-inner-title,
.webseminar.archives .contents-inner-title {
  width: 1280px;
  margin: 50px auto 25px;
  color: #02348b;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .webseminar.financial_practice .contents-inner-title,
  .webseminar.brainstorming .contents-inner-title,
  .webseminar.problem_solving .contents-inner-title,
  .webseminar.specialized .contents-inner-title,
  .webseminar.feature .contents-inner-title,
  .webseminar.archives .contents-inner-title {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-inner-title,
  .webseminar.brainstorming .contents-inner-title,
  .webseminar.problem_solving .contents-inner-title,
  .webseminar.specialized .contents-inner-title,
  .webseminar.feature .contents-inner-title,
  .webseminar.archives .contents-inner-title {
    width: 90%;
    margin-bottom: 6.5%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 420px) {
  .webseminar.financial_practice .contents-inner-title,
  .webseminar.brainstorming .contents-inner-title,
  .webseminar.problem_solving .contents-inner-title,
  .webseminar.specialized .contents-inner-title,
  .webseminar.feature .contents-inner-title,
  .webseminar.archives .contents-inner-title {
    margin-bottom: 9%;
  }
}
.webseminar.financial_practice .contents-inner-title:first-child,
.webseminar.brainstorming .contents-inner-title:first-child,
.webseminar.problem_solving .contents-inner-title:first-child,
.webseminar.specialized .contents-inner-title:first-child,
.webseminar.feature .contents-inner-title:first-child,
.webseminar.archives .contents-inner-title:first-child {
  margin-top: 0;
}
.webseminar.financial_practice .contents-list,
.webseminar.brainstorming .contents-list,
.webseminar.problem_solving .contents-list,
.webseminar.specialized .contents-list,
.webseminar.feature .contents-list,
.webseminar.archives .contents-list {
  display: flex;
  flex-wrap: wrap;
  width: 1280px;
  margin: -30px auto 0;
}
@media screen and (max-width: 1280px) {
  .webseminar.financial_practice .contents-list,
  .webseminar.brainstorming .contents-list,
  .webseminar.problem_solving .contents-list,
  .webseminar.specialized .contents-list,
  .webseminar.feature .contents-list,
  .webseminar.archives .contents-list {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-list,
  .webseminar.brainstorming .contents-list,
  .webseminar.problem_solving .contents-list,
  .webseminar.specialized .contents-list,
  .webseminar.feature .contents-list,
  .webseminar.archives .contents-list {
    width: 90%;
  }
}
.webseminar.financial_practice .contents-item,
.webseminar.brainstorming .contents-item,
.webseminar.problem_solving .contents-item,
.webseminar.specialized .contents-item,
.webseminar.feature .contents-item,
.webseminar.archives .contents-item {
  -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 297.5px;
  min-height: 218px;
  margin: 30px 30px 0 0;
  padding: 25px 20px 58px;
  background: #FFF;
}
@media screen and (max-width: 1280px) {
  .webseminar.financial_practice .contents-item,
  .webseminar.brainstorming .contents-item,
  .webseminar.problem_solving .contents-item,
  .webseminar.specialized .contents-item,
  .webseminar.feature .contents-item,
  .webseminar.archives .contents-item {
    width: 32%;
    margin: 2.5% 2% 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents-item,
  .webseminar.brainstorming .contents-item,
  .webseminar.problem_solving .contents-item,
  .webseminar.specialized .contents-item,
  .webseminar.feature .contents-item,
  .webseminar.archives .contents-item {
    width: 48.5%;
    margin: 2.5% 3% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-item,
  .webseminar.brainstorming .contents-item,
  .webseminar.problem_solving .contents-item,
  .webseminar.specialized .contents-item,
  .webseminar.feature .contents-item,
  .webseminar.archives .contents-item {
    width: 100%;
    min-height: auto;
    margin: 4% 0 0 !important;
    padding: 6% 4%;
  }
}
.webseminar.financial_practice .contents-item:nth-child(4n),
.webseminar.brainstorming .contents-item:nth-child(4n),
.webseminar.problem_solving .contents-item:nth-child(4n),
.webseminar.specialized .contents-item:nth-child(4n),
.webseminar.feature .contents-item:nth-child(4n),
.webseminar.archives .contents-item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1280px) {
  .webseminar.financial_practice .contents-item:nth-child(4n),
  .webseminar.brainstorming .contents-item:nth-child(4n),
  .webseminar.problem_solving .contents-item:nth-child(4n),
  .webseminar.specialized .contents-item:nth-child(4n),
  .webseminar.feature .contents-item:nth-child(4n),
  .webseminar.archives .contents-item:nth-child(4n) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 1280px) {
  .webseminar.financial_practice .contents-item:nth-child(3n),
  .webseminar.brainstorming .contents-item:nth-child(3n),
  .webseminar.problem_solving .contents-item:nth-child(3n),
  .webseminar.specialized .contents-item:nth-child(3n),
  .webseminar.feature .contents-item:nth-child(3n),
  .webseminar.archives .contents-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents-item:nth-child(3n),
  .webseminar.brainstorming .contents-item:nth-child(3n),
  .webseminar.problem_solving .contents-item:nth-child(3n),
  .webseminar.specialized .contents-item:nth-child(3n),
  .webseminar.feature .contents-item:nth-child(3n),
  .webseminar.archives .contents-item:nth-child(3n) {
    margin-right: 3%;
  }
}
@media screen and (max-width: 1024px) {
  .webseminar.financial_practice .contents-item:nth-child(even),
  .webseminar.brainstorming .contents-item:nth-child(even),
  .webseminar.problem_solving .contents-item:nth-child(even),
  .webseminar.specialized .contents-item:nth-child(even),
  .webseminar.feature .contents-item:nth-child(even),
  .webseminar.archives .contents-item:nth-child(even) {
    margin-right: 0 !important;
  }
}
.webseminar.financial_practice .contents-item:before,
.webseminar.brainstorming .contents-item:before,
.webseminar.problem_solving .contents-item:before,
.webseminar.specialized .contents-item:before,
.webseminar.feature .contents-item:before,
.webseminar.archives .contents-item:before {
  position: absolute;
  right: -4px;
  top: -20px;
  color: #CEC8B7;
  font-family: 'Anton', sans-serif;
  font-size: 41px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-item:before,
  .webseminar.brainstorming .contents-item:before,
  .webseminar.problem_solving .contents-item:before,
  .webseminar.specialized .contents-item:before,
  .webseminar.feature .contents-item:before,
  .webseminar.archives .contents-item:before {
    top: -10px;
    font-size: 45px;
    font-size: 12vw;
  }
}
.webseminar.financial_practice .contents-item:nth-child(1):before,
.webseminar.brainstorming .contents-item:nth-child(1):before,
.webseminar.problem_solving .contents-item:nth-child(1):before,
.webseminar.specialized .contents-item:nth-child(1):before,
.webseminar.feature .contents-item:nth-child(1):before,
.webseminar.archives .contents-item:nth-child(1):before {
  content: "01";
}
.webseminar.financial_practice .contents-item:nth-child(2):before,
.webseminar.brainstorming .contents-item:nth-child(2):before,
.webseminar.problem_solving .contents-item:nth-child(2):before,
.webseminar.specialized .contents-item:nth-child(2):before,
.webseminar.feature .contents-item:nth-child(2):before,
.webseminar.archives .contents-item:nth-child(2):before {
  content: "02";
}
.webseminar.financial_practice .contents-item:nth-child(3):before,
.webseminar.brainstorming .contents-item:nth-child(3):before,
.webseminar.problem_solving .contents-item:nth-child(3):before,
.webseminar.specialized .contents-item:nth-child(3):before,
.webseminar.feature .contents-item:nth-child(3):before,
.webseminar.archives .contents-item:nth-child(3):before {
  content: "03";
}
.webseminar.financial_practice .contents-item:nth-child(4):before,
.webseminar.brainstorming .contents-item:nth-child(4):before,
.webseminar.problem_solving .contents-item:nth-child(4):before,
.webseminar.specialized .contents-item:nth-child(4):before,
.webseminar.feature .contents-item:nth-child(4):before,
.webseminar.archives .contents-item:nth-child(4):before {
  content: "04";
}
.webseminar.financial_practice .contents-item:nth-child(5):before,
.webseminar.brainstorming .contents-item:nth-child(5):before,
.webseminar.problem_solving .contents-item:nth-child(5):before,
.webseminar.specialized .contents-item:nth-child(5):before,
.webseminar.feature .contents-item:nth-child(5):before,
.webseminar.archives .contents-item:nth-child(5):before {
  content: "05";
}
.webseminar.financial_practice .contents-item:nth-child(6):before,
.webseminar.brainstorming .contents-item:nth-child(6):before,
.webseminar.problem_solving .contents-item:nth-child(6):before,
.webseminar.specialized .contents-item:nth-child(6):before,
.webseminar.feature .contents-item:nth-child(6):before,
.webseminar.archives .contents-item:nth-child(6):before {
  content: "06";
}
.webseminar.financial_practice .contents-item:nth-child(7):before,
.webseminar.brainstorming .contents-item:nth-child(7):before,
.webseminar.problem_solving .contents-item:nth-child(7):before,
.webseminar.specialized .contents-item:nth-child(7):before,
.webseminar.feature .contents-item:nth-child(7):before,
.webseminar.archives .contents-item:nth-child(7):before {
  content: "07";
}
.webseminar.financial_practice .contents-item:nth-child(8):before,
.webseminar.brainstorming .contents-item:nth-child(8):before,
.webseminar.problem_solving .contents-item:nth-child(8):before,
.webseminar.specialized .contents-item:nth-child(8):before,
.webseminar.feature .contents-item:nth-child(8):before,
.webseminar.archives .contents-item:nth-child(8):before {
  content: "08";
}
.webseminar.financial_practice .contents-item:nth-child(9):before,
.webseminar.brainstorming .contents-item:nth-child(9):before,
.webseminar.problem_solving .contents-item:nth-child(9):before,
.webseminar.specialized .contents-item:nth-child(9):before,
.webseminar.feature .contents-item:nth-child(9):before,
.webseminar.archives .contents-item:nth-child(9):before {
  content: "09";
}
.webseminar.financial_practice .contents-item:nth-child(10):before,
.webseminar.brainstorming .contents-item:nth-child(10):before,
.webseminar.problem_solving .contents-item:nth-child(10):before,
.webseminar.specialized .contents-item:nth-child(10):before,
.webseminar.feature .contents-item:nth-child(10):before,
.webseminar.archives .contents-item:nth-child(10):before {
  content: "10";
}
.webseminar.financial_practice .contents-item:nth-child(11):before,
.webseminar.brainstorming .contents-item:nth-child(11):before,
.webseminar.problem_solving .contents-item:nth-child(11):before,
.webseminar.specialized .contents-item:nth-child(11):before,
.webseminar.feature .contents-item:nth-child(11):before,
.webseminar.archives .contents-item:nth-child(11):before {
  content: "11";
}
.webseminar.financial_practice .contents-item:nth-child(12):before,
.webseminar.brainstorming .contents-item:nth-child(12):before,
.webseminar.problem_solving .contents-item:nth-child(12):before,
.webseminar.specialized .contents-item:nth-child(12):before,
.webseminar.feature .contents-item:nth-child(12):before,
.webseminar.archives .contents-item:nth-child(12):before {
  content: "12";
}
.webseminar.financial_practice .contents-item:nth-child(13):before,
.webseminar.brainstorming .contents-item:nth-child(13):before,
.webseminar.problem_solving .contents-item:nth-child(13):before,
.webseminar.specialized .contents-item:nth-child(13):before,
.webseminar.feature .contents-item:nth-child(13):before,
.webseminar.archives .contents-item:nth-child(13):before {
  content: "13";
}
.webseminar.financial_practice .contents-item:nth-child(14):before,
.webseminar.brainstorming .contents-item:nth-child(14):before,
.webseminar.problem_solving .contents-item:nth-child(14):before,
.webseminar.specialized .contents-item:nth-child(14):before,
.webseminar.feature .contents-item:nth-child(14):before,
.webseminar.archives .contents-item:nth-child(14):before {
  content: "14";
}
.webseminar.financial_practice .contents-item:nth-child(15):before,
.webseminar.brainstorming .contents-item:nth-child(15):before,
.webseminar.problem_solving .contents-item:nth-child(15):before,
.webseminar.specialized .contents-item:nth-child(15):before,
.webseminar.feature .contents-item:nth-child(15):before,
.webseminar.archives .contents-item:nth-child(15):before {
  content: "15";
}
.webseminar.financial_practice .contents-item:nth-child(16):before,
.webseminar.brainstorming .contents-item:nth-child(16):before,
.webseminar.problem_solving .contents-item:nth-child(16):before,
.webseminar.specialized .contents-item:nth-child(16):before,
.webseminar.feature .contents-item:nth-child(16):before,
.webseminar.archives .contents-item:nth-child(16):before {
  content: "16";
}
.webseminar.financial_practice .contents-item:nth-child(17):before,
.webseminar.brainstorming .contents-item:nth-child(17):before,
.webseminar.problem_solving .contents-item:nth-child(17):before,
.webseminar.specialized .contents-item:nth-child(17):before,
.webseminar.feature .contents-item:nth-child(17):before,
.webseminar.archives .contents-item:nth-child(17):before {
  content: "17";
}
.webseminar.financial_practice .contents-item:nth-child(18):before,
.webseminar.brainstorming .contents-item:nth-child(18):before,
.webseminar.problem_solving .contents-item:nth-child(18):before,
.webseminar.specialized .contents-item:nth-child(18):before,
.webseminar.feature .contents-item:nth-child(18):before,
.webseminar.archives .contents-item:nth-child(18):before {
  content: "18";
}
.webseminar.financial_practice .contents-item:nth-child(19):before,
.webseminar.brainstorming .contents-item:nth-child(19):before,
.webseminar.problem_solving .contents-item:nth-child(19):before,
.webseminar.specialized .contents-item:nth-child(19):before,
.webseminar.feature .contents-item:nth-child(19):before,
.webseminar.archives .contents-item:nth-child(19):before {
  content: "19";
}
.webseminar.financial_practice .contents-item:nth-child(20):before,
.webseminar.brainstorming .contents-item:nth-child(20):before,
.webseminar.problem_solving .contents-item:nth-child(20):before,
.webseminar.specialized .contents-item:nth-child(20):before,
.webseminar.feature .contents-item:nth-child(20):before,
.webseminar.archives .contents-item:nth-child(20):before {
  content: "20";
}
.webseminar.financial_practice .contents-item:nth-child(21):before,
.webseminar.brainstorming .contents-item:nth-child(21):before,
.webseminar.problem_solving .contents-item:nth-child(21):before,
.webseminar.specialized .contents-item:nth-child(21):before,
.webseminar.feature .contents-item:nth-child(21):before,
.webseminar.archives .contents-item:nth-child(21):before {
  content: "21";
}
.webseminar.financial_practice .contents-item:nth-child(22):before,
.webseminar.brainstorming .contents-item:nth-child(22):before,
.webseminar.problem_solving .contents-item:nth-child(22):before,
.webseminar.specialized .contents-item:nth-child(22):before,
.webseminar.feature .contents-item:nth-child(22):before,
.webseminar.archives .contents-item:nth-child(22):before {
  content: "22";
}
.webseminar.financial_practice .contents-item:nth-child(23):before,
.webseminar.brainstorming .contents-item:nth-child(23):before,
.webseminar.problem_solving .contents-item:nth-child(23):before,
.webseminar.specialized .contents-item:nth-child(23):before,
.webseminar.feature .contents-item:nth-child(23):before,
.webseminar.archives .contents-item:nth-child(23):before {
  content: "23";
}
.webseminar.financial_practice .contents-item:nth-child(24):before,
.webseminar.brainstorming .contents-item:nth-child(24):before,
.webseminar.problem_solving .contents-item:nth-child(24):before,
.webseminar.specialized .contents-item:nth-child(24):before,
.webseminar.feature .contents-item:nth-child(24):before,
.webseminar.archives .contents-item:nth-child(24):before {
  content: "24";
}
.webseminar.financial_practice .contents-item:nth-child(25):before,
.webseminar.brainstorming .contents-item:nth-child(25):before,
.webseminar.problem_solving .contents-item:nth-child(25):before,
.webseminar.specialized .contents-item:nth-child(25):before,
.webseminar.feature .contents-item:nth-child(25):before,
.webseminar.archives .contents-item:nth-child(25):before {
  content: "25";
}
.webseminar.financial_practice .contents-item:nth-child(26):before,
.webseminar.brainstorming .contents-item:nth-child(26):before,
.webseminar.problem_solving .contents-item:nth-child(26):before,
.webseminar.specialized .contents-item:nth-child(26):before,
.webseminar.feature .contents-item:nth-child(26):before,
.webseminar.archives .contents-item:nth-child(26):before {
  content: "26";
}
.webseminar.financial_practice .contents-item:nth-child(27):before,
.webseminar.brainstorming .contents-item:nth-child(27):before,
.webseminar.problem_solving .contents-item:nth-child(27):before,
.webseminar.specialized .contents-item:nth-child(27):before,
.webseminar.feature .contents-item:nth-child(27):before,
.webseminar.archives .contents-item:nth-child(27):before {
  content: "27";
}
.webseminar.financial_practice .contents-item:nth-child(28):before,
.webseminar.brainstorming .contents-item:nth-child(28):before,
.webseminar.problem_solving .contents-item:nth-child(28):before,
.webseminar.specialized .contents-item:nth-child(28):before,
.webseminar.feature .contents-item:nth-child(28):before,
.webseminar.archives .contents-item:nth-child(28):before {
  content: "28";
}
.webseminar.financial_practice .contents-item:nth-child(29):before,
.webseminar.brainstorming .contents-item:nth-child(29):before,
.webseminar.problem_solving .contents-item:nth-child(29):before,
.webseminar.specialized .contents-item:nth-child(29):before,
.webseminar.feature .contents-item:nth-child(29):before,
.webseminar.archives .contents-item:nth-child(29):before {
  content: "29";
}
.webseminar.financial_practice .contents-item:nth-child(30):before,
.webseminar.brainstorming .contents-item:nth-child(30):before,
.webseminar.problem_solving .contents-item:nth-child(30):before,
.webseminar.specialized .contents-item:nth-child(30):before,
.webseminar.feature .contents-item:nth-child(30):before,
.webseminar.archives .contents-item:nth-child(30):before {
  content: "30";
}
.webseminar.financial_practice .contents-item-title,
.webseminar.brainstorming .contents-item-title,
.webseminar.problem_solving .contents-item-title,
.webseminar.specialized .contents-item-title,
.webseminar.feature .contents-item-title,
.webseminar.archives .contents-item-title {
  position: relative;
  z-index: 10;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.17647;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-item-title,
  .webseminar.brainstorming .contents-item-title,
  .webseminar.problem_solving .contents-item-title,
  .webseminar.specialized .contents-item-title,
  .webseminar.feature .contents-item-title,
  .webseminar.archives .contents-item-title {
    margin-bottom: 6%;
    padding-right: 15%;
    font-size: 16px;
    font-size: 4.26667vw;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-item-title br,
  .webseminar.brainstorming .contents-item-title br,
  .webseminar.problem_solving .contents-item-title br,
  .webseminar.specialized .contents-item-title br,
  .webseminar.feature .contents-item-title br,
  .webseminar.archives .contents-item-title br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents,
  .webseminar.brainstorming .sub-contents,
  .webseminar.problem_solving .sub-contents,
  .webseminar.specialized .sub-contents,
  .webseminar.feature .sub-contents,
  .webseminar.archives .sub-contents {
    margin-bottom: 10%;
  }
}
.webseminar.financial_practice .sub-contents-term,
.webseminar.brainstorming .sub-contents-term,
.webseminar.problem_solving .sub-contents-term,
.webseminar.specialized .sub-contents-term,
.webseminar.feature .sub-contents-term,
.webseminar.archives .sub-contents-term {
  margin-bottom: 8px;
  color: #e40054;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-term,
  .webseminar.brainstorming .sub-contents-term,
  .webseminar.problem_solving .sub-contents-term,
  .webseminar.specialized .sub-contents-term,
  .webseminar.feature .sub-contents-term,
  .webseminar.archives .sub-contents-term {
    margin-bottom: 2%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.financial_practice .sub-contents-description,
.webseminar.brainstorming .sub-contents-description,
.webseminar.problem_solving .sub-contents-description,
.webseminar.specialized .sub-contents-description,
.webseminar.feature .sub-contents-description,
.webseminar.archives .sub-contents-description {
  position: relative;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-description,
  .webseminar.brainstorming .sub-contents-description,
  .webseminar.problem_solving .sub-contents-description,
  .webseminar.specialized .sub-contents-description,
  .webseminar.feature .sub-contents-description,
  .webseminar.archives .sub-contents-description {
    position: unset;
  }
}
.webseminar.financial_practice .sub-contents-description .time,
.webseminar.brainstorming .sub-contents-description .time,
.webseminar.problem_solving .sub-contents-description .time,
.webseminar.specialized .sub-contents-description .time,
.webseminar.feature .sub-contents-description .time,
.webseminar.archives .sub-contents-description .time {
  position: absolute;
  right: 0;
  top: -23px;
  font-size: 1.4em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-description .time,
  .webseminar.brainstorming .sub-contents-description .time,
  .webseminar.problem_solving .sub-contents-description .time,
  .webseminar.specialized .sub-contents-description .time,
  .webseminar.feature .sub-contents-description .time,
  .webseminar.archives .sub-contents-description .time {
    right: 4%;
    top: 0;
    bottom: unset;
    margin-top: 17.2%;
    padding-left: 5%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.webseminar.financial_practice .sub-contents-description .time:before,
.webseminar.brainstorming .sub-contents-description .time:before,
.webseminar.problem_solving .sub-contents-description .time:before,
.webseminar.specialized .sub-contents-description .time:before,
.webseminar.feature .sub-contents-description .time:before,
.webseminar.archives .sub-contents-description .time:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: -21px;
  top: 0;
  bottom: 0;
  content: "\f017";
  color: #b3a480;
  font-size: 18px;
  font-family: "Font Awesome 5 Free";
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-description .time:before,
  .webseminar.brainstorming .sub-contents-description .time:before,
  .webseminar.problem_solving .sub-contents-description .time:before,
  .webseminar.specialized .sub-contents-description .time:before,
  .webseminar.feature .sub-contents-description .time:before,
  .webseminar.archives .sub-contents-description .time:before {
    top: unset;
    left: 0;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.financial_practice .sub-contents-item,
.webseminar.brainstorming .sub-contents-item,
.webseminar.problem_solving .sub-contents-item,
.webseminar.specialized .sub-contents-item,
.webseminar.feature .sub-contents-item,
.webseminar.archives .sub-contents-item {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.42857;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-item,
  .webseminar.brainstorming .sub-contents-item,
  .webseminar.problem_solving .sub-contents-item,
  .webseminar.specialized .sub-contents-item,
  .webseminar.feature .sub-contents-item,
  .webseminar.archives .sub-contents-item {
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.42857;
  }
}
.webseminar.financial_practice .sub-contents-item:before,
.webseminar.brainstorming .sub-contents-item:before,
.webseminar.problem_solving .sub-contents-item:before,
.webseminar.specialized .sub-contents-item:before,
.webseminar.feature .sub-contents-item:before,
.webseminar.archives .sub-contents-item:before {
  content: "・";
  position: absolute;
  left: 0;
}
.webseminar.financial_practice .sub-contents-date,
.webseminar.brainstorming .sub-contents-date,
.webseminar.problem_solving .sub-contents-date,
.webseminar.specialized .sub-contents-date,
.webseminar.feature .sub-contents-date,
.webseminar.archives .sub-contents-date {
  display: none;
  position: absolute;
  bottom: 18px;
  color: #555;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-date,
  .webseminar.brainstorming .sub-contents-date,
  .webseminar.problem_solving .sub-contents-date,
  .webseminar.specialized .sub-contents-date,
  .webseminar.feature .sub-contents-date,
  .webseminar.archives .sub-contents-date {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.webseminar.financial_practice .sub-contents-movie,
.webseminar.brainstorming .sub-contents-movie,
.webseminar.problem_solving .sub-contents-movie,
.webseminar.specialized .sub-contents-movie,
.webseminar.feature .sub-contents-movie,
.webseminar.archives .sub-contents-movie {
  position: absolute;
  right: 0;
  bottom: 5px;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-movie,
  .webseminar.brainstorming .sub-contents-movie,
  .webseminar.problem_solving .sub-contents-movie,
  .webseminar.specialized .sub-contents-movie,
  .webseminar.feature .sub-contents-movie,
  .webseminar.archives .sub-contents-movie {
    width: 45%;
  }
}
.webseminar.financial_practice .sub-contents-movie a,
.webseminar.brainstorming .sub-contents-movie a,
.webseminar.problem_solving .sub-contents-movie a,
.webseminar.specialized .sub-contents-movie a,
.webseminar.feature .sub-contents-movie a,
.webseminar.archives .sub-contents-movie a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 150px;
  height: 38px;
  padding-left: 15px;
  background: #000;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-movie a,
  .webseminar.brainstorming .sub-contents-movie a,
  .webseminar.problem_solving .sub-contents-movie a,
  .webseminar.specialized .sub-contents-movie a,
  .webseminar.feature .sub-contents-movie a,
  .webseminar.archives .sub-contents-movie a {
    width: auto;
    height: auto;
    padding: 7% 0;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.financial_practice .sub-contents-movie a:hover,
.webseminar.brainstorming .sub-contents-movie a:hover,
.webseminar.problem_solving .sub-contents-movie a:hover,
.webseminar.specialized .sub-contents-movie a:hover,
.webseminar.feature .sub-contents-movie a:hover,
.webseminar.archives .sub-contents-movie a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  background: #0052B2;
}
.webseminar.financial_practice .sub-contents-movie a:before,
.webseminar.brainstorming .sub-contents-movie a:before,
.webseminar.problem_solving .sub-contents-movie a:before,
.webseminar.specialized .sub-contents-movie a:before,
.webseminar.feature .sub-contents-movie a:before,
.webseminar.archives .sub-contents-movie a:before {
  display: flex;
  align-items: center;
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  content: "\f054";
  color: #FFF;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .sub-contents-movie a:before,
  .webseminar.brainstorming .sub-contents-movie a:before,
  .webseminar.problem_solving .sub-contents-movie a:before,
  .webseminar.specialized .sub-contents-movie a:before,
  .webseminar.feature .sub-contents-movie a:before,
  .webseminar.archives .sub-contents-movie a:before {
    left: 10%;
    padding-left: 8%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}

.webseminar.financial_practice .main-title,
.webseminar.specialized .main-title,
.webseminar.archives .main-title {
  text-shadow: none;
  background: #065FE3 !important;
  display: block;
  height: auto;
  padding: 19px 40px;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .main-title,
  .webseminar.specialized .main-title,
  .webseminar.archives .main-title {
    margin-top: -46.13333%;
  }
}
.webseminar.financial_practice .main-title small,
.webseminar.specialized .main-title small,
.webseminar.archives .main-title small {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .main-title small,
  .webseminar.specialized .main-title small,
  .webseminar.archives .main-title small {
    margin-top: 3%;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.webseminar.financial_practice .anchor,
.webseminar.specialized .anchor,
.webseminar.archives .anchor {
  border-top: 1px solid #CEC8B7;
}
.webseminar.financial_practice .training-title,
.webseminar.specialized .training-title,
.webseminar.archives .training-title {
  background: #065FE3;
}
.webseminar.financial_practice .contents-inner,
.webseminar.specialized .contents-inner,
.webseminar.archives .contents-inner {
  background: url("../img/common/bg_contents.webp") center bottom no-repeat #f7f8fa;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .webseminar.financial_practice .contents-inner,
  .webseminar.specialized .contents-inner,
  .webseminar.archives .contents-inner {
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}

@media screen and (max-width: 768px) {
  .webseminar.specialized .main-visual-inner {
    padding-top: 46.13333%;
  }
}
.webseminar.specialized .tab-list {
  display: flex;
  width: 1180px;
  margin: 0 auto;
  padding: 10px 0 40px;
}
@media screen and (max-width: 1180px) {
  .webseminar.specialized .tab-list {
    justify-content: space-between;
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.specialized .tab-list {
    flex-wrap: wrap;
    width: 90%;
    margin-top: -3%;
    padding: 5% 0;
  }
}
.webseminar.specialized .tab-item {
  width: 281px;
  margin-right: 18px;
  font-size: 16px;
  line-height: 52px;
  text-align: center;
}
@media screen and (max-width: 1180px) {
  .webseminar.specialized .tab-item {
    width: 24%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .webseminar.specialized .tab-item {
    width: 48%;
    margin-top: 3%;
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
  }
}
.webseminar.specialized .tab-item:last-child {
  margin-right: 0;
}
.webseminar.specialized .tab-item a {
  display: block;
  background: #BBB;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .webseminar.specialized .tab-item a {
    padding: 5% 0;
  }
}
.webseminar.specialized .tab-item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  background: #5c94e7;
}
.webseminar.specialized .tab-item.-is-active {
  position: relative;
}
.webseminar.specialized .tab-item.-is-active:before {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-top: solid 10px #5c94e7;
  border-right: solid 9px transparent;
  border-bottom: solid 9px transparent;
  border-left: solid 9px transparent;
}
@media screen and (max-width: 768px) {
  .webseminar.specialized .tab-item.-is-active:before {
    bottom: -15px;
    border-top: solid 8px #5c94e7;
    border-right: solid 7px transparent;
    border-bottom: solid 7px transparent;
    border-left: solid 7px transparent;
  }
}
.webseminar.specialized .tab-item.-is-active a {
  background: #5c94e7;
}
.webseminar.specialized .contents-inner {
  background: url("../webseminar/specialized/img/contents_inner_bg.jpg") right bottom no-repeat #f2f8ff;
}
@media screen and (max-width: 768px) {
  .webseminar.specialized .contents-inner {
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}

#sales .subject-title {
  color: #0c91c2;
}
#sales .solution::after {
  background: rgba(12, 145, 194, 0.6);
}

#personnel .subject-title {
  color: #04ad7b;
}
#personnel .solution::after {
  background: rgba(4, 173, 123, 0.6);
}

#account .subject-title {
  color: #af7904;
}
#account .solution::after {
  background: rgba(175, 121, 4, 0.6);
}

#general .subject-title {
  color: #dc1054;
}
#general .solution::after {
  background: rgba(220, 16, 84, 0.6);
}

#legal .subject-title {
  color: #694ab6;
}
#legal .solution::after {
  background: rgba(105, 74, 182, 0.6);
}

#planning .subject-title {
  color: #d6600c;
}
#planning .solution::after {
  background: rgba(214, 96, 12, 0.6);
}

.webseminar.problem_solving .main-title {
  display: block;
  height: auto;
  padding: 21px 40px;
}
.webseminar.problem_solving .main-title .small {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .main-title .small {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.webseminar.problem_solving .main-box::after {
  display: none;
}
.webseminar.problem_solving .main-box-about {
  width: 1280px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .main-box-about {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 4%;
  }
}
.webseminar.problem_solving .main-box-about dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: #E4F1FF;
  box-shadow: 0px 0px 10px -2px rgba(148, 148, 148, 0.8);
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .main-box-about dl {
    display: block;
    padding: 30px 5%;
  }
}
.webseminar.problem_solving .main-box-about dt, .webseminar.problem_solving .main-box-about dd {
  box-sizing: border-box;
}
.webseminar.problem_solving .main-box-about dt {
  min-width: 200px;
  font-size: 18px;
  text-align: center;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .main-box-about dt {
    min-width: none;
  }
}
.webseminar.problem_solving .main-box-about dt span {
  font-size: 12px;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .main-box-about dt span {
    margin-top: 5px;
  }
}
.webseminar.problem_solving .main-box-about dd {
  width: 1100px;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .main-box-about dd {
    width: 100%;
    padding-left: 0;
    padding-top: 15px;
    margin-top: 15px;
  }
}
.webseminar.problem_solving .main-box-about dd::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #065FE3;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .main-box-about dd::after {
    width: 100%;
    height: 2px;
  }
}
.webseminar.problem_solving .main-box-about dd p {
  font-size: 15px;
  line-height: 1.8;
}
.webseminar.problem_solving .main-box-about dd span {
  color: #cc0066;
}
.webseminar.problem_solving .main-box-text p {
  font-size: 15px;
  line-height: 1.8;
}
.webseminar.problem_solving .main-box-text p:not(:last-child) {
  margin-bottom: 20px;
}
.webseminar.problem_solving .training {
  margin-top: 0;
}
.webseminar.problem_solving .problem-solving {
  padding: 100px 0;
  background-image: url("../img/problem_solving_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: #cfcecb;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving {
    padding: 40px 0;
  }
}
.webseminar.problem_solving .problem-solving .content-inner {
  width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .content-inner {
    width: 90%;
  }
}
.webseminar.problem_solving .problem-solving .problem-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .problem-lists {
    display: block;
    margin-bottom: 50px;
  }
}
.webseminar.problem_solving .problem-solving .problem-item {
  width: 590px;
  margin-bottom: 40px;
  box-shadow: 0px 0px 10px -2px rgba(148, 148, 148, 0.8);
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .problem-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.webseminar.problem_solving .problem-solving .problem-item a {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 8px 8px 0 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .problem-item a {
    padding: 8px;
  }
}
.webseminar.problem_solving .problem-solving .problem-item a:hover {
  opacity: 1;
}
.webseminar.problem_solving .problem-solving .problem-item a.no-ready .solution:after {
  background: rgba(152, 152, 152, 0.7) !important;
}
.webseminar.problem_solving .problem-solving .subject {
  width: 315px;
  position: relative;
  margin-bottom: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .subject {
    width: 47%;
    margin: 0 3% 0 0;
    min-height: 75px;
  }
}
.webseminar.problem_solving .problem-solving .subject::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 35px;
  border-top: 1px solid #97b5c1;
  border-left: 1px solid #97b5c1;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .subject::before {
    width: 40px;
    height: 15px;
  }
}
.webseminar.problem_solving .problem-solving .subject::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 35px;
  border-bottom: 1px solid #97b5c1;
  border-right: 1px solid #97b5c1;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .subject::after {
    width: 40px;
    height: 15px;
  }
}
.webseminar.problem_solving .problem-solving .subject-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.7;
  padding: 15px 20px 0 20px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .subject-title {
    font-size: 10px;
    font-size: 2.66667vw;
    line-height: 1.3;
    padding: 5px 5px 0 5px;
  }
}
.webseminar.problem_solving .problem-solving .subject-number {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #97b5c1;
  font-size: 14px;
  font-weight: bold;
  font-family: "Helvetica Neue" , Helvetica, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", arial, helvetica, sans-serif;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .subject-number {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.problem_solving .problem-solving .subject-number span {
  font-size: 25px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .subject-number span {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.webseminar.problem_solving .problem-solving .item-figure {
  width: 250px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: -8px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .item-figure {
    width: 50%;
    margin-bottom: 0;
  }
}
.webseminar.problem_solving .problem-solving .item-caption {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.webseminar.problem_solving .problem-solving .solution {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  height: 65px;
  line-height: 65px;
  padding: 0 30px;
  text-align: center;
  transition: all 0.25s ease-out;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .solution {
    height: auto;
    line-height: 0;
    padding: 8% 0;
  }
}
.webseminar.problem_solving .problem-solving .solution::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: '';
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -175%, 0);
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .solution::before {
    display: none;
  }
}
.webseminar.problem_solving .problem-solving .solution::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  box-sizing: border-box;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: all .2s ease-out;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .solution::after {
    left: 0;
  }
}
.webseminar.problem_solving .problem-solving .solution span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  opacity: 0;
  transition: opacity .2s ease-out;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .solution span {
    opacity: 1;
    font-size: 10px;
    font-size: 2.66667vw;
  }
}
.webseminar.problem_solving .problem-solving .solution span::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  transition: all 0.35s 0.1s;
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .solution span::after {
    font-size: 11px;
    font-size: 2.93333vw;
    padding-left: 5px;
  }
}
.webseminar.problem_solving .problem-solving .problem-item a:hover .solution {
  opacity: 1;
}
.webseminar.problem_solving .problem-solving .problem-item a:hover .solution::before {
  animation-name: background-light;
  animation-duration: .4s;
  animation-timing-function: ease-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
}
.webseminar.problem_solving .problem-solving .problem-item a:hover .solution::after {
  left: 0;
}
.webseminar.problem_solving .problem-solving .problem-item a:hover .solution span {
  opacity: 1;
}
@keyframes background-light {
  0% {
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -175%, 0);
  }
  100% {
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 175%, 0);
  }
}
.webseminar.problem_solving .problem-solving .lecture-block {
  padding: 40px;
  background: #fff;
  box-shadow: 0px 0px 20px -3px rgba(148, 148, 148, 0.8);
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .lecture-block {
    padding: 6%;
  }
}
.webseminar.problem_solving .problem-solving .lecture-title {
  margin: 0 auto 30px;
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 3px solid #e8decf;
  position: relative;
}
.webseminar.problem_solving .problem-solving .lecture-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 75px;
  height: 3px;
  background: #065FE3;
}
.webseminar.problem_solving .problem-solving .lecture dl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .lecture dl {
    display: block;
  }
}
.webseminar.problem_solving .problem-solving .lecture dl:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #e8decf;
}
.webseminar.problem_solving .problem-solving .lecture-info {
  display: flex;
  width: 460px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .lecture-info {
    width: 100%;
    margin-bottom: 20px;
  }
}
.webseminar.problem_solving .problem-solving .lecture-info .lecture-pic img {
  max-width: 100px;
}
.webseminar.problem_solving .problem-solving .lecture-name {
  padding-left: 35px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .lecture-name {
    padding-left: 20px;
  }
}
.webseminar.problem_solving .problem-solving .lecture-name .name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .lecture-name .name {
    font-size: 17px;
    font-size: 4.53333vw;
  }
}
.webseminar.problem_solving .problem-solving .lecture-name .belongs {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .lecture-name .belongs {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.webseminar.problem_solving .problem-solving .lecture-profile {
  width: 720px;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .lecture-profile {
    width: 100%;
  }
}
.webseminar.problem_solving .problem-solving .lecture-profile p {
  font-size: 13px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .webseminar.problem_solving .problem-solving .lecture-profile p {
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
