@charset "utf-8";

/* request_button */
.request_button {
	width: calc( 100% - 40px );
	max-width: 460px;
	height: 80px;
	padding: 0 20px;
	margin: 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #E67E22;
	color: #FFFFFF;
	font-size: 30px;
	line-height: 100%;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s, box-shadow 0.3s;
}
.request_button .icon {
	font-size: 22px;
	margin-right: 12px;
}
.request_button .arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.request_button:hover {
	background-color: #d35400;
	box-shadow: inset 0 0 0 2px #a04000;
}
@media screen and (max-width: 500px) {
	.request_button {
		font-size: 24px;
	}
}
/* request_button */

/* page_top_btn */
@media screen and (max-width: 480px) {
	#wrap .page_top_btn{
		left: 10px;
	}
}
/* page_top_btn */

/* eptcoat inquiry scroll button */
.eptcoat-inquiry_scroll_btn{
	display: none;
	position: fixed;
	bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	text-align: center;
	text-decoration: none;
	z-index: 100;
    animation-name: fadein;
    animation-duration: 1s;
}
.eptcoat-inquiry_scroll_btn a {
    display: inline-block;
    width: 167px;
    padding: 10px 10px;
    background-color: #EF781F;
    color: #FFFFFF!important;
    border-radius: 50px;
    text-align: center;
    text-decoration: none!important;
    font-size: 14px;
    transition: .3s;
}

/* PC幅表示制御 */
@media screen and (min-width: 769px){
	.eptcoat-inquiry_scroll_btn{
		display: none!important;
	}
}
/* PC<->SP切り替えポイント */
@media screen and (max-width: 768px){
	.eptcoat-inquiry_scroll_btn{
		display: block;
	}
}
@media screen and (max-width: 320px){
	.eptcoat-inquiry_scroll_btn a {
		padding: 10px 5px;
	}
}
/* eptcoat inquiry scroll button */

/* movie */
#wrap .movie {
	width: 500px;
	height: 280px;
	margin: 0 auto;
}

#wrap .movie .youtube_embed {
	background-size: cover;
	background-position: center;
	cursor: pointer;
}

#wrap .movie .youtube_embed .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path fill="%23fff" d="M66.52 7.01a8 8 0 0 0-8-8H9.48a8 8 0 0 0-8 8v34a8 8 0 0 0 8 8h49.04a8 8 0 0 0 8-8v-34z"/><path fill="%23c00" d="M45 24 27 14v20z"/></svg>') no-repeat center;
	background-size: contain;
	opacity: 0.8;
	transition: opacity .2s;
}

#wrap .movie .youtube_embed .play-btn:hover {
	opacity: 1;
}

#wrap .movie .youtube_embed.playing {
	background-image: none;
}

#wrap .movie .youtube_embed.playing .play-btn {
	display: none;
}

#wrap .movie .youtube_embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 500px) {
	#wrap .movie {
		width: 100%;
		height: auto;
	}
}
/* movie */