@charset "UTF-8";
/*----------------------------------------------------------------------
共通パーツ
----------------------------------------------------------------------*/
/* MV */
/* ナビゲーション */
/* inner、h2 */
/* 見出し */
/* イントロダクション */
/* メリットリスト */
/* 研修の目的 */
/* 研修の特長 */
/* 研修の成果 */
/* リンク */
/* お申し込みフォーム */
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: landing.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%;
}
@media screen and (min-width: 769px) {
  html,
  body {
    min-width: 1260px;
  }
}

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

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%;
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
/* SP非表示 */
@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

/* PC非表示 */
@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

/* ぱんくず */
.topicpath {
  *zoom: 1;
  margin: 0 auto;
  padding: 15px 0 5px;
  width: 1180px;
}
@media screen and (max-width: 768px) {
  .topicpath {
    display: none;
  }
}
.topicpath ul {
  display: flex;
}
.topicpath ul:after {
  content: "";
  display: table;
  clear: both;
}
.topicpath ul li {
  position: relative;
  margin: 0 25px 0 0;
  font-size: 12px;
}
.topicpath ul li:after {
  content: '＞';
  position: absolute;
  top: 0;
  right: -20px;
  font-size: 12px;
}
.topicpath ul li:last-child {
  margin: 0;
}
.topicpath ul li:last-child:after {
  content: none;
}
.topicpath ul li a {
  font-size: 12px;
  color: #000;
}
.topicpath ul li a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #009fe8;
}

/* ページ上部に戻るボタン */
.right-nav {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  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;
  }
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
.header {
  /*
  position: fixed;
  top: 0;
  z-index: 10000;
  */
  width: 100%;
  border-bottom: 1px solid #bebebe;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .header {
    border-bottom: none;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto;
  width: 1180px;
}
@media screen and (max-width: 1210px) {
  .header-inner {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    margin: 9px auto;
    width: 94%;
  }
}

.header-logo {
  width: 190px;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 25.33333%;
  }
}
.header-logo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .header-right {
    display: none;
  }
}

.header-contact-list ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header-contact-list ul {
    flex-direction: column;
    padding: 0 20px;
    width: 100%;
  }
}
.header-contact-list ul li.list-tel, .header-contact-list ul li.list-fax {
  margin: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .header-contact-list ul li.list-tel, .header-contact-list ul li.list-fax {
    text-align: center;
    margin: 0 0 5%;
  }
}
.header-contact-list ul li.list-tel a, .header-contact-list ul li.list-fax a {
  position: relative;
  padding: 0 0 0 27px;
  font-size: 22px;
  font-weight: bold;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
  cursor: auto;
  color: #4b4b4b;
}
@media screen and (max-width: 768px) {
  .header-contact-list ul li.list-tel a, .header-contact-list ul li.list-fax a {
    font-size: 24px;
  }
}
.header-contact-list ul li.list-tel a:hover, .header-contact-list ul li.list-fax a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.header-contact-list ul li.list-tel a:before, .header-contact-list ul li.list-fax a:before {
  content: "";
  position: absolute;
  left: 0;
}
.header-contact-list ul li.list-tel a:before {
  top: 1px;
  width: 22px;
  height: 22px;
  background: url("/images/header_contact_item_tel_bg.png") left top no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
.header-contact-list ul li.list-fax a:before {
  top: 3px;
  width: 19px;
  height: 19px;
  background: url("/images/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-list ul li.list-fax {
    margin: 0 0 7%;
  }
}
.header-contact-list ul li.list-inquiry a {
  display: block;
  position: relative;
  text-align: center;
  padding: 7px 5px 6px;
  width: 150px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  background: #009fe8;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .header-contact-list ul li.list-inquiry a {
    padding: 12px 10px;
    width: 200px;
    font-size: 16px;
  }
}
.header-contact-list ul li.list-inquiry a:before {
  display: flex;
  align-items: center;
  position: absolute;
  right: 11px;
  top: 0;
  bottom: 0;
  content: "\f054";
  font-size: 14px;
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header-contact-list ul li.list-inquiry a:before {
    right: 20px;
  }
}
.header-contact-list ul li.list-mypage {
  margin: 0 40px 0 0;
}
.header-contact-list ul li.list-mypage a {
  display: block;
  text-align: center;
  cursor: pointer;
  padding: 13px 5px;
  width: 130px;
  border-radius: 25px;
  font-size: 14px;
  background: #009fe8;
  color: #fff;
}
.header-contact-list ul li.list-mypage span {
  padding: 0 0 0 25px;
  background: url("/images/reskillingbiz/ic_mypage.png") no-repeat left center;
}
.header-contact-list ul li.list-contact a {
  display: block;
  position: relative;
  text-align: center;
  padding: 0 0 0 28px;
  font-size: 15px;
  background: url("/images/reskillingbiz/ic_contact.png") no-repeat left center;
  color: #000;
}

