@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: seminar.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: "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, 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;
  overflow-x: hidden;
}
body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
  background: #FAFAFA;
}
* 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;
  }
}

.right-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.right-nav a {
  position: relative;
}
.right-nav a img {
  transition: opacity 0.5s;
  animation-timing-function: cubic-bezier(0.3, -0.05, 0.7, -0.5);
  animation-duration: 500ms;
}
.right-nav a img:last-of-type {
  position: absolute;
  right: 0;
  opacity: 0;
}
.right-nav a:hover img:first-of-type {
  opacity: 0;
}
.right-nav a:hover img:last-of-type {
  opacity: 1;
}

/* 旧デザイン */
	/*
	.right-nav {
		display: none;
		position: fixed;
		bottom: 10px;
		right: 10px;
		z-index: 1000;

		a {
			@include transition(opacity $mouseover linear);
			display: block;

			&:hover {
				@include opacity(.7);
			}
		}

		img {
			@include sp() {
				width: 45px;
				height: 45px;
			}
		}
	}
	*/
/* 旧デザイン */
.optimize-origin {
  right: 80px !important;
  bottom: 20px !important;
}

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

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
  background: #FFF;
  border-bottom: 1px solid #050126;
}
@media screen and (max-width: 768px) {
  .header {
    border-bottom: none;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 1440px;
  height: 99px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .header-inner {
    margin: 0 15px;
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    padding: 0 15px;
    width: 100%;
    height: 50px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
}
.header-logo img {
  width: 150px;
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 85px;
    height: 28px;
  }
}

.header-nav {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .header-nav {
    margin: 12px 45px 0 0;
  }
}

.header-nav-top {
  margin: 0 0 17px;
}
@media screen and (max-width: 768px) {
  .header-nav-top {
    display: none;
  }
}
.header-nav-top ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.header-nav-top ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: solid 2px #FFF;
  font-size: 16px;
  font-weight: 500;
  color: #050126;
}
.header-nav-top ul li a::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
}
.header-nav-top ul li a:hover {
  opacity: 1;
  border-bottom: solid 2px #050126;
}
.header-nav-top ul li a:hover::before {
  transform: rotate(-30deg);
}
.header-nav-top ul li.company a::before {
  background: url("../img/common/ic_company.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-top ul li.recruit a::before {
  background: url("../img/common/ic_recruit.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-top ul li.hakenform a::before {
  background: url("../img/common/ic_hakenform.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-top ul li.tel a::before {
  background: url("../img/common/ic_phone.webp") no-repeat 0 0;
  background-size: contain;
}

.header-nav-bottom ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-nav-bottom ul li a {
  position: relative;
  padding: 0 0 15px;
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}
.header-nav-bottom ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
  width: 100%;
  height: 5px;
  border: solid 1px #050126;
  background: #25AEEA;
}
.header-nav-bottom ul li a:hover {
  opacity: 1;
}
.header-nav-bottom ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
@media screen and (max-width: 768px) {
  .header-nav-bottom ul li.home {
    display: none;
  }
}
.header-nav-bottom ul li.home img {
  width: 22px;
  height: 22px;
}
.header-nav-bottom ul li.home a {
  padding: 0 0 12px;
}
@media screen and (max-width: 768px) {
  .header-nav-bottom ul li.txtlink {
    display: none;
  }
}
.header-nav-bottom ul li.active a::after {
  transform: scale(1, 1);
}
.header-nav-bottom ul li.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 2px;
  width: 110px;
  height: 26px;
  border-radius: 15px;
  border: solid 1px #050126;
  font-size: 13px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
.header-nav-bottom ul li.btn a::after {
  content: none;
}
.header-nav-bottom ul li.btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .header-nav-bottom ul li.btn__red {
    display: none;
  }
}
.header-nav-bottom ul li.btn__red a {
  background: #FFAFE0;
}

.header-nav-btn {
  margin: 0 0 21px;
}
@media screen and (max-width: 768px) {
  .header-nav-btn {
    margin: 0;
  }
}
.header-nav-btn ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .header-nav-btn ul li.tel {
    display: none;
  }
}
.header-nav-btn ul li.tel a {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: solid 2px #FFF;
  font-size: 16px;
  font-weight: 500;
  color: #050126;
}
.header-nav-btn ul li.tel a::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url("../img/common/ic_phone.webp") no-repeat 0 0;
  background-size: contain;
}
.header-nav-btn ul li.tel a:hover {
  opacity: 1;
  border-bottom: solid 2px #050126;
}
.header-nav-btn ul li.tel a:hover::before {
  transform: rotate(-30deg);
}
.header-nav-btn ul li.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 2px;
  width: 110px;
  height: 26px;
  border-radius: 15px;
  border: solid 1px #050126;
  font-size: 13px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
.header-nav-btn ul li.btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .header-nav-btn ul li.btn__red {
    display: none;
  }
}
.header-nav-btn ul li.btn__red a {
  background: #FFAFE0;
}

.header-nav-list {
  margin: 0 15px 0 0;
}
@media screen and (max-width: 768px) {
  .header-nav-list {
    display: none;
  }
}
.header-nav-list ul {
  display: flex;
  gap: 20px;
}
.header-nav-list ul li a {
  position: relative;
  padding: 0 0 15px;
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}
.header-nav-list ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
  width: 100%;
  height: 5px;
  border: solid 1px #050126;
  background: #25AEEA;
}
.header-nav-list ul li a:hover {
  opacity: 1;
}
.header-nav-list ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
.header-nav-list ul li.header-nav-list-home {
  position: relative;
  top: -4px;
}
.header-nav-list ul li.header-nav-list-home img {
  width: 22px;
  height: 22px;
}
.header-nav-list ul li.header-nav-list-home a {
  padding: 0 0 12px;
}
.header-nav-list ul li.active a::after {
  transform: scale(1, 1);
}

