@charset "utf-8";

/* ------------------------------------------------------------------------------------------
カテゴリ内共通で読み込んでいるCSSです。
そのカテゴリ独自かつカテゴリ内でのみ共有するスタイルを記述します。
例）そのカテゴリ専用のお知らせやバナー設置等

※ただしページ固有に限定されるスタイルは、HTML内にインラインで記述。
※カテゴリをまたいで使用するスタイルは「/pages/jpn/assets/css/tgr-template.css」に追記。

10px = 約2.5vw
---------------------------------------------------------------------------------------------*/

/* Common Parts
----------------------------------------------*/

#contents-top-navigation .sp-ctn-menu-trigger {
  display: none;
}

#article * {
  box-sizing: border-box;
}

#article .-en {
  font-family: "DecimaMonoPro";
}

#article .ttl {
  position: relative;
  padding-left: 20px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: -.025em;
}

#article .ttl.-row2 {
  padding-left: 30px;
}

#article .ttl.-en {
  font-style: italic;
  font-weight: normal;
}

#article .ttl::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) skew(-12deg, 0deg);
  width: 3px;
  height: calc(100% - 20px);
  background-color: #E60010;
}

#article .btn_list_item {
  width: 100%;
  margin: 0 auto;
}

#article .btn_link {
  position: relative;
  display: block;
}

#article .btn_link_txt{
  padding: 24px 10px;
  background: #f2f2f2;
  color: #000;
  text-align: center;
  text-decoration: none;
}

#article .btn_link_txt span {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1;
  font-weight: bold;
  font-size: 14px;
}

#article .btn_link_ico {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  width: 10px;
}

#article .btn_link_ico.-hover {
  display: none;
}

#article .btn_link .btn_link_item {
  position: relative;
	display: inline-block;
	padding-right: 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

#article .btn_list.-row2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

#article .btn_list.-row2 .btn_list_item {
  margin-left: 15px;
  margin-right: 15px;
}

@media (min-width: 871px) {
  #article .u-pc-hidden {
    display: none;
  }

  #article .btn_list .btn_list_item {
    max-width: 360px;
  }

  /* hover */
  #article .btn_link .btn_link_txt::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transform: scale(0, 1);
    transition: transform .15s;
    background: #E60010;
  }

  #article .btn_link:hover .btn_link_txt::before {
    transform: scale(1, 1);
  }

  #article .btn_link:hover .btn_link_txt span {
    color: #fff;
  }

  #article .btn_link:hover .btn_link_ico {
    display: none;
  }

  #article .btn_link:hover .btn_link_ico.-hover{
    display: block
  }
}

@media (max-width: 870px) {
  #article .u-sp-hidden {
    display: none;
  }

  #article .ttl {
    padding-left: 3.75vw;
    font-size: 7vw;
  }

  #article .ttl.-row2 {
    font-size: 5vw;
  }

  #article .ttl::before {
    height: calc(100% - 2.5vw);
  }

  #article .btn_link_poster img {
    width: 100%;
  }

  #article .btn_link_txt{
    position: relative;
  }

  #article .btn_link_txt span {
    font-size: 3.75vw;
  }

  #article .btn_link_ico {
    right: 5vw;
    width: 2.5vw;
  }

  #article .js-scrollTop .btn_link_ico {
    transform: translate(0, -50%) rotate(-90deg);
  }

  #article .btn_list.-row2 {
    flex-wrap: wrap;
  }

  #article .btn_list.-row2 .btn_list_item {
    margin: 2vw 0;
    width: 100%;
  }
}


/* Common Logo
----------------------------------------------*/
#contents-top-navigation .ctn-kind-menu .ctn-page-name a {
  transform: none;
}
#contents-top-navigation .ctn-page-name span{
  display: flex;
  align-items: center;
}

#contents-top-navigation .ctn-page-name img {
  width: 120px;
}

#contents-top-navigation .ctn-page-name:hover img {
  opacity: .7;
}

@media (max-width: 870px) {
  #contents-top-navigation .ctn-page-name img {
    width: 20vw;
  }
}


/* Common Layout
----------------------------------------------*/
#article .contents {
  padding: 70px 40px 100px;
}

