@charset "utf-8";
/* ==========================================================================
   お問い合わせ
   ========================================================================== */

/* ----------------------------------
   お問い合わせトップ
   ---------------------------------- */
.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.contact-list:before,
.contact-list:after { content: ""; display: table;}
.contact-list:after { clear: both;}
.contact-list > li { margin-bottom: 10px;}

.contact-list a {
	display: block;
	position: relative;
	padding: 16px;
	border-radius: 2px;
	border: 1px solid #015db2;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
@media screen and (max-width:40em) {
	.csstransforms .contact-list a:after {
		display: block;
		content: "";
		position: absolute;
		right: 10px;
		top: 50%;
		width: 8px;
		height: 8px;
		border-top: 2px solid #015db2;
		border-right: 2px solid #015db2;
		-webkit-transform: rotate(45deg) translate(-50%);
		-ms-transform: rotate(45deg) translate(-50%);
		transform: rotate(45deg) translate(-50%);
	}
}

/* ----------------------------------
   フォーム入力画面
   ---------------------------------- */
.form-step { margin: 20px auto;}

/* フォームレイアウト */
.form fieldset {
	margin: 0;
	padding: 0;
	border: none;
}
.form .form-fieldset { margin-top: 30px;}
.form.confirm .form-fieldset { margin-top: 0;}

.form-fieldset > legend {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 8px 16px;
	background: #015db2;
	color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
}

.form-group__label {
	display: block;
	position: relative;
	width: 100%;
	font-weight: bold;
}
.label-required:after,
.label-optional:after {
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 4px;
	line-height: 1;
	padding: 4px 5px;
	border-radius: 2px;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	vertical-align: middle;
	white-space: nowrap;
}
.form-fieldset > legend:after {
	position: static;
	margin-left: 8px;
}
.label-required:after {
	content: "必須";
	background: #f05151; color: #fff;
}
.label-optional:after {
	content: "任意";
	background: #bbb; color: #fff;
}

.control__desc {
	margin-bottom: 5px;
	font-size: 13px;
	font-size: 1.3rem;
}

/* 送信ボタン */
.form-btns {
	margin: 30px auto 60px;
	padding: 0 15px;
	text-align: center;
}

@media screen and (max-width:40em) {
	.form .wrapper-inner { margin: 0 -16px;}
	.form-fieldset { background: #f5f5f5;}
	.form-fieldset + .form-fieldset { margin-top: 0;}
	.confirm .form-fieldset { background: #fff !important;}

	.form-fieldset__desc {
		margin: 10px 16px 0;
		padding: 10px;
		border-radius: 6px;
		background: #fcf7dd;
		border: 1px solid #cfc07c;
	}

	.form-group {
		padding: 16px;
		border-bottom: 1px dotted #bbb;
	}
}
@media print, (min-width:40.0625em) {
	.form.confirm .form-fieldset { margin-top: 10px;}
	.form-fieldset > legend {
		padding: 4px 30px;
		font-weight: bold;
	}
	.form-fieldset__desc {
		padding: 10px 0;
	}

	.form-group {
		display: table;
		width: 100%;
		min-height: 1em;
		border-bottom: 1px dotted #bbb;
	}

	.form-group__label,
	.form-group__control {
		display: table-cell;
		vertical-align: top;
	}

	.form-group__label {
		width: 14em;
		padding: 24px 46px 0 30px;
		text-align: right;
	}
	.form-group__control {
		padding: 10px 30px;
	}

	.label-required:after,
	.label-optional:after {
		right: 0;
		top: 26px;
		bottom: auto;
	}

	.form-btns { margin: 40px auto 60px;}
}

/* メールアドレス確認 */
.addresscheck {
	margin-top: 10px;
	padding: 10px;
	border-radius: 4px;
	background: #fffbd7;
	border: 1px solid #f1ecbe;
}
#email_c {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.7em;
}

/* ボタン */
.form .btn {
	display: block;
	position: relative;
	margin: 1em auto;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.form .btn:focus,
.form .btn:active {
	outline: none;
}

.form .btn.disabled {
	display: none;
	opacity: .2;
	cursor: default;
}

/* 未入力項目がある場合 */
#nosubmit {
	display: block;
	max-width: 600px;
	margin: 20px auto;
	padding: 24px;
	border-radius: 6px;
	background: #f69999;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: background .2s;
	transition: background .2s;
}



/* Form Styles
   ---------------------------------- */
/* 入力プレースホルダー */
.form ::-webkit-input-placeholder { padding-top: 12px; color: rgba(0,0,0,.4) !important; font-size:13px;}
.form ::-moz-placeholder { padding-top: 12px; color: rgba(0,0,0,.4) !important; font-size:13px;}
.form ::-ms-input-placeholder { padding-top: 12px; color: rgba(0,0,0,.4) !important; font-size:13px;}
.form :-ms-input-placeholder { padding-top: 12px; color: rgba(0,0,0,.4) !important; font-size:13px;}

/* 入力フィールド */
.form .field {
	max-width: 100%;
	width: 100%;
	line-height: 1;
	height: auto;
	margin: 6px 0 10px 0;
	padding: 8px;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.15);
	border-radius: 2px;
	border: 1px solid #ddd;
	color: #555;
	font-size: 16px;
	font-size: 1.6rem;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-appearance: none;
	-webkit-transition: all .2s;
	transition: all .2s;
	vertical-align: middle;
}

.form select {
	border-radius: 3px;
	height: auto;
	padding: .5em;
	vertical-align: middle;
}

.appearance.svg .form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
	padding: 8px 30px 8px 12px;
	background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxMCI+PHRpdGxlPnNlbGVjdDwvdGl0bGU+PHBhdGggZmlsbD0iIzg4OCIgZD0iTTggMTBMMCAyLjE5IDIuMDcgMCA4IDUuNzggMTMuOTMgMCAxNiAyLjE5IDggMTAiLz48L3N2Zz4=) no-repeat right center;
	background-size: 20px 6px;
}
@-moz-document url-prefix() {
	.appearance.svg .form select {
		height: auto;
		padding: 4px 30px 4px 12px;
	}
}

