@charset "UTF-8";

.second-mv .inner::after{
  content: "";
  background-image: url(../../img/news/mv_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 63.6vw;
  height: 14.266666666666666vw;
  position: absolute;
  bottom: 2.666667vw;
  right: 0;

}
.second-mv .img{
  background-image: url(../../img/news/mv_sp.png);
  width: 100%;
  height: 61.6vw;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 11.733333333333333vw;
  border-radius: 6.4vw;
}
.content01 {
  padding: 0 0 21.333333333333332vw;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
  list-style: none;
  margin:0 auto;
}

.accordion-area li{
  padding: 7.466666666666667vw 3.2vw;
  border-bottom: 2px solid var(--bordergray);

}


/*アコーディオンタイトル*/
.news-title {
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  transition: all .5s ease;
}

/*アイコンの＋と×*/
.news-title::before,
.news-title::after{
  position: absolute;
  content:'';
  width: 4.266666666666667vw;
  height: 0.5333333333333333vw;
  background-color: var(--orange);

}
.news-title::before{
  top:50%;
  right: 3.2vw;
  transform: rotate(0deg);

}
.news-title::after{
  top:50%;
  right: 3.2vw;
  transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.news-title.close::before{
transform: rotate(45deg);
}

.news-title.close::after{
transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.news-box {
  display: none;/*はじめは非表示*/
  padding-top: 6.4vw;
}

.news-title .flex{
  display: flex;
  gap: 12px;
  align-items: center;
  color: #4F4C49;
  margin-bottom: 4.266666666666667vw;
}
.news-title .since{
  font-size: 2.933333333333333vw;
}
.news-title .tag{
  font-size: 2.933333333333333vw;
  padding: 0.26666666666666666vw 2.1333333333333333vw;
  border: 1px solid var(--bordergray);
  border-radius: calc(infinity * 1px);
  line-height: 1.4;
}
.news-title .text{
  font-size: 4vw;
  font-weight: bold;
  color: var(--blue);
  width: 76.8vw;
}