#article .contents_inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 870px) {
  #article .contents {
    padding: 10vw 5vw 15vw;
  }
}

/* Kv
----------------------------------------------*/
#article .kv_area iframe{
  width: 100%;
  height: 56.25vw;
  max-height: 720px;
}

/* Introduction
----------------------------------------------*/
#article .introduction .date {
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: -0.04em;
  line-height: 1.88;
  color: rgba(0, 0, 0, .5);
  font-family: 'DecimaMonoPro';
}

#article .introduction_txt {
  margin-top: 40px;
}

#article .introduction_txt p {
  line-height: 2;
  font-size: 18px;
}

#article .introduction_txt p:not(:first-child) {
  margin-top: 34px;
}

#article .introduction_btn{
  margin-top: 70px;
}

@media (max-width: 870px) {
  #article .introduction .date {
    margin-top:5vw;
    font-size: 3.5vw;
  }

  #article .introduction_txt {
    margin-top: 7.5vw;
  }

  #article .introduction_txt p {
    font-size: 4vw;
  }

  #article .introduction_txt p:not(:first-child) {
    margin-top: 7.5vw;
  }

  #article .introduction_btn{
    margin-top: 12.5vw;
  }

  #article .introduction_btn .btn_list_item:not(:first-child){
    margin-top: 5vw;
  }
}

/* Introduction Report
----------------------------------------------*/
#article .introduction_report{
  margin-top: 70px;
}

#article .introduction_report_card_txt_row {
  line-height: 1;
}

#article .introduction_report_card_txt_row p {
  line-height: 1.8;
}

@media (min-width: 871px) {
  #article .introduction_report_card{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #article .introduction_report_card:not(:first-child){
    margin-top: -30px;
  }

  #article .introduction_report_card_img {
    width: 66%;
  }

  #article .introduction_report_card_txt {
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    min-width: 40%;
  }

  #article .introduction_report_card_txt_row {
    margin: 0.83vw 0;
  }

  #article .introduction_report_card_txt_row p {
    display: inline-block;
    padding: 0 10px;
    padding: 0 0.83vw;
    font-size: 1.5vw;
    color: #fff;
    background: #000;
  }

  #article .introduction_report_card:nth-child(even) {
    flex-direction: row-reverse;
  }

  #article .introduction_report_card:nth-child(odd) .introduction_report_card_txt {
    right: 5%;
  }

  #article .introduction_report_card:nth-child(even) .introduction_report_card_txt {
    left: 5%;
  }

  #article .introduction_report_card_txt_row p span.u-pc-hidden{
    display: none;
  }

  #article .introduction_report_card_txt_row p span.u-sp-hidden {
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 1200px) {
  #article .introduction_report_card:not(:first-child){
    margin-top: -50px;
  }

  #article .introduction_report_card_txt_row {
    margin: 10px 0;

  }

  #article .introduction_report_card_txt_row p {
    padding: 0 10px;
    font-size: 18px;
  }
}

@media (max-width: 870px) {
  #article .introduction_report{
    margin-top: 15vw;
  }

  #article .introduction_report_card:not(:first-child){
    margin-top: 7.5vw;
  }

  #article .introduction_report_card_txt {
    padding-left: 4vw;
    margin-top: -5vw;
  }

  #article .introduction_report_card_txt_row {
    margin: 0;
  }

  #article .introduction_report_card_txt_row p span {
    display: inline-block;
    padding: 0 3vw;
    margin: 1vw 0;
    font-size: 4vw;
    color: #fff;
    background: #000;
    letter-spacing: 0;
  }

  #article .introduction_report_card_txt_row p span.u-pc-hidden{
    padding: 0;
    margin: 0;
  }

  #article .introduction_report_card_txt_row p span.u-sp-hidden {
    display: none;
  }
}

/* Race
----------------------------------------------*/
#article .race {
  margin-top: 100px;
}

#article .race + .race {
  margin-top: 50px;
}

#article .race_title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  font-size: 24px;
  font-weight: 600;
}

#article .race > .race_title {
  margin-bottom: 50px;
}

#article .race_hdg {
  font-size: 24px;
  letter-spacing: -0.02em;
  font-style: italic;
}

#article .race_hdg:first-child {
  margin-top: 20px;
}

