@charset "utf-8";
/*■■■■■■■■■■■■■■■■■■■■■■
　　共通設定
■■■■■■■■■■■■■■■■■■■■■■*/

/*------------------------------------------
■ CSS初期設定
------------------------------------------*/
* {
	margin: 0;
	padding: 0;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}
img {
	vertical-align: middle;
	margin: 0;
	padding: 0;
	border: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
ol, ul {
	list-style: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
*font-size:100%;
	max-width: 100%;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
/*------------------------------------------
■ リンク設定
------------------------------------------*/
a img {
	border: none;
}
a {
	color: #0066cc;
	text-decoration: none;
}
a:hover {
	color: #FF3399;
	text-decoration: none;
	opacity: 0.9;/*--IE,FF対応--*/
	filter: alpha(opacity=90);
	-ms-filter: "alpha( opacity=90)";
}
a:visited {
	color: #993399;
	text-decoration: underline;
}
/*------------------------------------------
■ リンク画像のhover半透明化設定
------------------------------------------*/
a:hover img {
	opacity: 0.85;/*--IE,FF対応--*/
	filter: alpha(opacity=85);
	-ms-filter: "alpha( opacity=85)";
}
/*------------------------------------------
■ float対策
------------------------------------------*/
.fcl {
	zoom: 100%;
}
.fcl:after {
	content: " ";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
/*------------------------------------------
■ 要素回り込み
------------------------------------------*/
.fLeft {
	float: left;
}
.fRight {
	float: right;
}
/*------------------------------------------
■ 画像回り込み
------------------------------------------*/
.img_left {
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
}
.img_right {
	float: right;
	margin-left: 20px;
	margin-bottom: 10px;
}
.img_center {
	display: block;
	margin: 0 auto;
	clear: both;
	text-align: center;
}
.size_s {
}
.size_m {
	box-shadow: 0 0 5px #ccc;
}
.size_l {
}
.max_w {
}

/*------------------------------------------
■ テキスト位置
------------------------------------------*/
.txt_center {
	text-align: center;
}
.txt_left {
	text-align: left !important;
}
.txt_right {
	text-align: right !important;
}
/*------------------------------------------
■ テキスト装飾
------------------------------------------*/
.txt_bold {
	font-weight: bold;
}
.txt_normal {
	font-weight: normal;
}
.txt_small {
	font-size: 78%;
}
.txt_big {
	font-size: 120%;
}
.txt_right {
	text-align: right;
}
.txt_red {
	color: #e8413b;
}
.txt_blue {
	color: #0066cc;
}
.txt_green {
	color: #328a17;
}
.txt_bk {
	color: #333;
}
.txt_orange {
	color: #F8BC2F;
}
.txt_gray {
	color: #999;
}
.txt_keycolor {
	color: #80bd1a;
}
.txt_marker {
	background-color: #FFFF00;
}
.txt_underline {
	border-bottom: 1px dashed #bbbbbb;
	margin-bottom: 2px;
}
.f18 {
	font-size: 18px;
}
.f20 {
	font-size: 20px;
}
.f24 {
	font-size: 24px;
	line-height: 140%;
}
.f28 {
	font-size: 28px;
	line-height: 140
}
.f38 {
	font-size: 38px;
	line-height: 140%;
}
.f40 {
	font-size: 40px;
	line-height: 140%;
}
.f48 {
	font-size: 48px;
	line-height: 140%;
}
.ffg {
	font-family: "FOT-筑紫A丸ゴシック Std D";
}
.ffm {
	font-family: "FOT-筑紫明朝 Pr5 B";
}
/*------------------------------------------
■ 幅
------------------------------------------*/
.wd_70 {
	width: 70%;
}
.wd_82 {
	width: 82%;
}
/*------------------------------------------
■ リスト
------------------------------------------*/
ul.list01 {
	margin: 0;
	padding: 0;
}
ul.list01 li {
	list-style: disc;
	margin-left: 1em;
}
/*------------------------------------------
■ margin padding
------------------------------------------*/
.p-b0 {
	padding-bottom:0 !important;
}
.m-t10 {
	margin-top: 10px;
}
.m-t20 {
	margin-top: 20px;
}
.m-t30 {
	margin-top: 30px;
}
.m-t50 {
	margin-top: 50px;
}
.m-t-50 {
	margin-top: -50px !important;
}
.m-b30 {
	margin-bottom: 30px;
}
.m-0 {
	margin: 0 !important;
}
.m-b0 {
	margin-bottom: 0 !important;
}
.m-lr0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.ml-20 {
	margin-left: 20px;
	}
/*------------------------------------------
■ PC・スマホ切り替え用
------------------------------------------*/
.pc_none {
	display: none !important;
}
.sp_none {
}
/*■■■■■■■■■■■■■■■■■■■■■■
　　各コンテンツ　【　基本設定　】
■■■■■■■■■■■■■■■■■■■■■■*/

/*------------------------------------------
■ メイン設定
------------------------------------------*/
body {
	/*background-color:#FDFBE2;*/
	background-color: #fff;
	color: #425066;
	font-family: "メイリオ", "ＭＳ Ｐゴシック", "Lucida Grande", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Geneva, Arial, Verdana, sans-serif;
	font-size: 16px;
	line-height: 200%;
	width: 100%;
	min-width: 1200px;
}
/*--幅100％の場合--*/
#wrap {
	margin: 0 auto;
}
/*--幅1100pxで区切る場合
#wrap {
background-color: #ffffff;
box-shadow: 0 10px 10px #999999;
margin: 0 auto;
width: 1100px;
}
--*/

#frame {
	padding: 0px;
	margin: 0 auto;
}
#main {
	padding: 0px;
	margin: 0 auto;
}
.section {
	clear: both;
	margin: 0 auto 50px;
}
/*------------------------------------------
■　box
------------------------------------------*/
.box {
	clear: both;
	margin: 0 auto;
	width: 1074px;
	padding: 30px 0;
}
.box_bg {
	width: 100%;
	background: #e9f7ff;
	padding: 30px 40px 40px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px dotted #999;
}
.box_border {
	background-color: #ffffff;
	border: 1px solid #836a2c;
	margin: 50px auto;
	padding: 40px;
}

