/*============================================
トップMV
===========================================*/
.top_mov_wrap {
	height: 47.85vw;
	max-height: calc(100vh - 1.50rem);
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 600px) {
  .top_mov_wrap {
    height: 81.85vw;
  }
}

.top_mov_wrap video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
	z-index: 0;
}

.top_mov_wrap .catch {
	width: 100%;
	max-width: 7.00rem;
	position: absolute;
	left: 0.70rem;
	bottom: 0.70rem;
	z-index: 1;
}

@media screen and (max-width: 600px) {
  .top_mov_wrap .catch {
    max-width: 3.00rem;
    position: absolute;
    left: 0.10rem;
    bottom: 0.40rem;
  }
}

/*===========================
MV下のカテゴリボタン
===========================*/
.mv_cat_list_wrap {
  position: relative;
  background-color: #FFF;
  overflow:hidden;
  border-radius: 0.06rem;
  box-shadow: 0 2px 0.08rem rgba(0,0,0,0.06);
  top: -0.6rem;
  z-index: 2;
  margin-bottom: -0.2rem;
}

@media screen and (max-width: 600px) {
  .mv_cat_list_wrap {
    top: -0.30rem;
    margin-bottom: 0;
  }
}

.mv_cat_list_wrap .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mv_cat_list_wrap .list .btn {
  width: 20%;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  .mv_cat_list_wrap .list .btn {
    width: 100%;
    text-align: left;
  }
}

.mv_cat_list_wrap .list .btn a {
  padding: 0.20rem;
  position: relative;
  display: block;
  color: #222;
}

@media screen and (max-width: 600px) {
  .mv_cat_list_wrap .list .btn a {
    display: flex;
    align-items: center;
    padding: 0.05rem;
  }
}

.mv_cat_list_wrap .list .btn a::after {
  content: "";
  width: 1px;
  height: calc(100% - 0.40rem);
  background-color: #CCC;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
  .mv_cat_list_wrap .list .btn a::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    transform: translateY(0);
  }
  .mv_cat_list_wrap .list .btn a::before {
    content: "";
    width: 0.10rem;
    height: 0.10rem;
    background-image: url(../common/img/icon_right_bold_black.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0.15rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
  }
}

.mv_cat_list_wrap .list .btn:last-child a::after {
  content: none;
}

.mv_cat_list_wrap .list .btn a .icon_wrap {
  width: 1.00rem;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .mv_cat_list_wrap .list .btn a .icon_wrap {
    width: 0.60rem;
    margin: auto;
  }
  .mv_cat_list_wrap .list .btn a .textbox {
    width: calc(100% - 0.70rem);
  }
}

.mv_cat_list_wrap .list .btn a .title {
  font-size: 0.18rem;
  font-weight: 700;
  padding-bottom: 0.10rem;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .mv_cat_list_wrap .list .btn a .title {
    font-size: 0.16rem;
  }
}

.mv_cat_list_wrap .list .btn a:hover .title {
  color: #008C8C;
}

.mv_cat_list_wrap .list .btn a .en_text {
  opacity: 0.6;
  font-family: 'Poppins', sans-serif;
  font-size: 0.12rem;
  letter-spacing: 0.075em;
  display: block;
  padding-bottom: 0.10rem;
  transition: all 0.3s;
}

@media screen and (max-width: 600px) {
  .mv_cat_list_wrap .list .btn a .en_text {
    padding-bottom: 0;
  }
}

.mv_cat_list_wrap .list .btn a:hover .en_text {
  color: #008C8C;
}

/*===========================
コンテンツ
===========================*/
.TopContBox {
  margin-bottom:0.30rem;
  position:relative;
  overflow:hidden;
  border-radius: 0.06rem;
  box-shadow: 0 2px 0.08rem rgba(0,0,0,0.06);
}

.TopContBox .AllBtn {
  position:absolute;
  top: 0.14rem;
  right: 0.12rem;
}

@media screen and (max-width: 600px) {
  .TopContBox .AllBtn {
    top: 0.12rem;
    right: 0.10rem;
  }
}

.TopContBox .AllBtn a {
  padding:0.10rem 0.35rem 0.10rem 0.20rem;
  border-radius: 0.60rem;
  color:#008C8C;
  text-decoration:none;
  background:#FFF;
  display:block;
  font-size:0.13rem;
  font-weight: 700;
  transition:all 0.3s ease;
  position: relative;
}

