@charset "UTF-8";
@-webkit-keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink_animation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.box1 {
  margin-bottom: 12.5vw;
}

.news-area {
  display: grid;
  grid-template-columns: 35% 65%;
}

.acc-ui {
  position: absolute;
  top: 0;
  width: calc(305 / 335 * 100%);
  z-index: 1;
}

.acc-ui .acc-select {
  width: 100%;
  background: none;
  border-bottom: solid 0.3vw #cccccc;
  line-height: 1;
  padding: calc(31/750*100vw) 0;
  cursor: pointer;
  font-size: calc(26/750*100vw);
  font-weight: bold;
  letter-spacing: .05em;
  color: #01b577;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.acc-ui .acc-select::after {
  content: '';
  display: inline-block;
  width: 3.2vw;
  height: 3.2vw;
  background-image: url(/news/img/acc-arrow.png);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  -o-transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.acc-ui li {
  -webkit-transition: opacity 0.5s ease-out calc(.05s);
  -o-transition: opacity 0.5s ease-out calc(.05s);
  transition: opacity 0.5s ease-out calc(.05s);
  opacity: 0;
}

.acc-ui.open .acc-select::after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.acc-ui.open li {
  opacity: 1;
  -webkit-transition: opacity 0.65s ease-out calc(.05s * var(--index) + .5s);
  -o-transition: opacity 0.65s ease-out calc(.05s * var(--index) + .5s);
  transition: opacity 0.65s ease-out calc(.05s * var(--index) + .5s);
}

.acc-ui.open .content-wrap {
  -webkit-transition: height 0.4s ease-out;
  -o-transition: height 0.4s ease-out;
  transition: height 0.4s ease-out;
}

.content-wrap {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 0.4s ease-out .6s;
  -o-transition: height 0.4s ease-out .6s;
  transition: height 0.4s ease-out .6s;
}

.news-category {
  grid-area: 1/1/2/3;
}

.category-acc {
  left: 0;
}

.news-category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.45vw;
}

.news-category__item {
  transition: color 0.3s ease-out, -webkit-text-stroke 0.3s ease-out;
  font-size: 1vw;
  margin-right: 2.4vw;
  letter-spacing: .05em;
  color: #c7ccc7;
}

.news-category__item.active {
  -webkit-text-stroke: 0.065vw #01b577;
  color: #01b577;
}

.news-category__item button {
  width: 100%;
  height: 100%;
  background-color: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

.news-area-year {
  grid-area: 2/1/3/2;
  border-top: 1px solid #cccccc;
}

.year-acc {
  right: 0;
}

.news-area-year__item {
  width: 25%;
  font-family: "Satoshi", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1vw;
  font-weight: 500;
  letter-spacing: .05em;
  -webkit-text-stroke: 0.05em;
  border-bottom: solid 1px #eee;
  line-height: 1;
  padding: 1vw 0 1.2vw;
  -webkit-transition: color 0.3s ease-out, border-bottom 0.3s ease-out;
  -o-transition: color 0.3s ease-out, border-bottom 0.3s ease-out;
  transition: color 0.3s ease-out, border-bottom 0.3s ease-out;
}

.news-area-year__item.active {
  color: #01b577;
  border-color: #01b577;
}

.news-area-year__item:first-child {
  margin-top: 1.45vw;
}

.news-area-year__item:not(:first-child) {
  margin-top: .2vw;
}

.news-area-year__item button {
  width: 100%;
  height: 100%;
  background-color: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
}

.news-area-list {
  grid-area: 2/2/3/3;
  border-top: 1px solid #cccccc;
}

.news-area-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 2.45vw 0 2.56vw;
  border-bottom: 1px solid #eaeaea;
}

.news-area-list__item.pdf {
  padding: 2.4vw 0 2.3vw;
}

.news-area-list__date {
  width: 8.2vw;
  font-size: 0.875vw;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.news-area-list__category {
  width: 5.94vw;
  font-size: 0.875vw;
  color: #01b577;
}

.news-area-list__text {
  width: calc(100% - 14.14vw);
  font-size: 1vw;
}

.news-area-list__text > div {
  width: 1.44vw;
  height: 2vw;
  background-image: url(/common/img/ir-news-icon.png);
  background-size: 1.44em auto;
  background-position: right center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.6em;
}

.news-area-list__text a,
.news-area-list__text a:link,
.news-area-list__text a:visited {
  transition: color 0.3s ease-out, -webkit-text-stroke 0.3s ease-out;
}

.news-navi-area {
  grid-area: 3/1/4/3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.815vw;
     -moz-column-gap: 1.815vw;
          column-gap: 1.815vw;
  margin-top: 4.375vw;
}

.news-navi-location-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.815vw;
     -moz-column-gap: 1.815vw;
          column-gap: 1.815vw;
}

.news-navi__prev,
.news-navi__next {
  width: 2.625vw;
  height: 2.625vw;
}

.news-navi__prev a,
.news-navi__next a {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  font-size: 1.5vw;
  -webkit-text-stroke: 0.05em;
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  padding-bottom: .15em;
}