/* 簡易版 */
.header__min .header-logo {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .header__min .header-logo {
    width: 130px;
  }
}
.header__min .header-contact-list ul {
  justify-content: flex-end;
  align-items: center;
}

/* SP用ハンバーガーメニュー */
@media screen and (max-width: 768px) {
  #humberger {
    display: block;
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 3;
    width: 15px;
    padding: 10px 9px 7px;
    border: 1px solid #009fe8;
    border-radius: 50%;
    box-sizing: initial;
    cursor: pointer;
    z-index: 50000;
  }

  .icon-bar {
    display: block;
    margin: 0 0 3px;
    height: 2px;
    box-sizing: initial;
    background: #009fe8;
    -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    -o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
    transition: all 400ms cubic-bezier(1, 0, 0, 1);
    /* easeInOutExpo */
    -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
    transition-timing-function: cubic-bezier(1, 0, 0, 1);
    /* easeInOutExpo */
  }

  /* ドロワー開放時のスタイル */
  body.drawer-opened #page {
    right: -240px;
    box-shadow: 1px 0 2px #000;
  }
  body.drawer-opened .fixed-content {
    right: -240px;
  }
  body.drawer-opened #humberger {
    background: #fff;
  }
  body.drawer-opened #humberger .icon-bar {
    background: #009fe8;
  }
  body.drawer-opened #humberger :nth-child(1) {
    transform: translate(0, 5px) rotate(225deg);
    -webkit-transform: translate(0, 5px) rotate(225deg);
  }
  body.drawer-opened #humberger :nth-child(2) {
    opacity: 0;
  }
  body.drawer-opened #humberger :nth-child(3) {
    transform: translate(0, -5px) rotate(-225deg);
    -webkit-transform: translate(0, -5px) rotate(-225deg);
  }
  body.drawer-opened #overlay {
    z-index: 20001;
    opacity: 0.8;
    right: -240px;
  }
}
#drawernav {
  display: none;
  position: fixed;
  top: 0;
  z-index: 20002;
  overflow-y: auto;
  padding: 50px 0;
  width: 100%;
  height: 100%;
  background-color: #ddf0f9;
  color: #000;
}
#drawernav .list-mypage {
  margin: 0 0 20px;
}
#drawernav .list-mypage a {
  width: 200px;
}
#drawernav .list-contact a {
  padding: 0 0 0 30px;
  font-size: 18px;
}

