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


     追加


***************************************/
/*最小値:$value+0.2 → 可変（$value + 0.625vw（画面幅320px:2px, 800px:5px, 1200px:7.5px,2560px:12px））→ 最大値:$value + 1.2*/
/* =============================================================================


     news


============================================================================= */
.news-flex {
  gap: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-bar {
  min-width: 200px;
  width: 30%;
}

.news-bar-ttl {
  color: #1d2088;
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 1.6px;
}

.news-category-item {
  border-top: 1px solid #313131;
}

.news-category-item:nth-last-child(1) {
  border-bottom: 1px solid #313131;
}

.news-category-link {
  font-size: 2rem;
  font-weight: bold;
  padding: 0.5em 0;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.news-category-link:hover {
  opacity: 0.7;
}

.news-item-link_ball {
  background: #073cb8;
  border-radius: 50%;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 10px;
}

.news-item-link_ball:before {
  background: #073cb8;
  height: 10px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 10px;
}

.news-item-link:hover .news-item-link_ball {
  background: #073cb8;
  height: 40px;
  width: 40px;
}

.news-item-link:hover .news-item-link_ball:before, .news-item-link:hover .news-item-link_ball:after {
  background: #fff;
  border-radius: 9999px;
  border-radius: 9999px;
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 12px;
}

.news-item-link:hover .news-item-link_ball:before {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.news-item-link:hover .news-item-link_ball:after {
  left: calc(50% - 2px);
  position: absolute;
  top: calc(50% - 0.5px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
  width: 8px;
}

.news-container {
  padding: 80px 0 80px 80px;
  position: relative;
  width: calc(70% - 60px);
  z-index: 1;
}

.news-container:before {
  background: #d7e7f0;
  border-radius: 0 30px 30px 0;
  border-radius: 30px 0 0 30px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: calc(100% + 7.5vw);
  z-index: -1;
}

.news-item {
  border-top: 1px solid #313131;
}

.news-item:nth-last-child(1) {
  border-bottom: 1px solid #313131;
}

.news-item-link {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.news-item-link:hover {
  background: #fff;
}

.news-item-img {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  max-width: 240px;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 100%;
  width: 100%;
}

.news-item-img:before {
  content: "";
  display: block;
  padding-top: 66.6666666%;
  /* 高さを幅の%に固定 */
}

.news-item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /*     top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
  width: 100%;
}

.news-item-link:hover .news-item-img img {
  /*     max-width: unset;
    max-height: unset;
    width: 120%;
    height: 120%; */
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.news-item-txtbox {
  width: calc(100% - 260px);
}

.news-item-date {
  font-weight: bold;
  margin-top: 0.5em;
}

.news-item-ttl {
  font-size: 2rem;
  font-weight: bold;
}

.news-item-category,
.single-category {
  background: #fff;
  border-radius: 12px;
  display: inline-block;
  font-size: 1.4rem;
  padding: 0 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.news-item-link:hover .news-item-category, .news-item-link:hover
.single-category {
  background: #d7e7f0;
}

.page-contents {
  width: 100%;
}

/* =============================================================================


     single


============================================================================= */
.news-single-info {
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-ttl {
  font-size: 3.8rem;
  font-weight: bold;
  margin-top: 10px;
}

.single-btnbox {
  margin: 90px auto 0;
  max-width: 300px;
  width: 300px;
}

.single-mv {
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
}

.single-btn {
  max-width: 300px;
}

@media (max-width: 1208px){
  .news-container:before {
    width: calc(100% + 24px);
  }
  .single-ttl {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px){
  .news-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-bar {
    margin: 50px auto 0;
    max-width: 480px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .news-bar-ttl {
    font-size: 2.6rem;
  }
  .news-category-link {
    font-size: 1.6rem;
  }
  .news-item-link_ball {
    display: none;
  }
  .news-container {
    padding: 40px 0;
    padding: 60px 0 60px 16px;
    width: 100%;
  }
  .news-container:before {
    width: calc(100% + 16px);
  }
  .news-item-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-item-txtbox {
    position: relative;
    width: 100%;
  }
  .single-ttl {
    font-size: 2.4rem;
  }
  .single-btnbox {
    margin-top: 40px;
  }
}


/*# sourceMappingURL=news.css.map*/