@charset "utf-8";

/*============================
MV
============================*/
.mv_wrap {
  overflow: hidden;
}

.mv_wrap .slides {
  height: fit-content;
}

.mv_wrap .slides .slide {
  width: 100%;
  max-width: 14.00rem;
  height: 7.00rem;
  padding: 0.10rem;
  box-sizing: border-box;
}
.mv_wrap .slides .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 0.10rem rgba(0,0,0,0.2);
}
@media screen and (max-width: 640px) {
  .mv_wrap .slides .slide {
    width: 100%;
    max-width: 100vw;
    padding: 0;
    height: 100vw;
  }
}

.mv_wrap .slides .slick-dots li {
  width: 0.30rem;
  height: 0.03rem;
  border-radius: 0.10rem;
  overflow: hidden;
}

.mv_wrap .slides .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: #111;
  opacity: 0.3;
  transition: all 0.3s;
}

.mv_wrap .slides .slick-dots li.slick-active button {
  opacity: 1;
}

.mv_wrap .slides .slick-dots li button::before {
  content: '';
  font-size: 0;
  opacity: 0;
}

/*============================
お知らせ
============================*/
.news_list {
  padding-bottom: 1.00rem;
}
@media screen and (max-width: 640px) {
  .news_list {
    padding-bottom: 0.50rem;
  }
  .news_list .sec_ttl_wrap {
    padding-bottom: 0.20rem;
  }
}

.news_list .news_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #111;
  padding: 0.25rem 0.10rem;
  border-bottom: 1px solid #CCC;
  position: relative;
}
@media screen and (max-width: 640px) {
  .news_list .news_box {
    display: block;
    padding: 0.20rem 0;
  }
}

.news_list .news_box:hover {
  background-color: #F1F1F1;
}

.news_list .news_box::after {
  content: "";
  width: 0.10rem;
  height: 0.10rem;
  background-image: url(../common/img/icon_arrow_black.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0.16rem;
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.3s;
}
@media screen and (max-width: 640px) {
  .news_list .news_box::after {
    width: 0.08rem;
    height: 0.08rem;
    right: 0;
    top: 65%;
  }
}

.news_list .news_box:hover::after {
  right: 0.10rem;
}

.news_list .news_box .date {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.14rem;
  font-weight: 400;
  width: 1.50rem;
}
@media screen and (max-width: 640px) {
  .news_list .news_box .date {
    font-size: 0.12rem;
    width: 100%;
  }
}

.news_list .news_box .txt {
  width: calc(100% - 1.50rem);
  font-size: 0.14rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 0.30rem;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .news_list .news_box .txt {
    width: 100%;
    font-size: 0.13rem;
    padding-top: 0.10rem;
    padding-right: 0.10rem;
  }
}

.news_list .more_btn {
	padding-top: 0.50rem;
	max-width: 3.50rem;
	margin: auto;
}
@media screen and (max-width: 640px) {
  .news_list .more_btn {
    padding-top: 0.30rem;
    max-width: 2.50rem;
    margin: auto;
  }
}

.news_list .more_btn a {
	display: block;
	border: 1px solid #111;
	padding: 0.20rem 0 0.22rem;
	text-align: center;
	font-family: "Inter", serif;
  font-optical-sizing: auto;
	font-size: 0.16rem;
	font-weight: 700;
	color: #111;
	position: relative;
}
@media screen and (max-width: 640px) {
  .news_list .more_btn a {
    padding: 0.15rem 0 0.17rem;
    font-size: 0.14rem;
  }
}

.news_list .more_btn a::before {
	content: "";
	width: 0.20rem;
	height: 0.10rem;
	background-image: url(../common/img/icon_arrow_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.20rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.news_list .more_btn a:hover::before {
	right: 0.15rem;
}

.news_list .more_btn a:hover {
	background-color: #111;
	color: #FFF;
}