.fixed-content {
  right: inherit;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -o-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  -o-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

/* SP用ハンバーガーメニュー */
/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
.footer {
  background: #ddf0f9;
}

.footer-inner {
  margin: 0 auto;
  padding: 35px 0;
  width: 1180px;
}
@media screen and (max-width: 1210px) {
  .footer-inner {
    width: 96%;
  }
}
@media screen and (max-width: 768px) {
  .footer-inner {
    padding: 8% 0;
    width: 92%;
  }
}

.footer-upper {
  display: flex;
  justify-content: space-between;
  margin: 0 0 35px;
}
@media screen and (max-width: 1020px) {
  .footer-upper {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer-upper {
    margin: 0 0 8%;
  }
}

.footer-upper-left {
  width: 724px;
}
@media screen and (max-width: 768px) {
  .footer-upper-left {
    width: 100%;
  }
}

.footer-upper-right {
  margin: 65px 0 0;
  width: 380px;
}
@media screen and (max-width: 768px) {
  .footer-upper-right {
    width: 100%;
  }
}

.footer-upper-title {
  padding: 0 0 15px;
  border-bottom: 1px solid #90b1e3;
  font-size: 14px;
  color: #1055c1;
}

.footer-aside-list ul {
  display: flex;
  flex-wrap: wrap;
}
.footer-aside-list ul li {
  margin: 20px 28px 0 0;
  width: 155px;
}
@media screen and (max-width: 768px) {
  .footer-aside-list ul li {
    margin: 5% 3% 0 0;
  }
}
.footer-aside-list ul li a {
  display: block;
  font-size: 11px;
  color: #666;
}
.footer-aside-list ul li a:hover, .footer-aside-list ul li a:hover * {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  color: #009fe8;
  text-decoration: underline;
}
.footer-aside-list ul li .small {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  color: #666;
}
@media screen and (max-width: 768px) {
  .footer-aside-list ul li .small {
    margin: 0 0 3%;
  }
}
.footer-aside-list ul li:nth-child(4n) {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .footer-aside-list ul li:nth-child(4n) {
    margin: 5% 3% 0 0;
  }
}

.footer-logo ul {
  display: flex;
  align-items: center;
  justify-content: right;
}
@media screen and (max-width: 1020px) {
  .footer-logo ul {
    justify-content: left;
  }
}
.footer-logo ul li {
  margin: 0 24px 0 0;
}
@media screen and (max-width: 768px) {
  .footer-logo ul li {
    margin: 0 3% 0 0;
  }
}
.footer-logo ul li:last-child {
  margin: 0;
}

.footer-logo-isms {
  width: 147px;
}
.footer-logo-isms img {
  width: 100%;
  height: auto;
}
.footer-logo-isms span {
  display: block;
  text-align: center;
  padding: 4px 0 0;
  color: #000;
}

.footer-logo-secturity-action {
  width: 70px;
}
.footer-logo-secturity-action img {
  width: 100%;
  height: auto;
}

.footer-sns ul {
  display: flex;
}
.footer-sns ul li {
  margin: 0 8px 0 0;
}
.footer-sns ul li:last-child {
  margin: 0;
}

.footer-nav {
  position: relative;
  top: 14px;
}
@media screen and (max-width: 1020px) {
  .footer-nav {
    top: 0;
  }
}

.footer-nav-list ul {
  display: flex;
  justify-content: space-between;
  margin: 0 30px 0 0;
}
@media screen and (max-width: 1020px) {
  .footer-nav-list ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-list ul {
    justify-content: initial;
  }
}
@media screen and (max-width: 1020px) {
  .footer-nav-list ul li {
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-nav-list ul li {
    margin: 5% 5% 0 0;
  }
}
.footer-nav-list ul li a {
  font-size: 13px;
  color: #333;
}
.footer-nav-list ul li a:hover {
  text-decoration: underline;
  color: #009fe8;
}

.footer-copy {
  text-align: center;
  padding: 18px 0;
  font-size: 12px;
  background: #838383;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer-copy {
    font-size: 10px;
  }
}

/* 簡易版 */
.footer__min {
  background: #000f3c;
}
.footer__min .footer-inner {
  padding: 30px 0;
}
.footer__min .footer-nav-list ul {
  justify-content: center;
  align-items: center;
  margin: 0 0 20px;
}
.footer__min .footer-nav-list ul li:not(:last-child) {
  margin: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .footer__min .footer-nav-list ul li:last-child {
    margin: 0;
  }
}
.footer__min .footer-nav-list ul li a {
  color: #fff;
}
.footer__min .footer-copy {
  padding: 0;
  line-height: 1.8;
  background: none;
}

/*----------------------------------------------------------------------
12.	共通パーツ
----------------------------------------------------------------------*/
.main-visual {
  display: block;
  margin: 0 auto;
  padding: 0 0 5px;
  width: 1180px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .main-visual {
    margin: 0 auto 40px;
    padding: 0;
    width: 100%;
  }
}

.main-visual-min {
  background: #000f3c;
}

.main-visual-min-inner {
  display: block;
  margin: 0 auto;
  width: 1180px;
}
@media screen and (max-width: 768px) {
  .main-visual-min-inner {
    margin: 0 auto 10px;
    width: 100%;
  }
}

.navigation {
  padding: 10px;
  background: #000f3e;
}
@media screen and (max-width: 768px) {
  .navigation {
    margin: 0 0 40px;
    padding: 0 10px;
  }
}
.navigation ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .navigation ul {
    flex-direction: column;
  }
}
.navigation ul li {
  text-align: center;
  border-right: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  .navigation ul li {
    border-right: none;
  }
  .navigation ul li:not(:last-child) {
    border-bottom: solid 1px #fff;
  }
}
.navigation ul li:first-child {
  border-left: solid 1px #fff;
}
@media screen and (max-width: 768px) {
  .navigation ul li:first-child {
    border-left: none;
  }
}
.navigation ul li a {
  display: inline-block;
  padding: 10px 0;
  width: 300px;
  font-size: 18px;
  color: #fff;
}
.navigation ul li a:hover {
  font-weight: bold;
  background: #fff;
  color: #000f3e;
}
@media screen and (max-width: 768px) {
  .navigation ul li a {
    width: 100%;
    font-size: 16px;
  }
}
.navigation ul li.active a {
  font-weight: bold;
  background: #fff;
  color: #000f3e;
}

.top .navigation,
.overview .navigation {
  margin: 0 0 80px;
}

.confirm .navigation,
.thanks .navigation {
  display: none;
}

.main-inner {
  margin: 0 auto 80px;
  padding: 0 50px;
  width: 1180px;
}
@media screen and (max-width: 768px) {
  .main-inner {
    padding: 0 15px;
    width: auto;
  }
}
.main-inner h2 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  font-family: "M PLUS 1p";
}
@media screen and (max-width: 768px) {
  .main-inner h2 {
    font-size: 18px;
    line-height: 1.4;
  }
}