/* 旧デザイン */
@media screen and (min-width: 769px) {
  .is-animation .header__upper {
    margin-top: -100px;
  }
}
.header {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
  background: #FFF;
  border-bottom: 1px solid #BEBEBE;
}
@media screen and (max-width: 768px) {
  .header {
    border-bottom: none;
  }
}
.header__inner {
  *zoom: 1;
  width: 1180px;
  margin: 0 auto;
}
.header__inner:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1210px) {
  .header__inner {
    width: 96%;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    width: 94%;
    padding: 9px 0;
  }
}
.header__upper {
  *zoom: 1;
  height: auto;
  margin-bottom: 10px;
  transition: .5s;
  overflow: hidden;
  padding-top: 26px;
  margin-top: 0;
  transition: margin 100ms;
}
.header__upper:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 768px) {
  .header__upper {
    padding-top: 0;
    margin-bottom: 0;
  }
}
.header__upper .logo {
  float: left;
  width: 190px;
}
@media screen and (max-width: 768px) {
  .header__upper .logo {
    width: 25.33333%;
  }
}
.header__upper .logo img {
  width: 100%;
  height: auto;
}
.header__upper__right {
  float: right;
}
@media screen and (max-width: 768px) {
  .header__upper__right {
    display: none;
  }
}
.header__upper__right__link {
  margin-top: 10px;
  text-align: right;
}
.header__upper__right__link a {
  color: #000;
  font-size: 12px;
  text-decoration: underline;
}
.header__upper__right__link a:hover {
  text-decoration: none;
}
.header__upper__right__link a:after {
  content: " ＞";
}
.header__contact__list {
  *zoom: 1;
}
.header__contact__list:after {
  content: "";
  display: table;
  clear: both;
}
.header__contact__item {
  float: left;
}
@media screen and (max-width: 768px) {
  .header__contact__item {
    float: none;
  }
}
.header__contact__item.-tel, .header__contact__item.-fax {
  margin: 3px 28px 0 0;
}
@media screen and (max-width: 768px) {
  .header__contact__item.-tel, .header__contact__item.-fax {
    margin: 0 0 5%;
  }
}
.header__contact__item.-tel:last-child, .header__contact__item.-fax:last-child {
  margin-right: 0;
}
.header__contact__item.-tel a, .header__contact__item.-fax a {
  position: relative;
  padding-left: 27px;
  color: #4b4b4b;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
  font-size: 22px;
  font-weight: bold;
  cursor: auto;
}
@media screen and (max-width: 768px) {
  .header__contact__item.-tel a, .header__contact__item.-fax a {
    font-size: 24px;
  }
}
.header__contact__item.-tel a:hover, .header__contact__item.-fax a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.header__contact__item.-tel a:before, .header__contact__item.-fax a:before {
  content: "";
  position: absolute;
  left: 0;
}
.header__contact__item.-tel a.-tel:before, .header__contact__item.-fax a.-tel:before {
  top: 1px;
  width: 22px;
  height: 22px;
  background: url("../img/header_contact_item_tel_bg.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
.header__contact__item.-tel a.-fax:before, .header__contact__item.-fax a.-fax:before {
  top: 3px;
  width: 19px;
  height: 19px;
  background: url("../img/header_contact_item_fax_bg.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .header__contact__item.-fax {
    margin-bottom: 7%;
  }
}
.header__contact__item.-inquiry a {
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  display: block;
  position: relative;
  padding: 7px 36px 6px 30px;
  background: #009fe8;
  color: #FFF;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header__contact__item.-inquiry a {
    padding: 17px 36px 16px 30px;
    font-size: 16px;
  }
}
.header__contact__item.-inquiry a:before {
  display: flex;
  align-items: center;
  position: absolute;
  right: 11px;
  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) {
  .header__contact__item.-inquiry a:before {
    right: 20px;
  }
}
.header__lower {
  float: right;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .header__lower {
    display: none;
  }
}
.header__nav__list {
  *zoom: 1;
}
.header__nav__list:after {
  content: "";
  display: table;
  clear: both;
}
.header__nav__item {
  position: relative;
  float: left;
}
.header__nav__item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 24px;
  background: #BEBEBE;
}
.header__nav__item:last-child:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 24px;
  background: #BEBEBE;
}
.header__nav__item a {
  display: block;
  padding: 0 18px 22px;
  color: #000;
  font-size: 14px;
}
.header__nav__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #009FE8;
}
.header__nav__item.-is-active > a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  width: 78%;
  height: 3px;
  margin: auto;
  background: #009FE8;
}
.header__nav__item.megamenu {
  position: relative;
}

.megamenu__box {
  display: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  top: 70px;
  left: -35%;
  right: 0;
  width: calc(100% + 20px);
  -webkit-transition-duration: 56s;
  transition-duration: .5s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.megamenu__box:before, .megamenu__box:after {
  content: "";
  position: absolute;
  width: 170%;
  margin: auto;
  left: 0;
  right: 0;
}
.megamenu__box:before {
  height: 25px;
  top: -40px;
}
.megamenu__box:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  left: 0;
  right: 0;
  top: -20px;
  height: 122%;
  background: #FFF;
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  z-index: 1;
}
.megamenu__box.-is-shown {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.megamenu__box.-is-shown:after {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.megamenu__list {
  position: relative;
  z-index: 100;
  width: 170%;
  padding: 0 20%;
}
.megamenu__item {
  line-height: 2.14286;
}
.megamenu__item a {
  padding: 0;
  text-align: center;
}

.drawernav__item {
  position: relative;
  border-bottom: 1px solid #009FE8;
}
.drawernav__item a {
  display: block;
  position: relative;
  padding: 20px 0 20px 30px;
  color: #000;
  font-size: 15px;
  font-weight: bold;
}
.drawernav__item a:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: '';
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33px;
  width: 7px;
  height: 7px;
  margin: auto;
  border: 0px;
  border-top: 2px solid #009fe8;
  border-right: 2px solid #009fe8;
  cursor: pointer;
}
.drawernav__contact__list {
  margin: 5% 30px;
}

/* 旧デザイン */
/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
#content {
  margin: 100px 0 0;
}

/* 旧デザイン */
	/*
	#content {
		margin: 149px 0 0;
		padding-bottom: 80px;

		@include sp() {
			padding-bottom: 15%;
		}
	}
	*/
/* 旧デザイン */
#content {
  padding-bottom: 0;
}

/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
.topicpath__list {
  *zoom: 1;
  width: 1180px;
  margin: 0 auto;
  padding: 15px 0 5px;
}
.topicpath__list:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 1180px) {
  .topicpath__list {
    width: 96%;
  }
}
@media screen and (max-width: 768px) {
  .topicpath__list {
    display: none;
  }
}
.topicpath__item {
  position: relative;
  float: left;
  margin-right: 25px;
  font-size: 12px;
}
.topicpath__item:after {
  content: '＞';
  position: absolute;
  top: 0;
  right: -20px;
  font-size: 12px;
}
.topicpath__item:last-child {
  margin-right: 0;
}
.topicpath__item:last-child:after {
  content: none;
}
.topicpath__item a {
  color: #000;
  font-size: 12px;
}
.topicpath__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #009FE8;
}

.main__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1180px;
  height: 240px;
  margin: auto;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1180px) {
  .main__visual {
    width: 100%;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .main__visual {
    height: 0;
    padding-top: 28.8%;
  }
}
.main__title {
  color: #555;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main__title {
    margin-top: -27.5%;
  }
}
.main__title .small {
  display: block;
  margin-top: 10px;
  color: #6E6E6E;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main__title .small {
    margin-top: 3%;
  }
}

/* 新デザインフッター用ボタン */
.mod-btn {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .mod-btn {
    width: 100%;
  }
}
.mod-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 40px 0 60px;
  width: 240px;
  height: 54px;
  border-radius: 40px;
  border: solid 1px #050126;
  font-size: 17px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
