@charset "UTF-8";
@import "contentNav.css";
.imgSlider{
	background: #212326;
	margin: 0 auto 100px;
	padding-bottom: 60px;
	height: 600px;
	position: relative;
}

.swiper{
	height: 100%;
	max-width: 1160px;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide {
	height: 370px!important;
	width: 1160px!important;
}


.swiper-horizontal>.swiper-scrollbar {
width: 50%!important;
left: 25%!important;
}

.swiper-scrollbar-drag {
    background: rgba(153, 0, 153, 0.75)!important;
}

.cursor{
	border-radius: 50%;
	position: absolute; 
	top: 0;
	left: 0; 
	cursor: none; 
	pointer-events: none; 
	width: 80px;
	height:80px;
	background: rgba(153, 0, 153, 0.75);
	z-index: 999;
	opacity: 0; 
}

.cursor.is-active{
	opacity: 1;
}

.cursor.is-next::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    right: 0;
    margin: auto;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.cursor.is-prev::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: -10px;
	margin: auto;	
	display: inline-block;
	width: 20px;
	height: 20px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.swiper-button-next, .swiper-button-prev {
    top: 0!important;
    width: 500px!important;
    height: 100%!important;
}
.swiper-button-next::after, .swiper-button-prev::after{
	display: none;
}

.pickCont{
	max-width: 100%;
	width: 100%;
}

.pickCont a{
	display: flex;
	justify-content: space-between;
	color:#fff;
	padding: 0 20px;
}

.pickCont a img{
	flex-basis: 54%;
	max-width: 540px;
	max-height: 435px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}	

.pickCont .listData{
	flex-basis: 50%;
	padding: 5% 40px 0;
}

.dataTerm{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.dataTerm{
	margin-bottom: 1em;
}	

.dataTerm time{
	display: block;
	position: relative;
	font-size: 1.4rem;
}

.dataTerm time::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 1px;
    background: #707070;
    top: 0;
    bottom: 0;
    left: -110px;
    margin: auto;
}


.pickCont .dataTerm{
	font-size: 2.4rem
	margin-bottom: 70px;
}


.dataTtl{
	font-size: 2.4rem;
}

.listData{
	max-width: 760px;
	width: 100%;
	word-break: break-all;
}

.listData p{
	padding: 40px 0 60px;
}



.infoContent{
	max-width: 1920px;
	display: grid;
	grid-template-columns: 260px 1fr;
	align-items: start;
}


.infoList{
	flex-basis: 1100px;
	max-width: 1100px;
	margin-bottom: 90px;
	position: relative;
}

.infoList li a{
	color: #fff;
	display: flex;
	align-items: center;
	padding: 25px;
	border-bottom:1px solid #707070;
	position: relative;
	background: transparent;
	z-index: 1;
	transition: .3s;
}

.infoList a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(167, 12, 161, .5);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.infoList a:hover {
  color: #fff;
}
.infoList a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.infoList li:first-child a{
	border-top:1px solid #707070;
}

.infoList li a img{
	flex-basis: 180px;
	width: 180px;
	height: 180px;
	margin-right: 70px;
	object-fit: cover;
}




/*---------------------------------
detail
---------------------------------*/	

.detailHeader{
	border-bottom: 1px solid #707070;
	margin-bottom: 80px;
	padding: 50px 0 20px 40px;
	position: relative;
	display: block;
}

.detailHeader a{
	color: #fff;
}

.detailHeader::before {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 10px;
    margin: auto;
    vertical-align: bottom;
    width: 15px;
    height: 6px;
    border-bottom: 1px solid #fff;
}

.detailHeader::after {
    content: "";
    position: absolute;
    bottom: 23px;
    left: 11px;
    margin: auto;
    vertical-align: bottom;
    width: 7px;
    height: 5px;
    border-top: 1px solid #fff;
    -moz-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.detailInfo{
	display: flex;
	color: #707070;
	margin-bottom: 20px; 
}

.detailInfo span{
	margin-right: 40px;
}

.detailTtl{
	font-size: 2.6rem;
	font-weight: 400;
	color: #fff;
}

.detailConts{
	padding: 60px 90px 80px;
}

.detailCatch,.detailCatch img{
	display: block;
	margin: 0 auto 60px;
}


/*========================

1440px

========================*/
@media screen and (max-width: 1440px){
	.infoContent{
		grid-template-columns: 2fr 8fr;
	}

	.pickCont .listData{
		padding-top: 0;
	}

	.listData p{
		padding-bottom: 40px;
	}
}

/*========================

1200px

========================*/

@media screen and (max-width: 1200px){
  .dataTtl{
		font-size: 2rem;
	}

  .pickCont .listData{
    padding: 5% 40px 0;
  }

  .infoList li a img{
  	margin-right: 40px;
  }

  .swiper-button-next, .swiper-button-prev{
    top: 30%!important;
    width: 260px!important;
    height: 50%!important;
}

.cursor{
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.cursor.is-next::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.cursor.is-prev::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;	
	display: inline-block;
	width: 10px;
	height: 10px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

}

/*========================

1024px

========================*/

@media screen and (max-width: 1024px){

	.swiper{
		max-width: 960px;
		width: 100%;
		padding: 40px 0;
	}

	.swiper-slide {
	height: 400px!important;
	width: 960px!important;
}

	.imgSlider{
		height: 400px;
		padding-top: 60px;
		margin-bottom: 80px;
	}

	.infoList li a img{
		flex-basis:unset;
		width: 120px;
		height: 120px;
		margin-right: 40px;
	}

	.pickCont .listData{
		flex-basis: unset;
	}

	.dataTtl{
		font-size: 1.8rem;
	}

	.dataTerm{
		font-size: 1.2rem;
	}

	.dataTerm time{
		font-size: 1.2rem;
	}

	.dataTerm time::before{
		width: 60px;
		left: -70px;
	}

	.pickCont .listData{
		padding: 60px 40px;
	}

	.pickCont a img{
		max-width: 400px;
		max-height: 300px;
		height: auto;
	}

	.listData p{
		padding: 40px 0 40px;
	}

}



/*========================

768px

========================*/

@media screen and (max-width: 768px){

.infoContent{
	display: block;
}

.infoList{
	min-width: initial;
}

.infoList li a{
	padding: 25px 0;
	align-items: flex-start;
}

.infoList li a img{
	max-width: 90px;
	width: 100%;
	height: 90px;
	object-fit: cover;
	margin-right: 1em;
}

.dataTtl{
	font-size: 1.8rem;
}

.dataTerm{
	font-size: 1.2rem;
}

.dataTerm time{
	font-size: 1.2rem;
}

.dataTerm time::before{
	width: 30px;
	left: -40px;
}

.detailHeader{
	margin-bottom: 30px;
	font-size: 1.2rem;
}

.detailInfo{
	margin-bottom: 1em;
}

.detailTtl{
	font-size: 1.6rem;
	font-weight: normal;
}

.detailConts{
	padding: 40px 0 60px;
}


.imgSlider {
  height: auto;
}  


.swiper {
  width: 100%;
}  


.swiper-slide {
  height: auto !important;
  width: auto !important;
}


.pickCont a {
  display: block;
}  

.pickCont a img {
  width: 90%;
  max-height: inherit;
  margin: 0 auto;
  max-width: inherit;
  height: auto;
  display: block;
}

.listData p{
	padding: 20px 0 20px;
}

.contentNav ul .has-child::after{
    content: "";
    position: absolute;
    right: -20px;
    top: 4px;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 5px 30px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all 0.3s ease-out;
 }


.contentNav ul.contentNavMaster{
	position: relative;
}

.contentNav ul.contentNavMaster:hover .contentNavSub{
	visibility: visible;
	opacity: 1;
	top: 0;
	height: auto;
}

.contentNav .contentNavMaster .has-child{
    border-bottom: 1px solid #A51C9F;
    margin-bottom: 1em;
    padding-bottom: 4px;
}

.contentNavSub ul li{
	padding-bottom: 1em;
}

.contentNavSub ul li:first-child{
	padding-top: 1em;
}

.swiper-button-next, .swiper-button-prev{
    top: 30%!important;
    width: 100px!important;
    height: 50%!important;
}


}


/*========================

420px

========================*/

@media screen and (min-width: 0px) and (max-width: 420px){

.pickCont a img{
	max-height: 252px;
}

.detailConts{
	padding: 30px 0 60px;
}

.detailCatch, .detailCatch img{
	margin-bottom: 30px;
}

.dataTerm, .dataTerm time{
	font-size: 1rem;
}

.listData p{
	padding: 1em 0 1em;
}

.dataTtl{
	font-size: 1.4rem;
}

.pickCont .listData{
	padding: 60px 16px;
}

}