@media screen and (max-width: 600px) {
  .TopContBox .AllBtn a {
    padding: 0.06rem 0.25rem 0.08rem 0.10rem;
    font-size: 0.12rem;
  }
}

@media screen and (max-width: 600px) {
  .TopContBox .AllBtn a {
  line-height:19px;
  }
}

.TopContBox .AllBtn a::after {
  content: "";
  width: 0.14rem;
  height: 0.12rem;
  background-image: url(../common/img/icon_right_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0.10rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}

@media screen and (max-width: 600px) {
  .TopContBox .AllBtn a::after {
    height: 0.10rem;
    right: 0.05rem;
  }
}

.TopContBox .AllBtn a:hover {
opacity: 0.7;
}


.TopContBox .AllBtn a:hover strong {
background:url(../img/top_all_btn_arrow.png) no-repeat 2px;
}

.TopContBox h3 {
background:#008C8C;
padding:0.20rem;
font-size:0.20rem;
color: #FFF;
font-weight: 700;
line-height:1;
clear:both;
font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media screen and (max-width: 600px) {
  .TopContBox h3 {
    padding-left: 0.15rem;
    font-size:0.18rem;
    }
  }

.TopContBox h3 span {
font-family: 'Poppins', sans-serif;
font-size:0.12rem;
font-weight:400;
opacity:0.7;
position: relative;
top: -0.04rem;
left: 0.06rem;
}

@media screen and (max-width: 600px) {
.TopContBox h3 span {
display: none;
}
}

.TopNewsListWrapper {
background:#FFF;
padding:0.15rem 0.20rem;
overflow:hidden;
}

.TopNewsList {
overflow:hidden;
}

@media screen and (max-width: 600px) {
.TopNewsList {
border-bottom: 1px dotted #CCC;
margin-bottom: 10px;
}
.TopNewsList:last-child {
border-bottom: 0;
margin-bottom: 0;
}
}

.TopNewsList a {
  overflow:hidden;
  color:#222;
  text-decoration:none;
  padding-top:7px;
  padding-bottom:7px;
  transition:all 0.3s ease;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.TopNewsList a:hover h4 {
text-decoration:underline;
color:#008C8C;
}

.TopNewsList a .TopNewsDate {
  width:1.40rem;
  font-size:0.15rem;
  line-height:1.75;
}

@media screen and (max-width: 600px) {
  .TopNewsList a .TopNewsDate {
    width:100%;
    font-size:0.12rem;
  }
}

.TopNewsList a .TopNewsCategory {
width:1.20rem;
font-size:0.13rem;
font-weight: 700;
text-align:center;
color:#FFF;
line-height:1.85;
position: relative;
top: 0.01rem;
}

@media screen and (max-width: 600px) {
  .TopNewsList a .TopNewsCategory {
    padding: 0 0.07rem;
    position: absolute;
    top: 0.06rem;
    right: 0;
    width: fit-content;
    font-size:0.11rem;
  }
}

.TopNewsList a .Cat01 {
background:#8BBA00;
border-radius:3px;
}

.TopNewsList a .Cat02 {
background:#FF8100;
border-radius:3px;
}

.TopNewsList a .Cat03 {
background:#61BBFF;
border-radius:3px;
}

.TopNewsList a .Cat04 {
background:#8C8C00;
border-radius:3px;
}

.TopNewsList a h4 {
  float:left;
  font-size:0.15rem;
  padding-left:0.20rem;
  line-height:1.75;
  font-weight:normal;
  transition:all 0.3s ease;
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .TopNewsList a h4 {
    font-size:0.14rem;
    padding-left:0;
    line-height:1.6;
    padding: 0.05rem 0;
  }
}

.TopNewsList a h4 strong {
font-weight:700;
font-size:0.16rem;
}


/* イベント */
#TopEventWrapper h3 {
  position:relative;
}

#TopEventWrapper.TopContBox {
  box-shadow: none;
}

#TopEventWrapper.TopContBox .ContBoxItem {
  padding: 0.20rem 0.10rem 0;
}

@media screen and (max-width: 600px) {
  #TopEventWrapper.TopContBox .ContBoxItem {
    padding: 0.20rem 0 0.10rem;
  }
}

#TopEventWrapper.TopContBox .ContBoxItem .ContBox {
  border-radius: 0.10rem;
  overflow: hidden;
  box-shadow: 0 2px 0.08rem rgba(0,0,0,0.06);
}

#TopEventWrapper.TopContBox .ContBoxItem .ContBox .ContIndexPhoto {
  height: 2.30rem;
}