/*------------------------------------------
■　point
------------------------------------------*/
.point{
	width:100%;
	margin: 40px auto 0px auto;
	}

/*------------------------------------------
■　plan
------------------------------------------*/
.menu{
	width:100%;
	margin: 40px auto 0px auto;
	}

.other{
	width:100%;
	margin: 40px auto 0px auto;
	}

/*------------------------------------------
■　contact
------------------------------------------*/

.contact_info {
	width: 931px;
	margin: 40px;
}

.contact_area {
		border: 5px solid #7da8c7;
    width: 1073px;
		margin: 0 auto;
}

.contact_area_bg {
	background: #f9f5ea;
	text-align: center;
}

.txt_contact {
	color: #ef632c;
	font-size: 26px;
	display: inline-block;
	margin-left: 20px;
	margin-right: 5px;
	vertical-align: middle;
}

.tel_contact {
	background: url(../img/tel_icon_big.png) top left no-repeat;
	color: #000;
	font-size: 48px;
	line-height: 50px;
	height:50px;
	padding-left: 50px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 30px;
}

.btn_contact {
	display: inline-block;
	margin: 10px;
}


/*.contact_area {
    background: url(../img/bg_contact.png) no-repeat;
    width: 1073px;
    height: 389px;
    position: relative;
		margin: 0 auto;
}

.btn_contact {
	position: absolute;
	top:270px;
	left:660px;
}

.txt_contact {
	color: #ef632c;
	font-size: 26px;
	position: absolute;
	top:300px;
	left:40px;
}

.tel_contact {
	background: url(../img/tel_icon_big.png) top left no-repeat;
	color: #000;
	font-size: 48px;
	line-height: 40px;
	height:50px;
	position: absolute;
	top:295px;
	left:170px;
	padding-left: 50px;
}*/

/*------------------------------------------
■　voice
------------------------------------------*/
.voice{
	margin: 20px 0;
	padding: 60px 0;
	background: url(../img/bg_voice.jpg) no-repeat;
}

/*------------------------------------------
■ h1
------------------------------------------*/
h1 {
	background: #c4a972;
	font-size: 10px;
	height: 20px;
	line-height: 20px;
	margin: 0 auto;
}
.h1_txt {
	display: block;
	margin: 0 auto;
	width: 1000px;
	text-align:right;
	color:#ffffff;
}
/*------------------------------------------
■ ヘッダーエリア
------------------------------------------*/
#header {
	height: 120px;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	position:relative;
}

#header_in {
	height: 85px;
	margin: 0 auto;
	position: relative;
	width: 1000px;
}

#header #header_in h2 {
	font-size: 12px;
}

#header .header_logo {
	padding-top:0px;
	position:absolute;
	top:20px;
}

#header .header_txt {
	font-size: 12px;
}

#header .header_txt2 {
	line-height: 120%;
	font-size: 12px;
	padding-left: 0;
	color:#383838;
padding-left:5.5em;
text-indent:-5.5em;
}

#header_in .header_tel {
	line-height: 150%;
	position: absolute;
	right: 290px;
	top: 25px;
}

#header_in .header_tel_number {
	background: transparent url("../img/tel_icon_small.png") no-repeat scroll left center;
	color: #000;
	cursor: default;
	display: block;
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 5px;
	padding-top: 3px;
	text-indent: 30px;
	white-space: nowrap;
	min-height: 36px;
	line-height: 36px;
}

#header_in .header_btn a {
	display: block;
	padding: 0;
	position: absolute;
	right: 0;
	top: 28px;
}