.form .field:focus,
.form select:focus {
	outline: none;
	background-color: #fff;
	border-color: #44a4ff;
	color: #111;
}


.field.u-ib {
	width: auto;
	vertical-align: middle;
}
.field.u-width-2em { width: 3em;}
.field.u-width-3em { width: 4em;}
.field.u-width-4em { width: 5em;}
.field.u-width-5em { width: 6em;}
.field.u-width-6em { width: 7em;}
.field.u-width-8em { width: 9em;}
.field.u-width-10em { width: 10em;}


/* バリデーションカラー */
.form .field:invalid,
.form select:invalid {
	background-color: #feefef;
	border-color: #ee3333;
}
.form .field:invalid:focus,
.form select:invalid:focus {
	background-color: #fff;
}

.form .error .field,
.form .field.error { border-color: #ee3333; }
.form .warning .field,
.form .field.warning { border-color: #F1C000; }
.form .success .field,
.form .field.success { border-color: #1BBC9B; }


/* helper text */
.form-help {
	margin-top: 5px;
	color: #666;
	font-size: .857em;
	font-weight: normal;
}
span.form-help {
	display: inline-block;
	margin-top: 0;
	margin-left: 1em;
}

/* label */
.label {
	padding: 4px 5px;
	border-radius: 2px;
}
.label--required { background: #be3029; color: #fff;}
.label--optional { background: #a4a4a4; color: #fff;}


/* 入力項目調整 */
.postal {
	position: relative;
}
.postal i {
	position: absolute;
	left: 10px;
	top: 0px;
	font-style: normal;
}
#postal-code {
	padding-left: 30px;
}
#mail { font-size: 20px;}

.field.address { height: 2.8em;}


/**
 * 疑似チェックボックス・疑似ラジオボタン
 *
 * <label class="ui-checkbox">
 * <input type="checkbox" name="" value="">
 * <span class="ui-text">ラベルテキスト</span>
 * </label>
 */
.ui-checkbox,
.ui-radio {
	cursor: pointer;
}

.csstransforms .ui-checkbox,
.csstransforms .ui-radio {
	display: inline-block;
	position: relative;
	line-height: 1;
	margin-bottom: 0;
	padding: 6px 12px 6px 28px;
}


.csstransforms .ui-checkbox input,
.csstransforms .ui-radio input {
	position: absolute;
	left: 1px;
	top: 40%;
	width: 10px;
	height: 10px;
	outline: none !important;
}

.csstransforms .ui-text {
	display: inline-block;
	line-height: 1.4;
}

.csstransforms .ui-checkbox:before,
.csstransforms .ui-radio:before {
  display: inline-block;
  content: "";
  position: absolute;
	left: 0px;
  top: 50%;
	z-index: 1;
  width: 22px;
  height: 22px;
	margin-top: -11px;
  background: #fff;
	border: 2px solid #cfcfcf;
  vertical-align: bottom;
	transition: all .1s;
}
.csstransforms .ui-checkbox:before{
	border-radius: 4px;
}
.csstransforms .ui-radio:before{
	border-radius: 50%;
}

.ui-checkbox:hover:before,
.ui-radio:hover:before {
	border-color: #999;
}

.csstransforms .ui-checkbox.checked .ui-text:before,
.csstransforms .ui-checkbox input:checked + .ui-text:before {
	display: block;
	content: "";
	position: absolute;
	left: 2px;
	top: 50%;
	z-index: 10;
	width: 9px;
	height: 4px;
	margin-top: 3px;
	border-radius: 2px 0 0 2px;
	background: #006bce;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
}

.csstransforms .ui-checkbox.checked .ui-text:after,
.csstransforms .ui-checkbox input:checked + .ui-text:after {
	display: block;
	content: "";
	position: absolute;
	left: 9px;
	top: 50%;
	z-index: 10;
	width: 14px;
	height: 4px;
	margin-top: 4px;
	border-radius: 0 2px 2px 0;
	background: #006bce;
	-webkit-transform: rotate(-53deg);
	-ms-transform: rotate(-53deg);
	transform: rotate(-53deg);
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}


.csstransforms .ui-radio.checked .ui-text:before,
.csstransforms .ui-radio input:checked + .ui-text:before {
	display: block;
	content: "";
	position: absolute;
	left: 5px;
	top: 50%;
	z-index: 10;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	border-radius: 50%;
	background: #475e7e;
}

/* 確認画面 */
.confirm .ui-radio,
.confirm .ui-checkbox { cursor: default !important;}
.csstransforms .confirm .ui-checkbox:before,
.csstransforms .confirm .ui-radio:before {
  background: #e6e6e6;
	border-color: #d0d0d0;
}
.confirm .ui-text { color: inherit !important;}
