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

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	main

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

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

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

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

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

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

body > iframe {
  display: none;
}

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

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

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

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

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

a {
  text-decoration: none;
}

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

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

th, td {
  padding: 0px;
}

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

textarea {
  vertical-align: top;
}

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

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

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

html {
  font-size: 100%;
}

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

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

html,
body {
  min-width: 1100px;
}

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

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

#container {
  padding-bottom: 150px;
  background: #f6f7f1;
}

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

.flr {
  float: right;
}

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

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

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

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

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

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

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

.text {
  font-size: 20px;
  line-height: 1.7;
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
7.	#main
----------------------------------------------------------------------*/
.main-image {
  width: 100%;
  max-width: 1400px;
  padding-top: calc( 100% / 1250 * 404);
  margin: 0 auto;
  background: url("../harassment/img/container_bg_top.jpg") center 8px no-repeat #F3F4EF;
  background-size: contain;
}

@media screen and (min-width: 1400px) {
  .main-image {
    padding-top: 453px;
  }
}
.main-title {
  width: 1040px;
  margin: -80px auto 0 auto;
  position: relative;
  margin-bottom: 55px;
}
.main-title:before {
  content: '';
  position: absolute;
  top: -24px;
  right: 0;
  width: 358px;
  height: 101px;
  background: url("../harassment/img/main_title_bg.png") left top no-repeat;
}

.main {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  background: url(../harassment/img/container_bg.jpg) no-repeat;
  background-size: cover;
}

.main-inner {
  width: 1040px;
  margin: 0 auto;
}
.main-inner .text {
  padding-bottom: 40px;
}

.main-lisk {
  float: left;
  width: 565px;
  height: 311px;
  margin: 25px 0 0 -45px;
  padding: 49px 0 0 65px;
  background: url("../harassment/img/main_lisk_bg.png") left top no-repeat;
}
.main-lisk .term {
  margin-bottom: 12px;
}

.main-lisk-item {
  padding-left: 22px;
  background: url("../harassment/img/main_lisk_item_bg.png") left 8px no-repeat;
  color: #FFF;
  font-size: 22px;
  line-height: 1.63636;
}

.main-img {
  float: right;
  margin-bottom: 50px;
}
.main-img + .text {
  clear: both;
  margin-bottom: 50px;
}

.instructor-introduction {
  width: 1040px;
  margin: 0 auto;
  padding: 50px 0 35px;
  background: url("../harassment/img/border_bg01.png") left top repeat-x;
}

.instructor-introduction-title {
  float: left;
  margin-bottom: 62px;
  padding-top: 15px;
}

.instructor-img {
  float: right;
}

.instructor-text {
  clear: left;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.6;
}

.hierarchy-list {
  width: 1040px;
  margin: 0 auto;
  background: url("../harassment/img/border_bg02.png") left top repeat-x;
}

.hierarchy-item {
  padding: 40px 0 60px 0;
  background: url("../harassment/img/hierarchy_item_bg.png") left bottom repeat-x;
}
.hierarchy-item:last-child {
  background: url("../harassment/img/border_bg01.png") left bottom repeat-x;
  border-bottom: none;
}
.hierarchy-item .term {
  float: left;
  padding: 4px 0 4px 24px;
  border-left: 8px solid #2F3993;
  margin-top: 10px;
}
.hierarchy-item .genre {
  float: right;
  margin-bottom: 32px;
}
.hierarchy-item .genre-list {
  *zoom: 1;
}
.hierarchy-item .genre-list:after {
  content: "";
  display: table;
  clear: both;
}
.hierarchy-item .genre-item {
  float: left;
  margin-right: 14px;
}
.hierarchy-item .genre-item:last-child {
  margin-right: 0;
}
.hierarchy-item .text {
  clear: both;
  float: left;
  width: 750px;
  padding-top: 20px;
  font-size: 22px;
  line-height: 1.8;
}
.hierarchy-item .genre-item-img {
  float: right;
}
.hierarchy-item .link {
  clear: both;
}
.hierarchy-item .link a {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  display: block;
  width: 480px;
  margin: 0 auto;
  padding: 15px 0;
  background: rgba(232, 56, 40, 0.15);
  color: #E83828;
  font-size: 28px;
  text-align: center;
  border: 2px solid #E83828;
}
.hierarchy-item .link a:hover {
  text-decoration: none;
}

.other-training {
  width: 1040px;
  margin: 0 auto;
  padding-top: 70px;
}

.other-training-title {
  margin-bottom: 30px;
}

.other-training-box {
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  padding: 40px 40px 0;
  background: rgba(0, 160, 233, 0.1);
}

.other-training-box-title {
  float: left;
  color: #171C61;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.6;
}

.other-training-box-instructor {
  *zoom: 1;
  float: right;
}
.other-training-box-instructor:after {
  content: "";
  display: table;
  clear: both;
}
.other-training-box-instructor .term,
.other-training-box-instructor .description {
  float: right;
}
.other-training-box-instructor .term {
  margin: 0 0 20px 20px;
}
.other-training-box-instructor .description {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.5;
  text-align: right;
}

.other-training-list {
  *zoom: 1;
  clear: both;
  margin: 0 -2px;
  padding: 40px 0 0 15px;
  background: url("../harassment/img/other_training_list_bg.png") left top repeat-x;
}
.other-training-list:after {
  content: "";
  display: table;
  clear: both;
}

.other-training-item {
  float: left;
  width: 450px;
  margin-bottom: 32px;
}
.other-training-item:nth-child(3n+1) {
  clear: both;
  float: none;
  width: auto;
}
.other-training-item:last-child {
  margin-bottom: 0;
}
.other-training-item .term {
  margin-bottom: 12px;
}
.other-training-item .term a {
  color: #171C61;
  font-size: 20px;
  font-weight: bold;
  text-decoration: underline;
}

.other-training-sublist {
  margin-left: 38px;
}

.other-training-subitem {
  font-size: 16px;
  line-height: 1.6;
}