.main-title {
  text-align: left !important;
  margin: 0 0 40px;
  padding: 22px 20px 18px;
  border-left: solid 10px #000f3c;
  background: #f5f0eb;
}
@media screen and (max-width: 768px) {
  .main-title {
    margin: 0 0 20px;
    padding: 10px 20px;
  }
}

.introduction {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .introduction {
    margin: 0 0 40px;
  }
}

.introduction-title {
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .introduction-title {
    margin: 0 5px 20px;
  }
}

.introduction-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .introduction-inner {
    flex-direction: column;
  }
}

.introduction-txt {
  margin: 0 60px 0 0;
  width: 60%;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .introduction-txt {
    margin: 0 0 20px;
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }
}
.introduction-txt span {
  color: #0b318e;
}

.introduction-img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .introduction-img {
    text-align: center;
    padding: 0 5%;
    width: 100%;
  }
}
.introduction-img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .introduction-img img {
    width: 100%;
    max-width: 320px;
  }
}

.introduction__top .introduction-inner {
  display: block;
}
.introduction__top .introduction-inner::after {
  content: "";
  clear: both;
}
@media screen and (max-width: 768px) {
  .introduction__top .introduction-inner {
    display: flex;
  }
}
.introduction__top .introduction-img {
  float: right;
  width: 400px;
  margin: 0 0 10px 40px;
}
@media screen and (max-width: 768px) {
  .introduction__top .introduction-img {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }
}
.introduction__top .introduction-txt {
  margin: 0;
  width: 100%;
}
.introduction__top .introduction-bnr {
  margin: 40px 0 0;
}

.melitlist {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .melitlist {
    margin: 0 0 40px;
  }
}

.melitlist-title {
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .melitlist-title {
    margin: 0 5px 20px;
  }
}

.melitlist-list-title {
  margin: 0 0 15px;
  padding: 10px 30px;
  width: fit-content;
  font-size: 20px;
  background: #000f3d;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .melitlist-list-title {
    margin: 0 0 10px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    line-height: 1.3;
  }
}

.melitlist-list-txt {
  padding: 0 0 0 2rem;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .melitlist-list-txt {
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.8;
  }
}

.melitlist-list {
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .melitlist-list {
    margin: 0 0 20px;
  }
}
.melitlist-list ul li {
  margin: 0 0 30px;
}
.melitlist-list ul li:last-child {
  margin: 0;
}

.btnlink {
  padding: 80px 0;
  background: #fff;
}

.btnlink-title {
  margin: 0 0 40px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .btnlink-title {
    margin: 0 5px 20px;
  }
}

.btnlink-txt {
  text-align: center;
  margin: 0 5px 40px;
  padding: 0 100px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .btnlink-txt {
    text-align: left;
    margin: 0 5px 20px;
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
  }
}

.btnlink-link ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .btnlink-link ul {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .btnlink-link ul li:not(:last-child) {
    margin: 0 0 5px;
  }
}
.btnlink-link ul li a {
  display: inline-block;
  width: 360px;
}
@media screen and (max-width: 768px) {
  .btnlink-link ul li a {
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    height: 110px;
    width: 100%;
    max-width: 360px;
  }
}

.top .btnlink,
.overview .btnlink {
  margin: 0 0 80px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .contents .btnlink {
    margin: 0 0 80px;
    padding: 0;
  }
}

.overview .btnlink-title,
.overview .btnlink-txt,
.contents .btnlink-title,
.contents .btnlink-txt {
  display: none;
}