@media screen and (max-width: 768px) {
  .mod-btn a {
    margin: 0 auto;
    height: 44px;
    font-size: 15px;
  }
}
.mod-btn a::before {
  content: "";
  position: absolute;
  margin: 0 0 0 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #050126 url("../img/common/ic_arrow.webp") no-repeat center center;
  animation-name: btn-move-out;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes btn-move-out {
  0% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .mod-btn a::before {
    width: 26px;
    height: 26px;
    background-size: 13px;
  }
}
.mod-btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
.mod-btn a:hover::before {
  margin: 0 0 0 22px;
  background: url("../img/common/ic_arrow_l.webp") no-repeat center center;
  animation-name: btn-move-in;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes btn-move-in {
  0% {
    left: 0;
  }
  100% {
    left: 5px;
  }
}
.mod-btn__red a {
  padding: 0 50px;
  width: 270px;
  height: 48px;
  background: #FFAFE0;
}
@media screen and (max-width: 768px) {
  .mod-btn__red a {
    height: 44px;
  }
}

/* 今後ページをリニューアル等する際はlayout-mainではなく下記をお使いください */
/* ぱんくず */
.topicpath {
  width: 1180px;
  margin: 0 auto;
  padding: 15px 0 5px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .topicpath {
    margin: 0 15px 5px;
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .topicpath {
    display: none;
  }
}
.topicpath ul {
  display: flex;
}
.topicpath ul li {
  color: #000;
  font-size: 12px;
}
.topicpath ul li:not(:last-child):after {
  content: '＞';
  padding: 0 5px 0 8px;
  font-size: 12px;
}
.topicpath ul li a {
  color: #000;
}
.topicpath ul li a:hover {
  color: #009fe8;
}

/* MV(文字あり) */
.main-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 50px;
  width: 1180px;
  height: 240px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1180px) {
  .main-visual {
    width: 100%;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .main-visual {
    margin: 0 auto 30px;
    height: 0;
    padding-top: 28.8%;
  }
}

.main-visual-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #555;
}
@media screen and (max-width: 768px) {
  .main-visual-title {
    margin-top: -27.5%;
  }
}
.main-visual-title span {
  display: block;
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: bold;
  color: #6e6e6e;
}
@media screen and (max-width: 768px) {
  .main-visual-title span {
    margin-top: 3%;
  }
}

/* MV(文字なし) */
.main-visual-img {
  margin: 0 auto 50px;
  width: 1180px;
  height: auto;
}
.main-visual-img img {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main-visual-img {
    margin: 0 0 30px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-visual-img {
    margin: 0 0 30px;
    width: 100%;
  }
}

/* インナー */
.main-inner {
  margin: auto;
  width: 1180px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .main-inner {
    padding: 0 15px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-inner {
    padding: 0 15px;
    width: 100%;
  }
}

/* 新デザインフッター用ボタン */
.mod-btn {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .mod-btn {
    width: 100%;
  }
}
.mod-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 40px 0 60px;
  width: 240px;
  height: 54px;
  border-radius: 40px;
  border: solid 1px #050126;
  font-size: 17px;
  font-weight: 700;
  background: #FFF;
  color: #050126;
}
@media screen and (max-width: 768px) {
  .mod-btn a {
    margin: 0 auto;
    height: 44px;
    font-size: 15px;
  }
}
.mod-btn a::before {
  content: "";
  position: absolute;
  margin: 0 0 0 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #050126 url("../img/common/ic_arrow.webp") no-repeat center center;
  animation-name: btn-move-out;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes btn-move-out {
  0% {
    left: 5px;
  }
  100% {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .mod-btn a::before {
    width: 26px;
    height: 26px;
    background-size: 13px;
  }
}
.mod-btn a:hover {
  opacity: 1;
  background: #050126;
  color: #FFF;
}
.mod-btn a:hover::before {
  margin: 0 0 0 22px;
  background: url("../img/common/ic_arrow_l.webp") no-repeat center center;
  animation-name: btn-move-in;
  animation-duration: 300ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
@keyframes btn-move-in {
  0% {
    left: 0;
  }
  100% {
    left: 5px;
  }
}
.mod-btn__red a {
  padding: 0 50px;
  width: 270px;
  height: 48px;
  background: #FFAFE0;
}
@media screen and (max-width: 768px) {
  .mod-btn__red a {
    height: 44px;
  }
}

/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
.side {
  float: left;
  width: 220px;
}
@media screen and (max-width: 768px) {
  .side {
    float: none;
    width: 100%;
  }
}
.side__box {
  margin-bottom: 25px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .side__box {
    margin-bottom: 6%;
  }
}
.side__box:last-child {
  margin-bottom: 0;
}
.side__box__title {
  padding: 18px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 2px solid #ADD5F7;
}
.side__box img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .side__banner {
    float: left;
    width: 48.5%;
  }
}
@media screen and (max-width: 768px) {
  .side__banner.-article, .side__banner.-live, .side__banner.-haken {
    clear: both;
    margin-right: 3%;
  }
}
.side .sort {
  padding: 25px 0 25px 18px;
}
.side .sort li {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  position: relative;
  margin-bottom: 25px;
  padding-left: 9px;
  font-size: 14px;
  cursor: pointer;
}
.side .sort li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 12px;
  background: #ADD5F7;
}
.side .sort li:hover, .side .sort li.-is-active {
  color: #009FE8;
  text-decoration: underline;
}
.side .sort li:first-child {
  display: none;
}
.side .sort li:last-child {
  margin-bottom: 0;
}

.sns {
  height: 331px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sns {
    clear: both;
  }
}
.sns__title {
  position: relative;
  padding: 10px 0 10px 25px;
  background: #1DA1F2;
  color: #FFF;
  font-size: 13px;
}
.sns__title i {
  display: flex;
  align-items: center;
  position: absolute;
  left: 8px;
}
.sns__title.-facebook {
  padding-left: 20px;
}

@media screen and (max-width: 768px) {
  .twitter-timeline {
    width: 100% !important;
    height: 500px !important;
  }
}

@media screen and (max-width: 768px) {
  .fb-page {
    display: block !important;
    width: 100% !important;
  }
}
.fb-page span,
.fb-page iframe {
  width: 220px !important;
}
@media screen and (max-width: 768px) {
  .fb-page span,
  .fb-page iframe {
    width: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .fb-page span div,
  .fb-page iframe div {
    width: 100% !important;
  }
}

.timeline-Header-title,
.timeline-Header-byline {
  font-size: 11px !important;
}

/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
.footer {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Verdana, sans-serif;
  background: #EEF0F4;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  padding: 60px 0 80px;
  width: 1080px;
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .footer-inner {
    padding: 60px 15px 80px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 40px 15px 80px;
    width: 100%;
  }
}

.footer-top {
  display: grid;
  grid-template-areas: "logo linklist btnlist" "otherlist linklist btnlist";
  justify-content: space-between;
  padding: 0 0 40px;
}
.footer-top .footer-logo {
  grid-area: logo;
}
.footer-top .footer-linklist {
  grid-area: linklist;
}
.footer-top .footer-btnlist {
  grid-area: btnlist;
}
.footer-top .footer-otherlist {
  grid-area: otherlist;
}
@media screen and (max-width: 768px) {
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 30px;
  }
}

.footer-logo {
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    margin: 0 auto 30px;
    width: 150px;
  }
}

.footer-linklist {
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 768px) {
  .footer-linklist {
    flex-wrap: wrap;
    gap: 25px;
    margin: 0 0 30px;
  }
}
.footer-linklist ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .footer-linklist ul {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.footer-linklist ul li a {
  font-size: 15px;
  font-weight: 500;
  color: #050126;
}

@media screen and (max-width: 768px) {
  .footer-btnlist {
    margin: 0 auto 50px;
  }
}
.footer-btnlist ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .footer-btnlist ul {
    gap: 15px;
  }
}
.footer-btnlist ul li .mod-btn a {
  padding: 0 50px;
  width: 270px;
}
.footer-btnlist ul li .mod-btn__red a {
  height: 54px;
}

.footer-otherlist {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .footer-otherlist {
    flex-direction: unset;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
}
.footer-otherlist ul {
  display: flex;
  gap: 10px;
}
.footer-otherlist ul li {
  width: 44px;
}
.footer-otherlist ul li img {
  width: 100%;
  height: auto;
}
.footer-otherlist ul li.isms {
  width: 120px;
}
.footer-otherlist ul li.isms span {
  display: block;
  text-align: center;
  padding: 5px 0 0;
  color: #050126;
}
.footer-otherlist ul li.securityaction {
  width: 60px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: solid 1px #050126;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    padding: 30px 0 0;
  }
}

.footer-bottom-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer-bottom-link ul {
    justify-content: center;
    gap: 15px 30px;
    margin: 0 0 30px;
  }
}
.footer-bottom-link ul li a {
  font-size: 12px;
  font-weight: 500;
  color: #050126;
}

.footer-copyright {
  font-size: 13px;
  font-weight: 300;
  color: #050126;
}
@media screen and (max-width: 768px) {
  .footer-copyright {
    text-align: center;
  }
}

/* 旧デザイン */
.footer__inner {
  width: 1180px;
  margin: 0 auto;
  padding: 35px 0;
}
@media screen and (max-width: 1210px) {
  .footer__inner {
    width: 96%;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    width: 92%;
    padding: 8% 0;
  }
}
.footer__upper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1020px) {
  .footer__upper {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer__upper {
    margin-bottom: 8%;
  }
}
.footer__upper__right {
  margin-top: 65px;
}
.footer__upper__title {
  padding-bottom: 15px;
  color: #1055C1;
  font-size: 14px;
  border-bottom: 1px solid #90B1E3;
}
.footer__aside__list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .footer__aside__list {
    gap: 20px 10px;
  }
}
.footer__aside__item {
  width: 155px;
}
.footer__aside__item a {
  display: block;
  color: #666;
  font-size: 11px;
}
.footer__aside__item a:hover, .footer__aside__item a:hover * {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #009FE8;
  text-decoration: underline;
}
.footer__aside__item .small {
  display: block;
  margin-bottom: 8px;
  color: #666;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer__aside__item .small {
    margin-bottom: 3%;
  }
}
.footer__aside__item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .footer__aside__item:nth-child(4n) {
    margin-right: 3%;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: right;
}
@media screen and (max-width: 1020px) {
  .footer__logo {
    justify-content: left;
  }
}
.footer__logo__item {
  float: left;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .footer__logo__item {
    float: none;
    margin-right: 3%;
  }
}
.footer__logo__item:last-child {
  margin-right: 0;
}
.footer__logo__item.-isms {
  width: 147px;
}
.footer__logo__item.-isms img {
  width: 100%;
  height: auto;
}
.footer__logo__item.-isms span {
  display: block;
  padding-top: 4px;
  color: #000;
  text-align: center;
}
.footer__logo__item.-secturity-action {
  width: 70px;
}
.footer__logo__item.-secturity-action img {
  width: 100%;
  height: auto;
}
.footer__sns {
  *zoom: 1;
}
.footer__sns:after {
  content: "";
  display: table;
  clear: both;
}
.footer__sns__item {
  float: left;
  margin-right: 8px;
}
.footer__sns__item:last-child {
  margin-right: 0;
}
.footer__nav {
  position: relative;
  top: 14px;
}
@media screen and (max-width: 1020px) {
  .footer__nav {
    top: 0;
  }
}
.footer__nav__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1020px) {
  .footer__nav__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav__list {
    justify-content: initial;
  }
}
@media screen and (max-width: 1020px) {
  .footer__nav__item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav__item {
    margin: 5% 5% 0 0;
  }
}
.footer__nav__item a {
  color: #333;
  font-size: 13px;
}
.footer__nav__item a:hover {
  color: #009FE8;
  text-decoration: underline;
}
.footer__copy {
  padding: 18px 0;
  background: #838383;
  color: #FFF;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    font-size: 10px;
  }
}

