.in_news {
  opacity: 0;
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  filter: blur(5px);
}
.is_open .in_news {
  opacity: 1;
  -webkit-filter: blur(0px);
  -moz-filter: blur(0px);
  -o-filter: blur(0px);
  filter: blur(0px);
  -webkit-transition: filter 1s cubic-bezier(0.5, 1, 0.89, 1) 1.4s, opacity 0.4s cubic-bezier(0.11, 0, 0.5, 0) 1.4s;
  -webkit-transition: opacity 0.4s cubic-bezier(0.11, 0, 0.5, 0) 1.4s, -webkit-filter 1s cubic-bezier(0.5, 1, 0.89, 1) 1.4s;
  transition: opacity 0.4s cubic-bezier(0.11, 0, 0.5, 0) 1.4s, -webkit-filter 1s cubic-bezier(0.5, 1, 0.89, 1) 1.4s;
  transition: filter 1s cubic-bezier(0.5, 1, 0.89, 1) 1.4s, opacity 0.4s cubic-bezier(0.11, 0, 0.5, 0) 1.4s;
  transition: filter 1s cubic-bezier(0.5, 1, 0.89, 1) 1.4s, opacity 0.4s cubic-bezier(0.11, 0, 0.5, 0) 1.4s, -webkit-filter 1s cubic-bezier(0.5, 1, 0.89, 1) 1.4s;
}

