@charset "utf-8";
/* CSS Document */

.cont-ttlWrap .cont-kv.inview figure{
  opacity: 0;
  animation: kv-on 1.1s ease-out .5s forwards;
}
@keyframes kv-on {
  100% {
    opacity: 1;
  }
}


/* -----------------------------------------------

News

 ----------------------------------------------- */
.News .inner {
  max-width: 1000px;
  margin: 80px auto 120px;
}
.News .inner .tab{
  display: flex;
  margin-bottom: 60px;
  justify-content: center;
}
.News .inner .tab li{
  width: 240px;
  margin: 0 6px;
}
.News .inner .tab li a::after, .News .inner .tab li span::after{
  content:"";
  border-bottom: solid 2px;
  border-right: solid 2px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg) translateX(-100%);
  position: absolute;
  top: 50%;
  right: 15px;
}
.News .inner .tab li.current a::after, .News .inner .tab li.current span::after{
  border-color: #fff;
}
.News .inner .tab li.current a, .News .inner .tab li.current span{
  background: #333333;
  color: #fff;
  pointer-events: none;
}
.News .inner .tab li a, .News .inner .tab li span{
  display: block;
  padding: 16px; 
  border: inset;
  border-width: 1px;
  border-style: solid;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: .4s;
  cursor: pointer;
}
.News .inner .tab li span small{
  display: inline-block;
  margin-left: 5px;
  font-size: 60%;
  font-weight: 400;
  opacity: .8;
}

.News .inner .list{
  display: none;
}
.News .inner .list.show{
  display: block;
}
.News .inner .list .lead{
  margin-bottom: 45px;
  font-size: 1.3rem;
}


.News .inner dl{
  display: block;
  padding-bottom: 26px;
  border-bottom: 1px dotted #c1c1c1;
}
.News .inner dl.is-hidden{
  display: none;  
}
.News .inner dl:nth-of-type(n+2){
  margin-top: 26px;
}
.News .inner dl dt{
  display: flex;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .1rem;
  color: #57575b;
  align-items: center;
}
.News .inner dl dt .tagWrap{
  display: inline-block;
  padding-left: 10px;
}
.News .inner dl dt .tagWrap .tag{
  padding: 3px 6px 4px;
  font-size: 1.3rem;
  line-height: 1;
  color: #ffffff;
}
.News .inner dl dt .tagWrap .tag.news{
  background: #a28b8b;
}
.News .inner dl dt .tagWrap .tag.release{
  background: #cf739a;
}
.News .inner dl dt .tagWrap .tag.product{
  background: #8ba295;
}
.News .inner dl dt .tagWrap .tag.autobacs{
  background: #e66a06;
}
.News .inner dl dt .tagWrap .tag.event{
  background: #6ab1b5;
}
.News .inner dl dd{
  margin-top: 4px;
  position: relative;
}
.News .inner dl dd a{
  width: calc(100% - 100px);
}
.News .inner dl dd .ttl{
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 600;
}
.News .inner dl dd .pdf .ttl::after{
  display: inline-block;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../images/common/icon-pdf-bk.svg) center no-repeat;
  margin-left: 6px;
  transform: translateY(4px);
}
.News .inner dl dd .detail{
  margin-bottom: 18px;
  font-size: 1.4rem;
  font-weight: 500;
}
.News .inner dl dd .txt{
  margin-top: 2px;
  font-size: 1.2rem;
  font-weight: 500;
}
.News .inner dl dd .info{
  display: inline-block;
  padding: 4px 12px;
  background: #fff;
}
.News .inner dl dd .info p{
  margin-top: 2px;
  font-size: 1.2rem;
  font-weight: 500;
}
.News .inner dl dd .info p a{
  display: inline-block;
  width: auto;
  margin: 0;
}
.News .inner dl dd .txt .arrow{
  position: absolute;
  right: 15px;
  top: auto;
  bottom: 10px;
}

.News .inner .news-cont h2{
  font-size: 2.4rem;
}
.News .inner .news-cont h2 + p{
  margin-top: 20px;
  line-height: 1.8;
}

.btn.arrow a,.btn.arrow > span {
  position: relative;
  cursor: pointer;
}

.btn.round{
  max-width: 280px;
  margin: 40px auto 0;
}
.btn.round span {
  cursor: pointer;
}
.btn.round span:hover {
  color: #ffffff;
  opacity: 1;
}
.btn.round span::before {
  content: "";
  border-bottom: solid 2px;
  border-right: solid 2px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg) translateX(-100%);
  position: absolute;
  top: 50%;
  right: 15px;
}
.btn.round span:hover::before {
  border-color: #ffffff;
}
.btn.round span::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #333333;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: .2s;
  z-index: -1;
}
.btn.round span:hover::after {
  transform: translateX(0);
}


/* arrow */
.arrow{
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: .1rem;
  position: relative;
  top: -2px;
}
.arrow::after {
  content: "";
  display: inline-block;
  width: 120%;
  height: 4px;
  border-right: 1px solid #191919;
  border-bottom: 1px solid #191919;
  transform: skewX(45deg);
  position: absolute;
  bottom: -2px;
  left: -2%;
  transition: .4s;
}
.arrow:hover::after{
  width: 130%;
  transition-duration: .3s;
  transition: .4;
}




@media screen and (max-width:768px) {
  .cont-ttlWrap.event {
    background: url(../images/news/kv02.jpg) left center no-repeat;
    background-size: cover;
    position: relative;
  }
  .cont-ttlWrap.news {
    background: url(../images/news/kv03.jpg) center left 65% no-repeat;
    background-size: cover;
    position: relative;
  }
  .cont-ttlWrap .cont-kv{
    animation: none;
  }

  .News .inner .tab{
    margin-bottom: 40px;
  }
  .News .inner .tab li{
    width: 160px;
  }
  .News .inner .tab li a, .News .inner .tab li span{
    padding: 8px; 
    border-radius: 6px;
    font-size: 1.3rem;
  }

  .News .inner {
    margin: 40px auto 60px;
  }
  .News .inner dl{
    padding-bottom: 20px;
  }
  .News .inner dl:nth-of-type(n+2){
    margin-top: 24px;
  }
  .News .inner dl dt{
    font-size: 1.4rem;
    letter-spacing: .1rem;
    flex-wrap: wrap;
    white-space: nowrap;
    gap: 12px;
  }
  .News .inner dl dt .tagWrap {
    padding: 0;
  }
  .News .inner dl dt .tagWrap .tag{
    padding: 3px 7px;
    font-size: 1.3rem;
  }
  .News .inner dl dd{
    margin-top: 6px;
  }
  .News .inner dl dd a{
    display: block;
    width: 100%;
    margin-top: 6px;
  }
  .News .inner dl dd .ttl{
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: .1rem;
  }
  .News .inner dl dd .detail {
    font-size: 1.4rem;
  }
  .News .inner dl dd .txt{
    display: none;
  }
  .News .inner dl dd .txt .arrow{
    display: block;
    width: 60px;
    margin: 10px 0 0;
    font-size: 1.3rem;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

}
