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

.training-clean__icon {
  width: calc(100% / 3);
  max-width: 180px;
  padding: 1.1vw;
}

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

/* ====================
  ボタン
==================== */
.btn-items {
  display: flex;
  flex-wrap: wrap;
  margin: -1.4vw 0;
}

.btn-item {
  width: 100%;
  padding: 1.4vw 0;
}

.btn-item__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 14.2vw;
  padding: 1.7vw 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: 2.2vw;
  bottom: 0;
  display: block;
  width: 3.4vw;
  height: 3.4vw;
  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;
}
/* ====================
  ヒーローエリア
==================== */
.hero {
  position: relative;
  height: 80vw;
  overflow: hidden;
}

.top-hero {
  background-image: none;
}

.twlab_hero::before {
  content: "";
  width: 100%;
  height: 90vw;
  background-image: url(../img/training/hero_lab_sp-min.png);
  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;
}

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

.hero__title {
  color: #fff;
}

.hero__title > span {
  display: block;
}

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

.hero__reserve-btn {
  position: absolute;
  right: 0;
  bottom: -57px;
  display: block;
  width: 114px;
  height: 114px;
  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: 50vw;
}

.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;
  height: 68vw;
  overflow: hidden;
}

.img-block-double__item {
  position: absolute;
  width: 60vw;
  height: 41vw;
}

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

.img-block-double__item:last-child {
  right: 0;
  bottom: 0;
}

.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__item {
  height: 47.8vw;
}

.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:first-child {
  display: none;
}

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

.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: 60vw;
}

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

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

/* ====================
  リード
==================== */
.lead {
  overflow: hidden;
}

.lead__heading.--bg-text {
  position: relative;
  padding-top: 2vw;
}

.lead__bg-text {
  position: absolute;
  z-index: 1;
  color: #f6f6f6;
  word-break: keep-all;
  white-space: nowrap;
}

.lead__bg-text.--top {
  top: -0.2em;
  left: 15%;
}

.lead__bg-text.--bottom {
  top: 0.8em;
  right: 15%;
}


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

.training-category + .training-category {
  margin-top: 8.5vw;
}

.training-category__img {
  width: 100%;
}

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

.training-category__content {
  flex-basis: auto;
  flex-grow: 1;
  padding-top: 5.7vw;
}

.training-category__name-sub {
  font-size: 2.8vw;
  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: 4.2vw;
  font-weight: 700;
}

.training-category__title {
  margin-top: 4.2vw;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4vw;
  font-weight: 700;
}

.training-category__link {
  margin-top: 4.2vw;
  text-align: right;
}

.training-category__link > a {
  position: relative;
  display: inline-block;
  padding: 1vw 0 1vw 5.7vw;
  font-size: 2.8vw;
  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: 4.5vw;
  height: 4.5vw;
  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: 8.5vw;
}

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

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

.training-skill__item {
  position: relative;
  width: 50%;
  height: 65.7vw;
}

.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: 4.2vw 3.5vw;
  color: #fff;
}

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

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

.training-skill__name {
  height: 2.6em;
  margin-top: 1.1vw;
  font-family: "gothic-b", "Century Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  font-size: 4.2vw;
  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);
}

.popup_memo{
  padding: 0 5% 5% 5%;
}

.twlab_top_youyakubox {
	padding-bottom: 8vw;
}

.twlab_bottom_message {
	text-align: center;
}

.tlab_last {
	padding-bottom: 10vw;
}

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

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