@charset "utf-8";
/* CSS Document */

body {
	font-family: "Noto Sans JP", sans-serif;
	padding: 0;
	margin: 0;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}


a {
	text-decoration: none;
	transition: 0.3s;
}



p {
	line-height: 1.4;
}

img {
	width: 100%;
}

.pc_only {
	display: block;
}

@media screen and (max-width: 768px) {
	.pc_only {
		display: none;
	}
}

.sp_only {
	display: none;
}

@media screen and (max-width: 768px) {
	.sp_only {
		display: block;
	}
}


.all-wrap{
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 10px;
	margin-top: 2em;
}

.entry-info p{
	color: #000;
	margin: 0 auto 0.5em auto;
}


.main-img{
	width: 100%;
	margin-bottom: 2em;
}



.title{
	text-align: center;
	font-size: 2em;
	font-weight: bold;
}


.normal_txt{
	font-size: 1em;
}

.big_txt{
	font-size: 1.2em;
	font-weight: bold;
}



.all-wrap a{
	display: contents;
}



.link_btn{
	max-width: 380px;
	margin: 2em auto;
	background-color: #C70079;
	padding: 10px;
	border-radius: 50px;
	
}




.link_btn p{
	text-align: center;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	position: relative;
}



.link_btn p::after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -4px;
	transform: rotate(45deg);
	/*アニメーションの指定*/
	transition: all .3s;
}


.link_btn p:hover::after {
	right: 10px;
}

.link_btn:hover {
	box-shadow: none;
	transition: all .3s;
}