.in_news .news_list {
  position: relative;
}
.in_news .news_list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--color-line);
  background: url("../img/arrow.svg") no-repeat right center;
}
.in_news .news_list__item-date {
  position: relative;
}
.in_news .news_list__item-date .-year {
  position: absolute;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  left: 0;
  top: -1em;
}
.in_news .news_list__item a {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.in_news .news_detail-header {
  border-bottom: 1px solid var(--color-line);
}
.in_news .news_detail-header .-title {
  line-height: 1.6;
}
.in_news .news_detail-text {
  border-bottom: 1px solid var(--color-line);
  line-height: 1.8;
}
.in_news .news_detail-text a {
  color: var(--color-yellow);
}
.in_news .news_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.in_news .news_pager-prev, .in_news .news_pager-next {
  line-height: 0;
  position: relative;
}
.in_news .news_pager-prev a, .in_news .news_pager-next a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.in_news .news_pager-prev.is_none, .in_news .news_pager-next.is_none {
  opacity: 0.2;
}
.in_news .news_pager-prev .-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.in_news .news_pager-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.in_news .news_pager-list__item {
  text-align: center;
  position: relative;
}
.in_news .news_pager-list__item a {
  color: #FFF;
}
.in_news .news_pager-list__item.is_current {
  position: relative;
  z-index: 4;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.in_news .news_pager-list__item.is_current:after {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 100%;
  background: #FFF;
  top: 0;
  right: 20%;
  z-index: -1;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.shinobu .in_news .news_pager-list__item.is_current {
  color: var(--color-shinobu);
}
.giyu .in_news .news_pager-list__item.is_current {
  color: var(--color-giyu);
}
.obanai .in_news .news_pager-list__item.is_current {
  color: var(--color-obanai);
}
.sanemi .in_news .news_pager-list__item.is_current {
  color: var(--color-sanemi);
}
.gyomei .in_news .news_pager-list__item.is_current {
  color: var(--color-gyomei);
}
.tengen .in_news .news_pager-list__item.is_current {
  color: var(--color-tengen);
}
.mitsuri .in_news .news_pager-list__item.is_current {
  color: var(--color-mitsuri);
}
.muichiro .in_news .news_pager-list__item.is_current {
  color: var(--color-muichiro);
}
@media only screen and (min-width:961px) {
  .in_news {
    width: 850px;
    width: 60.71%;
    min-width: 850px;
    max-width: 1200px;
    margin: auto;
  }
  .in_news .news_list {
    margin-top: -40px;
  }
  .in_news .news_list__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 0;
    background-size: 10px;
    left: 0;
    -webkit-transition: left 0.2s ease-out;
    transition: left 0.2s ease-out;
  }
  .in_news .news_list__item-date {
    padding-left: 16px;
    margin-right: 40px;
  }
  .in_news .news_list__item-date .-year {
    font-size: 10px;
    top: -0.4em;
  }
  .in_news .news_list__item-date .-date {
    font-size: 32px;
  }
  .in_news .news_list__item-title {
    font-size: 15px;
    line-height: 1.4;
    padding-right: 30px;
  }
  .in_news .news_list__item:hover {
    left: 20px;
  }
  .in_news .news_detail-header {
    padding-bottom: 34px;
  }
  .in_news .news_detail-header .-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .in_news .news_detail-header .-date {
    font-size: 14px;
  }
  .in_news .news_detail-text {
    padding: 36px 0 70px;
  }
  .in_news .news_detail-text a:hover {
    text-decoration: underline;
  }
  .in_news .news_pager {
    margin-top: 50px;
  }
  .in_news .news_pager-prev, .in_news .news_pager-next {
    width: 2em;
  }
  .in_news .news_pager-prev .-icon, .in_news .news_pager-next .-icon {
    width: 12px;
    position: relative;
    -webkit-transition: left 0.2s ease-out, right 0.2s ease-out;
    transition: left 0.2s ease-out, right 0.2s ease-out;
  }
  .in_news .news_pager-next .-icon {
    margin: 0 0 0 auto;
    right: 0;
  }
  .in_news .news_pager-next:not(.is_none):hover .-icon {
    right: -10px;
  }
  .in_news .news_pager-prev .-icon {
    left: 0;
  }
  .in_news .news_pager-prev:not(.is_none):hover .-icon {
    left: -10px;
  }
  .in_news .news_pager-list {
    margin: 0 40px;
  }
  .in_news .news_pager-list__item {
    width: 3em;
  }
  .in_news .news_pager-list__item a {
    position: relative;
    display: block;
    z-index: 5;
    -webkit-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
  }
  .in_news .news_pager-list__item a:after {
    content: "";
    display: block;
    position: absolute;
    width: 0%;
    height: 100%;
    background: #FFF;
    top: 0;
    right: 20%;
    z-index: -1;
    -webkit-transition: width 0.2s ease-out;
    transition: width 0.2s ease-out;
  }
  .in_news .news_pager-list__item:hover a:after {
    width: 60%;
    left: 20%;
    right: auto;
  }
  .shinobu .in_news .news_pager-list__item:hover a {
    color: var(--color-shinobu);
  }
  .giyu .in_news .news_pager-list__item:hover a {
    color: var(--color-giyu);
  }
  .obanai .in_news .news_pager-list__item:hover a {
    color: var(--color-obanai);
  }
  .sanemi .in_news .news_pager-list__item:hover a {
    color: var(--color-sanemi);
  }
  .gyomei .in_news .news_pager-list__item:hover a {
    color: var(--color-gyomei);
  }
  .tengen .in_news .news_pager-list__item:hover a {
    color: var(--color-tengen);
  }
  .mitsuri .in_news .news_pager-list__item:hover a {
    color: var(--color-mitsuri);
  }
  .muichiro .in_news .news_pager-list__item:hover a {
    color: var(--color-muichiro);
  }
  .in_news .news_pager-back {
    width: 164px;
    -webkit-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
  }
  .shinobu .in_news .news_pager-back:hover {
    background: var(--color-shinobu);
  }
  .giyu .in_news .news_pager-back:hover {
    background: var(--color-giyu);
  }
  .obanai .in_news .news_pager-back:hover {
    background: var(--color-obanai);
  }
  .sanemi .in_news .news_pager-back:hover {
    background: var(--color-sanemi);
  }
  .gyomei .in_news .news_pager-back:hover {
    background: var(--color-gyomei);
  }
  .tengen .in_news .news_pager-back:hover {
    background: var(--color-tengen);
  }
  .mitsuri .in_news .news_pager-back:hover {
    background: var(--color-mitsuri);
  }
  .muichiro .in_news .news_pager-back:hover {
    background: var(--color-muichiro);
  }
}
@media only screen and (max-width:960px) {
  .in_news {
    width: 86.66vw;
    margin: auto;
  }
  .in_news .main_news__wrapper .news_title {
    width: 35.46vw;
    margin: auto;
  }
  .in_news .news_list__item {
    padding: 10.66vw 0;
    gap: 4vw;
    background-size: 2.66vw;
  }
  .in_news .news_list__item-date {
    padding-left: 1rem;
  }
  .in_news .news_list__item-date .-year {
    font-size: 0.9rem;
    top: -0.6em;
  }
  .in_news .news_list__item-date .-date {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
  .in_news .news_list__item-title {
    line-height: 1.4;
    padding-right: 2rem;
    margin-top: 0.8rem;
  }
  .in_news .news_detail-header {
    padding-bottom: 10.26vw;
  }
  .in_news .news_detail-header .-title {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }
  .in_news .news_detail-header .-date {
    font-size: 1rem;
  }
  .in_news .news_detail-text {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 10.13vw 0 18.66vw;
  }
  .in_news .news_detail-text iframe {
    width: 86vw;
    height: 48.375vw;
  }
  .in_news .news_pager {
    margin-top: 13.33vw;
  }
  .in_news .news_pager-prev, .in_news .news_pager-next {
    width: 2em;
  }
  .in_news .news_pager-prev .-icon, .in_news .news_pager-next .-icon {
    width: 12px;
  }
  .in_news .news_pager-next .-icon {
    margin: 0 0 0 auto;
    right: 0;
  }
  .in_news .news_pager-prev .-icon {
    left: 0;
  }
  .in_news .news_pager-list {
    margin: 0 5.33vw;
  }
  .in_news .news_pager-list__item {
    width: 2em;
    font-size: 1.2rem;
  }
  .in_news .news_pager-back {
    width: 43.2vw;
  }
}