@charset "UTF-8";
.pankuzu {
  margin-top: 70px;
    ul{
      display: flex;
      align-items: center;
      border-bottom: 1px solid var(--l_brown);
      padding-bottom: 12px;
        li{
          font-weight: 400;
          display: flex;
          align-items: center;
          font-size: 14px;
          letter-spacing: 0.02em;
        }
        li:not(:last-child)::after{
          content: '';
            width: 8px;
            height: 8px;
            display: block;
            margin-left: 12px;
            margin-right: 12px;
            background: url(../img/news/news_bred_arrow.svg) center / 8px 8px no-repeat;
        }
    }
}
.pankuzu.pankuzu02 {
    ul{
      border-top: 1px solid var(--l_brown);
      border-bottom: none;
      padding-bottom: 0px;
      padding-top: 12px;
    }
}
.allnews_btn{
  margin: 50px auto 0;
}

/*--------------------PC--------------------*/
@media (min-width: 681px) {
  .pankuzu ul{
      li{
         a{
            &:hover{
              text-decoration: underline;
              text-underline-offset: 2px;
            }
         }
      }
  }

  .content_wrap > .inner {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
  }
  .main_contents {
    padding-bottom: 50px;
    max-width: 767px;
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:680px){
  .main_contents {
    padding-top: 45px;
    padding-bottom: 0;
  }
  .pankuzu {
    margin-top: 100px;
      ul{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        border-bottom: 1px solid var(--l_brown);
        padding-bottom: 10px;
        line-height: 1.7;
          li{
            display: flex;
            align-items: center;
            font-size: 12px;
            letter-spacing: 0.02em;
          }
          li:not(:last-child)::after{
            content: '';
              width: 8px;
              height: 8px;
              display: block;
              margin-left: 12px;
              margin-right: 12px;
              background: url(../img/news/news_bred_arrow.svg) center / 8px 8px no-repeat;
          }
      }
  }
  .content_wrap .inner{
    padding-left: 2.7%;
    padding-right: 2.7%;
  }
  .pankuzu.pankuzu02 {
    margin-top: 50px;
  }
  .allnews_btn {
    margin: 35px auto 0;
  }
  .line_button {
    font-size: 13px;
  }
  .line_button.arrow_l {
    padding-left: 30px;
  }
  .line_button.arrow_l::before {
    width: 15px;
    height: 9px;
    background: url(../img/common/arrow_r_b.svg) center / 15px 9px no-repeat;
    top: calc(50% - 4.5px);
  }
}

/* news_info_wrap
***************************************************************/
.news_info_title--date {
  font-size: 14px;
  /* letter-spacing: 0; */
}
.news_info_title--date span + span {
  margin-left: 10px;
  padding-left: 12px;
  position: relative;
  text-transform: uppercase;
}
.news_info_title--date span + span::before {
  content: '';
  width: 1px;
  height: 12px;
  background-color: var(--black);
  position: absolute;
  top: 4px;
  left: 0;
}
.news_info_title--ttl {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.466;
  margin-top: 8px;
  letter-spacing: 0.015em;
}
.event_wrap{
  display: block;
  position: relative;
  background: var(--l_gray);
/*  border-top: 10px solid var(--l_brown);*/
  border-radius: 10px 0 10px 0;
  margin-top: 60px;
  overflow: hidden;
  padding: 40px 0 20px 40px;
    &::before{
      content: '';
      width: 100%;
      height: 10px;
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      background: var(--l_brown);
    }
    .event_wrap_ttl{
      font-size: 21px;
      color: var(--d_brown);
      letter-spacing: 0.05em;
      font-weight: 500;
    }
    .event_dtl{
      margin-top: 15px;
    }
    .event_dtl_column{
      display: flex;
      position: relative;
      font-size: 14px;
    }
    .event_dtl_column + .event_dtl_column{
      margin-top: 10px;
    }
    .event_dtl_column dt{
      width: 75px;
      position: relative;
      font-weight: 500;
      line-height: 1.6;
    }
    .event_dtl_column dt::after{
      content: '';
      width: 1px;
      height: 100%;
      top: 0;
      right: 0;
      position: absolute;
      background-color: var(--l_brown);
    }
    .event_dtl_column dd{
      width: calc(100% - 75px);
      padding-left: 20px;
      font-weight: 400;
      line-height: 1.6;
    }
    .event_btn{
      position: absolute;
      background-color: var(--l_brown);
      color: var(--white);
      right: 0;
      bottom: 0;
      width: 127px;
      height: 37px;
      display: flex;
      align-items: center;
      border-radius: 10px 0 0 0;
      padding-left: 16px;
        &::after{
          content: '';
          width: 26px;
          height: 15px;
          display: block;
          position: absolute;
          right: 16px;
          top: calc(50% - 7.5px);
          background: url(../img/common/arrow_r_w.svg) center / contain no-repeat;
          transition: .3s;
        }
    }

}
.event_wrap::before{
  content: '';
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: var(--l_brown);
}

/*--------------------PC--------------------*/
@media all and (min-width:681px){
    .event_wrap:hover{
        .event_btn::after{
          right: 11px;
        }
    }
}
/*--------------------SP--------------------*/
@media all and (max-width:680px){
  .event_wrap {
    border-radius: 0 10px 0 20px;
    margin-top: 40px;
    padding: 35px 24px 60px 24px;
      .event_btn {
          width: 100%;
          height: 35px;
          justify-content: center;
          border-radius: 0;
          padding-left: 0;
          padding-right: 1em;
            &::after {
                right: calc(50% - 16px - 3em);
            }
      }
  }

  .event_wrap {
      & .event_btn {
          &::after {
              content: '';
              width: 26px;
              height: 15px;
              display: block;
              position: absolute;
              right: calc(50% - 16px - 3em);
              top: calc(50% - 7.5px);
              background: url(../img/common/arrow_r_w.svg) center / contain no-repeat;
              transition: .3s;
              /* transform: translateX(-50%); */
          }
      }
  }
}



/* news_contents_wrap
***************************************************************/
.news_contents_wrap{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.news_contents_wrap--main > *:first-child{
  margin-top: 0;
}



/*１カラム文字組*/
.news_info_ttl {
  font-size: 24px;
  line-height: 1.62;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 0.6em;
}
.news_info_ttl2 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
}
* + .news_info_ttl2 {
    margin-top: 40px;
}
.news_info_text{
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
}
* + .news_info_text{
    margin-top: 40px;
}
.news_info_ttl + .news_info_text{
  margin-top: 35px;
}
.singleColumn{
  margin-top: 60px;
}


/*１カラム画像 typeOneImage*/
.singleColumn.typeOneImage{
  .news_photo_big{
    max-width: 100%;
    height: auto;
    border-radius: 0 20px 0 50px;
  }
}


.singleColumn{
    figure{
      width: calc((100% - 15px) / 2);
        .news_photo_small{
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          border-radius: 0 10px 0 20px;
        }
        figcaption{
          font-size: 13px;
          font-weight: 400;
          letter-spacing: 0.02em;
          line-height: 1.46;
          text-align: justify;
          margin-top: 10px;
        }
    }
}
.singleColumn.typeTwoImage_tate + .singleColumn.typeTwoImage_yoko,
.singleColumn.typeTwoImage_yoko + .singleColumn.typeTwoImage_tate{
  margin-top: 30px;
}



/*２カラム横画像 typeTwoImage_yoko*/
.singleColumn.typeTwoImage_yoko{
  display: flex;
  justify-content: space-between;
    .news_photo_small{
      aspect-ratio: 376 / 206;
    }
}
.singleColumn.typeTwoImage_tate{
  display: flex;
  justify-content: space-between;
    .news_photo_small{
      aspect-ratio: 376 / 471;
    }
}

/*箇条書きコラム*/
.singleColumn.typeColumn {
  background: #EFEBE5;
  padding: 50px;
  border-radius: 10px 0 10px 0;
    .news_column_ttl{
      font-size: 18px;
      font-weight: 500;
      line-height: 1.4;
    }
    ul{
      li{
        margin-top: 30px;
      }
      li .news_column_sttl{
        margin-top: 30px;
        font-size: 16px;
        display: flex;
         span{
          font-size: 18px;
          width: 26px;
          flex-shrink: 0;
         }
      }
      li .news_column_stxt{
        font-size: 14px;
        margin-top: 15px;
        line-height: 1.57;
        letter-spacing: 0.05em;
        text-align: justify;
        padding-left: 26px;
        font-weight: 400;
      }
    }
}





/*.link_list a{
  width: 264px;
  height: 58px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.link_back,
.link_next{
  font-size: 15px;
  font-weight: 700;
  position: absolute;
  top: calc(50% - 0.75em);
}
.link_back{
  left: 0;
}
.link_next{
  right: 0;
}
.link_back a,
.link_next a{
  display: flex;
  align-items: center;
  position: relative;
}
.link_back a::before,
.link_next a::after{
  content: '';
  width: 12px;
  height: 19px;
  background: url(../img/common/pager_off.svg) center / 12px 19px no-repeat;
  transition: 0.3s;
}
.link_back a::before{
  margin-right: 1em;
  transform: scale(-1, 1);
}
.link_next a::after{
  margin-left: 1em;
}*/

/*--------------------PC--------------------*/
@media all and (min-width:681px){
  /*.news_contents_wrap--main{
    width: 750px;
  }
  .typeTwoImage{
    display: flex;
    justify-content: space-between;
  }
  .typeTwoImage figure{
    width: 360px;
  }*/

  /*.link_list a:hover{
    color: #E6372D;
    border: 1px solid #E6372D;
  }
  .link_back a:hover,
  .link_next a:hover{
    color: #E6372D;
  }
  .link_back a:hover::before,
  .link_next a:hover::after{
    background: url(../img/common/pager_on.svg) center / 12px 19px no-repeat;
  }*/

}
/*--------------------SP--------------------*/
@media all and (max-width:680px){
  /*.news_contents_wrap{
    display: block;
    margin-top: 30px;
  }
  .news_main_img{
    width: 100vw;
    height: 0;
    margin-left: -6vw;
    padding-top: 79.4%;
  }
  .news_info_ttl{
    font-size: 20px;
  }
  .news_info_text{
    line-height: 2;
  }
  .news_info_ttl + .news_info_text{
    margin-top: 20px;
  }

  .singleColumn{
    margin-top: 35px;
  }
  .singleColumn.typeOneImage + .singleColumn.typeTwoImage,
  .singleColumn.typeTwoImage + .singleColumn.typeTwoImage,
  .singleColumn.typeTwoImage + .singleColumn.typeOneImage,
  .typeTwoImage figure + figure{
    margin-top: 20px;
  }
  .news_photo_small{
    height: 0;
    padding-top: 65.1%;
  }
  .news_photo_big{
    height: 0;
    padding-top: 71.2%;
  }

  .postscript_wrap{
    line-height: 1.86;
    padding: 35px 30px;
    margin-top: 40px;
  }

  #news_detail_link{
    margin-top: 40px;
    padding-top: 45px;
  }
  .link_back,
  .link_next{
    font-size: 14px;
    position: absolute;
    top: 0;
  }*/

  .singleColumn {
      margin-top: 45px;
  }
  .singleColumn.typeOneImage {
    .news_photo_big {
        border-radius: 0 10px 0 20px;
    }
  }
  .news_info_ttl {
      font-size: 21px;
      line-height: 1.62;
      letter-spacing: 0.05em;
      font-weight: 500;
      border-bottom: none;
      padding-bottom: 0;
  }
  .news_info_title--date {
    font-size: 14px;
    font-weight: 400;
  }
  .news_info_title--date span + span::before {
    height: 12px;
    top: 4px;
  }
  .news_info_title--ttl {
    font-size: 24px;
    margin-top: 10px;
  }
  .news_info_title--tag {
    font-size: 13px;
    margin-top: 15px;
  }
  .news_info_ttl2 {
    font-size: 16px;
    line-height: 1.875;
  }
  * + .news_info_ttl2 {
    margin-top: 13px;
  }
  * + .news_info_text {
    margin-top: 17px;
  }
  .singleColumn.typeColumn {
    background: #EFEBE5;
    padding: 30px 20px 30px;
    border-radius: 0 10px 0 10px;
  }
  .singleColumn.typeColumn {
    .news_column_ttl {
        font-size: 16px;
        line-height: 1.3;
    }
  }
  .singleColumn.typeColumn {
    & ul {
        & li .news_column_sttl {
            margin-top: 25px;
            font-size: 14px;
            line-height: 1.3;
              span {
                  font-size: 14px;
                  width: 22px;
                  flex-shrink: 0;
              }
        }
        li .news_column_stxt {
            padding-left: 22px;
            margin-top: 13px;
        }
    }
  }
  .singleColumn.typeTwoImage_yoko {
    flex-direction: column;
      figure {
          width: 100%;
      }
      figure + figure{
        margin-top: 20px;
      }
  }
  .singleColumn.typeTwoImage_tate {
    flex-direction: column;
      figure {
          width: 100%;
      }
      figure + figure{
        margin-top: 20px;
      }
  }
  .singleColumn.typeTwoImage_tate {
      flex-direction: column;
  }



  .singleColumn{
      figure{
          width: 100%;
          figcaption{
            font-size: 12px;
            margin-top: 6px;
          }
      }
      figure + figure{
        margin-top: 20px;
      }
  }
  .singleColumn.typeTwoImage_tate + .singleColumn.typeTwoImage_yoko,
  .singleColumn.typeTwoImage_yoko + .singleColumn.typeTwoImage_tate {
      margin-top: 40px;
  }

}


/* news_contents_wrap--aside
***************************************************************/
.news_contents_wrap--aside{
  width: 350px;
}
.aside_wrap + .aside_wrap{
  margin-top: 50px;
}
.aside_wrap--ttl{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted var(--black);
  padding-bottom: 9px;
}
.aside_wrap--ttl > p{
  font-size: 18px;
  font-weight: 500;
}
.aside_wrap--ttl .aside_more{
  font-size: 14px;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.aside_wrap--ttl .aside_more::after{
  content: '';
  width: 16px;
  height: 14px;
  background: url(../img/common/arrow_r_b.svg) center / 100% no-repeat;
  transition: 0.3s;
  transform: translateX(0);
  margin-left: 12px;
}
.newsList {
  display: block;
  padding-top: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dotted #BFB9AD;
}
.newsList:last-child {
  border-bottom: none;
}
.newsList--date {
  font-size: 14px;
  letter-spacing: 0.025em;
  font-weight: 400;
}
.newsList--date span + span {
  margin-left: 1em;
  padding-left: 1em;
  position: relative;
  text-transform: uppercase;
}
.newsList--date span + span::before{
  content: '';
  width: 1px;
  height: 12px;
  background-color: var(--black);
  position: absolute;
  top: 4px;
  left: 0;
}
.newsList--ttl {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.87;
  margin-top: 5px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transition: 0.3s;
}


/*--------------------PC--------------------*/
@media all and (min-width:681px){
  .newsList:hover .newsList--ttl{
    color: var(--l_brown);
  }
  .aside_wrap--ttl .aside_more:hover{
/*    color: #E6372D;*/
  }
  .aside_wrap--ttl .aside_more:hover::after{
    transform: translateX(5px);
  }

}
/*--------------------SP--------------------*/
@media all and (max-width:680px){
}


/* aaa
***************************************************************/

/*--------------------PC--------------------*/
@media all and (min-width:681px){
}
/*--------------------SP--------------------*/
@media all and (max-width:680px){
}