@charset "UTF-8";
/* ====================
  トレーニングページ：アイコン
==================== */
.training-clean__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: -8px;
}

.training-clean__icon {
  width: calc(100% / 6);
  max-width: 180px;
  padding: 8px;
}

.training-clean__icon > img {
  width: 100%;
}

/* ====================
  ボタン
==================== */
.btn-items {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}

.btn-items.--narrow {
  margin: -8px;
}

.btn-item {
  width: 100%;
  padding: 16px;
}

.btn-items.--narrow .btn-item {
  padding: 8px;
}

.btn-item.--half {
  width: 50%;
}

.btn-item.--one-third {
  width: calc(100% / 3);
}

.btn-item.--one-quarter {
  width: 25%;
}

.btn-item__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 16px 0;
  color: #1c1c1c;
  text-align: center;
  text-decoration: none;
  border: 2px solid #2b2b2b;
  transition: color 0.5s;
}

.btn-item__link::after {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: center center no-repeat;
  background-size: contain;
}

.btn-item__link.--right::after {
  background-image: url(../img/common/icon_right_black.svg);
}

.btn-item__link.--down::after {
  background-image: url(../img/common/icon_down_black.svg);
}

.btn-item__link.--new-window::after {
  background-image: url(../img/common/icon_new_window_black.png);
}

.btn-item__link.--current {
  color: #fff;
  pointer-events: none;
  background: #2b2b2b;
}

.btn-item__link.--current::after {
  background-image: url(../img/common/icon_down_white.svg);
}

.btn-item__link > span {
  display: block;
}

.btn-item__link:hover {
  color: #d0111b;
}

.btn-item.--half .btn-item__link {
  max-width: 428px;
}

.btn-item.--half:nth-child(odd) .btn-item__link {
  margin-left: auto;
}

.btn-item__link.--small .font-en-link {
  font-size: 22px;
  letter-spacing: 0;
}

.btn-item__link > .font-jp-s {
  line-height: 1.3;
}

/* ====================
  ヒーローエリア
==================== */
.twlab_hero::before {
  content: "";
  width: 100%;
  height: 600px;
  background-image: url(../img/training/hero_lab-min.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.7;
}

.top-lead, .top-program, .top-location, .top-activity, .top-magazine, section {
  background-color: #FFF;
}

.hero {
  position: relative;
  height: 600px;
}


.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero__title {
  color: #fff;
}

.hero__title > span {
  display: block;
}

.hero__title > span:last-child {
  margin-top: 30px;
}

.hero__reserve {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.hero__reserve-btn {
  position: absolute;
  right: 0;
  bottom: -115px;
  display: block;
  width: 230px;
  height: 230px;
  text-decoration: none;
  transition: opacity 0.5s;
}

.hero__reserve-btn:hover {
  opacity: 0.7;
}

.hero__reserve-btn > img {
  width: 100%;
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero__bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
}

/* ====================
  画像ブロック
==================== */
.img-block-single {
  height: 665px;
}

.img-block-single > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.img-block-double {
  position: relative;
  display: flex;
  height: 460px;
  overflow: hidden;
}

.img-block-double__item {
  position: relative;
  width: 50%;
  height: 100%;
}

.img-block-double__item:first-child {
  z-index: 1;
}

.img-block-double__item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.img-block-triple {
  display: flex;
  height: 540px;
}

.img-block-triple__item {
  width: calc(100% / 3);
  height: 100%;
}

.img-block-triple__item > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.img-block-triple__item > img:last-child {
  display: none;
}

/* ====================
  画像見出し
==================== */
.img-heading {
  position: relative;
  display: flex;
  align-items: center;
  height: 618px;
}

.img-heading::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.32);
}

.img-heading__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.img-heading__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.img-heading__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* ====================
  スライド画像
==================== */
.img-slide__main {
  height: 800px;
}

.img-slide__main > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.img-slide__thumbs {
  display: flex;
  height: 100px;
}

.img-slide__thumb {
  width: 12.5%;
  height: 100%;
  filter: grayscale(100%);
}

.img-slide__thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.img-slide__thumb.is-active {
  filter: grayscale(0%);
}


/* ====================
  トレーニング・カテゴリー
==================== */
.training-category {
  display: flex;
  flex-direction: row;
}

.training-category + .training-category {
  margin-top: 40px;
}

.training-category__img {
  flex-shrink: 0;
  width: 515px;
  margin-right: 40px;
}

.training-category__img > img {
  width: 100%;
}

.training-category__content {
  flex-basis: auto;
  flex-grow: 1;
}

.training-category__name-sub {
  font-size: 22px;
  font-weight: 500;
}

.training-category__name {
  font-family: "gothic-b", "Century Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.training-category__title {
  margin-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 35px;
  font-weight: 700;
}

.training-category__link {
  margin-top: 54px;
  text-align: right;
}

.training-category__link > a {
  position: relative;
  display: inline-block;
  padding: 8px 0 8px 40px;
  font-size: 22px;
  font-weight: bold;
  color: #1c1c1c;
  text-decoration: none;
  transition: color 0.5s;
}

.training-category__link > a:hover {
  color: #d0111b;
}

.training-category__link > a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: url(../img/common/icon_new_window_black.png) center center no-repeat;
  background-size: contain;
}

/* ====================
  スキルトレーニング
==================== */
.training-skill + .training-skill {
  margin-top: 100px;
}

.training-skill__heading {
  margin-top: 42px;
  font-family: "gothic-b", "Century Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #8c8c8c;
}

.training-skill__items {
  display: flex;
  flex-wrap: wrap;
}

.training-skill__item {
  position: relative;
  width: 25%;
  height: 420px;
}

.training-skill__item a{
  display: block;
  text-decoration: none;
  height: 420px;
  overflow: hidden;
}

.training-skill__item::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.32);
}

.training-skill__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 30px;
  color: #fff;
}

.training-skill__content > h4 > span {
  display: block;
}

.training-skill__name-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.training-skill__name {
  height: 2.6em;
  margin-top: 8px;
  font-family: "gothic-b", "Century Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.training-skill__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.training-skill__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: 0.5s;
}

.training-skill__item a:hover .training-skill__img > img{
  transform: scale(1.05);
}

.twlab_top_youyakubox {
	width: 100%;
	height: auto;
	background-color: #f5f5f5;
	padding: 40px 0;
}

.twlab_top_youyakubox ul li {
	margin-bottom: 15px;
	padding-left: 60px;
	position: relative;
}

.twlab_top_youyakubox ul li:last-child {
	margin-bottom: 0;
}

.twlab_top_youyakubox ul li:before {
	position: absolute;
    top: 0;
    bottom: 0;
    left:0;
    display: block;
    width: 40px;
    height: 40px;
    margin: auto;
    background: url(../img/training/check_tw_icon.png) center center no-repeat;
    background-size: contain;
    content: "";
    transition: all 0.5s;
}

.twlab_bottom {
	margin-bottom: 70px;
}

.twlab_bottom_message {
	text-align: center;
}

.tlab_last {
	padding-bottom: 100px;
}

.tw_border_bottom {
	border-bottom: 3px solid #f5f5f5;
	padding-bottom: 100px;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}


