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

/**********************************************************************************

   中ページMV

**********************************************************************************/

.mv_common{
	height: 480px;
	background: url("../img/mv.jpg")center no-repeat;
	position: relative;
}

.mv_common .mv-ttl{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: 250px 0 0;
	text-align: center;
}

.mv_common h1{
	color: #fff;
	font-size: 28px;
	font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 1250px) {
	h1{
		width: 80%;
		margin: 0 auto;
	}
	.mv_common{ height: 320px;}
	.mv_common .mv-ttl{ margin: 170px 0 0;}
}

@media screen and (max-width: 768px) {
	.mv_common {height: 280px;}
	.mv_common .mv-ttl{margin: 150px 0 0;}
	.mv_common h1{font-size: 24px;}
	
}


/**********************************************************************************

   contents01

**********************************************************************************/
#contents01{
	width: 100%;
	margin: 60px auto;
}

#contents01 .anchor{
	display: flex;
	gap:50px;
	justify-content: center;
	align-items: center;
	margin-top: 70px;
	flex-wrap: wrap;
}

#contents01 .anchor li a{
	border: 1px solid #000;
	font-size: 18px;
	color: #000;
	padding: 5px 20px;
	/*背景の色と形状*/
	background: #fff;
	position: relative;
	z-index: 1;
	display: inline-block;
}

#contents01 .anchor li a:after {
  background: linear-gradient(90deg, rgba(255, 34, 87, 1), rgba(147, 38, 255, 1) 0% 0%, rgba(138, 32, 243, 1) 35%, rgba(89, 0, 178, 1) 75%);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
#contents01 .anchor li a:hover {
  color: #fff;
}
#contents01 .anchor li a:hover::after {
	content: '';
	transform: scale(1, 1);
}

#contents01 .box{
	margin: 90px auto;
	text-align: center;
}

#contents01 .box h3{
	display: inline-block;
	text-align: center;
	font-size: 36px;
	font-family: "Noto Serif JP", serif;
}

#contents01 .box p{
	padding: 35px 0;
    text-align: left;
    width: 1000px;
    margin: 0 auto;
}

#contents01 .box img{width: 100%;}

@media screen and (max-width: 1024px) {
	
	#contents01 .box p{width: 90%;}
	#contents01 .anchor{gap:10px;}
}