#article .race_copy {
  margin-top: 12px;
  font-size: 14px;
  list-style: 2;
  font-weight: 600;
}

#article .race_txt {
  margin-top: 5px;
  font-size:  14px;
  line-height: 2;
}

#article .race_more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}

#article .race_more_txt {
  line-height: 1;
  font-style: italic;
  transform: translate(0, 10%);
}

#article .race_more_ico {
  width: 10px;
  margin-left: 5px;
}


@media (min-width: 871px) {
  #article .race__link {
    display: flex;
    justify-content: space-between;
  }

  #article .race_img {
    width: 50%;
  }

  #article .race_description {
    width: 50%;
    padding-left: 5%;
  }

  #article .race_hdg:first-child {
    margin-top: 0;
  }
}

@media (max-width: 870px) {
  #article .race {
    margin-top: 15vw;
  }

  #article .race + .race {
    margin-top: 10vw;
  }

  #article .race_description {
    margin-top: 5vw;
  }

  #article .race_title {
    padding-bottom: 3.5vw;
    margin-bottom: 3.5vw;
    font-size: 4.5vw;
  }

  #article .race > .race_title {
    margin-bottom: 7.5vw;
  }

  #article .race_hdg {
    font-size: 5vw;
  }

  #article .race_copy {
    margin-top: 3.5vw;
    font-size: 3.25vw;
  }

  #article .race_txt {
    margin-top: 1.25vw;
    font-size: 3.25vw;
  }

  #article .race_more {
    margin-top: 5vw;
  }

  #article .race_more_txt {
    font-size: 3.5vw;
  }

  #article .race_more_ico {
    width: 2.1vw;
    margin-left: 1vw;
  }
}

/* Team
----------------------------------------------*/
#article .team {
  margin-top: 100px;
}

#article .team_title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  font-size: 24px;
  font-weight: 600;
}

#article .team_hdg {
  font-size: 24px;
  letter-spacing: -0.02em;
  font-style: italic;
}

#article .team_copy {
  margin-top: 12px;
  font-size: 14px;
  list-style: 2;
  font-weight: 600;
}

#article .team_more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}

#article .team_more_txt {
  line-height: 1;
  font-style: italic;
}

#article .team_more_ico {
  width: 10px;
  margin-left: 5px;
}

@media (min-width: 871px) {
  #article .team__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #article .team_img {
    width: 50%;
  }

  #article .team_description {
    width: 50%;
    padding-left: 5%;
  }
}

@media (max-width: 870px) {
  #article .team {
    margin-top: 15vw;
  }

  #article .team_description {
    margin-top: 5vw;
  }

  #article .team_title {
    padding-bottom: 3.5vw;
    margin-bottom: 3.5vw;
    font-size: 4.5vw;
  }

  #article .team_hdg {
    font-size: 5vw;
  }

  #article .team_copy {
    margin-top: 3.5vw;
    font-size: 3.25vw;
  }

  #article .team_more {
    margin-top: 5vw;
  }

  #article .team_more_txt {
    font-size: 3.5vw;
  }

  #article .team_more_ico {
    width: 2.1vw;
    margin-left: 1vw;
  }
}

/* Link
----------------------------------------------*/
#article .link {
  margin-top: 100px;
}

#article .link_list{
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}

#article .link_list_item {
  border: 1px solid rgba(0, 0, 0, .1);
  margin-right: 10px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1;
}

#article .link_list_item a {
  display: block;
  padding: 10px 12px;
}

#article .link_list_item a:hover{
  background: rgba(0, 0, 0, .1);
}

#article .link_btn {
  margin-top: 70px;
}

@media (max-width: 870px) {
  #article .link {
    margin-top: 15vw;
  }

  #article .link_list_item {
    margin-right: 2.5vw;
    margin-top: 2.5vw;
    font-size: 3vw;
  }

  #article .link_list_item a {
    padding: 2.5vw 3vw;
  }

  #article .link_btn {
    margin-top: 12.5vw;
  }
}

/* Recommend
----------------------------------------------*/
#article .recommend{
  margin-top: 100px;
}

#article .recommend_list {
  margin-top: 10px;
}