/* 旧デザイン */
/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
/* 一覧ページ */
main {
  position: relative;
  font-family: 'notosansjp', sans-serif;
}

/* MV */
.main-visual {
  background-image: url("../seminar/img/main_visual_bg_seminar.jpg");
}

/* アンカー(core/_module.scssに記載) */
/* アンカー */
.anchorlist {
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .anchorlist {
    margin: 30px 0 20px;
  }
}
.anchorlist ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 1180px;
}
@media screen and (max-width: 1180px) {
  .anchorlist ul {
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 10px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .anchorlist ul {
    flex-wrap: wrap;
  }
}
.anchorlist ul li {
  margin: 0 15px;
}
@media screen and (max-width: 1180px) {
  .anchorlist ul li {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .anchorlist ul li {
    margin: 0;
    width: 48%;
  }
}
.anchorlist ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  width: 180px;
  height: 40px;
  border: 2px solid #009FE8;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.3;
  background: #FFF;
  color: #009FE8;
}
.anchorlist ul li a:hover {
  border: 2px solid #45A6F6;
  background: #2585d5;
  color: #FFF;
  opacity: 1;
}
@media screen and (max-width: 1180px) {
  .anchorlist ul li a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .anchorlist ul li a {
    width: 100%;
  }
}
.anchorlist ul li.anchorlist-active a {
  pointer-events: none;
  border: none;
  background: linear-gradient(91.75deg, #5f8af6 9.4%, #009fe8 94.31%);
  color: #FFF;
}
.anchorlist ul li.anchorlist-gray a {
  border: 2px solid #747474;
  color: #747474;
}
.anchorlist ul li.anchorlist-gray a:hover {
  background: #515151;
  color: #FFF;
}
.anchorlist ul li.anchorlist-gray.anchorlist-active a {
  pointer-events: none;
  border: none;
  background: #747474;
  color: #FFF;
}
.anchorlist.anchorlist__6 ul {
  justify-content: space-between;
}
.anchorlist.anchorlist__6 ul li {
  margin: 0;
}

.seminar__block {
  width: 1180px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1180px) {
  .seminar__block {
    width: 94%;
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 768px) {
  .seminar__block {
    width: 90%;
  }
}
.seminar__block__title {
  position: relative;
  margin-bottom: 55px;
  padding-bottom: 14px;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .seminar__block__title {
    margin-bottom: 8%;
    padding-bottom: 3%;
    font-size: 22px;
    line-height: 1.2;
  }
}
.seminar__block__title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: #000;
}
.seminar__block__title .small {
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .seminar__block__title .small {
    font-size: 13px;
  }
}
@media screen and (max-width: 320px) {
  .seminar__block__title .small {
    margin-left: 5px;
    font-size: 11px;
  }
}
.seminar__description {
  padding-bottom: 30px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .seminar__description {
    padding-bottom: 20px;
    font-size: 13px;
    line-height: 1.4;
  }
}
.seminar__box {
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  margin: 0 23px 30px 0;
  min-height: 320px;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .seminar__box {
    margin: 0 0 20px;
  }
}
.seminar__box:last-of-type {
  margin-bottom: 0;
}
.seminar__box a {
  position: relative;
  display: block;
  min-height: 320px;
  padding: 22px 140px 35px 50px;
  color: #000;
  border-left: 2px solid #009fe8;
}
@media screen and (max-width: 768px) {
  .seminar__box a {
    padding: 15px;
  }
}
.seminar__box-pb a {
  padding: 22px 140px 55px 50px;
}
.seminar__box__title {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .seminar__box__title {
    margin-bottom: 10px;
  }
}
.seminar__box__title .category {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 20px 2px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  border: 2px solid #999;
}
@media screen and (max-width: 768px) {
  .seminar__box__title .category {
    padding: 3px 10px 2px;
    font-size: 11px;
    border-width: 1px;
  }
}
.seminar__box__title .category:not(:first-child) {
  margin-left: 8px;
}
.seminar__box__title .category_consultant {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 20px 2px;
  color: #f69;
  font-size: 14px;
  line-height: 1;
  border: 2px solid #f69;
}
@media screen and (max-width: 768px) {
  .seminar__box__title .category_consultant {
    padding: 3px 10px 2px;
    font-size: 11px;
    border-width: 1px;
  }
}
.seminar__box__title .category_consultant:not(:first-child) {
  margin-left: 8px;
}
.seminar__box__title .category_bizwebinar {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 20px 2px;
  color: #009FE8;
  font-size: 14px;
  line-height: 1;
  border: 2px solid #009FE8;
}
@media screen and (max-width: 768px) {
  .seminar__box__title .category_bizwebinar {
    padding: 3px 10px 2px;
    font-size: 11px;
    border-width: 1px;
  }
}
.seminar__box__title .category_bizwebinar:not(:first-child) {
  margin-left: 8px;
}
.seminar__box__title .category_seminar {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 20px 2px;
  color: #FF6000;
  font-size: 14px;
  line-height: 1;
  border: 2px solid #FF6000;
}
@media screen and (max-width: 768px) {
  .seminar__box__title .category_seminar {
    padding: 3px 10px 2px;
    font-size: 11px;
    border-width: 1px;
  }
}
.seminar__box__title .category_seminar:not(:first-child) {
  margin-left: 8px;
}
.seminar__box__title .type {
  font-size: 14px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  padding: 2px 20px 1px;
}
@media screen and (max-width: 768px) {
  .seminar__box__title .type {
    font-size: 11px;
    padding: 1px 20px;
  }
}
.seminar__box__title .type_free {
  background: #006AD4;
}
.seminar__box__title .type_paid {
  background: #CE3596;
}
.seminar__box__title__inner {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.66667;
}
@media screen and (max-width: 768px) {
  .seminar__box__title__inner {
    font-size: 14px;
    line-height: 1.42857;
  }
}
.seminar__box__title__inner:before {
  -moz-border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0;
  border-radius: 0 10px 10px 0;
  content: "";
  position: absolute;
  left: -50px;
  top: 2px;
  width: 10px;
  height: 20px;
  background: #009FE8;
}
@media screen and (max-width: 768px) {
  .seminar__box__title__inner:before {
    left: -16px;
    width: 8px;
    height: 16px;
  }
}
.seminar__box.session .seminar__list::before {
  left: 136px;
}
.seminar__box.session .seminar__item__term {
  width: 114px;
}
.seminar__list {
  position: relative;
}
.seminar__list:before {
  content: "";
  position: absolute;
  left: 83px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #E3E4E4;
}
@media screen and (max-width: 768px) {
  .seminar__list:before {
    content: none;
  }
}
.seminar__item {
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .seminar__item {
    margin-bottom: 10px;
  }
}
.seminar__item:last-child {
  margin-bottom: 0;
}
.seminar__item__term, .seminar__item__description {
  display: table-cell;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.85714;
}
@media screen and (max-width: 768px) {
  .seminar__item__term, .seminar__item__description {
    display: block;
    font-size: 13px;
    line-height: 1.38462;
  }
}
.seminar__item__term {
  width: 60px;
}
@media screen and (max-width: 768px) {
  .seminar__item__term {
    width: auto;
    color: #009FE8;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  .seminar__item__term:not(:first-child) {
    display: none;
  }
}
.seminar__item__description {
  padding-left: 55px;
}
@media screen and (max-width: 768px) {
  .seminar__item__description {
    padding-left: 1em;
    word-wrap: break-word;
  }
}
.seminar__item__description span {
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
}
.seminar__item__description span + span {
  margin-left: 8px;
}
.seminar__item__description span.online {
  background: #006AD4;
}
.seminar__item__description span.real {
  background: #D41D91;
}
.seminar__subitem {
  display: inline-block;
  margin-right: 14px;
  line-height: 1.85714;
}
@media screen and (max-width: 768px) {
  .seminar__subitem {
    margin-right: 10px;
    line-height: 1.4;
  }
}
.seminar__subitem:before {
  content: "●";
}
.seminar__genre {
  position: absolute;
  right: -23px;
  top: 16px;
}
@media screen and (max-width: 768px) {
  .seminar__genre {
    position: unset;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
  }
}
.seminar__genre__item {
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 134px;
  height: 24px;
  margin-bottom: 9px;
  background: #DDD;
  color: #FFF;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .seminar__genre__item {
    width: 100px;
    height: 20px;
    margin-right: 5px;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .seminar__genre__item:last-child {
    margin-right: 0;
  }
}
.seminar__genre__item.-is-active {
  position: relative;
  pointer-events: auto;
}
.seminar__genre__item.-is-active:hover::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -80px;
  width: 210px;
  padding: 8px;
  border-radius: 15px;
  background: #ccc;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
.seminar__genre__item.-is-active:hover::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: 14px;
  bottom: 15px;
  margin-left: 10px;
  border: solid transparent;
  border-top-color: #ccc;
  border-width: 10px;
  pointer-events: none;
}
.seminar__genre__item.-account.-is-active {
  background: #CAA600;
}
.seminar__genre__item.-account.-is-active:hover::before {
  content: "税理士・会計事務所の方が対象です";
}
.seminar__genre__item.-business.-is-active {
  background: #007bc7;
}
.seminar__genre__item.-business.-is-active:hover::before {
  content: "一般企業・団体の方が対象です";
}
.seminar__genre__item.-finance.-is-active {
  background: #02348b;
}
.seminar__genre__item.-finance.-is-active:hover::before {
  content: "金融機関の方が対象です";
}
.seminar__genre__item.-insurance.-is-active {
  background: #6eb92b;
}
.seminar__genre__item.-insurance.-is-active:hover::before {
  content: "生命保険代理店の方が対象です";
}
.seminar__genre__item.-medicalwelfare {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .seminar__genre__item.-medicalwelfare {
    font-size: 10px;
  }
}
.seminar__genre__item.-medicalwelfare.-is-active {
  background: #00adb2;
}
.seminar__genre__item.-medicalwelfare.-is-active:hover::before {
  content: "医療・福祉・介護施設の方が対象です";
}
.seminar__genre__item.-university.-is-active {
  background: #0d8848;
}
.seminar__genre__item.-university.-is-active:hover::before {
  content: "高等教育機関の方が対象です";
}
.seminar__genre__item.-government.-is-active {
  background: #875cbf;
}
.seminar__genre__item.-government.-is-active:hover::before {
  content: "自治体の方が対象です";
}
.seminar__genre__item.-maker.-is-active {
  background: #6A6558;
}
.seminar__genre__item.-maker.-is-active:hover::before {
  content: "製造業・メーカー向けの方が対象です";
}
.seminar__genre__item.-service.-is-active {
  background: #FF6347;
}
.seminar__genre__item.-service.-is-active:hover::before {
  content: "サービス業向けの方が対象です";
}
@media screen and (max-width: 768px) {
  .seminar__genre__item:not(.-is-active) {
    display: none;
  }
}

#hold .seminar__box a {
  border-left-color: #ff6000;
}
#hold .seminar__box__title__inner:before {
  background: #FF6000;
}

