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

.aboutus_hero::before {
  content: "";
  width: 100%;
  height: 90vw;
  background-image: url(../img/aboutus/hero_sp.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%;
}

.gymnews-category_list ul > li {
  display: inline-block;
  margin-right: 5px;
}

.gymnews-category_list ul > li a.active{
  text-decoration: line-through;
}


.top-news__filter {
  color: #1c1c1c;
  text-decoration: none;
  transition: 0.5s;
  font-size: 3.2vw;
}

.top-news__filter:hover {
  text-decoration: line-through;
}

.top-news__items {
  margin: 20px -4px 0;
}

.top-news__item {
  padding: 0 4px;
}

.top-news__item > a {
  display: block;
  color: #1c1c1c;
  text-decoration: none;
  transition: opacity 0.5s;
}

.top-news__item > a:hover {
  opacity: 0.7;
}

.top-news__img > img {
  width: 100%;
}

.top-news__info {
    font-size: 3vw;
  margin-top: 15px;
  letter-spacing: 0.02em;
  font-weight: bold;
}

.top-news__category {
  color: #d0111b;
  font-family:"gothic-b", "Century Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.top-news__date {
  position: relative;
  display: inline-block;
  padding-left: 12px;
}

.top-news__date::before {
  position: absolute;
  top: 0;
  bottom: 1px;
  left: 3px;
  display: block;
  width: 1px;
  height: 14px;
  margin: auto;
  background: #1c1c1c;
  content: "";
}

.top-news__text {
    font-size: 3.6vw;
  margin-top: 8px;
  font-weight: bold;
}

.press_link{
  display: flex;
  justify-content: flex-end;
}

.press_link a{
  display: block;
  color: #000;
  padding-left: 30px;
  position: relative;
  text-decoration: none;
}

.press_link a::before {
  position: absolute;
  top: 2px;
  bottom: 1px;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: url(../img/common/icon_arrow_right_black.svg) center center
    no-repeat;
  background-size: contain;
}

.about_history{
  padding: 5%;
}

.about_history ul{
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.about_history ul::before{
  width: 25%;
  display: block;
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #dfdfdf;
}

.about_history ul li:nth-child(1){
  width: 100%;
  text-align: left;
  padding: 2.5% 2.5% 0.5% 2.5%;
}

.about_history ul li:nth-child(2){
  width: 100%;
  padding: 0.5% 2.5% 2.5% 2.5%;
  border-bottom: 1px solid #dfdfdf;
}

.partner_box ul{
  flex-wrap: wrap;
  display: flex;
  margin-bottom: 7.5%;
  padding-bottom: 5%;
  justify-content: space-between;
  border-bottom: 2px solid #a2a2a2;
}

.partner_box ul li{
  padding: 0 0;
}

.partner_box ul li:nth-child(1){
  width: 100%;
  padding: 0 10%;
  margin-bottom: 5%;
}

.partner_box ul li:nth-child(1) img{
  width: 100%;
  height: auto;
}

.partner_box ul li:nth-child(1).img_border img{
  border: 1px solid #000;
}

.partner_box ul li:nth-child(2){
  width: 100%;
}

.partner_box ul li:nth-child(2) h4{
  padding-bottom: 2.5%;
}

.partner_box ul li:nth-child(2) .link a{
  display: block;
  color: #000;
  padding-left: 30px;
  position: relative;
  text-decoration: none;
}

.partner_box ul li:nth-child(2) .link a::before {
  position: absolute;
  top: 2px;
  bottom: 1px;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: url(../img/common/icon_external.png) center center
    no-repeat;
  background-size: contain;
}

.partner_box ul li:nth-child(2) .link.pt-xs{
  padding-top: 1.5em;
}

.company_box ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company_box ul li:nth-child(1){
  width: 100%;
  padding: 2.5% 2.5% 0.5% 2.5%;
}

.company_box ul li:nth-child(2){
  width: 100%;
  padding: 0.5% 2.5% 2.5% 2.5%;
  border-bottom: 1px solid #dfdfdf;
}

.company_box ul li:nth-child(2) a{
  color: #000;
}

.aboutus_recruit{
  position: relative;
  overflow: hidden;
}

.aboutus_recruit .txt{
  position: absolute;
  left: 5%;
  bottom: 25%;
}

.aboutus_recruit .img{
  width: 100%;
  height: auto;
  transition: 0.5s;
}

.aboutus_recruit .img img{
  width: 100%;
  height: auto;
  transition: 0.5s;
}

.aboutus_recruit a{
  display: block;
  color: #f6f6f6;
  text-decoration: none;
}

.aboutus_recruit a:hover .img{
  transform: scale(1.05);
}

.aboutus_recruit h4{
  display: block;
  padding-left: 35px;
  position: relative;
  text-decoration: none;
}

.aboutus_recruit h4::before {
  position: absolute;
  top: 2px;
  bottom: 1px;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  content: "";
  background: url(../img/common/icon_external_white.png) center center
    no-repeat;
  background-size: contain;
}