@media (min-width: 871px) {
  #article .recommend_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #article .recommend_list:after{
    content: "";
    display: block;
    width: calc(33.33% - 20px);
    height: 1px;
  }
}

@media (max-width: 870px) {
  #article .recommend{
    margin-top: 15vw;
  }

  #article .recommend_list {
    margin-top: 2.5vw;
  }

  #article .recommend_list:after{
    display: none;
  }
}

/* Recommend  Card
----------------------------------------------*/
#article .recommend_card{
  margin-top: 30px;
  width: calc(33.33% - 20px);
}

#article .recommend_card_link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#article .recommend_card_img {
  display: block;
  min-height: 0%;
}

#article .recommend_card_body {
  margin-top: 20px;
  margin-bottom: 20px;
}

#article .recommend_card_category {
  font-size: 14px;
  color: #E60010;
}

#article .recommend_card_title {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.66;
  font-weight: 600;
}

#article .recommend_card_txt {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.66;
}

#article .recommend_card_bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin-top: auto;
  margin-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

#article .recommend_card_date {
  color: #7F7F7F;
  font-size: 14px;
}

#article .recommend_card_more {
  display: flex;
  align-items: center;
}

#article .recommend_card_more_txt {
  line-height: 1;
}

#article .recommend_card_more_ico {
  width: 10px;
  margin-left: 5px;
}

@media (max-width: 870px) {
  #article .recommend_card{
    margin-top: 7.5vw;
    width: 100%;
  }

  #article .recommend_card_body {
    margin-top: 4vw;
    margin-bottom: 4vw;
  }

  #article .recommend_card_catgory{
    font-size: 2.75vw;
  }

  #article .recommend_card_title {
    margin-top: 1vw;
    font-size: 3vw;
  }

  #article .recommend_card_txt {
    display: none;
  }

  #article .recommend_card_bottom {
    padding: 4vw 0;
  }

  #article .recommend_card_data {
    font-size: 3vw;
  }

  #article .recommend_card_more_txt {
    font-size: 3.5vw;
  }

  #article .recommend_card_more_ico {
    width: 2.1vw;
    margin-left: 1vw;
  }
}

/* news
----------------------------------------------*/
.card-box .card_label {
  font-family: 'DecimaMonoPro', YuGothic, '游ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴシック ProN', Meiryo, 'メイリオ', sans-serif;
  color: #e60010;
  align-items: baseline;
}
.card-box .card_label li + li:before {
  content: ",";
  color: #a3a3a3;
}

.content-box + .content-box {
  padding-top: 0;
}

.card-box #news-menu-ig-sp_more.go_list a:before,
.card-box #news-menu-ig-sp_more.go_list a:after {
  content: "";
  position: absolute;
}
.card-box #news-menu-ig-sp_more.go_list a:before {
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background-color: #e60010;
}
.card-box #news-menu-ig-sp_more.go_list a:after {
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background-color: #e60010;
}

@media (max-width: 768px) {
  .md-direction-column.card-box .card_info {
    border-bottom: 0;
  }
  .card-box .card_inr {
    display: flex;
    justify-content: space-between;
  }
  .md-direction-column.card-box .card_inr {
    flex-direction: column;
  }
  .card-box .card_image {
    width: 34.5%;
  }
  .md-direction-column.card-box .card_image {
    width: 100%;
  }
  .card-box .card_text {
    width: 65.5%;
    padding: 0;
    padding-left: 3%;
  }
  .md-direction-column.card-box .card_text {
    width: 100%;
    padding-top: 10px;
    padding-left: 0%;
  }
  .card-box .card_date {
    font-family: 'DecimaMonoPro', sans-serif;
    color: #a3a3a3;
    font-size: 12px;
    font-size: 3.2vw;
    display: block;
    position: relative;
    padding-right: .5em;
    margin-right: .5em;
  }
  .card-box .card_date:after {
    content: "";
    border-left: 1px solid #b2b2b2;
    width: 1px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: -2px;
    transform: translateY(-50%);
  }
  .card-box .card_label li {
    line-height: 1;
    letter-spacing: -0.1em;
  }
  .card-box .card_label li.lang-jp {
    font-size: 11px;
    font-size: 2.9333vw;
  }
  .card-box .card_label li.lang-en {
    font-size: 12px;
    font-size: 3.2vw;
  }
  .card-box .card_label li + li:before {
    content: ",";
    color: #a3a3a3;
  }
  .card-box .card_ttl {
    font-size: 12px;
    font-size: 3.2vw;
    font-weight: bold;
    margin-bottom: 0;
  }
  .md-direction-column.card-box .card_foot {
    display: flex !important;
    position: relative;
    right: 0;
    left: 0;
    border-top-width: 1px;
    margin-top: 15px;
  }
  .card-box .card_more {
    padding: 5px 25px 5px 15px;
  }
  .md-direction-column.card-box .card_more {
     padding: 10px 25px 10px 15px;
  }
  .card-box .go_list {
    padding: 0;
  }
  .card-box .go_list a {
    background-color: #f2f2f2;
  }
}