#highgrade .main__visual,
#highgrade .seminar__block__title {
  display: none;
}
#highgrade .main__vanner {
  width: 100%;
  margin-bottom: 55px;
  text-align: center;
}
#highgrade .main__vanner img {
  width: 100%;
  max-width: 1180px;
}

#bizwebinar .seminar__box a,
#consultant .seminar__box a {
  border-left-color: #f69;
}
#bizwebinar .seminar__box__title__inner:before,
#consultant .seminar__box__title__inner:before {
  background: #f69;
}
#bizwebinar .seminar__box.ondemand a,
#consultant .seminar__box.ondemand a {
  border-left-color: #6073f5;
}
#bizwebinar .seminar__box.ondemand .seminar__box__title__inner:before,
#consultant .seminar__box.ondemand .seminar__box__title__inner:before {
  background: #6073f5;
}
#bizwebinar .seminar__box.ondemand .seminar__box__title .type_paid,
#consultant .seminar__box.ondemand .seminar__box__title .type_paid {
  background: #6073f5;
}

#past .seminar__box a {
  border-left-color: #999;
}
#past .seminar__box__title__inner:before {
  background: #999;
}

#extension .seminar__box a {
  border-left-color: #23AA97;
}
#extension .seminar__box__title__inner:before {
  background: #23AA97;
}