/*------------------------------------------
■TOP
------------------------------------------*/
#top, .top {
	margin: 0 auto;
	text-align: center;
}
.top01 {
	background-image: url("../img/bg_key.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size:cover;
	padding: 40px 0;
}
.top_main01{
	width:1049px;
	height:402px;
	margin:0 auto;
	background-image:url(../img/key_pc_01.png);
	background-position:center;
	background-repeat:no-repeat;
	position:relative;
	}
.top_main02{
	width:1049px;
	height:402px;
	margin:0 auto;
	background-image:url(../img/key_pc_02.png);
	background-position:center;
	background-repeat:no-repeat;
	position:relative;
	}
.top_main03{
	width:1049px;
	height:402px;
	margin:0 auto;
	background-image:url(../img/key_pc_03.png);
	background-position:center;
	background-repeat:no-repeat;
	position:relative;
	}

.top_campaign{
	background-image: url(../img/bg_campaign.png);
	background-repeat: repeat-x;
	background-position: top center;
	height: 241px;
	padding: 7px 0;
}

.btn{
	margin:auto;
	position:absolute;
	bottom: 20px;
	left:0px;
	right:0px;
	}

.top01 .top01_sp{
	display:none;
}
.top02 {
	background-image: url("../img/top_bg02.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size:cover;
	height: 560px;
}
.top02 .top02_sp{
	display:none;
}
.top03 {
	background-image: url("../img/top_bg03.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size:cover;
	height: 560px;
}
.top03 .top03_sp{
	display:none;
}

/*------------------------------------------
■ h4タイトル
------------------------------------------*/
h4.title {
	padding: 0;
	text-align: center;
	margin: 50px auto;
}

/*------------------------------------------
■ テーブル01
------------------------------------------*/
.table01 {
	font-size: 18px;
	margin: 50px auto;
	width: 100%;
}
.table01 th {
	background-color: #e6e3d5;
	border: 1px solid #adadad;
	font-weight: normal;
	padding: 30px;
	text-align: left;
}
.table01 td {
	padding: 30px;
	border: 1px solid #adadad;
}
.table01 td.hb {
	background: #e9f7ff;
}
.table01 th.th01 {
	width: 30%;
	text-align: center;
}
.table01 .white {
	background:#fff;
}

/*------------------------------------------
■ フォーム部分
------------------------------------------*/
.form_area {
	margin: 40px auto;
}
/* --フォームテーブルの部分-- */
.table_box {
	border-top: 1px dashed #666666;
	margin: 50px auto;
	width: 90%;
}
.inq_box {
	border-bottom: 1px dashed #666666;
	display: block;
	font-size: 16px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0 0 30px;
}
.inq_box_top {
	border-top: #cccccc 1px solid;
}
.inq_box_title {
	border-left: 10px solid #c4aa73;
	float: left;
	font-weight: bold;
	line-height: 150%;
	margin-top: 40px;
	padding-left: 12px;
	width: 260px;
}
.inq_box_txt {
	display: block;
	float: left;
	line-height: 140%;
	padding-left: 20px;
	padding-top: 30px;
	width: 450px;
}
input, textarea, select {
	font-size: 16px;
	margin: 5px auto;
	padding: 5px;
}
input[type=text]:focus, textarea:focus, select:focus {
	outline: 0;
	background-color: #FFFFDD;
}
/*------------------------------------------
■ フッター
------------------------------------------*/
#footer {
	display: block;
	font-size: 14px;
	height: auto;
	line-height: 180%;
	margin: 30px auto 0;
	padding: 25px 0 0;
	text-align: center;
	width: 100%;
	color:#333;
}
.copyright {
	background-color: #c4aa73;
	color: #333;
	margin: 15px auto 0;
	padding: 10px;
}

/*------------------------------------------
■ サブページ共通(プライバシーポリシーなど)
------------------------------------------*/
#sub_page, #order_page, #privacypolicy, #law, #order_end, .privacypolicy {
	font-size: 15px;
	padding: 20px 0;
	width: 1000px;
	margin: 0 auto;
}
.sub_page_title_ {
	background-color: #c4aa73;
	background-image: none;
	border:none;
	border-radius: 5px;
	font-size: 24px;
	font-weight: bold;
	color:#ffffff;
	margin: 30px auto;
	padding: 20px 0;
	text-align: center;
	height: auto;
}
.box_sub {
	padding: 0 50px;
}
.sub_page_h {
	border-bottom: 2px solid #CCCCCC;
	font-size: 18px;
	font-weight: bold;
	line-height: 130%;
	margin: 0 0 15px;
	padding: 5px 0 3px;
}

/*------------------------------------------
■ ページトップへ戻るボタン
------------------------------------------*/
#go_top {
}
#go_top a {
	background-color: #c4aa73;
	border: 1px solid #fff;
	border-radius: 5px;
	box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.7);
	bottom: 40px;
	color: #fff;
	display: block;
	font-size: 13px;
	font-weight: bold;
	padding: 10px 10px 8px 0;
	position: fixed;
	right: 20px;
	text-align: center;
	width: 150px;
}

/*------------------------------------------
■ アクセス
------------------------------------------*/
.map_area {
	font-size: 16px;
	line-height: 100%;
	margin: 40px auto 0;
	text-align: right;
}
.map_in {
	display: block;
	height: 600px;
	margin: 0 auto;
	width: 100%;
}

/*-------------------------------------------
リセット
-------------------------------------------*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}
