@charset "UTF-8";


.more-content {
	height: auto;
	/*background-color: #e3c4e6;*/
	/*transition: height 1s ease-out 0s;*/
	overflow: hidden;
	float: left;
	display: none;
}

.more-content::after {
	content: '';
	display: block;
	clear: both;
}

.more {
	margin-bottom: 60px;
}

.more.hidden {
	display: none;
}

.more button {
	-webkit-appearance: none;
	width: 100%;
	border: 0;
	text-decoration: none;
	text-align: center;
	font-size: 1em;
	color: #FFF;
	display: block;
	line-height: 1.3;
	position: relative;
	border: 1px solid #c3002f;
	background-color: #c3002f;
	padding: 1.0714em 20px;
	margin-bottom: .7142857143em;
}

.more button::before {
	content: 'もっと見る';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0.4em;
	background-color: #c3002f;
}

.more button::after {
	content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 18px;
	transform: translateY(-50%);
    width: 16px;
    height: 16px;
	background-image: url(/COMMON/GN/IMAGES/arrow_down_white_l.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.more button.less::before {
	content: '表示を減らす';
}

.more button.less::after {
	background-image: url(/COMMON/GN/IMAGES/arrow_up_white_l.png);
}

.more button:hover,
.more button:hover::before {
	border-color: #920023;;
	background-color: #920023;
}



@media screen and (min-width: 36.3125em) {
	.more button {
		width: 330px;
		margin: 0 auto;
	}
}

@media screen and (min-width: 60em) {
	
}

















