@charset "UTF-8";
/* ====================
  無料カウンセリング
==================== */
.free-counseling {
  padding: 48px 24px;
  text-align: center;
  border: 4px solid #1c1c1c;
}

.free-counseling__btn {
  display: flex;
  justify-content: center;
}

/* ====================
  ヒーローエリア
==================== */
.personal_hero::before {
  content: "";
  width: 100%;
  height: 600px;
  background-image: url(../img/personaltrainer/hero.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;
}

/* ====================
  エキスパートトレーナー
==================== */
.trainer-expert {
  display: flex;
  flex-wrap: wrap;
}

.trainer-expert__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 25%;
  height: 420px;
  padding: 24px;
  display: block;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
}

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

.trainer-expert__text {
  position: relative;
  z-index: 2;
  font-family: "gothic-b", "Century Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}

.trainer-expert__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

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

.trainer-expert__item:hover .trainer-expert__img > img{
  transform: scale(1.05);
}

/* ====================
  トップトレーナー
==================== */
.trainer-top {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 528px;
  padding-bottom: 40px;
  text-decoration: none;
  overflow: hidden;
}


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

.trainer-top__text {
  position: relative;
  z-index: 2;
  font-family: "gothic-b", "Century Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-align: right;
}

.trainer-top__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

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

.trainer-top:hover .trainer-top__img > img{
  transform: scale(1.05);
}

.trainer_top{
  display: flex;
  justify-content: space-between;
}

.trainer_top .img{
  width: 47.5%;
}

.trainer_top .txt_box{
  width: 50%;
}

.trainer_top .txt_box .mb-xs{
  margin-bottom: 15px;
}

.flex{
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
}

.bottom_txt ul li{
  width: 30%;
}

.personal-history ul li{
  margin-bottom: 1.0%;
  text-align: left;
}

.personal-history ul li:nth-child(1){
  width: 4em;
}

.personal-history ul li:nth-child(2){
  width: 95%;
}

.personal-bnr{
  width: 400px;
  margin-left: auto;
  margin-right: auto;
}
