@charset "utf-8";
/* ===================================================================
 news.css
  - breakpoint: max-width: 767px / min-width: 768px
======================================================================*/
.f_main-header-title {
  width: 20%;
  min-width: 250px;
}
.f_main-header-lead {
  flex-grow: 1;
  width: auto;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .f_main-header-inner {
    flex-direction: column-reverse;
  }
  .f_main-header-title {
    width: 100%;
  }
  .f_pageTitle {
    display: none;
  }
  .f_main-header-lead {
    padding-top: 0;
  }
}

/*----------------------------------------------------------
 main-header
------------------------------------------------------------*/
.news-date {
  margin-left: 2px;
}
.news-pageTitle {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .news-date {
    margin: 10px 0 0;
    font-size: 1.4rem;
    color: #777;
    text-align: right;
  }
  .news-pageTitle {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

/*----------------------------------------------------------
 main-header
------------------------------------------------------------*/
.news-column {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.news-column.-alignTop {
  align-items: flex-start;
}

.news-column-context {
  flex-grow: 1;
  margin-right: 4%;
}
.news-column-img {
  display: flex;
  justify-content: space-between;
  flex-shrink: 1;
  width: 50%;
  min-width: 500px;
}
.news-column-img._size60 {
  width: 60%;
  min-width: 600px;
}
.news-column-img._size40 {
  width: 40%;
  min-width: 400px;
}
.news-column-img._size30 {
  width: 30%;
  min-width: 300px;
}

.news-column-img > div + div {
  margin-left: 3%;
}

@media screen and (max-width: 767px) {
  .news-column {
    flex-direction: column;
  }
  .news-column-context {
    width: 100%;
    margin-right: 0;
  }
  .news-column-img {
    display: block;
    width: 100% !important;
    min-width: auto !important;
    margin-bottom: 30px;
  }
  .news-column-img > div + div {
    margin: 20px 0 0;
  }
}
