@charset "utf-8";



div.container {
	clear: both;
	min-height: 1px;
	height: auto !important;
	height: 1px;
	margin: 0 auto;
	padding: 0;
	/* box-sizing */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

div.container:after {
	content: "";
	display: block;
	clear: both;
	border-bottom: 0 none;
}

div.rtl {
	direction: rtl;
}

div.rtl main,
div.rtl aside {
	text-align: left;
	direction: ltr;
}



/* ▼文字装飾 */
/* ----------------------------------------------------- */
.strong {
	font-weight: bold;
}
.red {
	color: #ff0000;
}
.green {
	color: #22af73;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.hidden {
	display: none;
}



/* ▼セクション共通設定 */
/* ----------------------------------------------------- */
section,
main,
nav {
	/* box-sizing */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;

}






/* ▼トピックパス */
/* ----------------------------------------------------- */
section#topicpath {
	clear: both;
	min-height: 1px;
	height: auto !important;
	height: 1px;
	margin: 0;
	padding: 0.2em 0 0.3em 0;
	background: #eeeeee;
}

section#topicpath p {
	margin: 0;
	padding: 0 3em;
	font-size: 12px;
	line-height: 160%;
	color: #333333;
}

section#topicpath p a {
	color: #333333;
}

section#topicpath p strong {
	font-weight: normal;
}

section#topicpath:after {
	clear: both;
	display: table;
	content: "";
	border: 0 none;
}





/* ▼メインコンテンツ */
/* ----------------------------------------------------- */
section#content main article,
section#content main div.pages {
	clear: both;
	min-height: 1px;
	height: auto !important;
	height: 1px;
	margin: 0;
}

section#content main article:after,
section#content main div.pages:after {
	clear: both;
	display: table;
	content: "";
	border: 0 none;
}









/* ▼テスティモニアル */
/* ----------------------------------------------------- */
section#testimonial figure {
	margin: 0;
	padding: 0;
	line-height: 0;
}





/* ▼フッター */
/* ----------------------------------------------------- */
footer {
	clear: both;
	min-height: 1px;
	height: auto !important;
	height: 1px;
	margin: 0;
	padding: 0;
	color: #ffffff;
	background: #000000;
}

footer p {
	clear: both;
	margin: 0;
	padding: 1em;
	font-size: 12px;
	line-height: 160%;
}

footer address {
	clear: both;
	margin: 0;
	padding: 1em 0;
	font-size: 12px;
	line-height: 160%;
	text-align: right;
	font-style: normal;
	color: #b3b3b3;
}

footer:after {
	content: "";
	display: block;
	clear: both;
	border-bottom: 0 none;
}





/* ▼ページトップ */
/* ----------------------------------------------------- */
div#pagetop {
	position: fixed;
	right: 0;
}

div#pagetop a {
	display: block;
	width: 30px;
	margin: 0;
	padding: 15px 0;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	background: #666666;
	background: rgba(0, 0, 0, 0.7);
	/* border-radius */
	-moz-border-radius: 2px 0 0 2px;
	-webkit-border-radius: 2px 0 0 2px;
	-o-border-radius: 2px 0 0 2px;
	-ms-border-radius: 2px 0 0 2px;
	border-radius: 2px 0 0 2px;
	/* transition */
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}

div#pagetop a:before {
	font-family: "FontAwesome";
	content: "\f077";
	color: #ffffff;
}

div#pagetop a:hover,
div#pagetop a:active {
	-moz-opacity: 0.6;
	opacity: 0.6;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);  /* For IE 5-7 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; /* For IE 8 */
}

div#pagetop a span {
	display: none;
}



iframe[name="google_conversion_frame"] {
	display: none;
}





/* ▼オプトイン */
/* ----------------------------------------------------- */
section#optin h2 {
	margin: -15px -4%;
	margin-bottom: 1.2em;
}

section#optin h3 {
	margin: 3em 0 1em 0;
}

form fieldset {
	width: 90%;
	margin: 3em 0 3em 10% ;
}

@media (min-width: 768px) {
	form fieldset {
		width: 80%;
		margin: 3em 10% 3em 10% ;
	}
}

form fieldset ul {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	list-style-type: none;
}

form fieldset ul li {
	margin: 0 0 0.5em 0;
}

form label {
	display: inline;
	/* display: block; */
	width: 100%;
	/* font-weight: normal; */
}

form ul li#radiobtn {
	padding: 0.2em 0.5em;
	font-size: 1.3em;
	border: 1px solid #cccccc;
	background-color: #ffffff;
	/* border-radius */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

form ul li#radiobtn.check {
	background-color: #ebebe4;
	background-color: rgba(235, 235, 228, 1);
}

form label.requir {
	display: block;
	position: relative;
}

form label.requir:before {
	content: "必須";
	display: block;
	position: absolute;
	top: 5px;
	left: -3.5em;
	width: 3em;
	text-align: center;
	color: #ffffff;
	background: #dc143c;
	/* border-radius */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}

form label.ready:before {
	content: "ＯＫ";
	background: #0ec6aa;
}

