@charset "UTF-8";
/* ===================================================================
CSS information

file name  : news.css
author     : Abilive
style info : お知らせ
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : 汎用設定
=================================================================== */
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes FadeUp {
  0% {
    transform: translateY(-200%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
.con_news {
  margin-right: auto;
  margin-left: auto;
  --wrp: 10;
  --main: 7;
  --side: 2.5;
}
@media only screen and (min-width: 1025px) {
  .con_news {
    width: calc(1200 / 1440 * 100%);
    max-width: calc(1200px);
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1441px) {
  .con_news {
    max-width: calc(1200px * ((16 + 3) / 14));
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1441px) and (max-width: 1600px) {
  .con_news {
    max-width: calc(1200px * ((16 + 2) / 14));
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .con_news {
    width: calc(1200 / 1440 * 100%);
  }
}
@media only screen and (max-width: 767px) {
  .con_news {
    width: calc(388 / 428 * 100%);
  }
}
@media only screen and (min-width: 1025px) {
  .con_news {
    display: flex;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .con_news {
    --main: 10;
    --side: 7;
  }
}
@media only screen and (max-width: 767px) {
  .con_news {
    --main: 10;
    --side: 10;
  }
}
.con_news .main_news_det {
  width: calc(var(--main) / var(--wrp) * 100%);
}
.con_news .main_news {
  width: calc(var(--main) / var(--wrp) * 100%);
}
.con_news .side {
  width: calc(var(--side) / var(--wrp) * 100%);
  margin-right: 0;
  margin-left: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .con_news .side {
    margin-right: auto;
    margin-top: 5em;
  }
}
@media only screen and (max-width: 767px) {
  .con_news .side {
    margin-top: 5em;
  }
}

.main_news {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.main_news .txt_news span {
  font-size: 2rem;
  padding: 0 .2em;
}
@media only screen and (max-width: 767px) {
  .main_news .txt_news {
    width: 100%;
    text-align: center;
  }
}
.main_news .box_pager {
  display: flex;
  margin-right: 0;
  margin-left: auto;
  gap: .5em;
}
@media only screen and (max-width: 767px) {
  .main_news .box_pager {
    margin-right: auto;
    margin-left: auto;
    margin-top: 2em;
    margin-bottom: 1em;
    justify-content: center;
  }
}
.main_news .box_pager p a, .main_news .box_pager p > span {
  --bdc: var(--color-line);
  height: 100%;
  width: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition-property: border-bottom;
  transition-duration: .25s;
  transition-timing-function: ease-out;
}
@media only screen and (max-width: 767px) {
  .main_news .box_pager p a, .main_news .box_pager p > span {
    width: 2.25em;
  }
}
.main_news .box_pager p.current a, .main_news .box_pager p.current > span {
  color: var(--color-main);
  text-decoration: underline;
}
.main_news .box_pager p.btn_prev a, .main_news .box_pager p.btn_next a {
  border-bottom: 1px solid transparent;
}
.main_news .box_pager p.btn_prev a .ic_rt, .main_news .box_pager p.btn_prev a .ic_lt, .main_news .box_pager p.btn_next a .ic_rt, .main_news .box_pager p.btn_next a .ic_lt {
  transition: ease .3s margin;
}
.mouse .main_news .box_pager p.btn_prev a:hover .ic_lt, .touch .main_news .box_pager p.btn_prev a.touchstart .ic_lt {
  margin-right: .5em;
}
.touch .main_news .box_pager p.btn_prev a {
  -webkit-tap-highlight-color: transparent;
}
.touch .main_news .box_pager p.btn_prev a.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.mouse .main_news .box_pager p.btn_next a:hover .ic_rt, .touch .main_news .box_pager p.btn_next a.touchstart .ic_rt {
  margin-left: .5em;
}
.touch .main_news .box_pager p.btn_next a {
  -webkit-tap-highlight-color: transparent;
}
.touch .main_news .box_pager p.btn_next a.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.mouse .main_news .box_pager p a:hover, .touch .main_news .box_pager p a.touchstart {
  text-decoration: underline;
}
.touch .main_news .box_pager p a {
  -webkit-tap-highlight-color: transparent;
}
.touch .main_news .box_pager p a.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.main_news .box_news {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .main_news .box_news {
    margin-top: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news {
    margin-top: 1em;
  }
}
@media only screen and (min-width: 768px) {
  .main_news .box_news {
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news {
    margin-bottom: 1em;
  }
}
.main_news .box_news li a {
  text-decoration: none;
  width: 100%;
  display: flex;
  --photo: 15%;
  --margin: 3%;
  --txt: calc(100% - var(--photo) - var(--margin));
  --padtb: 2em;
  --padrl: 1em;
  --bdc: var(--color-line);
  --border: 1px solid var(--bdc);
  border-top: var(--border);
  transition-property: background-color, color;
  transition-duration: .3s;
  transition-timing-function: ease-out;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .main_news .box_news li a {
    padding: 2.14rem 2.85rem 2.14rem 1.42rem;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news li a {
    padding: 1.5em 2.5em 1.5em 1em;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news li a {
    --photo: 25%;
    --margin: 5%;
  }
}
.main_news .box_news li a .photo {
  width: var(--photo);
}
.main_news .box_news li a .photo + .box_txt {
  width: var(--txt);
  margin-right: 0;
  margin-left: auto;
}
.main_news .box_news li a .photo img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.main_news .box_news li a .box_txt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .main_news .box_news li a .box_txt .txt_inf {
    margin-right: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news li a .box_txt .txt_inf {
    margin-right: 0.75em;
  }
}
.main_news .box_news li a .box_txt .txt_inf > span {
  margin-bottom: .3em;
  background-color: var(--color-main);
  color: white;
  font-size: .9em;
  padding: 0 .5em .15em .5em;
}
.main_news .box_news li a .box_txt time {
  margin: .3em 0;
  line-height: 1.2;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .main_news .box_news li a .box_txt time {
    padding-left: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news li a .box_txt time {
    padding-left: 0.75em;
  }
}
.main_news .box_news li a .box_txt time::before {
  content: "";
  background-color: var(--color-line-1);
  position: absolute;
  height: 1em;
  width: 1px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
}
.main_news .box_news li a .box_txt .st {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
  color: var(--color-read);
  width: 100%;
  margin-top: .5em;
}
.firefox .main_news .box_news li a .box_txt .st, .ie .main_news .box_news li a .box_txt .st {
  max-height: 2.8em;
}
.main_news .box_news li a .box_txt .o-icon, .main_news .box_news li a .box_txt .o-arrow {
  transition: right .3s ease;
  position: absolute;
  right: 1em;
  width: 1em;
  height: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .main_news .box_news li a .box_txt .o-icon, .main_news .box_news li a .box_txt .o-arrow {
    right: 1em;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news li a .box_txt .o-icon, .main_news .box_news li a .box_txt .o-arrow {
    right: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news li a .box_txt .o-icon--pdf, .main_news .box_news li a .box_txt .o-icon--blank {
    transform: scale(0.9);
  }
}
@media only screen and (min-width: 768px) {
  .mouse .main_news .box_news li a:hover .box_txt .o-icon, .mouse .main_news .box_news li a:hover .box_txt .o-arrow, .touch .main_news .box_news li a.touchstart .box_txt .o-icon, .touch .main_news .box_news li a.touchstart .box_txt .o-arrow {
    right: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .mouse .main_news .box_news li a:hover .box_txt .o-icon, .mouse .main_news .box_news li a:hover .box_txt .o-arrow, .touch .main_news .box_news li a.touchstart .box_txt .o-icon, .touch .main_news .box_news li a.touchstart .box_txt .o-arrow {
    right: 0;
  }
}
.touch .main_news .box_news li a {
  -webkit-tap-highlight-color: transparent;
}
.touch .main_news .box_news li a.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.main_news .box_news li:last-child a {
  border-bottom: var(--border);
}
.main_news .box_news + .box_pager {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1025px) {
  .main_news .box_news + .box_pager {
    margin-top: 2.85rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main_news .box_news + .box_pager {
    margin-top: 2.14rem;
  }
}
@media only screen and (max-width: 767px) {
  .main_news .box_news + .box_pager {
    margin-top: 2em;
  }
}

.main_news_det .news_title .txt_inf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
}
.main_news_det .news_title .txt_inf time {
  line-height: 1.2;
  position: relative;
}
.main_news_det .news_title .txt_inf > .cate span {
  background-color: var(--color-main);
  color: white;
  font-size: .9em;
  padding: 0 .5em .15em .5em;
}
.main_news_det .news_title .title {
  font-size: 1.71rem;
  color: var(--color-read);
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  .main_news_det .news_title .title {
    margin-top: 0.71rem;
  }
}
@media only screen and (max-width: 767px) {
  .main_news_det .news_title .title {
    margin-top: 0.5em;
  }
}
html:lang(ja) .main_news_det .news_title .title {
  line-height: 1.6;
}
.main_news_det .box_det .txt {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.main_news_det .box_det > * {
  --base-margin: 3.5rem;
  margin: var(--base-margin) 0;
}
@media only screen and (max-width: 767px) {
  .main_news_det .box_det > * {
    --base-margin: 2.5rem;
  }
}
.main_news_det .box_det > .photo img {
  width: auto;
}
.main_news_det .photo .caption {
  margin-top: .75em;
  line-height: 1.4;
  display: block;
}
@media only screen and (min-width: 768px) {
  .main_news_det .photo .caption {
    font-size: 0.86rem;
  }
}
@media only screen and (max-width: 767px) {
  .main_news_det .photo .caption {
    font-size: 0.9rem;
  }
}
.main_news_det .box_photo2 {
  display: flex;
}
.main_news_det .box_photo2 .photo {
  --parent: 100;
  --col: 2;
  --width: 48;
  --margin: calc((var(--parent) - (var(--width) * var(--col))) / (var(--col) - 1));
  width: calc(var(--width) / var(--parent) * 100%);
}
.main_news_det .box_photo2 .photo:not(:first-child) {
  margin-left: calc(var(--margin) / var(--parent) * 100%);
}
.main_news_det .box_photo3 {
  display: flex;
}
.main_news_det .box_photo3 .photo {
  --parent: 100;
  --col: 3;
  --width: 31;
  --margin: calc((var(--parent) - (var(--width) * var(--col))) / (var(--col) - 1));
  width: calc(var(--width) / var(--parent) * 100%);
}
.main_news_det .box_photo3 .photo:not(:first-child) {
  margin-left: calc(var(--margin) / var(--parent) * 100%);
}
.main_news_det [class*="box_photo_txt"], .main_news_det [class*="box_txt_photo"] {
  --photo: 48;
  --text: 48;
}
@media only screen and (min-width: 768px) {
  .main_news_det [class*="box_photo_txt"], .main_news_det [class*="box_txt_photo"] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .main_news_det [class*="box_photo_txt"], .main_news_det [class*="box_txt_photo"] {
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .main_news_det [class*="box_photo_txt"], .main_news_det [class*="box_txt_photo"] {
    --photo: 100;
    --text: 100;
  }
}
.main_news_det [class*="box_photo_txt"] .photo, .main_news_det [class*="box_txt_photo"] .photo {
  width: calc(var(--photo) / 100 * 100%);
}
@media only screen and (max-width: 767px) {
  .main_news_det [class*="box_photo_txt"] .photo, .main_news_det [class*="box_txt_photo"] .photo {
    order: -1;
  }
}
.main_news_det [class*="box_photo_txt"] .box_txt, .main_news_det [class*="box_txt_photo"] .box_txt {
  width: calc(var(--text) / 100 * 100%);
}
@media only screen and (max-width: 767px) {
  .main_news_det [class*="box_photo_txt"] .box_txt, .main_news_det [class*="box_txt_photo"] .box_txt {
    margin-top: 2em;
  }
}
.main_news_det [class*="box_photo_txt"] .box_txt .txt, .main_news_det [class*="box_txt_photo"] .box_txt .txt {
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .main_news_det .box_photo_txt2, .main_news_det .box_txt_photo2 {
    --photo: 30;
    --text: 65;
  }
}
@media only screen and (max-width: 767px) {
  .main_news_det .box_photo_txt2, .main_news_det .box_txt_photo2 {
    --photo: 100;
  }
  .main_news_det .box_photo_txt2 img, .main_news_det .box_photo_txt2 span, .main_news_det .box_txt_photo2 img, .main_news_det .box_txt_photo2 span {
    max-width: 70%;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
.main_news_det .box_txt_photo .box_txt, .main_news_det .box_txt_photo2 .box_txt {
  order: -1;
}
.main_news_det .box_slider .swiper-slide-duplicate {
  height: auto;
}
.main_news_det .box_slider .swiper-slide-duplicate .inner {
  height: 100%;
}
.main_news_det .box_slider .swiper-slide-duplicate .inner img {
  height: 100%;
  object-fit: cover;
}
.main_news_det .box_movie iframe {
  aspect-ratio: 560 / 315;
  object-fit: cover;
  width: 100%;
  border: none;
}
.main_news_det .box_txt_txt {
  --txt: 100;
  --margin: 4;
}
@media only screen and (min-width: 768px) {
  .main_news_det .box_txt_txt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .main_news_det .box_txt_txt {
    --margin: 0;
  }
}
.main_news_det .box_txt_txt .box_txt {
  width: calc(var(--txt) / 100 * 100%);
}
.main_news_det .box_txt_txt .box_txt:nth-child(2) {
  margin-left: calc(var(--margin) / 100 * 100%);
}
@media only screen and (max-width: 767px) {
  .main_news_det .box_txt_txt .box_txt:nth-child(2) {
    margin-top: .5em;
  }
}
.main_news_det .box_txt_txt .box_txt .txt {
  margin-top: 0;
  margin-bottom: 0;
}
.main_news_det .box_st {
  margin-bottom: 0;
}
.main_news_det .box_st + * {
  margin-top: calc(var(--base-margin) * .2);
}
.main_news_det .box_st h3, .main_news_det .box_st h4, .main_news_det .box_st h3 {
  margin: 1em 0;
  box-sizing: border-box;
}
.main_news_det .box_st h3 {
  border-bottom: 1px solid var(--color-text-sub);
  padding-bottom: .5em;
}
.main_news_det .box_st h4 {
  border-left: 0.28rem solid var(--color-main);
  padding-left: .5em;
}
.main_news_det .box_st + .box_tbl {
  margin-top: 1.5em;
}
.main_news_det .box_sns {
  margin-top: 0.71rem;
  display: flex;
  justify-content: center;
}
.main_news_det .box_sns li {
  line-height: 1;
}
.main_news_det .box_sns li:not(:first-child) {
  margin-left: 0.71rem;
}
.main_news_det .box_btn, .main_news_det .txt_link {
  text-align: center;
}
.main_news_det .box_btn + .box_btn, .main_news_det .box_btn .txt_link, .main_news_det .txt_link + .box_btn, .main_news_det .txt_link .txt_link {
  margin-top: 1em;
  margin-bottom: 0;
}
.main_news_det .box_btn {
  text-align: center;
  width: fit-content;
  margin: auto;
  max-width: 90%;
}
.main_news_det .box_btn .c-text-set__btn {
  margin-top: 0;
}
.main_news_det .c-btn__link__text {
  max-width: none;
}
.main_news_det .c-btn--cv {
  min-width: 18.57rem;
}
.main_news_det .box_pager {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--color-sub2);
  gap: 2em;
}
@media only screen and (min-width: 1025px) {
  .main_news_det .box_pager {
    margin-top: 4.28rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main_news_det .box_pager {
    margin-top: 2.85rem;
  }
}
@media only screen and (max-width: 767px) {
  .main_news_det .box_pager {
    margin-top: 3em;
  }
}
@media only screen and (min-width: 1025px) {
  .main_news_det .box_pager {
    padding-top: 2.85rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .main_news_det .box_pager {
    padding-top: 2.14rem;
  }
}
@media only screen and (max-width: 767px) {
  .main_news_det .box_pager {
    padding-top: 2em;
  }
}
.main_news_det .box_pager > * a {
  display: flex;
  align-items: center;
  gap: .5em;
  text-decoration: none;
}
.main_news_det .box_pager .btn_prev a {
  position: relative;
}
.main_news_det .box_pager .btn_prev a .ic_lt {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  transform: translateY(-50%) scaleX(-1);
  transition: ease .3s left;
}
.mouse .main_news_det .box_pager .btn_prev a:hover .ic_lt, .touch .main_news_det .box_pager .btn_prev a.touchstart .ic_lt {
  left: -.3em;
}
.touch .main_news_det .box_pager .btn_prev a {
  -webkit-tap-highlight-color: transparent;
}
.touch .main_news_det .box_pager .btn_prev a.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
@media only screen and (max-width: 767px) {
  .main_news_det .box_pager .btn_list {
    margin-right: .5em;
    margin-left: .5em;
  }
}
.main_news_det .box_pager .btn_list > a {
  transition: ease .3s color;
}
.mouse .main_news_det .box_pager .btn_list > a:hover, .touch .main_news_det .box_pager .btn_list > a.touchstart {
  color: var(--color-cv);
}
.touch .main_news_det .box_pager .btn_list > a {
  -webkit-tap-highlight-color: transparent;
}
.touch .main_news_det .box_pager .btn_list > a.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.main_news_det .box_pager .btn_next a {
  position: relative;
}
.main_news_det .box_pager .btn_next a .ic_rt {
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  transform: translateY(-50%);
  transition: ease .3s right;
}
.mouse .main_news_det .box_pager .btn_next a:hover .ic_rt, .touch .main_news_det .box_pager .btn_next a.touchstart .ic_rt {
  right: -.3em;
}
.touch .main_news_det .box_pager .btn_next a {
  -webkit-tap-highlight-color: transparent;
}
.touch .main_news_det .box_pager .btn_next a.touchend {
  -moz-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}

.side {
  --bdc: var(--color-line);
  --bd: 1px solid var(--bdc);
}
.side .box_side + .box_side {
  margin-top: 3em;
}
.side .box_side .st {
  font-size: 1.29rem;
  line-height: calc(42/26);
  font-weight: 400;
  color: var(--color-text-main);
}
.side .box_side ul li > a, .side .box_side ul li > .accordion, .side .box_side ol li > a, .side .box_side ol li > .accordion {
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.57rem;
  text-decoration: none;
  --ic: 2rem;
}
@media only screen and (min-width: 768px) {
  .side .box_side ul li > a, .side .box_side ul li > .accordion, .side .box_side ol li > a, .side .box_side ol li > .accordion {
    padding: 0.71rem 0 0.71rem 0.57rem;
  }
}
@media only screen and (max-width: 767px) {
  .side .box_side ul li > a, .side .box_side ul li > .accordion, .side .box_side ol li > a, .side .box_side ol li > .accordion {
    padding: 0.75em 0 0.75em 0.5em;
  }
}
.side .box_side ul li > a .ic_rt, .side .box_side ul li > .accordion .ic_rt, .side .box_side ol li > a .ic_rt, .side .box_side ol li > .accordion .ic_rt {
  width: var(--ic);
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
.side .box_side ul li > a:hover, .side .box_side ul li > .accordion:hover, .side .box_side ol li > a:hover, .side .box_side ol li > .accordion:hover {
  transition: background-color .2s ease-out;
  background-color: var(--color-bg-1);
}
.side .box_side ul li > a span, .side .box_side ul li > .accordion span, .side .box_side ol li > a span, .side .box_side ol li > .accordion span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  width: calc(100% - var(--ic) - 1em);
}
.firefox .side .box_side ul li > a span, .ie .side .box_side ul li > a span, .firefox .side .box_side ul li > .accordion span, .ie .side .box_side ul li > .accordion span, .firefox .side .box_side ol li > a span, .ie .side .box_side ol li > a span, .firefox .side .box_side ol li > .accordion span, .ie .side .box_side ol li > .accordion span {
  max-height: 3em;
}
.side .box_side ul li .accordion::before, .side .box_side ol li .accordion::before {
  content: '';
  width: 1em;
  height: 1em;
  background: url(../../files/images/common/ic_plus.svg) no-repeat center/cover;
}
.side .box_side ul li .accordion.is-active::before, .side .box_side ol li .accordion.is-active::before {
  background: url(../../files/images/common/ic_minus.svg) no-repeat center/cover;
}
.side .box_side .box_new, .side .box_side .box_cate {
  margin-top: .75em;
}
.side .box_side .box_new li, .side .box_side .box_cate li {
  border-top: var(--bd);
}
.side .box_side .box_new li:last-child, .side .box_side .box_cate li:last-child {
  border-bottom: var(--bd);
}
.side .box_side .box_mon {
  margin-top: .75em;
}
.side .box_side .box_mon > li {
  border-top: var(--bd);
}
.side .box_side .box_mon > li:last-child {
  border-bottom: var(--bd);
}
.side .box_side .box_mon > li button {
  width: 100%;
  align-items: center;
  color: var(--color-text-main);
}
.side .box_side .box_mon ol {
  display: none;
  padding-bottom: 1em;
  padding-left: 1em;
}
.side .box_side .box_mon ol li a {
  --padtb: 0;
}
@media only screen and (max-width: 767px) {
  .side .box_side .box_mon ol li a {
    --padtb: .5em;
  }
}