/* 詳細ページ */
.detail .seminar__block {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .detail .seminar__block {
    margin-bottom: 50px;
  }
}
.detail .seminar__box {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .detail .seminar__box {
    margin-bottom: 30px;
  }
}
.detail .seminar__box a {
  pointer-events: none;
}
.detail .seminar__contact {
  position: fixed;
  z-index: 100;
  max-width: 370px;
  width: 100%;
  left: 50%;
  bottom: 50px;
  translate: -50% 0;
}
.detail .seminar__contact a {
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  display: block;
  position: relative;
  padding: 13px 0 12px;
  background: #FFAFE0;
  color: #FFF;
  font-size: 17px;
  color: #050126;
  font-weight: 700;
  text-align: center;
  border: 1px solid #050126;
  transition: .3s;
}
.detail .seminar__contact a:before, .detail .seminar__contact a:after {
  content: "";
  position: absolute;
}
.detail .seminar__contact a:before {
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  left: 10px;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  background: #000;
  z-index: 1;
}
.detail .seminar__contact a:after {
  display: flex;
  position: absolute;
  left: 18px;
  top: 50%;
  translate: 0 -50%;
  z-index: 10;
  width: 15px;
  height: 15px;
  background: url(../seminar/img/cta_arrow.svg) no-repeat center/contain;
}
.detail .seminar__contact a:hover {
  background: #050126;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .detail .seminar__contact {
    width: 300px;
    left: 5%;
    translate: 0;
  }
}
.detail .seminar__catch {
  margin-bottom: 24px;
  color: #333;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .detail .seminar__catch {
    font-size: 18px;
  }
}
.detail .seminar__catch em {
  color: #F36;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .detail .seminar__catch em {
    font-size: 22px;
  }
}
.detail .seminar__lead {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .detail .seminar__lead {
    font-size: 14px;
    line-height: 2;
  }
}
.detail .seminar__lead em {
  color: #009FE8;
  font-weight: bold;
}
.detail .seminar__movie {
  margin: 40px auto 0 auto;
  text-align: center;
}
.detail .seminar__movie iframe {
  width: 800px;
  height: 450px;
}
@media screen and (max-width: 900px) {
  .detail .seminar__movie iframe {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .detail .seminar__movie iframe {
    width: 100%;
    height: calc(90vw / 16 * 9);
  }
}
.detail .seminar__info {
  position: relative;
  width: 1180px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1180px) {
  .detail .seminar__info {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .detail .seminar__info {
    margin-bottom: 50px;
  }
}
.detail .seminar__info__inner {
  margin-left: 50px;
  padding: 100px 100px 50px 105px;
  background: #FFF;
}
@media screen and (max-width: 1180px) {
  .detail .seminar__info__inner {
    padding: 100px 30px 50px 85px;
  }
}
@media screen and (max-width: 768px) {
  .detail .seminar__info__inner {
    margin-left: 0;
    padding: 120px 15px 30px;
  }
}
.detail .seminar__info__title {
  position: absolute;
  left: 19px;
  top: 20px;
  color: #009FE8;
  font-size: 30px;
  font-weight: bold;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .detail .seminar__info__title {
    font-size: 24px;
  }
}
.detail .seminar__info__title:before {
  display: block;
  content: "";
  position: absolute;
  top: -30px;
  left: -19px;
  width: 105px;
  height: 158px;
  background: rgba(0, 159, 232, 0.2);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .detail .seminar__info__title:before {
    top: -32px;
    left: -29%;
    width: 88px;
    height: 110px;
  }
}
.detail .seminar__info__title .en {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .detail .seminar__info__title .en {
    margin-bottom: 5px;
    font-size: 12px;
  }
}
.detail .seminar__info__lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 1px solid #009FE8;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
.detail .checklist__copy {
  font-size: 15px;
  margin: 20px 0 10px;
}
.detail .checklist__table, .detail .checklist__th, .detail .checklist__td {
  border: 1px solid #000;
}
.detail .checklist__table {
  width: 100%;
}
.detail .checklist__th, .detail .checklist__td {
  font-size: 15px;
  padding: 10px 15px;
  line-height: 1.4;
}
.detail .checklist__th {
  background: #009FE8;
  color: #fff;
  font-weight: bold;
}
.detail .checklist__td.number {
  text-align: center;
}
.detail .checklist__td span {
  font-weight: bold;
}
.detail .notice {
  display: block;
  margin-top: 20px;
  color: #F36;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}
.detail .ondemand_notice {
  display: block;
  color: #f36;
  font-size: 14px;
}
.detail .program__list {
  margin-bottom: 30px;
}
.detail .program__item {
  margin-bottom: 35px;
}
.detail .program__item:last-child {
  margin-bottom: 0;
}
.detail .program__item__term {
  margin-bottom: 13px;
  padding: 0 0 9px 65px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #009FE8;
}
@media screen and (max-width: 1180px) {
  .detail .program__item__term {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .detail .program__item__term {
    padding-left: 0;
  }
}
.detail .program__item__description {
  padding-left: 65px;
  font-size: 15px;
}
@media screen and (max-width: 1180px) {
  .detail .program__item__description {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .detail .program__item__description {
    padding-left: 0;
    font-size: 14px;
  }
}
.detail .program__item__description__title {
  margin: 16px 0;
}
.detail .program__item__description__title:first-child {
  margin-top: 0;
}
.detail .program__sublist {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  .detail .program__sublist {
    padding-left: 10px;
  }
}
.detail .program__subitem {
  position: relative;
  margin-bottom: 16px;
  padding-left: 1em;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .detail .program__subitem {
    margin-bottom: 10px;
    line-height: 1.28571;
  }
}
.detail .program__subitem:before {
  content: "●";
  position: absolute;
  left: 0;
}
.detail .program__subitem:last-child {
  margin-bottom: 0;
}
.detail .program__sublist2 {
  margin-top: 8px;
}
.detail .program__subitem2 {
  position: relative;
  margin-top: 5px;
  padding-left: 1em;
  color: #555;
  font-size: 14px;
  line-height: 1.42857;
}
.detail .program__subitem2:before {
  content: "・";
  position: absolute;
  left: 0;
}
.detail .program__notice {
  margin-right: -50px;
  color: #F00;
  font-size: 15px;
  text-align: right;
}
@media screen and (max-width: 1180px) {
  .detail .program__notice {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .detail .program__notice {
    padding-left: 10px;
    font-size: 14px;
    text-align: left;
  }
}
.detail .benefit .seminar__info__inner {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .detail .benefit .seminar__info__inner {
    padding-top: 120px;
  }
}
.detail .benefit__item {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1.8;
}
.detail .benefit__item:not(:last-child) {
  margin-bottom: 10px;
}
.detail .benefit__item span {
  flex-shrink: 0;
  padding: 3px 8px 2px;
  margin-right: 10px;
  color: #fff;
  background: #009FE8;
}
.detail .zoom__list {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width: 1180px) {
  .detail .zoom__list {
    margin-bottom: 30px;
  }
}
.detail .zoom__item {
  position: relative;
  padding-left: 19px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .detail .zoom__item {
    padding-left: 1em;
    font-size: 14px;
    line-height: 1.57143;
  }
}
.detail .zoom__item:before {
  content: "●";
  position: absolute;
  left: 0;
}
.detail .zoom__notice {
  margin-right: -50px;
  font-size: 13px;
  text-align: right;
}
@media screen and (max-width: 1180px) {
  .detail .zoom__notice {
    margin-right: 0;
    line-height: 1.3;
    text-align: left;
  }
}
.detail .guide__list {
  margin-bottom: 40px;
}
.detail .guide__item {
  padding: 9px 0;
  border-bottom: 1px solid #6AC7F2;
}
.detail .guide__item:first-child {
  border-top: 1px solid #6AC7F2;
}
.detail .guide__item__term, .detail .guide__item__description {
  display: table-cell;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .detail .guide__item__term, .detail .guide__item__description {
    display: block;
    font-size: 14px;
  }
}
.detail .guide__item__term {
  width: 165px;
  padding-left: 65px;
}
@media screen and (max-width: 1180px) {
  .detail .guide__item__term {
    width: 135px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .detail .guide__item__term {
    width: auto;
    padding-left: 0;
    color: #009FE8;
    font-weight: bold;
  }
}
.detail .guide__item__description {
  padding-left: 90px;
}
@media screen and (max-width: 1180px) {
  .detail .guide__item__description {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .detail .guide__item__description {
    padding-left: 1em;
  }
}
.detail .guide__item__description .small {
  font-size: 14px;
}
.detail .guide__item__description em {
  color: #F36;
  font-weight: bold;
}
.detail .lecturer {
  padding-left: 65px;
}
@media screen and (max-width: 1180px) {
  .detail .lecturer {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .detail .lecturer {
    padding-left: 0;
  }
}
.detail .lecturer__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .detail .lecturer__title {
    margin-bottom: 10px;
  }
}
.detail .lecturer > dl:not(:first-of-type) {
  margin-top: 40px;
}
.detail .lecturer__pic, .detail .lecturer__description {
  display: table-cell;
  vertical-align: top;
}
.detail .lecturer__pic {
  padding-right: 22px;
}
@media screen and (max-width: 768px) {
  .detail .lecturer__pic {
    padding-right: 10px;
    width: 25%;
  }
}
.detail .lecturer__description {
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .detail .lecturer__description {
    font-size: 14px;
    line-height: 1.5;
  }
}
.detail .lecturer__description em {
  display: block;
  margin: -6px 0 6px;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .detail .lecturer__description em {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.4;
  }
}
.detail .application__term, .detail .application__description {
  padding-left: 65px;
}
@media screen and (max-width: 1180px) {
  .detail .application__term, .detail .application__description {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .detail .application__term, .detail .application__description {
    padding-left: 0;
  }
}
.detail .application__term {
  margin-bottom: 15px;
  padding-bottom: 9px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #6AC7F2;
}
@media screen and (max-width: 768px) {
  .detail .application__term {
    font-size: 16px;
  }
}
.detail .application__description:not(:last-of-type) {
  margin-bottom: 30px;
}
.detail .application__list {
  margin-top: -7px;
  padding-bottom: 20px;
}
.detail .application__fee {
  margin-bottom: 22px;
  padding: 16px 0 10px;
  background-color: #DDEFF9;
}
.detail .application__item {
  position: relative;
  padding: 0 0 0.6em 1em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .detail .application__item {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 1.57143;
  }
}
.detail .application__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.detail .application__item:last-child {
  margin-bottom: 0;
}
.detail .application__item.sub::before {
  display: none;
}
.detail .application__feeitem {
  position: relative;
  padding: 0 0 0.6em 2em;
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .detail .application__feeitem {
    padding: 0 1em;
    font-size: 14px;
    line-height: 1.57143;
  }
}
.detail .application__feeitem:last-child {
  margin-bottom: 0;
}
.detail .application__feeitem span {
  color: #fff;
  font-size: 13px;
  padding: 4px 8px;
}
.detail .application__feeitem span + span {
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .detail .application__feeitem span {
    margin-bottom: 20px;
  }
}
.detail .application__feeitem span.online {
  background: #006AD4;
}
.detail .application__feeitem span.real {
  background: #D41D91;
}
.detail .application__feeitem em {
  font-size: 1.7em;
  font-weight: bold;
  padding: 4px 8px 0;
}
@media screen and (max-width: 768px) {
  .detail .application__feeitem em {
    line-height: 1.14286;
    padding: 4px 0;
    font-size: 1.2em;
  }
}

/* BizWebinar申し込みフォーム */
.contact__table th {
  padding: 10px 10px 10px 30px;
  line-height: 1.6;
}
.contact__table th .required {
  line-height: 1.1;
}
.contact__table td input:not(:first-child) {
  margin-top: 13px;
}
.contact__table td input[type="radio"] {
  margin-left: 10px;
}
.contact__table td span {
  display: inline-block;
  margin-left: 12px;
  color: #7A6231;
  font-size: 14px;
}
.contact__table td .notice {
  width: 80%;
  margin: 5px 0 0 0;
  text-align: right;
}
.contact__table td label {
  cursor: pointer;
}
.contact__table td label:not(:first-child) {
  margin-left: 60px;
}
.contact__table select {
  padding: 7px;
  font-size: 14px;
}
.contact.confirmation th {
  line-height: 2.2;
}

/* 完全個別設定 */
.seminar2020_082 .seminar__box__title__inner {
  line-height: 1.4;
}
.seminar2020_082 .seminar__box__title__inner em {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .seminar2020_082 .seminar__box__title__inner em {
    font-size: 13px;
  }
}
.seminar2020_082 .part {
  padding: 32px;
  margin-bottom: 40px;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.seminar2020_082 .part__number {
  padding-bottom: 16px;
  border-bottom: #ccc 1px solid;
  margin-bottom: 12px;
  color: #009FE8;
  font-size: 20px;
  font-weight: bold;
}
.seminar2020_082 .span_a {
  display: inline-block;
  margin-left: 20px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .seminar2020_082 .span_a {
    margin-top: 8px;
    line-height: 1.2;
  }
}
.seminar2020_082 .span_b {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .seminar2020_082 .span_b {
    display: inline-block;
    margin-top: 4px;
  }
}
.seminar2020_082 .part__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .seminar2020_082 .part__title {
    font-size: 18px;
  }
}
.seminar2020_082 .span_c {
  font-size: 16px;
  font-weight: bold;
}
.seminar2020_082 .span_d {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .seminar2020_082 .span_d {
    font-size: 15px;
  }
}

.overview__list {
  width: 900px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 960px) {
  .overview__list {
    width: 100%;
    margin-bottom: 10%;
  }
}
.overview__map {
  text-align: center;
}
.overview__map iframe {
  width: 900px;
  height: 400px;
}
@media screen and (max-width: 960px) {
  .overview__map iframe {
    width: 100%;
  }
}

/* 2023以前の過去のセミナー用(MV、アンカー) */
.main__visual {
  background-image: url("../seminar/img/main_visual_bg_seminar.jpg");
}

.anchor {
  width: 1180px;
  margin: 40px auto 70px;
}
@media screen and (max-width: 1180px) {
  .anchor {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .anchor {
    margin: 8% auto 10%;
  }
}
.anchor__list {
  display: flex;
  justify-content: center;
}
.anchor__item {
  position: relative;
  width: 204px;
  margin: 0 20px;
  color: #000;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .anchor__item {
    display: flex;
    align-items: center;
    width: 30%;
    margin: 0 1.5%;
  }
}
.anchor__item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #e3e4e4;
}
@media screen and (max-width: 768px) {
  .anchor__item:before {
    height: 3px;
  }
}
.anchor__item.-is-active:before {
  background: #009FE8;
}
.anchor__item a {
  display: block;
  width: 100%;
  padding-bottom: 17px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .anchor__item a {
    padding-bottom: 14px;
  }
}
.anchor__item a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #009FE8;
}

/* 過去のセミナー用(MV、アンカー)ここまで */
/* セミナーリード内のリスト */
.seminar__lead__list {
  width: 100%;
  max-width: 880px;
  padding: 8px 20px;
  border: 2px solid #009fe8;
  margin: 40px auto;
}

.seminar__lead__item {
  position: relative;
  margin-left: 1em;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .seminar__lead__item {
    font-size: 14px;
  }
}
.seminar__lead__item::before {
  content: "●";
  position: absolute;
  left: -1.1em;
  color: rgba(0, 159, 232, 0.5);
}

/* セミナーのポイント */
.seminar__point {
  width: 100%;
  max-width: 880px;
  margin: 40px auto;
  background: url(../img/seminar_bg_light.png) bottom right no-repeat;
  background-size: 150px 150px;
}

.seminar__point__item {
  padding: 12px 20px 12px 20px;
  border-bottom: 1px solid #009fe8;
  background: rgba(250, 250, 250, 0.7);
  overflow: hidden;
}

.seminar__point__item:last-child {
  border: none;
}

.seminar__point__num {
  float: left;
  width: 110px;
  font-size: 18px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .seminar__point__num {
    float: none;
    margin-bottom: 4px;
    font-size: 16px;
  }
}
.seminar__point__num span {
  display: inline-block;
  padding: 3px 5px 1px;
  color: #fff;
  font-weight: bold;
  background: #009fe8;
}

.seminar__point__txt {
  float: left;
  width: calc(100% - 120px);
  font-size: 16px;
  line-height: 32px;
}

@media screen and (max-width: 768px) {
  .seminar__point__txt {
    float: none;
    width: 100%;
    font-size: 14px;
    line-height: 1.6;
  }
}
.seminar__point__txt em {
  color: #009fe8;
  font-weight: bold;
}

/* このような方におすすめです */
.recommendation {
  width: 100%;
  max-width: 880px;
  border: 5px solid #009FE8;
  margin: 40px auto 80px auto;
}

.recommendation__title {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background: #009FE8;
  padding: 12px 0;
}

@media screen and (max-width: 768px) {
  .recommendation__title {
    font-size: 18px;
  }
}
.recommendation__list {
  margin-top: 20px;
  padding: 0 20px 20px;
}

.recommendation__item {
  font-size: 16px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .recommendation__item {
    font-size: 14px;
  }
}
.recommendation__item:not(:last-child) {
  margin-bottom: 10px;
}

.recommendation__item::before {
  content: "";
  width: 13px;
  height: 13px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #009FE8;
}

/* 特典 */
.benefit__list {
  background: url(../img/seminar_bg_box.png) no-repeat right bottom;
  background-size: 120px 120px;
}

.detail .benefit__item {
  align-items: inherit;
}

.detail .benefit__item div {
  width: 85%;
}

.benefit__item__box {
  width: calc(100% - 60px);
  padding: 12px 6px;
  line-height: 1.6;
}

.benefit__list__box__title {
  display: block;
  margin-bottom: 6px;
  color: #009FE8;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}

.benefit__item__box div {
  padding: 2px 0 6px 1em;
  line-height: 1.6;
}

.benefit__item__box .add {
  padding-left: 181px;
}

@media screen and (max-width: 768px) {
  .benefit__item__box .add {
    padding-left: 1em;
  }
}
.benefit__item__box div a {
  color: #eb873b;
  line-height: 1.6;
  word-wrap: break-word;
}

/* 講師メッセージ */
.message {
  width: 100%;
  max-width: 960px;
  padding: 0px 40px 40px 40px;
  border: 2px solid rgba(0, 159, 232, 0.2);
  margin: 40px auto 80px auto;
}

@media screen and (max-width: 768px) {
  .message {
    width: 100%;
  }
}
.message__title {
  color: #009FE8;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 0 30px 0;
}

.message__title img {
  width: 90px;
  margin-bottom: -24px;
}

.message__list {
  background-color: #FAFAFA;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #fafafa 50%, #fafafa 100%), linear-gradient(180deg, rgba(0, 159, 232, 0.5) 1px, rgba(0, 0, 0, 0) 1px);
  background-size: 8px 100%, 100% 32px;
  line-height: 32px;
  padding-bottom: 1px;
}

.message__item {
  font-size: 16px;
  line-height: 2;
}

/* マップ */
.map {
  margin-top: 1em;
  width: 100%;
  height: 300px;
}

/**/
.detail .application__title {
  position: relative;
  padding: 0 0 0.8em 0;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .detail .application__title {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 1.57143;
  }
}
.recommendation {
  max-width: 720px;
  margin-bottom: 40px;
}

.seminar__lead__list {
  max-width: 660px;
  /*    border: none;*/
}

.detail .program__item .seminar__subitem {
  display: block;
}

.detail .program__item .seminar__subitem:before {
  content: "・";
}

.detail .program__item .in.seminar__subitem:before {
  content: "・";
}

.detail .program__item .in.seminar__subitem {
  margin-left: 1em;
}

.program__item__term {
  line-height: 1.2;
}

.main-visual-title {
  display: none;
}

.detail .program__item .seminar__subitem:before {
  content: "" !important;
}

.seminar-slider-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.seminar-lists {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  scrollbar-width: none;
  /* Firefox */
}

.seminar-lists::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.slider-btn {
  border: none;
  cursor: pointer;
  top: 40px;
  font-size: 18px;
  opacity: 0.8;
  background: transparent;
  padding: 0;
}

.slider-btn:hover {
  opacity: 1;
}

.recommended-seminars {
  position: relative;
}
.recommended-seminars .seminar-slider-wrapper {
  overflow: hidden;
}
.recommended-seminars .slider-btn {
  position: absolute;
  z-index: 10;
}
.recommended-seminars .slider-btn.prev {
  right: 90px;
}
.recommended-seminars .slider-btn.next {
  right: 30px;
}
.recommended-seminars .slider-btn.next img {
  transform: rotate(180deg);
}
.recommended-seminars .seminar-lists {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 0;
}
.recommended-seminars .seminar-item {
  position: relative;
  z-index: 10;
  width: 250px;
  max-height: 270px;
  margin-right: 20px;
  border: 1px solid #050126;
  touch-action: none;
}
.recommended-seminars .seminar-item img {
  height: 130px;
}
.recommended-seminars .seminar-item .lower-containre {
  padding: 8px 13px 13px;
}
.recommended-seminars .seminar-item .lower-time {
  color: #009FE8;
  font-size: 13px;
  font-weight: 400;
}
.recommended-seminars .seminar-item .lower-ttl {
  height: 63px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 14px;
}
.recommended-seminars .seminar-item .type {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  padding: 2px 12px;
  margin-right: 5px;
}
.recommended-seminars .seminar-item .type.type_paid {
  background: #CE3596;
}
.recommended-seminars .seminar-item .type.type_free {
  background: #006AD4;
}
.recommended-seminars .seminar-item .category {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  padding: 2px 12px;
  border: 1px solid #999;
}

.seminar__nav-list {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 77px;
}
.seminar__nav-list .nav-item {
  position: relative;
  max-width: 190px;
  width: 100%;
  background: #F3ECE9;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  line-height: 24px;
  padding: 5px 0;
  margin-left: 4px;
  transition: .3s;
}
.seminar__nav-list .nav-item:hover {
  background: rgba(183, 173, 169, 0.4);
}
.seminar__nav-list .nav-item::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
  left: -4px;
  top: 0;
}
.seminar__nav-list .nav-item a {
  display: block;
  max-width: 190px;
  width: 100%;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}

.anchorlist ul li a,
.anchorlist ul li.anchorlist-gray a {
  color: #050126;
  border-color: #050126;
}

.anchorlist ul li a:hover,
.anchorlist ul li.anchorlist-active a {
  background: #050126;
  border-color: #050126;
}

.detail .recommended-seminars .seminar__info__inner {
  padding-top: 103px;
  padding-left: 89px;
}

.detail .program__item__term,
.detail .guide__item,
.detail .guide__item:first-child,
.detail .application__term {
  border-color: #050126;
}

@media screen and (max-width: 768px) {
  .seminar__nav-list {
    flex-wrap: wrap;
  }
  .seminar__nav-list .nav-item {
    max-width: 47%;
    font-size: 14px;
  }

  .seminar-item img {
    width: 250px;
  }

  .slider-btn {
    top: 80px;
  }
}
.highgrade .main-visual-title {
  display: block;
}
.highgrade .anchorlist ul li.anchorlist-active a {
  pointer-events: all;
}
.highgrade .seminar-type_list {
  margin-bottom: 73px;
}
.highgrade .seminar-type_item {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #B7ADA9;
}
.highgrade .seminar-type_item .item-ttl {
  position: relative;
  max-width: 269px;
  width: 100%;
  color: #4B4B4B;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  cursor: pointer;
  transition: .3s;
}
.highgrade .seminar-type_item .item-ttl:hover {
  text-decoration: underline;
  text-underline-offset: .2em;
}
.highgrade .seminar-type_item .item-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 931px;
  width: 100%;
}
.highgrade .seminar-type_item .item-list li {
  position: relative;
  max-width: 465px;
}
.highgrade .seminar-type_item .item-list li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #000;
  left: -5px;
  top: 0;
}
.highgrade .seminar-type_item .item-list li a {
  display: block;
  max-height: 28px;
  background: #F3ECE9;
  overflow: hidden;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-align: center;
  padding: 2px 10px 4px;
}
.highgrade .seminar-type_item .item-list li a:hover {
  background: #B7ADA9;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .highgrade .seminar-type_item .item-ttl img {
    font-size: inherit;
    width: 14px;
    height: 14px;
  }
}
