@charset "utf-8";

/*
 *
 *	order style
 *
 */

/*======================================
	pageH
======================================*/
.pageH {
	background: url(../images/tit-bg.jpg) center;
	background-size: cover;
}
.pageH h1 span {
	background: url(../images/tit-bg.jpg) center;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
}



/*======================================
	formBox
======================================*/
.formBox dl {
	max-width: 600px;
	margin: 0 auto 3em;
}
.formBox dl dt {
	margin: 4em 0 .25em;
	font-size: .8em;
	font-weight: bold;
	color: #f60d7a;
}

/* memo */
.formBox dl dd span.memo {
	display: block;
	margin: 1em 0 .25em;
	font-size: .8em;
	font-weight: bold;
}

/* text */
.formBox dl dd input[type="text"],
.formBox dl dd textarea {
		-webkit-appearance: none;
	display: block;
	width: 100%;
	line-height: 1.7;
	padding: .25em .5em;
	background: #f6f6f6;
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0;
	font-size: 1em;
	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", sans-serif;
	color: #353535;
}
.formBox dl dd textarea {
	height: 8em !important;
	width: 100% !important;
}

.formBox dl dd :placeholder-shown,
.formBox dl dd ::-webkit-input-placeholder,
.formBox dl dd :-moz-placeholder,
.formBox dl dd :-ms-input-placeholder {
	padding: .4em .5em;
	font-size: .8em;
	color: #666;
}

/* select */
.formBox dl dd select {
		-webkit-appearance: none;
		-moz-appearance: none;
	appearance: none;
	display: block;
	width: 100%;
	line-height: 1.7;
	padding: .5em 20px .5em .5em;
	border: 1px solid #ccc;
	border-radius: 0;
	background: #f6f6f6;
	font-size: 1em;
	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", sans-serif;
	color: #333;
}
.formBox dl dd .select-group {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	vertical-align: middle;
}
.formBox dl dd .select-group:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border: #ccc solid;
	border-width: 0 0 3px 3px;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* radio */
.formBox dl dd label.radioBtn {
	display: inline-block;
	margin: 0 1em 1em 0;
	padding: .5em;
	background: #fff3f9;
	cursor: pointer;
}
.formBox dl dd input[type="radio"] {
	display: none;
}
.formBox dl dd .parts {
	position:relative;
	margin-right: 25px;
	padding-left: 25px;
}
.formBox dl dd .radioBtn .parts:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	border: 1px solid #999;
	border-radius: 50%;
	background: #fff;
}
.formBox dl dd .radioBtn input.parts:checked + .parts {
	color: #009a9a;
}
.formBox dl dd .radioBtn input[type="radio"]:checked + .parts:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 3px;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	background: #edd400;
	border-radius: 50%;
}

/* check */
.formBox dl dd label.checkBtn {
	display: inline-block;
	margin: 0 1em 1em 0;
	padding: .5em;
	background: #fff3f9;
	cursor: pointer;
}
.formBox dl dd input[type="checkbox"] {
	display: none;
}
.formBox dl dd .parts {
	position:relative;
	margin-right: 25px;
	padding-left: 25px;
}
.formBox dl dd .checkBtn .parts:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 18px;
	margin-top: -9px;
	border: 1px solid #999;
	background: #fff;
}
.formBox dl dd .checkBtn input.parts:checked + .parts {
	color: #009a9a;
}
.formBox dl dd .checkBtn input[type="checkbox"]:checked + .parts:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 3px;
	width: 12px;
	height: 8px;
	margin-top: -6px;
	border: #edd400 solid;
	border-width: 0 0 2px 2px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


.formBox a {
	text-decoration: underline;
}


/****** btnBox ******/
.formBox .btnBox {
	text-align: center;
}
.formBox .btnBox .sentBtn {
		-webkit-appearance: none;
	display: inline-block;
	padding: .5em 2em;
	background: #fff;
	border: #f60d7a solid 2px;
	text-align: center;
	text-decoration: none;
	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", sans-serif;
	font-size: 1em;
	letter-spacing: .04em;
	font-weight: bold;
	color: #f60d7a;
		-moz-transition: opacity .4s ease;
		-webkit-transition: opacity .4s ease;
		-ms-transition: opacity .4s ease;
    transition: opacity .4s ease;
	cursor: pointer;
}
.formBox .btnBox .sentBtn:hover {
	background: #f60d7a;
	color: #fff;
}

/*======================================
	mfp
======================================*/
html{
	background-color: #353535;
}
div#mfp_hidden {
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
}
div.mfp_ok {
    font-size: .778em;
    display: none;
    padding: 0 5px;
    color: #fff;
    background-color: #f60d7a;
    position: absolute;
    top: 0;
    right: 0;
}
div#mfp_overlay_background,
div#mfp_loading_screen,
#mfp_thanks {
    display: none;
}
.mfp_err{
	color: #f60d7a;
}
.formBox dl dd>label.radioBtn:first-child,
.formBox dl dd>label.checkBtn:first-child{
	height: 0;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: transparent;
    margin: 0;
    cursor: default;
}
.formBox dl dd>label.radioBtn:first-child>.mfp_err{
    position: absolute;
    left: 0;
}
.posR{
	position: relative;
}
.hiss{
	font-weight: bold;
	padding: 0 2px;
	color: #f60d7a;
}
#mfp_confirm_table{
	max-width: 600px;
    width: 100%;
    margin: 0 auto 3em;
}
#mfp_confirm_table th{
    font-size: .8em;
    font-weight: bold;
    display: block;
    margin-top: 2em;
    border-bottom: 1px dotted #ccc;
    padding: .5em 0;
}
#mfp_confirm_table td{
	display: block;
	padding: .5em 0;
}
.mfp_buttons{
	text-align: center;
}
.mfp_buttons>button{
	-webkit-appearance: none;
    display: inline-block;
    padding: .5em 2em;
    background-color: #fff;
    border: #f60d7a solid 2px;
    text-align: center;
    text-decoration: none;
    font-family: "Yu Gothic", "游ゴシック", "YuGothic", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", sans-serif;
    font-size: 1em;
    letter-spacing: .04em;
    font-weight: bold;
    color: #f60d7a;
    -moz-transition: opacity .4s ease;
    -webkit-transition: opacity .4s ease;
    -ms-transition: opacity .4s ease;
    transition: opacity .4s ease;
    cursor: pointer;
}
.mfp_buttons>button#mfp_button_send{
	margin-left: 1em;
}
.mfp_buttons>button#mfp_button_send:hover{
	background-color: #f60d7a;
    color: #fff;
}
.mfp_buttons>button#mfp_button_cancel{
	border-color: #ccc;
    color: #ccc;
}
.mfp_buttons>button#mfp_button_cancel:hover{
	background-color: #ccc;
    color: #fff;
}

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

	responsive

============================================================================*/
/*@media screen and (max-width:400px) {
	.mfp_buttons>button{
		padding: .5em 0;
		width: 45%;
    	min-width: auto;
	}
}*/