@media screen and (max-width: 600px) {
  #TopEventWrapper.TopContBox .ContBoxItem .ContBox .ContIndexPhoto {
    height: 57vw;
  }
}

#TopEventWrapper.TopContBox .ContBoxItem .ContBox a .ContIndexText {
  padding: 0.20rem;
}

#TopEventWrapper.TopContBox .ContBoxItem .ContBox a .ContIndexText .date {
  position: relative;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'ヒラギノ角ゴシック', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
  font-size: 0.15rem;
  top: auto;
  right: auto;
  display: block;
  padding: 0 0 0.05rem;
  color: #111;
}

@media screen and (max-width: 600px) {
  #TopEventWrapper.TopContBox .ContBoxItem .ContBox a .ContIndexText .date {
    font-size: 0.13rem;
  }
}

#TopEventWrapper.TopContBox .ContBoxItem .ContBox a .ContIndexText .event_title {
  font-size: 0.20rem;
  color: #111;
  font-weight: 600;
  line-height: 1.55;
}

@media screen and (max-width: 600px) {
  #TopEventWrapper.TopContBox .ContBoxItem .ContBox a .ContIndexText .event_title {
    font-size: 0.19rem;
  }
}

#TopEventWrapper.TopContBox .ContBoxItem .ContBox a .MoreBtn {
  position: relative;
  font-size: 0.14rem;
  color: #008C8C;
  padding: 0.1rem 0;
  text-align: right;
  width: 100%;
  background-image: none;
  height: auto;
  line-height: 1.1;
  bottom: auto;
}

#TopEventWrapper.TopContBox .ContBoxItem .ContBox a .MoreBtn em::before {
  content: "";
  width: 0.22rem;
  height: 0.08rem;
  display: inline-block;
  background-image: url(../img/link_arrow_green.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 0.06rem;
  position: relative;
  top: -0.01rem;
  right: 0;
  transition: all 0.3s;
}


#TopReportWrapper {
width:49%;
float:left;
}

#TopShiryouWrapper {
width:49%;
float:right;
}

#TopReportWrapper .TopNewsDate,
#TopShiryouWrapper .TopNewsDate {
width: 100%;
float: none;
}

@media screen and (max-width: 600px) {
#TopReportWrapper,
#TopShiryouWrapper {
width:100%;
float:none;
}
}

#TopReportWrapper .TopNewsList a h4,
#TopShiryouWrapper .TopNewsList a h4 {
padding-left:0;
}

#TopYearyEventList {
clear:both;
margin-bottom:0.25rem;
padding:0.25rem;
overflow:hidden;
background:#FFF;
border-radius: 0.06rem;
box-shadow: 0 2px 0.08rem rgba(0,0,0,0.06);
}

#TopYearyEventList h3 {
font-size:0.20rem;
font-weight: 700;
text-align:center;
border-bottom:1px solid #D8CDB7;
padding-bottom:0.10rem;
line-height:30px;
}

#TopYearyEventList h3 i {
font-weight:normal;
font-size:0.20rem;
opacity:0.5;
}

#TopYearyEventList ul {
overflow:hidden;
padding-top:15px;
padding-bottom:15px;
}

#TopYearyEventList li {
width:30%;
float:left;
line-height:1.8;
font-size:14px;
background:url(../img/top_list_green.png) no-repeat left;
padding-left:18px;
}

@media screen and (max-width: 600px) {
#TopYearyEventList li {
width:100%;
float:none;
}
}

#TopYearyEventList p {
font-size:0.12rem;
line-height: 1.6;
text-align: center;
}

#TopYearyEventList .schedule_box {
  padding: 0.30rem;
}

@media screen and (max-width: 600px) {
  #TopYearyEventList .schedule_box {
    padding: 0.30rem 0 0.15rem;
  }
}

#TopYearyEventList .text {
  font-size: 0.15rem;
  line-height: 1.65;
}

#TopYearyEventList .text a {
  color: #008C8C;
  font-weight: 500;
  text-decoration: underline;
}

/* イベントがないとき */
#TopEventWrapper .no_entry {
  padding: 0.40rem 0.40rem;
  background-color: #FFF;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  #TopEventWrapper .no_entry {
    padding: 0.40rem 0;
  }
}

#TopEventWrapper .no_entry .text {
  font-size: 0.16rem;
  text-align: center;
}

@media screen and (max-width: 600px) {
  #TopEventWrapper .no_entry .text {
    font-size: 0.15rem;
  }
}