/*! Writen  by SCSS */
.news_list {
  margin-bottom: 30px; }
  .news_list .news_item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px dotted #000000;
    padding-bottom: 15px;
    margin-bottom: 15px; }
    @media screen and (max-width: 480px) {
      .news_list .news_item {
        flex-wrap: wrap; } }
    .news_list .news_item .date {
      font-size: 14px;
      line-height: 1.4;
      width: 5em;
      margin-right: 25px; }
      @media screen and (max-width: 480px) {
        .news_list .news_item .date {
          font-size: 12px; } }
    .news_list .news_item .news_icon {
      min-width: 130px;
      margin-right: 20px; }
    .news_list .news_item .news_text {
      font-size: 14px;
      line-height: 1.4; }
      @media screen and (max-width: 480px) {
        .news_list .news_item .news_text {
          font-size: 12px;
          width: 100%;
          margin-top: 10px; } }
    .news_list .news_item a {
      transition: opacity 0.3s ease-in-out; }
      body:not(.mobile) .news_list .news_item a:hover {
        opacity: 0.6; }

.news_icon {
  font-size: 13px;
  line-height: 1;
  color: #fff;
  padding: 3px 5px;
  text-align: center; }
  @media screen and (max-width: 480px) {
    .news_icon {
      font-size: 12px; } }
  .news_icon.futami {
    background: #36c; }
  .news_icon.yamagata {
    background: #003894; }
  .news_icon.auto_far {
    background: #1d2088; }
  .news_icon.auto_info {
    background: #004896; }

.hr {
  border-top: 5px solid #083692;
  width: 100%;
  height: 5px;
  margin: 0 0 30px; }
  @media screen and (max-width: 480px) {
    .hr {
      margin: 0 0 20px; } }

.tab_wrap .tab {
  display: flex;
  justify-content: center;
  align-items: center; }
  @media screen and (max-width: 600px) {
    .tab_wrap .tab {
      flex: 5 0 0; } }
  .tab_wrap .tab li {
    margin-right: 10px; }
    .tab_wrap .tab li:last-child {
      margin-right: 0; }
    .tab_wrap .tab li a {
      display: block;
      width: 30px;
      text-align: center;
      height: 30px;
      line-height: 28px;
      border: 1px solid #ccc;
      font-size: 14px;
      transition: 0.3s all ease-in-out 0s; }
      body:not(.mobile) .tab_wrap .tab li a:hover {
        background: #083692;
        color: #fff; }
    .tab_wrap .tab li span {
      display: block;
      width: 30px;
      height: 30px;
      line-height: 28px;
      text-align: center;
      border: 1px solid #083692;
      background: #083692;
      font-size: 14px;
      color: #fff; }

.news_ttl {
  font-size: 24px;
  margin: 0 0 20px; }
  @media screen and (max-width: 480px) {
    .news_ttl {
      font-size: 18px; } }

.news_col {
  display: flex;
  align-items: center;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px dotted #262626; }
  .news_col dt {
    margin: 0 20px 0 0;
    font-size: 14px; }
  .news_col dd {
    min-width: 130px;
    color: #fff;
    text-align: center;
    font-size: 13px; }

.news_msg {
  margin: 0 0 30px; }
  .news_msg p {
    margin-bottom: 10px; }

.back_button {
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  padding: 10px;
  position: relative;
  z-index: 1;
  border: 1px solid #d9d9d9;
  background: #fff;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out,border 0.5s ease-in-out; }
  .back_button > span {
    margin-left: auto;
    margin-right: auto; }
  .back_button::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #313131;
    border-right: 1px solid #313131;
    transform: rotate(45deg);
    transition: all 0.5s ease-in-out; }
  body:not(.mobile) .back_button:hover {
    color: #fff;
    border: 1px solid #083692;
    background: #083692; }
    body:not(.mobile) .back_button:hover::after {
      border-top: 1px solid #fff;
      border-right: 1px solid #fff; }
