@charset "utf-8";
.news_area {
    padding: 2rem 3%;
    background: #FFF;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgb(0 0 0 / 10%);
}
.news_tab_area {
    display: flex;
    align-items: center;
    gap: 0.5rem 1rem;
    color: #ababab;
    font-weight: bold;
}
.news_tab_area > li  {
    position: relative;
    padding: .5em 0.8em 0.7em 1.5em;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}
.news_tab_area .active {
    color: #333;
    cursor: default;
}
.news_tab_area .active::before,
.news_tab_area li:hover::before{
    content: "";
    display: block;
    width: .5em;
    height: .5em;
    position: absolute;
    z-index: 2;
    left: 0.5em;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #333;
    border-radius: 50%;
}
.news_scroll_area {
    margin: 0 auto;
}
.news_scroll_area > li:not(.active) {
    display: none;
}
.news_scroll_area > li > dl:not(:first-child) {
    border-top: 1px solid #e2e2e2;
}
.news_scroll_area > li > dl {
    position: relative;
    padding: 1em 2em 0.8em 0;
    display: flex;
    gap: 0.3rem 2rem;
}
.news_scroll_area > li > dl:has(a):hover {
    opacity: .8;
}
.news_scroll_area > li > dl:has(a)::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 1em;
    height: 2px;
    margin: auto;
    font-size: 80%;
    background: #333;
}
.news_scroll_area > li > dl:has(a)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 0.3em;
    height: 0.3em;
    border-left: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(-135deg);
    margin: auto;
    font-size: 80%;
    background: none;
}
.news_scroll_area > li > dl a {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.news_scroll_area > li > dl > dt {
    display: flex;
    align-items: center;
    gap: 1em;
    min-width: 13em;
    max-width: 13em;
}
.news_scroll_area > li > dl > dt > em {
    color: #9c9c9c;
    white-space: nowrap;
}
.news_scroll_area > li > dl > dt > span > span {
    display: inline-block;
    padding: .35em 1em .3em;
    font-size: 65%;
    color: #FFF;
    background: #333;
    white-space: nowrap;
}
.news_scroll_area > li > dl > dd {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.news_scroll_area > li > dl > dd > span,
.move_yurayura {
    display: inline-block;
    color: #F00;
    font-weight: bold;
    animation: yurayura 3s ease infinite alternate;
}
@keyframes yurayura {
  0% , 94%{
      transform: rotate(0);
  }
  97% {
      transform: rotate(8deg);
  }
  100% {
      transform: rotate(-8deg);
  }
}
.new_icon {
    display: inline-block;
    color: #F00;
    font-weight: bold;
    font-size: 90%;
    padding: 0 .3rem;
}
.news_scroll_area > li > dl > dd > p {
    font-weight: 500;
}

/* 詳細ページ */
.col2_layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 0;
}
.main_wrap {
    flex-grow: 1;
}
.side_wrap {
    display: flex;
    flex-direction: column;
    gap: 1.8rem 2%;
    padding-left: 1%;
    max-width: 20rem;
}
.side_box {
    border-radius: 10px;
    overflow: hidden;
    background: #FFF;
}
.side_box .ttl {
    padding: .5rem .8rem .3rem;
    background: #dbd9d9;
}
.side_box > ul > li {
    padding: .8rem .8rem .6rem;
    border-top: 1px dotted #dbd9d9;
}
.side_box > ul > li .datebox {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: #a99c9c;
    font-size: 90%;
}
.side_box > ul > li .datebox > em {
    white-space: nowrap;
}
.side_box .side_cate_list > span {
    display: inline-block;
    padding: .2em .8em .2em;
    font-size: 65%;
    color: #FFF;
    background: #333;
    white-space: nowrap;
    transform: scale(.9);
}
.side_box .ttlbox {
    margin-top: .3rem;
}
.side_box > ul > li a {
    font-weight: 500;
    color: #709597;
}
.side_box > ul > li a:hover {
    text-decoration: underline;
}
.single_news_area {
    padding: 2rem 3%;
    background: #FFF;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgb(0 0 0 / 10%);
}
.single_news_area .date_catebox {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.single_news_area .datearea {
    color: #9c9c9c;
    font-weight: 400;
}
.single_news_area .datearea > span {
    white-space: nowrap;
    font-weight: 500;
}
.single_news_area .catearea {
    display: flex;
    gap: .3rem;
    flex-wrap: wrap;
}
.single_news_area .catearea li {
    display: inline-block;
    padding: .35em 1em .3em;
    font-size: 65%;
    color: #FFF;
    background: #333;
    white-space: nowrap;
}
.single_news_area .post_title {
    margin-top: 1rem;
    font-weight: 600;
}
.single_news_area .post_detail {
    margin-top: 0.8rem;
    padding-top: 0.7rem;
    padding: 1rem 0.5rem 0;
    border-top: 1px solid #CCC;
}
.post_detail .img_wrap {
    padding: .5rem 0;
}

@media screen and (min-width: 1201px){

}
@media screen and (max-width: 1200px){

}
@media screen and (max-width: 1040px){

}
@media screen and (max-width: 950px){

}
@media screen and (max-width: 768px){
    .col2_layout {
         flex-direction: column;
    }
    .side_wrap.in_wrap_lesspt {
        padding-top: 0;
    }
    .side_wrap {
        flex-direction: row;
        max-width: 100%;
        width: 100%;
        padding-left: 2%;
    }
    .side_wrap .side_box {
        flex-grow: 1;
        min-width: 30%;
    }
}
@media screen and (max-width: 650px){
    .news_scroll_area > li > dl {
        flex-wrap: wrap;
    }
    .news_scroll_area > li > dl > dt {
        min-width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 500px){
    .side_wrap {
        flex-direction: column;
    }
}
@media screen and (max-width: 479px){
}
@media screen and (max-width: 320px){

}
