@charset "utf-8";
/*************************************************************
CSS information
style info :  TOPページ限定のスタイル
**************************************************************/

a {
  text-decoration: none;
}

/* 
====================
↓メインビジュアル
====================
*/

.main_visual {
  box-sizing: border-box;
  position: relative;
  height: 220px;
  background: url(https://gsx-co-jp.s3.ap-northeast-1.amazonaws.com/interview/images/mv_bg.webp) no-repeat center;
  background-size: cover;
}

.main_visual::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 220px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.main_visual > .main_visual_inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
  padding: 0 11.5%;
  box-sizing: border-box;
}

.main_visual_inner > .mv_title {
  max-width: 1108px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.5;
  color: #F2F2F2;
}

.main_visual_inner > .mv_caption {
  max-width: 1108px;
  margin: 0 auto;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.5;
  color: #f0f0f0;
  text-align: left;
}

/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {

  .main_visual_inner > .mv_title {
    font-size: 16px;
  }

  .main_visual_inner > .mv_caption {
    font-size: 10px;
  }
}

/*
====================
↓メタ情報
====================
*/

.meta_section {
  box-sizing: border-box;

  width: 100%;
  height: auto;
  margin: 0 auto;

  border-bottom: 1px solid #d8d8d8;
}

.meta_section .flex {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  max-width: 1108px;
  min-height: 64px;
  padding: 8.5px 0;
  margin: 0 auto;
}
.meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 80%;
}

.meta .date {
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  color: #666;
}

.meta .tag {
  display: inline-block;
  padding: 5px 12px;

  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #fff;
}

.share {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.share .js-sns-link {
  display: block;
  width: 32px;
  height: 32px;
  outline: none;
  margin-left: 9px;
}

.share .js-sns-link img {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.share .icn_fb img,
.share .icn_tw,
.share .icn_in {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}

.url {
  text-decoration: underline;
  cursor: pointer;
  color: #222;
}

.mt_80 {
  margin-top: 80px !important;
}

.interview_box1 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: inherit!important;
}

.interview_box1 .photo_column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 25%;
}

.interview_box1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

.interview_box1 .item_text {
  width: 75%;
}

.interview_box2 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.interview_box2 + .interview_box2 {
  margin-top: 20px;
}

.interview_box2 .item_photo {
  width: 25%;
}

.item_photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

.interview_box2 .item_text {
  width: 75%;
}

/*
====================
↓バナーエリア
====================
*/
.banner_wrapper {
    max-width: 918px;
    margin: 0 auto;
}

.bnr_area {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 918px;
  margin: 0 auto;
}

.bnr_first {
  margin-top: 0
}

.bnr_area img {
  width: 100%;
  vertical-align: bottom;
  object-fit: contain;
  height: auto;
}

.bnr_text {
  text-align: right;
  margin-top: 5px;
}

/* SP｜1024px以下  */
@media screen and (max-width: 1024px) {

  /*
  ====================
  ↓バナーエリア
  ====================
  */

  .bnr_area {
    width: 100%;
    margin-top: 20px;
  }

  .bnr_first {
    margin-top: 0
  }

}