.news-navi__prev.none a,
.news-navi__next.none a {
  pointer-events: none;
  color: #aaa;
}

.news-navi-location-list__item {
  min-width: 2.625vw;
  height: 2.625vw;
  border-radius: 2vw;
  background-color: #f8f7f6;
  -webkit-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}

.news-navi-location-list__item a {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 0 .75vw;
  font-size: 1vw;
  -webkit-text-stroke: 0.05em;
  color: #000;
  -webkit-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  letter-spacing: .05em;
}

.news-navi-location-list__item.active {
  background-color: #01b577;
}

.news-navi-location-list__item.active a {
  color: #fff;
}

.news-navi-location-list__item.nolink {
  pointer-events: none;
  background: none;
  min-width: auto;
}

.news-navi-location-list__item.nolink a {
  height: 100%;
  padding: 0;
}

@media screen and (min-width: 769px) {
  .news-category__item:hover {
    -webkit-text-stroke: 0.065vw #01b577;
    color: #01b577;
  }
  .news-area-year__item:hover {
    color: #01b577;
    border-color: #01b577;
  }
  .news-area-list__text a:hover,
  .news-area-list__text a:link:hover,
  .news-area-list__text a:visited:hover {
    -webkit-text-stroke: 0.065vw #01b577;
    color: #01b577;
  }
  .news-navi__prev:hover a,
  .news-navi__next:hover a {
    color: #01b577;
  }
  .news-navi-location-list__item:hover {
    background-color: #01b577;
  }
  .news-navi-location-list__item:hover a {
    color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .box1 {
    margin-bottom: 27.3vw;
  }
  .news-area {
    grid-template-columns: 50% 50%;
  }
  .news-category {
    grid-area: 1/1/2/2;
    height: 11.466vw;
    margin-bottom: calc(100 / 750 * 100vw);
  }
  .news-category__list {
    display: block;
    margin-bottom: 0;
    background-color: #fff;
  }
  .news-category__item {
    font-size: 3.7vw;
    margin-right: 0;
  }
  .news-category__item.active {
    -webkit-text-stroke: 0.2vw #01b577;
    border-color: #01b577;
  }
  .news-category__item button {
    padding: calc(31/750*100vw) 1em;
  }
  .news-category__item {
    width: 100%;
    font-size: calc(26/750*100vw);
    line-height: 1;
    border-width: 0.3vw;
    border-bottom: solid 0.3vw #eee;
    color: #000;
    -webkit-text-stroke: 0.03em;
  }
  .news-area-year {
    border: none;
    grid-area: 1/2/2/3;
    height: 11.466vw;
    margin-bottom: calc(100 / 750 * 100vw);
  }
  .news-area-year__list {
    background-color: #fff;
  }
  .news-area-year__item button {
    padding: calc(31/750*100vw) 1em;
  }
  .news-area-year__item {
    width: 100%;
    font-size: calc(26/750*100vw);
    line-height: 1;
    border-width: 0.3vw;
    padding: 0;
    border-bottom: solid .3vw #eee;
  }
  .news-area-year__item:first-child {
    margin-top: 0;
  }
  .news-area-list {
    grid-area: 2/1/2/3;
    border-top: .3vw solid #cccccc;
  }
  .news-area-list__item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border-bottom: 0.3vw solid #eaeaea;
    padding: 6.8vw 0;
  }
  .news-area-list__item.pdf {
    padding: 6.8vw 0;
  }
  .news-area-list__item.pdf a,
  .news-area-list__item.pdf a:link,
  .news-area-list__item.pdf a:visited {
    width: 90%;
    display: block;
  }
  .news-area-list__date {
    width: 30.3vw;
    font-size: 3.45vw;
    margin-bottom: 2.8vw;
  }
  .news-area-list__category {
    width: calc(100% - 30.3vw);
    font-size: 3.45vw;
  }
  .news-area-list__text {
    width: 100%;
    font-size: 3.45vw;
    text-align: justify;
    line-height: 1.61;
  }
  .news-area-list__text > div {
    width: 6.14vw;
    height: 8vw;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background-size: 100% auto;
  }
  .news-navi-area {
    margin-top: 20vw;
    margin-left: -2vw;
    margin-right: -2vw;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: auto;
       -moz-column-gap: auto;
            column-gap: auto;
  }
  .news-navi-location-list {
    -webkit-column-gap: 6vw;
       -moz-column-gap: 6vw;
            column-gap: 6vw;
  }
  .news-navi__prev,
  .news-navi__next {
    min-width: 8.4vw;
    height: 8.4vw;
    border-radius: 4.2vw;
  }
  .news-navi__prev a,
  .news-navi__next a {
    font-size: 4.8vw;
  }
  .news-navi-location-list__item {
    min-width: 8.4vw;
    height: 8.4vw;
    border-radius: 4.2vw;
  }
  .news-navi-location-list__item a {
    font-size: 3.2vw;
  }
}

.remove {
  display: none;
}
/*# sourceMappingURL=news.css.map */
