@charset "UTF-8";
/* -----------------------------------------------------------
setting
----------------------------------------------------------- */
/* ===================================================================
NEWS
=================================================================== */
#main-vis {
  background: url(/assets/news/img/bg-second-main-pc.jpg) 50% bottom no-repeat;
  background-size: cover;
  width: 100%;
  height: 514px;
  color: #FFF;
}

@media screen and (max-width: 768px) {
  #main-vis {
    background: url(/assets/news/img/bg-second-main-sp.jpg) 50% bottom no-repeat;
    background-size: cover;
    height: 65.15625vw;
  }
}

#main-vis .tpl-inner-wrap {
  display: flex;
  padding-top: 233px;
}

@media screen and (max-width: 768px) {
  #main-vis .tpl-inner-wrap {
    display: block;
    padding-top: 34.375vw;
    text-align: center;
  }
}

#main-vis .sec-ttl {
  width: 280px;
  font-size: 28px;
  letter-spacing: 4px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #main-vis .sec-ttl {
    width: auto;
    font-size: 5.625vw;
  }
}

#main-vis .sec-ttl:after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  left: 0;
  top: -25px;
}

@media screen and (max-width: 768px) {
  #main-vis .sec-ttl:after {
    width: 6.25vw;
    left: 50%;
    transform: translateX(-50%);
    top: -3.90625vw;
  }
}

#main-vis .top-read {
  flex: 1;
  font-size: 14px;
  line-height: 2.2;
}

#sec-news-contents {
  padding-top: 112px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents {
    padding-top: 10.15625vw;
  }
}

#sec-news-contents .news-category-tab {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-category-tab {
    justify-content: flex-start;
    padding-bottom: 7.8125vw;
    margin-bottom: 7.8125vw;
  }
}

#sec-news-contents .news-category-tab li {
  border-radius: 25px;
  width: 140px;
  text-align: center;
  line-height: 1;
  margin: 0 5px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-category-tab li {
    width: 26.5625vw;
    margin: 0;
  }
  #sec-news-contents .news-category-tab li:not(:nth-child(3n)) {
    margin-right: 1.25vw;
  }
  #sec-news-contents .news-category-tab li:nth-child(n + 4) {
    margin-top: 3.125vw;
  }
}

@media screen and (min-width: 769px) {
  #sec-news-contents .news-category-tab li:nth-child(n + 7) {
    margin-top: 10px;
  }
}

#sec-news-contents .news-category-tab li a {
  border: 1px solid #020102;
  font-size: 16px;
  line-height: 1;
  color: #333;
  text-decoration: none;
  padding: 12px 0;
  display: block;
  border-radius: 25px;
  transition-property: color, background-color;
  transition-duration: 0.3s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* IE表示用のCSS　*/
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-category-tab li a {
    font-size: 3.75vw;
  }
}

@media all and (-ms-high-contrast: none) {
  #sec-news-contents .news-category-tab li a {
    padding: 14px 0 10px;
  }
}

#sec-news-contents .news-category-tab li a.current, #sec-news-contents .news-category-tab li a:hover {
  background-color: #020102;
  color: #FFF;
}

#sec-news-contents .news-year-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#sec-news-contents .news-year-tab li {
  margin: 0 1.5em;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-year-tab li {
    margin: 0 1em;
  }
}

#sec-news-contents .news-year-tab li:nth-child(n + 11) {
  margin-top: 1em;
}

#sec-news-contents .news-year-tab li a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-year-tab li a {
    font-size: 3.75vw;
  }
}

#sec-news-contents .news-year-tab li a.current, #sec-news-contents .news-year-tab li a:hover {
  border-bottom: 1px solid #333;
}

#sec-news-contents .news-list {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-list {
    margin-bottom: 9.375vw;
  }
}

#sec-news-contents .news-list li:not(:last-child) {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-list li:not(:last-child) {
    margin-bottom: 6.25vw;
  }
}

#sec-news-contents .news-list li dl {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-list li dl {
    display: block;
  }
}

#sec-news-contents .news-head {
  display: flex;
  align-items: center;
}

#sec-news-contents .news-date {
  display: block;
  width: 95px;
  letter-spacing: 0.02em;
  font-feature-settings: "hwid" on;
}

#sec-news-contents .news-date.new {
  line-height: 1.0;
}

#sec-news-contents .news-date.new:before {
  content: 'NEW';
  color: #FF0000;
  font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-date {
    width: 19.53125vw;
    font-size: 3.125vw;
  }
}

#sec-news-contents .news-category {
  display: block;
  width: 130px;
  background-color: #020102;
  color: white;
  line-height: 1;
  padding: 7px 0;
  text-align: center;
  letter-spacing: 0.1em;
  /* IE表示用のCSS　*/
}

@media all and (-ms-high-contrast: none) {
  #sec-news-contents .news-category {
    padding: 9px 0 5px;
  }
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-category {
    width: 20.3125vw;
    padding: 1.5625vw 0;
    font-size: 3.4375vw;
  }
}

#sec-news-contents .news-body {
  flex: 1;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-body {
    padding-top: 3.90625vw;
    padding-left: 0;
  }
}

#sec-news-contents .news-body a {
  color: inherit;
  line-height: 1.8571428571;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-body a {
    font-size: 3.4375vw;
  }
}

#sec-news-contents .news-list + p {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-list + p {
    justify-content: center;
  }
}

#sec-news-contents .news-list-nav-box {
  margin-top: 44px;
  margin-bottom: 150px;
  padding-bottom: 50px;
  border-bottom: 1px solid #cccccc;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-list-nav-box {
    margin-top: 8.59375vw;
    margin-bottom: 0;
    padding-bottom: 21.875vw;
  }
}

#sec-news-contents .news-list-nav-wrap {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-list-nav-wrap {
    padding: 0 4.6875vw;
  }
}

#sec-news-contents .news-page-nation {
  display: flex;
  justify-content: center;
  font-size: 16px;
  margin-right: 38px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-page-nation {
    display: none;
  }
}

#sec-news-contents .news-page-nation li:not(:last-child) {
  margin-right: 1.5em;
}

#sec-news-contents .news-page-nation a {
  text-decoration: none;
  color: #333;
}

#sec-news-contents .news-page-nation a.current, #sec-news-contents .news-page-nation a:hover {
  border-bottom: 1px solid #333;
}

#sec-news-contents .news-page-number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-page-number {
    font-size: 3.75vw;
  }
}

#sec-news-contents .news-page-number p {
  line-height: 1;
}

#sec-news-contents .news-page-number .current {
  border: 1px solid #333;
  width: 3em;
  text-align: right;
  padding: 5px;
  margin-right: 7px;
  -moz-appearance: textfield;
}

#sec-news-contents .news-page-nav.prev {
  margin-right: auto;
}

#sec-news-contents .news-page-nav.next {
  margin-left: auto;
}

#sec-news-contents .news-page-nav .tpl-btn {
  width: 120px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #sec-news-contents .news-page-nav .tpl-btn {
    width: 100%;
  }
}

/* ===================================================================
NEWS DETAIL
=================================================================== */
