@charset "utf-8";
/* CSS Document */


/*===============================

    common

================================*/
:root { font-size: 62.5%; }/* 1(r)em = 10px */

* { letter-spacing: 0; }

body {
  color: #3E3A39;
  font-family:YuGothic , '游ゴシック' , 'Hiragino Kaku Gothic ProN' , 'ヒラギノ角ゴ ProN' , Meiryo , 'メイリオ' , sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  height: 100%;
  text-align: left;
  width: 100%;
}


.wrapper {
  margin: 20px auto 0;
  overflow:hidden;
  text-align: left;
  width: 980px;
}

.container {
  float: right;
  width: 730px;
}

.sourceContainer p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 10px;
}



/*===============================

    コンテンツ

================================*/
.intervewContainer {
  background: url("../../img/interview-relay/road7.jpg") repeat-y top left;
  padding-bottom: 30px;
}

.headline_main { margin-bottom: 30px; }

.txtBox {
  font-size: 17px;
  line-height: 1.7;
}

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

.txtBox_lead {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.7;
  margin: 30px 0;
  text-align: center;
}




/*
    記事リスト
================================*/
.indexListCont { margin: 30px 0; }

/* ラベル */
.tabItem {
  /*background-color: #8faeff;
  color: #fff;
  cursor: pointer;
  height: 30px;
  line-height: 30px;
  position: relative;
  text-align: center;*/
  margin-right: 30px;
  display: inline-block;
  width: calc(100% / 3.5);
}

.tabItem:nth-of-type(3n) { margin-right: 0; }

.tabItem_link {
  background-color: #8faeff;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  margin-right: 30px;
  position: relative;
  text-align: center;
  width: 100%;
}

.tabItem_link > span {
  display: inline-block;
  letter-spacing: -9px;
  margin-right: 5px;
}

.tabItem_link::after {
  border-right: 15px solid transparent;
  border-top: 30px solid #8faeff;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  right: -15px;
  width: 0;
}

/* ラベル非可動 */
.tabItem_link.disabled {
  cursor: default;
  background-color: #ccc;
  color: #666;
}

