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

File Name: webseminar_test.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;
  }
}

/*----------------------------------------------------------------------
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-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 .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;
  }
}

.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;
}

/*----------------------------------------------------------------------
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.	ページ別個別設定
----------------------------------------------------------------------*/
/*-----------------------------
  共通パーツ
-----------------------------*/
.anchor {
  padding: 30px 0 25px;
  border-top: 1px solid #CEC8B7;
  border-bottom: 1px solid #CEC8B7;
}
@media screen and (max-width: 768px) {
  .anchor {
    padding: 5% 0;
    border: none;
  }
}
.anchor-inner {
  width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .anchor-inner {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .anchor-inner {
    width: 90%;
  }
}
.anchor-title {
  margin-bottom: 15px;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .anchor-title {
    margin-bottom: 1%;
    font-size: 19px;
    font-size: 5.06667vw;
    line-height: 1.2;
  }
}
.anchor-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: -2px;
}
@media screen and (max-width: 768px) {
  .anchor-list {
    justify-content: space-between;
  }
}
.anchor-list + .anchor-list {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .anchor-list + .anchor-list {
    margin-top: 0;
  }
}
.anchor-item {
  width: calc(20% - 2px);
  margin: 2px 2px 0 0;
}
@media screen and (max-width: 768px) {
  .anchor-item {
    width: 49%;
    margin: 5px 0 0;
  }
}
.anchor-item.-fp1 a {
  padding: 0 6px 0 30px;
  background: #FFE59C;
}
@media screen and (max-width: 768px) {
  .anchor-item.-fp1 a {
    padding: 0 3% 0 11%;
  }
}
.anchor-item.-it a {
  background: #d6f9a9;
}
@media screen and (max-width: 768px) {
  .anchor-item.-w100 {
    width: 100%;
  }
}
.anchor-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  min-height: 44px;
  padding: 5px 15px 5px 35px;
  background: #E4F1FF;
  color: #000;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .anchor-item a {
    padding: 5px 5px 5px 25px;
    font-size: 12px;
  }
}
.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) {
  .anchor-item a:before {
    left: 3%;
    font-size: 13px;
  }
}
.anchor-item a:hover {
  text-decoration: none;
}
.anchor-item.-red a {
  background: #faebd7;
}
.anchor-item.-red a::before {
  color: #c10100;
}
.anchor-item.-green a {
  background: #98fb98;
}
.anchor-item.-green a::before {
  color: #01b051;
}
.anchor-item.-yellow a {
  background: #fffacd;
}
.anchor-item.-yellow a::before {
  color: #ffc000;
}
@media screen and (max-width: 768px) {
  .anchor + .training {
    margin-top: 0;
  }
}

.training {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .training:nth-child(2) {
    margin-top: 0;
  }
}
.training-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  line-height: 68px;
  background: #065FE3;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .training-title {
    padding: 10px 15px 6px;
    font-size: 21px;
    font-size: 5.6vw;
    line-height: 1.4;
  }
}

