@charset "utf-8"; /* 〠 */

/*----------------------------------------------*/
/* common CSS [SP]
/*----------------------------------------------*/

/*######## ブロックレベル変換(HTML5タグ用) ########*/
header, footer, nav, section, article, aside, hgroup, 
details, summary, menu, figure, figcaption {
	display: block;
}


/*######## General ########*/


/*######## Background & Wrapper ########*/

body, table, input, textarea, h1, h2, h3, h4, h5, h6 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Droid Sans";  /* "ヒラギノ角ゴ" for iOS, "Droid Sans" for Android */
	
	color: #212121;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.8;
}

body {
	min-height: 416px;
	-webkit-text-size-adjust: none;  /* no font auto resize for iPhone */
	
	background-color: #FFFFFF;
}

#wrapper {
	width: 100%;
	background-color: #FFFFFF;
}


/*######## Common ########*/

/*---- Page top button ----*/
.pagetop-btn {
	display: none;
}

/*---- Common ol ul ----*/
.common-ol-bracket {
	counter-reset: cnt;
	list-style-type: none;
	margin-top: 4px;
	padding: 0px;
x	background-color: #FF0000;
}

.common-ol-bracket > li {
	counter-increment: cnt;
	margin-bottom: 4px;
	padding-left: 20px;
	text-indent: -20px;
}

.common-ol-bracket > li:before {
	content: "("counter(cnt) ") ";
}

.common-ol-decimal {
	counter-reset: cnt;
	list-style-type: none;
	margin-top: 4px;
	padding: 0px;
x	background-color: #FF0000;
}

.common-ol-decimal-start2 {
	counter-reset: cnt 1;
}

.common-ol-decimal li {
	counter-increment: cnt;
	margin-bottom: 4px;
	padding-left: 20px;
	text-indent: -20px;
x	background-color: #00FF00;
}

.common-ol-decimal > li:before {
	content: counter(cnt);
	margin-right: 10px;
}

.common-ul-decimal {
	margin: 0px;
	padding: 0px;
}

.common-ul-decimal li {
	margin: 0px 0px 2px 20px;
	list-style-type: decimal;
}

.common-ul-indent {
	margin: 0px;
	padding: 0px;
}

.common-ul-indent li {
	margin: 0px 0px 2px 0px;
	padding-left: 15px;
	text-indent: -15px;
}


/*######## Header ########*/

#headerfield {
	width: 100%;
x	height: 60px;  /* for fixed header */
x	background-color: #FFFFFF;
}

#headerbody {
	width: 100%;
x	background-color: #FFFFFF;
	box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.2);
}

#header-logoframe {
	width: 100%;
x	height: 60px;
x	background-color: #FF0000;
}

#header-logobox {
	padding: 10px 0px;
x	width: 50%;
x	vertical-align: middle;
	text-align: center;
x	background-color: #0000FF;
}

#header-logobox img {
	max-width: 238px;  /* for max height 38px (org size 336x30) */
}


/*######## Contents ########*/

/*---- Contents field ----*/
#contentsfield {
}

/*---- Contents body ----*/
.contentsbody {
}

/*---- Bread crumb ----*/
#breadcrumb {
	display: none;
}

/*----- Title -----*/
.titlebox {
	margin: 20px 0px 20px;
	text-align: center;
}

.titlebox:after {
	display: block;
	margin: 8px auto 0px;
	width: 60px;
	height: 3px;
	background: #D2D2D2;
	content: "";
}

.title-base {
	display: block;
	color: #333333;
	font-size: 20px;
	font-size: 2.0rem;
	line-height: 110%;
}

.title-subtitle {
	display: block;
}

/*---- Contents box(1column) ----*/
.contentsbox {
	margin-bottom: 20px;
	padding: 0px 10px;
}


/*######## Footer ########*/

/*---- Footer contents ----*/
#footerfield {
	width: 100%;
}

#footerbody {
}

/*---- Copyright ----*/
.footer-copyright {
	margin: 20px 10px;
	font-slze: 13px;
	font-size: 1.3rem;
	text-align: center;
	letter-spacing: 1px;
}


/*######## 標準文字入力フォーム<input>,<textarea>タグ ########*/
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], textarea {
	margin: 2px 0px 5px 3px;
	padding: 3px;
	border: 1px solid #999999;
	
	font-size: 14px;
	font-size: 1.4rem;
	color: #333333;
	
	border-radius:         4px;
	-webkit-border-radius: 4px;  /* for iOS3.2 before */
	
	/* box内上部シャドー for Android */
	box-shadow:         #CCCCCC 0px 1px 2px 0px inset;  /* for Chrome */
	-webkit-box-shadow: #CCCCCC 0px 1px 2px 0px inset;  /* for Safari */
	
	-webkit-box-sizing: border-box;  /* for Safari,Firefox3 */
	box-sizing:         border-box;  /* for Chrome,IE8+ */
}

textarea {
	height: 80px;
}


/*######## 標準実行ボタン<input>タグ ########*/
input[type="submit"], input[type="button"] {
	-webkit-appearance: none;    /* for stop iOS gradation */
}