.tabItem_link.disabled::after { border-top-color: #ccc; }

/* ラベル選択時 */
.tabItem_link.is-on { background-color: #5280f9; }

.tabItem_link.is-on::after { border-top-color: #5280f9; }

/* ページアクティブ時 */
.tabItem_link.active {
  background-color: #5280f9;
  cursor: default;
  pointer-events: none;
}

.tabItem_link.active::after { border-top-color: #5280f9; }

/* ホバー時 */
a.tabItem_link:hover {
  background-color: #5280f9;
  color: #fff;
  text-decoration: none;
}

a.tabItem_link:hover::after { border-top-color: #5280f9; }

/* リスト */
/*.indexListCont_cont { display: none; }

.indexListCont_cont.is-on { display: block; }*/

.indexList { margin: 20px 0 20px 120px; }

.indexList_item { position: relative; }

.indexList_item::before {
  color: #5280f9;
  content: "\f178";
  display: block;
  font-family: "fontAwesome";
  font-size: 18px;
  position: absolute;
  top: 0;
  left: 0;
}

.indexList_item + .indexList_item { margin-top: 10px; }

.indexList_wrap { padding-left: 30px; }

.indexList_link {
  color: #333;
  display: block;
  font-size: 14px;
  transition: .3s;
}

.indexList_link.disabled { pointer-events: none; }

.indexList_link:hover {
  color: inherit;
  opacity: .6;
}

.indexList_num {
  color: #5280f9;
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  width: 55px;
}/* vol.n */

.indexList_name {
  display: inline-block;
  line-height: 1.5;
  padding-left: 60px;
}/* タイトル＋名前 */

.indexList_name > span {
  font-size: 15px;
  font-weight: 700;
}

.indexList_name > span.fw-bold { color: #003ee0; }



/*===============================

    記事本文

================================*/
.mainContainer {
  background-image: url("../../img/interview-relay/img_ttlBg.png");
  background-repeat: no-repeat;
  background-position: left top;
  padding-top: 150px;
}

.mainArticle + .mainArticle { margin-top: 60px; }

/*
    記事のタイトル周り
================================*/
.articleHeader {
  align-content: center;
  background-color: #5280f9;
  background-image: url("../../img/interview-relay/mark3.png");
  background-position: 15px center;
  background-repeat: no-repeat;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  width: 90%;
}

.articleHeader::after {
  border-right: 65px solid transparent;
  /*border-top: 134px solid #5280f9;*/
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  right: -65px;
  width: 0;
}

.articleHeader.line1::after { border-top: 102px solid #5280f9; }/* タイトルも筆者情報も1行の場合 */
.articleHeader.line1-2::after { border-top: 117px solid #5280f9; }/* タイトルが1行で筆者情報が2行の場合 */
.articleHeader.line2::after { border-top: 139px solid #5280f9; }/* タイトルが2行で筆者情報も1行の場合 */
.articleHeader.line2-2::after { border-top: 154px solid #5280f9; }/* タイトルが2行で筆者情報も2行の場合 */


.articleHeader_img {
  align-items: center;
  display: flex;
  width: 20%;
}

.articleHeader_content {
  padding: 20px 0 20px 155px;
  position: relative;
  width: 100%;
}

.articleHeader_trainingName {
  background-color: #333;
  box-shadow: 0px 1px 8px 0px #333;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  padding: 8px 10px;
  position: absolute;
  top: -25px;
  left: 155px;
}

.articleHeader_ttl {
  color: #fff;
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.articleHeader_name {
  font-size: 15px;
  font-weight: 500;
  padding-right: 100px;
}

.articleHeader_serialNum {
  font-size: 35px;
  font-style: oblique;
  font-weight: 500;
  position: absolute;
  right: 5px;
  bottom: 10px;
}

.articleTtl {
  color: #3571d3;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin: 20px 0;
}

/*
    記事
================================*/
.articleBody {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  /*padding: 0 30px*/
}

.articleBody_imgBox { width: 25%; }

.articleBody_imgBox > p + p { margin-top: 20px; }

.articleBody_imgBox img { width: 100%;height: auto; }


.articleBody_txtBox {
width: 70%;
}

.headline_color-blue {
  color: #3571d3;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
}

.recommendLink { margin: 0 0 30px; }
.recommendLink_item {}
.recommendLink_item + .recommendLink_item { margin-top: 10px; }
.recommendLink_link {
  color: #3571d3;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 1em;
  position: relative;
}

.recommendLink_link::before {
  content:  "＞";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/* 強調部分 */
.emphasis {
  color: #222;
  font-weight: 700;
}

.emphasis-script { color: #4a5ea5; }

/*===============================

    ★★レスポンシブ

================================*/
@media screen and (max-width:768px) {
.wrapper { width: 100%; }

.container {
  float: none;
  width: 100%;
}

}/* @media */

@media screen and (max-width:600px) {
.articleHeader {
  background-image: none;
  width: 100%;
}
.articleHeader_content {
  padding: 0 0 20px
}
.articleHeader_trainingName {
  font-size: 20px;
  margin-bottom: 5px;
  position: static;
}
.articleHeader_ttl { margin: 0 10px 10px; }
.articleHeader_name { margin-left: 10px; }
}/* @media */

@media screen and (max-width:599px) {
.txtBox_lead > br { display: none; }
.tabItem {
  margin-bottom: 15px;
  width: 90%;
}
.indexList { margin: 20px 0; }
.mainArticle { background-color: rgba(255,255,255,.6); }
.articleHeader_ttl { font-size: 20px; }
.articleHeader_ttl > br { display: none; }
.articleBody { flex-flow: column wrap; }
.articleBody_imgBox,
.articleBody_txtBox { width: 100% }
}/* @media */