.contents {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .contents {
    margin-bottom: 8%;
  }
}
.contents:last-child {
  margin-bottom: 0;
}
.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) {
  .contents-title {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .contents-title {
    width: 90%;
    margin: 12% auto 6%;
    padding-bottom: 2%;
    font-size: 20px;
    font-size: 5.33333vw;
    line-height: 1.2;
  }
}
.contents-title span {
  margin: 0 0 0 10px;
  font-size: 20px;
  font-weight: bold;
  color: #FF0000;
}
.contents-webtest-button {
  width: 450px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .contents-webtest-button {
    width: 100%;
    margin: 8% auto 6%;
  }
}
.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) {
  .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;
  }
}
.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;
}
.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) {
  .contents-webtest-button a:before {
    left: 5%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.contents-notice {
  width: 1280px;
  margin: 0 auto;
  color: #02348B;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .contents-notice {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .contents-notice {
    width: 90%;
    margin-bottom: 4.5%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 420px) {
  .contents-notice {
    margin-bottom: 7%;
  }
}
.contents .lecture {
  *zoom: 1;
  display: flex;
  flex-wrap: wrap;
  width: 1280px;
  margin: -30px auto 50px;
}
.contents .lecture:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1280px) {
  .contents .lecture {
    width: 94%;
  }
}
@media screen and (max-width: 1024px) {
  .contents .lecture {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .contents .lecture {
    width: 90%;
    margin: 0 auto 8%;
  }
}
.contents .lecture dl {
  width: 50%;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .contents .lecture dl {
    width: 100%;
    min-height: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .contents .lecture dl:not(:first-child) {
    margin-top: 7%;
  }
}
.contents .lecture dl.-w100 {
  width: 100%;
}
.contents .lecture-pic {
  float: left;
  width: 100px;
  height: 100px;
  margin: 0 35px 0 0;
}
@media screen and (max-width: 1024px) {
  .contents .lecture-pic {
    margin: 0 5% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .contents .lecture-pic {
    width: 20.89552%;
    max-width: 100px;
    height: auto;
  }
}
.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;
}
.contents .lecture .name {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contents .lecture .name {
    margin-bottom: 3%;
    font-size: 16px;
    font-size: 4.26667vw;
  }
}
.contents .lecture .belongs {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.46667;
}
@media screen and (max-width: 768px) {
  .contents .lecture .belongs {
    margin-bottom: 2%;
    font-size: 13px;
    font-size: 3.46667vw;
    line-height: 1.30769;
  }
}
.contents .lecture .profile {
  display: none;
}
.contents .lecture .profile a {
  position: relative;
  color: #000;
  font-size: 15px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .contents .lecture .profile a {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
.contents .lecture .profile a:hover {
  text-decoration: none;
}
.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;
}
.contents .lecture.lecture__2 dl {
  width: 50% !important;
}
@media screen and (max-width: 1024px) {
  .contents .lecture.lecture__2 dl {
    width: 100% !important;
  }
}
.contents .lecture.lecture__2 dl:not(:last-child) .belongs {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .contents .lecture.lecture__2 dl:not(:last-child) .belongs {
    margin-right: 0;
  }
}
.contents .lecture.lecture__3 dl {
  width: calc(100% / 3) !important;
}
@media screen and (max-width: 1024px) {
  .contents .lecture.lecture__3 dl {
    width: 100% !important;
  }
}
.contents .lecture.lecture__3 dl:not(:last-child) .belongs {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .contents .lecture.lecture__3 dl:not(:last-child) .belongs {
    margin-right: 0;
  }
}
.contents .lecture.webtestbtn {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .contents .lecture.webtestbtn {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .contents .lecture.webtestbtn {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .contents .lecture.webtestbtn dl {
    margin-top: 0 !important;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .contents .lecture.webtestbtn dl {
    margin-top: 7%;
    width: 100%;
  }
}
.contents .lecture.webtestbtn .lecture-webtestbtn {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .contents .lecture.webtestbtn .lecture-webtestbtn {
    justify-content: center;
    margin: 10px 0 0;
  }
}
.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) {
  .contents .lecture.webtestbtn .lecture-webtestbtn a {
    padding: 0;
    width: 100%;
    height: 40px;
    max-width: 330px;
    font-size: 14px;
  }
}
.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;
}
.contents-inner {
  clear: both;
  padding: 50px 0;
  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) {
  .contents-inner {
    padding: 15% 0;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.contents-inner-title {
  width: 1280px;
  margin: 50px auto 25px;
  color: #02348B;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .contents-inner-title {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .contents-inner-title {
    width: 90%;
    margin-bottom: 6.5%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 420px) {
  .contents-inner-title {
    margin-bottom: 9%;
  }
}
.contents-inner-title:first-child {
  margin-top: 0;
}
.contents-list {
  display: flex;
  flex-wrap: wrap;
  width: 1280px;
  margin: -30px auto 0;
}
@media screen and (max-width: 1280px) {
  .contents-list {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .contents-list {
    width: 90%;
  }
}
.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) {
  .contents-item {
    width: 32%;
    margin: 2.5% 2% 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .contents-item {
    width: 48.5%;
    margin: 2.5% 3% 0 0;
  }
}
@media screen and (max-width: 768px) {
  .contents-item {
    width: 100%;
    min-height: auto;
    margin: 4% 0 0 !important;
    padding: 6% 4%;
  }
}
.contents-item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1280px) {
  .contents-item:nth-child(4n) {
    margin-right: 2%;
  }
}
@media screen and (max-width: 1280px) {
  .contents-item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .contents-item:nth-child(3n) {
    margin-right: 3%;
  }
}
@media screen and (max-width: 1024px) {
  .contents-item:nth-child(even) {
    margin-right: 0 !important;
  }
}
.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) {
  .contents-item:before {
    top: -10px;
    font-size: 45px;
    font-size: 12vw;
  }
}
.contents-item:nth-child(1):before {
  content: "01";
}
.contents-item:nth-child(2):before {
  content: "02";
}
.contents-item:nth-child(3):before {
  content: "03";
}
.contents-item:nth-child(4):before {
  content: "04";
}
.contents-item:nth-child(5):before {
  content: "05";
}
.contents-item:nth-child(6):before {
  content: "06";
}
.contents-item:nth-child(7):before {
  content: "07";
}
.contents-item:nth-child(8):before {
  content: "08";
}
.contents-item:nth-child(9):before {
  content: "09";
}
.contents-item:nth-child(10):before {
  content: "10";
}
.contents-item:nth-child(11):before {
  content: "11";
}
.contents-item:nth-child(12):before {
  content: "12";
}
.contents-item:nth-child(13):before {
  content: "13";
}
.contents-item:nth-child(14):before {
  content: "14";
}
.contents-item:nth-child(15):before {
  content: "15";
}
.contents-item:nth-child(16):before {
  content: "16";
}
.contents-item:nth-child(17):before {
  content: "17";
}
.contents-item:nth-child(18):before {
  content: "18";
}
.contents-item:nth-child(19):before {
  content: "19";
}
.contents-item:nth-child(20):before {
  content: "20";
}
.contents-item:nth-child(21):before {
  content: "21";
}
.contents-item:nth-child(22):before {
  content: "22";
}
.contents-item:nth-child(23):before {
  content: "23";
}
.contents-item:nth-child(24):before {
  content: "24";
}
.contents-item:nth-child(25):before {
  content: "25";
}
.contents-item:nth-child(26):before {
  content: "26";
}
.contents-item:nth-child(27):before {
  content: "27";
}
.contents-item:nth-child(28):before {
  content: "28";
}
.contents-item:nth-child(29):before {
  content: "29";
}
.contents-item:nth-child(30):before {
  content: "30";
}
.contents-item:nth-child(31):before {
  content: "31";
}
.contents-item:nth-child(32):before {
  content: "32";
}
.contents-item:nth-child(33):before {
  content: "33";
}
.contents-item:nth-child(34):before {
  content: "34";
}
.contents-item:nth-child(35):before {
  content: "35";
}
.contents-item:nth-child(36):before {
  content: "36";
}
.contents-item:nth-child(37):before {
  content: "37";
}
.contents-item:nth-child(38):before {
  content: "38";
}
.contents-item:nth-child(39):before {
  content: "39";
}
.contents-item:nth-child(40):before {
  content: "40";
}
.contents-item:nth-child(41):before {
  content: "41";
}
.contents-item:nth-child(42):before {
  content: "42";
}
.contents-item:nth-child(43):before {
  content: "43";
}
.contents-item:nth-child(44):before {
  content: "44";
}
.contents-item:nth-child(45):before {
  content: "45";
}
.contents-item:nth-child(46):before {
  content: "46";
}
.contents-item:nth-child(47):before {
  content: "47";
}
.contents-item:nth-child(48):before {
  content: "48";
}
.contents-item:nth-child(49):before {
  content: "49";
}
.contents-item:nth-child(50):before {
  content: "50";
}
.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) {
  .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) {
  .contents-item-title br {
    display: none;
  }
}

.multiple-lecturers .contents-item {
  min-height: 150px;
}
.multiple-lecturers .sub-contents-term {
  color: #007BC7;
  margin-bottom: 15px;
}
.multiple-lecturers .sub-contents-term.sub-contents-term__lh {
  line-height: 1.3;
}
.multiple-lecturers .sub-contents-item::before {
  display: none;
}
.multiple-lecturers .sub-contents-description .time {
  top: 8px;
}

@media screen and (max-width: 768px) {
  .sub-contents {
    margin-bottom: 10%;
  }
}
.sub-contents-term {
  margin-bottom: 8px;
  color: #e40054;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sub-contents-term {
    margin-bottom: 2%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.sub-contents-description {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-contents-description {
    position: unset;
  }
}
.sub-contents-description .time {
  position: absolute;
  right: 0;
  top: -23px;
  font-size: 1.4em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sub-contents-description .time {
    right: 4%;
    top: 0;
    bottom: unset;
    margin-top: 17.2%;
    padding-left: 5%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.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) {
  .sub-contents-description .time:before {
    top: unset;
    left: 0;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.sub-contents-item {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.42857;
}
@media screen and (max-width: 768px) {
  .sub-contents-item {
    font-size: 14px;
    font-size: 3.73333vw;
    line-height: 1.42857;
  }
}
.sub-contents-item:before {
  content: "・";
  position: absolute;
  left: 0;
}
.sub-contents-date {
  display: none;
  position: absolute;
  bottom: 18px;
  color: #555;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .sub-contents-date {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.sub-contents-movie {
  position: absolute;
  right: 0;
  bottom: 5px;
}
@media screen and (max-width: 768px) {
  .sub-contents-movie {
    width: 45%;
  }
}
.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) {
  .sub-contents-movie a {
    width: auto;
    height: auto;
    padding: 7% 0;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.sub-contents-movie a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  background: #0052B2;
}
.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) {
  .sub-contents-movie a:before {
    left: 10%;
    padding-left: 8%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.sub-contents-movie a.noready {
  background: #888;
  pointer-events: none;
}

/* FP1級用 */
#option_fp .contents-item {
  min-height: 160px;
}
@media screen and (max-width: 768px) {
  #option_fp .contents-item {
    min-height: auto;
  }
}

#individuals.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_individuals.webp") 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("../img/financial_practice/kv_individuals_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#corporations.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_corporations.webp") 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("../img/financial_practice/kv_corporations_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#contact.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_contact.webp") 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("../img/financial_practice/kv_contact_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#branch.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_branch.webp") 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("../img/financial_practice/kv_branch_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#headquarters.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_headquarters.webp") 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("../img/financial_practice/kv_headquarters_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#financial_operations_basic2.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_financial_operations_basic2.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #financial_operations_basic2.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_financial_operations_basic2_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#trend_theme.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_trend_theme.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #trend_theme.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_trend_theme_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#compliance.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_compliance.webp") 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("../img/financial_practice/kv_compliance_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#technology.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_technology.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #technology.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_technology_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#business_model.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_business_model.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #business_model.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_business_model_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#money_laundering.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_money_laundering.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #money_laundering.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_money_laundering_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#asset_management.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_asset_management.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #asset_management.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_asset_management_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#corporate_financing.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_corporate_financing.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #corporate_financing.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_corporate_financing_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#manda.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_manda.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #manda.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_manda_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#inheritance.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_inheritance.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #inheritance.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_inheritance_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#qualification.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_qualification.webp") 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("../img/financial_practice/kv_qualification_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

#option_fp.financial_practice .main-visual {
  background: url("../img/financial_practice/kv_option_fp.webp") center bottom no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #option_fp.financial_practice .main-visual {
    background: url("../img/financial_practice/kv_option_fp_sp.webp") center bottom no-repeat;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}

.main-title {
  display: block !important;
  height: auto !important;
  padding: 19px 40px !important;
  text-shadow: none !important;
  background: #065FE3;
}
@media screen and (max-width: 768px) {
  .main-title {
    margin-top: -46.13333%;
  }
}
.main-title small {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main-title small {
    margin-top: 3%;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}
