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

    .content--inner {
      max-width: 1090px;
      width: 100%;
      margin: 0 auto;
      padding-bottom: 60px; }

    #mv-content {
        margin-top: 86px;
        background: linear-gradient(to right, #e5f5f2, #b0e4ed);}
      #mv-content .content--inner { 
        padding: 30px 0;}
      #mv-content h2 {
        margin-bottom: 10px;
        text-align: left; }
      #mv-content p {
        font-size: 18px;
        font-weight: 500;
        margin-top: 0.556em; }

    .topic-path {
      font-size: 12px;
      max-width: 1090px;
      width: 100%;
      margin: 0 auto;
      padding: 0.767em 0; }
      .topic-path li {
        line-height: 1.8;
        display: inline-block;
        margin-right: .35em; }
        .topic-path li::after {
          content: ">";
          padding-left: .6em; }
        .topic-path li:last-child {
          margin: 0; }
          .topic-path li:last-child::after {
            content: none;
            padding: 0; }
        .topic-path li a {
          display: inline; }

@media screen and (max-width: 1091px) {
  #mv-content .content--inner {
    padding: 30px 20px;
  }
  .topic-path {
    padding: 0.767em 20px;}
  }
  .content--inner {
    padding: 0 20px 60px;
  }
}

@media screen and (max-width: 980px) {

    .content--inner {
      width: calc(650 *(100vw/750)); }
    #mv-content {
      margin-top: 45px;
      padding: 20px; }
      #mv-content .content--inner {
        padding: 0; }
      #mv-content h2 {
        font-size: 22px; }
      #mv-content p {
        font-size: 16px; }
    .topic-path {
      font-size: max(1.6vw, 11px);
      padding: 0.767em calc(20 *(100vw/750)); }
  }

  /*-- news-list --*/

  #news-list a {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 24px 25px 24px 0;
    border-bottom: 1px solid rgba(39, 39, 39, 0.3);
    gap: 16px;
    position: relative;
  }
  @media screen and (max-width: 480px) {
    #news-list a {
        padding: 8px 24px 8px 0;
        gap: 8px;
        flex-wrap: wrap;
        background-image: url(../img/arrow.png);
        background-size: 20px;
        background-repeat: no-repeat;
        background-position: right center;
    }
  }
  #news-list a:hover {
    opacity: .75;
    transition: .4s;
  }
  #news-list a:first-child {
    margin-top: 60px;
    border-top:  1px solid rgba(39, 39, 39, 0.3);
  }
  @media screen and (max-width: 480px) {
    #news-list a:first-child {
      margin-top: calc(40 *(100vw/750));
    }
  }
  #news-list a .date {
    font-size: 14px;
  }
  #news-list a .tag {
      font-size: 14px;
      background: rgba(243, 244, 246, 1);
      padding: 4px 0;
      border-radius: 4px;
      display: inline-block;
      width: 120px;
      text-align: center;
  }
  @media screen and (max-width: 480px) {
    #news-list a .tag {
      font-size: 12px;
    }
  }
  @media screen and (max-width: 480px) {
    #news-list a .text {
      flex-basis: 100%;
    }
  }
  #news-list a img {
      width: 20px;
      height: 20px;
      position: absolute;
      right: 0;
  }
  @media screen and (max-width: 480px) {
    #news-list a img {
      display: none;
    }
  }