form input[type="text"],
form input[type="password"],
form input[type="datetime"],
form input[type="datetime-local"],
form input[type="date"],
form input[type="month"],
form input[type="time"],
form input[type="week"],
form input[type="number"],
form input[type="email"],
form input[type="url"],
form input[type="search"],
form input[type="tel"],
form input[type="color"],
form textarea {
	/* width: 100%; */
	padding: 0.2em 0.5em;
	font-size: 1.3em;
	border: 1px solid #cccccc;
	/* background-color: #ffffff; */
	/* border-radius */
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
	/* box-shadow */
	-moz-box-shadow: 0 0 rgba(0,0,0,0.0) inset;
	-webkit-box-shadow: 0 0 rgba(0,0,0,0.0) inset;
	-o-box-shadow: 0 0 rgba(0,0,0,0.0) inset;
	-ms-box-shadow: 0 0 rgba(0,0,0,0.0) inset;
	box-shadow: 0 0 rgba(0,0,0,0.0) inset;
}

form textarea {
	height: 8em;
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="datetime"]:focus,
form input[type="datetime-local"]:focus,
form input[type="date"]:focus,
form input[type="month"]:focus,
form input[type="time"]:focus,
form input[type="week"]:focus,
form input[type="number"]:focus,
form input[type="email"]:focus,
form input[type="url"]:focus,
form input[type="search"]:focus,
form input[type="tel"]:focus,
form input[type="color"]:focus,
form textarea:focus {
	outline: 0;
	outline: thin dotted \9;
	border-color: rgba(82, 168, 236, 0.8);
}

::-webkit-input-placeholder {
	color: #bbbbbb;
}

:-ms-input-placeholder {
	color: #bbbbbb;
}

::-moz-placeholder {
	color: #bbbbbb;
}

form input[disabled],
form textarea[disabled] {
	color: #333333;
	background-color: #ebebe4 !important;
	background-color: rgba(235, 235, 228, 1) !important;
	-moz-opacity: 1;
	opacity: 1;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);  /* For IE 5-7 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; /* For IE 8 */
}

form button {
	margin: 0 0.5em;
	padding: 0;
	border: 0 none;
	background: none;
	cursor: pointer;
}

form button[disabled] {
	filter: alpha(opacity=30);
	-moz-opacity: 0.3;
	opacity: 0.3;
	cursor: default;
}

form .empty {
	color: #aaaaaa;
}

form .error {
	background: #ffddee !important;
}

form .error::-webkit-input-placeholder {
	color: #dc143c !important;
}

form .error:-ms-input-placeholder {
	color: #dc143c !important;
}

form .error::-moz-placeholder {
	color: #dc143c !important;
}

form:after {
	content: "";
	display: block;
	clear: both;
	border-bottom: 0 none;
}



div.container form div#policy {
	clear: both;
	height: 15em;
	overflow: scroll;
	overflow-x: hidden;
	margin: 3em 0;
	padding: 0 2%;
	text-align: left;
	color: #666666 !important;
	border: 1px solid #dddddd;
	background: rgba(255,255,255,0.5);
}

div.container form div#policy p,
div.container form div#policy ul,
div.container form div#policy ol,
div.container form div#policy dl {
	margin: 0 !important;
	line-height: 2em !important;
}

div.container form div#policy ul li,
div.container form div#policy ol li {
	margin: 0 0 0 1.5em;
	line-height: 2em !important;
	font-weight: normal;
}

div.container form div#policy ul li {
	list-style-type: disc;
}

div.container form div#policy ol li {
	list-style-type: decimal;
}

div.container form div#policy dl dt {
	margin: 2em 0 0 0;
	font-weight: bold;
}

div.container form div#policy p,
div.container form div#policy ul li,
div.container form div#policy ol li,
div.container form div#policy dl dt,
div.container form div#policy dl dd {
	font-size: 14px !important;
}

div.container form div#policy:after {
	content: "";
	display: block;
	clear: both;
	border-bottom: 0 none;
}

form hr {
	clear: both;
	height: 80px;
	margin: 3em;
	border: 0 none;
	background: url(/import/tenant_3/160.16.203.11/html/images/hr_arrow.png) no-repeat center center;
}

form p.agreement,
form p.submit {
	margin-top: 2em;
	margin-bottom: 2em;
	text-align: center;
}

form p.agreement {
	padding: 0 0.5em;
	font-size: 1.4em !important;
	border: 1px solid #cccccc;
}

form input#agreement {
	vertical-align: top;
}

*+html body form input#agreement {
	vertical-align: top !important;
}

head~/* */body form input#agreement {
	vertical-align: top !important;
}

html:not(:target) form input#agreement {
	vertical-align: -2px !important;
}


/*追加*/

.ctitle {
    background-image: url(/import/tenant_3/160.16.203.11/html/img/png/css/h1_bg_pc.png);
    font-size: 18px;
    color: #133463;
    padding: 20px 3.35% 20px 3.35%;
    margin: 0 0 1em 0;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #e0e0e0;
    background-position: bottom right;
}

.pc_slide {
    display: block;
}

.sp_slide {
    display: none;
}

p.voiceread {
  position: absolute;
  bottom: 10%;
}

.lh4 {
  line-height: 4em;
}

.bgc_gold {
 background-color: #ffd700;
}

.mb50 {
  margin-bottom: 50px;
}