/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
/* 特長 */
.features {
  margin: 0 0 80px;
}
@media screen and (max-width: 768px) {
  .features {
    margin: 0 0 40px;
  }
}

.features-title {
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .features-title {
    margin: 0 5px 20px;
  }
}

.features-txt {
  margin: 0 0 40px;
  font-size: 15px;
  line-height: 2;
}

.features-practicelist {
  margin: 0 0 80px calc(-50vw + 50%);
  padding: 60px 20px 40px;
  width: calc( 100vw - 10px );
  background: #f5f0eb;
}
@media screen and (max-width: 768px) {
  .features-practicelist {
    margin: 0 0 40px calc(-50vw + 50%);
    padding: 30px 15px;
    width: 100vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1179px) {
  .features-practicelist {
    margin: 0 0 80px;
    width: 100%;
  }
}

.features-practicelist-inner {
  margin: 0 auto;
  max-width: 1080px;
}

.features-practicelist-title {
  margin: 0 0 15px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .features-practicelist-title {
    font-size: 18px;
  }
}
.features-practicelist-title span {
  position: relative;
  top: -2px;
  margin: 0 0 0 10px;
  padding: 4px 10px 5px;
  font-size: 14px;
  background: #003eb1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .features-practicelist-title span {
    font-size: 12px;
  }
}

.features-practicelist-list ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .features-practicelist-list ul {
    justify-content: space-between;
  }
}
.features-practicelist-list ul li {
  margin: 0 20px 20px 0;
  width: 200px;
}
.features-practicelist-list ul li:nth-child(5n) {
  margin: 0 0 20px;
}
@media screen and (max-width: 768px) {
  .features-practicelist-list ul li {
    margin: 0 0 4%;
    width: 48%;
  }
}
.features-practicelist-list ul li a {
  display: block;
  color: #000;
}
.features-practicelist-list ul li a:hover {
  opacity: 0.8;
}
.features-practicelist-list ul li a dl dt {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 80px;
  border: solid 1px #ccc;
}
.features-practicelist-list ul li a dl dt.imgtop {
  align-items: flex-start;
}
.features-practicelist-list ul li a dl dt img {
  width: 100%;
}
.features-practicelist-list ul li a dl dd {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 40px;
  font-size: 12px;
  line-height: 1.3;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .features-practicelist-list ul li a dl dd {
    padding: 10px;
    height: auto;
    font-size: 13px;
    font-size: 3.46667vw;
  }
}

.features-practicelist-list__foundation {
  margin: 0 0 30px;
}

/* 特長・ピラミッド(PCのみ) */
@media screen and (min-width: 769px) {
  .features-practicelist__triangle {
    padding: 0;
    height: 940px;
    background: #fff url("/images/reskillingbiz/bg_overview_triangle_bg.png") repeat-x 0 0;
  }
  .features-practicelist__triangle .features-practicelist-inner {
    padding: 330px 0 0 200px;
    width: 1180px;
    max-width: 1180px;
    height: 940px;
    background: #fff url("/images/reskillingbiz/bg_overview_triangle.png") no-repeat 0 0;
  }
  .features-practicelist__triangle .features-practicelist-list {
    margin: 0 0 85px;
  }
  .features-practicelist__triangle .features-practicelist-list:last-child {
    margin: 0;
  }
  .features-practicelist__triangle .features-practicelist-list ul {
    justify-content: center;
  }
  .features-practicelist__triangle .features-practicelist-list ul li:first-child {
    margin: 0 20px 105px 270px;
  }
  .features-practicelist__triangle .features-practicelist-list ul li:nth-child(2) {
    margin: 0 290px 105px 0;
  }
  .features-practicelist__triangle .features-practicelist-list ul li:nth-child(3) {
    margin: 0 20px 105px 160px;
  }
  .features-practicelist__triangle .features-practicelist-list ul li:nth-child(4) {
    margin: 0 20px 105px 0;
  }
  .features-practicelist__triangle .features-practicelist-list ul li:nth-child(5) {
    margin: 0 180px 105px 0;
  }
  .features-practicelist__triangle .features-practicelist-list ul li:nth-child(6) {
    margin: 0 20px 20px 50px;
  }
  .features-practicelist__triangle .features-practicelist-list ul li:last-child {
    margin: 0 70px 20px 0;
  }
}
/* 特長・青背景(SPのみ) */
@media screen and (max-width: 768px) {
  .features-practicelist__triangle {
    background: url("/images/reskillingbiz/bg_overview_triangle_bg_sp.png") repeat 0 0;
  }
}