@media (min-width: 769px) {
  .card-box .card_meta {
    margin-bottom: 5px;
  }
  .card-box .card_label li.lang-jp {
    font-size: 13px;
  }
  .card-box .card_label li.lang-en {
    font-size: 14px;
  }
  .card-box .card_label li:not(.lang-en) {
    font-weight: bold;
  }
}

/* insidegr-article-news */
.insidegr-article-news > .content-box {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 769px) {
  .insidegr-article-news {
    padding: 0 40px;
  }
}


#article .news {
  margin-top: 100px;
}

#article .news_list {
  margin-top: 10px;
}

@media (min-width: 871px) {
  #article .news_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #article .news_list:after{
    content: "";
    display: block;
    width: calc(33.33% - 20px);
    height: 1px;
  }
}

@media (max-width: 870px) {
  #article .news{
    margin-top: 15vw;
  }

  #article .news_list {
    margin-top: 2.5vw;
  }

  #article .news_list:after{
    display: none;
  }
}

/* info card */
#article .card_info{
  width: calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
}

#article .card_info .card_inr {
  height: 100%;
  display: flex;
}

#article .card_info .card_image {
  display: block;
  min-height: 0%;
}

#article .card_info .card_category{
  margin-top: 20px;
  font-size: 14px;
  color: #E60010;
}

#article .card_info .card_text{
  margin-top: 5px;
}

#article .card_info .card_ttl {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.66;
  font-weight: 600;
}

#article .card_info .card_caption {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.66;
}

#article .card_info .card_foot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin-top: auto;
  margin-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

#article .card_info .card_date {
  color: #7F7F7F;
  font-size: 14px;
  font-family: 'DecimaMonoPro';
}

#article .card_info .card_more {
  display: flex;
  align-items: center;
  font-family: 'DecimaMonoPro';
  font-style: italic;
  font-weight: bold;
  line-height: 1;
  fill: #e60010;
}

#article .card_info .card_more svg{
  transform: scale(0.4);
}

@media (min-width: 871px) {
  #article .card_info .card_inr {
    flex-direction: column;
  }

  #article .card_text{
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
  }
}

@media (max-width: 870px) {
  #article .card_info{
    width: 100%;
    max-width: 100%;
  }

  #article .card_info:not(:first-child) {
    margin-top: 4.5vw;
    padding-top: 4.5vw;
    border-top: 1px solid rgba(0, 0, 0, .1);
  }

  #article .card_info:first-child {
    margin-top: 7.5vw;
  }

  #article .card_info .card_inr {
    justify-content: space-between;
  }

  #article .card_info .card_image {
    width: 31vw;
  }

  #article .card_info .card_text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 55vw;
    padding: 0;
    margin-top: 0;
  }

  #article .card_info .card_date {
    display: flex;
    align-items: center;
    font-size: 3vw;
  }

  #article .card_info .card_category{
    margin-top: 0;
    font-size: 3vw;
  }

  #article .card_info .card_date:after {
    content: "";
    display: block;
    height: 2.5vw;
    width: 1px;
    margin: 0 2vw;
    background: #7F7F7F;
  }

  #article .card_info .card_ttl {
    width: 100%;
    margin-top: 1vw;
    font-size: 3vw;
  }

  #article .card_info .card_caption {
    display: none;
  }

  #article .card_info .card_foot {
    display: none;
  }
}