/*######## 標準選択フォーム<input type="radio">,<input type="checkbox">,<label>タグ ########*/

/*---- フォーム要素本体 ----*/
input[type="radio"], input[type="checkbox"] {
	margin: 10px 8px 10px 15px;
	padding: 0px;
	vertical-align: middle;
	
	transform: scale(1.5, 1.5);
}

/*---- フォーム選択肢(radio&checkbox) ----*/
.formchoice {
	padding-top: 5px;
}

.formchoice span {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 15px;
}

.formchoice-vertical {
}

.formchoice-vertical span {
	display: block;
	margin-bottom: 15px;
}

/*---- フォーム用<label>タグ ----*/
label {
}


/*######## 標準<select>タグ ########*/
select {
	height: 30px;
	margin: 5px 0px;
	padding: 0px 30px 0px 8px;
	border: 1px solid #999999;
	
	font-size: 14px;
	font-size: 1.4rem;
	color: #333333;
	background-color: #FFFFFF;
	background-image: url(../img/common/select_arrow_down.png);
	background-repeat: no-repeat;
	background-position: center right 5px;
	
	-webkit-box-sizing: border-box;  /* for Safari,Firefox3 */
	box-sizing:         border-box;  /* for Chrome,IE8+ */
	
	-webkit-appearance: none;    /* for stop iOS gradation */
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 4px;
	-moz-border-radius:    4px;
	border-radius:         4px;
}


/*######## フォーム関連 ########*/

/*---- フォームリード ----*/
.form-leadbox {
	margin: 0px 0px 20px;
}

.form-leadbox .form-leadbox-warn {
	color: #FF6633;
}

/*---- フォームテーブル ----*/
.formtable {
}

.formtable-row {
	margin-bottom: 10px;
}

.formtable .formtable-title {
}

.formtable .formtable-title-text {
	display: inline-block;
	font-weight: bold;
}

.formtable .formtable-title-text br {
	display: none;
}

.formtable .formtable-title-must {
	padding: 3px;
	display: inline-block;
	height:      15px;
	line-height: 15px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #FFFFFF;
	background-color: #2a1b80;
	
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}

.title-must {
	padding: 3px;
	display: inline-block;
	height:      15px;
	line-height: 15px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #FFFFFF;
	background-color: #2a1b80;
	
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}

.formtable .formtable-title-option {
	display: inline-block;
	height:      15px;
	line-height: 15px;
	padding: 3px;
	font-size: 12px;
	font-size: 1.2rem;
	color: #FFFFFF;
	background-color: #D2D2D2;
	
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}

.formtable .formtable-data {
	padding-bottom: 10px;
	border-bottom: 1px solid #DEDEDE;
}

.formtable .formtable-data .formchoice span {
	margin-bottom: 10px;
}

.formtable .formtable-data .formchoice span.vertical-item {
	display: block;
}

.formtable .formtable-data label {
}

/*---- フォーム実行ボタン ----*/
.btn-formsubmit {
	margin: 0px auto;
	text-align: center;
}

.btn-formsubmit input {
	min-width: 150px;
	height:      50px;
	line-height: 50px;
	margin: 10px auto;
	padding: 0px 20px;
	
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;  /* for iPhone only */
	color: #FFFFFF;
	text-align: center;
	
	background-color: #541b86;
	
	border: currentColor;
}

.btn-formsubmit input:hover,
.btn-formsubmit input:focus,
.btn-formsubmit input:active {
	background-color: #381457;
}

.btn-formsubmit .btn-formsubmit-back {
	color: #333333;
	background-color: #C5C5C5;
}

.btn-formsubmit .btn-formsubmit-back:hover,
.btn-formsubmit .btn-formsubmit-back:focus,
.btn-formsubmit .btn-formsubmit-back:active {
	background-color: #AAAAAA;
}

.btn-formsubmit-between {
	display: inline-block;
	width: 10px;
}

/*---- フォームエラー ----*/
.formerrmainbox {
	margin: 0px 10px;
	padding-bottom: 20px;
	line-height: 150%;
	
	color: #FF6633;
}

.formerrmainbox .formerrmain-title {
	font-weight: bold;
}

.formerrtext {
	color: #FF6633;
}

.formerritem {
	border: 3px solid #FF6633 !important;
	  /* !importantがないと<input type="text">等に効かない */
}

/*---- MW WP Form関連 ----*/
.formdisp-inputonly {
	margin-top: 5px;
}

.mw_wp_form_confirm .formdisp-inputonly {
	display: none;
}

.mw_wp_form_input .formdisp-checkonly {
	display: none;
}

.mw_wp_form_confirm .formtable-title-must,
.mw_wp_form_confirm .formtable-title-option {
	display: none;
}

.mw_wp_form .error {
	color: #FF6633 !important;
}

.mw_wp_form .formchoice .mwform-checkbox-field {
	margin: 4px 20px 8px 0px;
}

.mw_wp_form .horizontal-item {
	display: inline-block;
	
	margin-left: 0px  !important;
	margin-right: 15px;
}

/*---- フォーム完了 ----*/
.form-donebox {
}

.form-donebox-link {
	margin-top: 20px;
}
