/* *******************************************************************************
-------------------------------------------------------------
■ PC
-------------------------------------------------------------
 1. text link
 2. title (h2,h3,h4)
 ├ 2-1. h2
 ├ 2-2. h3
 └ 2-3. h4 
 3. bt
 4. base template
 5. SNS
 6. table
 ├ 6-1. default
 ├ 6-3. table01
 └ 6-3. table02 
 7. news
 ├ 7-1. default
 └ 7-2. title change
 8. 汎用プロパティ
 ├ 8-1. float
 ├ 8-2. margin
 ├ 8-3. text-align
 ├ 8-4. 画像の配置
 ├ 8-5. 画像の装飾
 └ 8-6. rollover（透過）
 9. other
 ├ 9-1. before-after
 ├ 9-2. list
 ├ 9-3. flow
 └ 9-4. qa
 10. MAP
 11. full
 12. inquiry
 13. singlebox
 ├ 13-1. 2 column
 ├ 13-2. 3 column
 └ 13-3. 4 column 

-------------------------------------------------------------  
■ @media screen and (max-width: 1000px)
-------------------------------------------------------------
 11. full

-------------------------------------------------------------  
■ @media screen and (max-width: 767px)
-------------------------------------------------------------
 3. bt
 9. other
 └ 9-1. before-after
 11. full
 13. singlebox
 └ 13-4. common column

-------------------------------------------------------------  
■ @media screen and (max-width: 600px)
-------------------------------------------------------------
 6. table
 ├ 6-1. default
 ├ 6-3. table01
 └ 6-3. table02 
 10. MAP

******************************************************************************* */
/* ----------------------------------------------------------
■ PC
----------------------------------------------------------- */
/* =====================================
 1. text link
=====================================
a:link    { color: #000; text-decoration: none; }
a:visited { color: #000; text-decoration: none; }
a:hover   { color: #888; text-decoration: underline; }
a:active  { color: #888; text-decoration: underline; } */

/* =====================================
 2. title (h2,h3,h4)
===================================== */
/* 2-1. h2 -------------------------- */

/* =====================================
 3. bt
===================================== */
.gnv_tmp_bt a {
	line-height: 1.4;
	display: block;
	padding: 10px 20px;
	text-align: center;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	background: none #ededed;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #ededed), color-stop(0.00, #fff));
	background: -webkit-linear-gradient(top, #fff 0%, #ededed 100%);
	background: -moz-linear-gradient(top, #fff 0%, #ededed 100%);
	background: -o-linear-gradient(top, #fff 0%, #ededed 100%);
	background: -ms-linear-gradient(top, #fff 0%, #ededed 100%);
	background: linear-gradient(top, #fff 0%, #ededed 100%);
	-webkit-box-shadow: 3px 3px 5px 0 #ccc;
	-moz-box-shadow: 3px 3px 5px 0 #ccc;
	box-shadow: 3px 3px 5px 0 #ccc;
}

/* btサイズ指定の場合 */
.gnv_tmp_detail a {
	width: 20%;
	float: left;
}

/* =====================================
 4. base template
===================================== */
.text_box {
	float: right;
	width: 67%;
}
.b_11_2_in span img,
.b_11 .b_11_in span img {
	margin: 0 1em 1em 0;
}

/* =====================================
 6. table
===================================== */
/* 6-1. default -------------------------- */
.b_06 table td,
.b_06 table th {
    border: 1px solid #CCCCCC;
}
.b_06_item {
    background: none repeat scroll 0 0 #EEEEEE;
    width: 30%;
}

/* 6-2. table01 -------------------------- */
table.gnv_tmp_table01 {
	margin-bottom: 1.5em;
    background: #FFFFFF;
	width: 100%;
}
table.gnv_tmp_table01 th,
table.gnv_tmp_table01 td {
    padding: 5px;
    text-align: left;
}
table.gnv_tmp_table01 thead th {
    background: #ddd;
    border-top: 1px dotted #ccc;
}
table.gnv_tmp_table01 th {
    background: #efefef;
    border-top: 1px dotted #ccc;
    border-bottom: 1px dotted #ccc;
}
table.gnv_tmp_table01 td {
    background: #FFFFFF;
    border-bottom: 1px dotted #ccc;
    border-top: 1px dotted #ccc;
}
/* 6-3. table02 -------------------------- */
table.gnv_tmp_table02 {
	margin-bottom: 1.5em;
	width: 100%;
}
table.gnv_tmp_table02 th,
table.gnv_tmp_table02 td {
    padding: 5px;
    text-align: left;
}
table.gnv_tmp_table02 thead th {
    background: #efefef;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
table.gnv_tmp_table02 th {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}
table.gnv_tmp_table02 td {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

/* 6-4. hours -------------------------- */
table.gnv_tmp_hours th,
table.gnv_tmp_hours td {
    text-align: center !important;
}

/* =====================================
 7. news
===================================== */
/* 7-1. default -------------------------- */
/*#news h2 {
	display: block;
	padding: 10px;
	border-top: 3px solid #000;
	background: none;
	font-size: 130%;
	margin: 0 0 1em !important;
}*/
#news dl{
	border-bottom: 1px dashed #e0ceca;
}
#news dt .newsNew {
    background: #000;
    color: #fff;
}
/* 7-2. title change -------------------------- */
.gnv_tmp_008_title_block h2.gnv_tmp_news_title {
	padding: 10px;
	font-size: 130%;
	border-bottom: 1px solid #ededed;
    margin-bottom: 1em;
}

/* =====================================
8. 汎用プロパティ
===================================== */
/* 8-1. float -------------------------- */
.fl { float: left;}
.fr { float: right;}

/* 8-2. margin -------------------------- */
.mt05 { margin-top: 5px !important;}
.mt10 { margin-top: 10px !important;}
.mt15 { margin-top: 15px !important;}
.mt20 { margin-top: 20px !important;}
.mt25 { margin-top: 25px !important;}
.mt30 { margin-top: 30px !important;}
.mt35 { margin-top: 35px !important;}
.mt40 { margin-top: 40px !important;}
.mt45 { margin-top: 45px !important;}
.mt50 { margin-top: 50px !important;}

.mr05 { margin-right: 5px !important;}
.mr10 { margin-right: 10px !important;}
.mr15 { margin-right: 15px !important;}
.mr20 { margin-right: 20px !important;}
.mr25 { margin-right: 25px !important;}
.mr30 { margin-right: 30px !important;}
.mr35 { margin-right: 35px !important;}
.mr40 { margin-right: 40px !important;}
.mr45 { margin-right: 45px !important;}
.mr50 { margin-right: 50px !important;}

.mb05 { margin-bottom: 5px !important;}
.mb10 { margin-bottom: 10px !important;}
.mb15 { margin-bottom: 15px !important;}
.mb20 { margin-bottom: 20px !important;}
.mb25 { margin-bottom: 25px !important;}
.mb30 { margin-bottom: 30px !important;}
.mb35 { margin-bottom: 35px !important;}
.mb40 { margin-bottom: 40px !important;}
.mb45 { margin-bottom: 45px !important;}
.mb50 { margin-bottom: 50px !important;}

.ml05 { margin-left: 5px !important;}
.ml10 { margin-left: 10px !important;}
.ml15 { margin-left: 15px !important;}
.ml20 { margin-left: 20px !important;}
.ml25 { margin-left: 25px !important;}
.ml30 { margin-left: 30px !important;}
.ml35 { margin-left: 35px !important;}
.ml40 { margin-left: 40px !important;}
.ml45 { margin-left: 45px !important;}
.ml50 { margin-left: 50px !important;}

/* 8-3. text-align -------------------------- */
.tal { text-align:left;}
.tac { text-align:center;}
.tar { text-align:right;}

/* 8-4. 画像の配置 -------------------------- */
/* 基本設定 */
/* right */ 
.b_11_2_in span img,
.b_11 .b_11_in span img {
	float: right;
	margin: 0 0 20px 20px;
}

/* 個別設定 */
/* left */
.img_l span img {
    float: left !important;
	margin: 0 20px 20px 0 !important;
}

/* right */
.img_r span img {
    float: right !important;
	margin: 0 0 20px 20px !important;
}

/* 8-5. 画像の装飾 -------------------------- */
/* 角丸 */
.image img,
.text_image img,
.gnv_tmp_style img {
	/*border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;*/
}

/* 8-6. rollover（透過） -------------------------- */
.rollover:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}

/* =====================================
9. other
===================================== */
/* 9-1. before-after -------------------------- */
.ba_box {
	background: url(../asset/ba_ar.html) no-repeat center 55%;
	display: table;
	width: 100%;
}
.ba_box div.column_l,
.ba_box div.column_r {
	display: table-cell;
	width: 30%;
}
.ba_box div.column_l span,
.ba_box div.column_r span {
	width: 100%;
}
.ba_box div.column_l p,
.ba_box div.column_r p,
.ba_box div.column_l span img,
.ba_box div.column_r span img {
	width: 95% !important;
	margin: 0 auto !important;
}
.ba_box .column_r, .ba_box .column_l {
	text-align: center;
	color: #B69440;
    font-size: 120%;
    font-weight: bold;
}
.ba_box .column_r span {
	text-align: right;
}

/* 9-2. list -------------------------- */
/* 通常リスト 01 */
.ic_01 {
	width: 100%;
}
.ic_01 .clearfix {
	padding: 5px 5px 5px 25px;
}
.ic_01 span {
	position: relative;
	line-height: 1;
}
.ic_01 span:before {
	content: "";
	position: absolute;
	background: #000;
	top: 6px;
	left: -16px;
	height: 7px;
	width: 7px;
	border-radius: 50%;
	
}
/* ul */
.ic_01 ul {
	margin: 25px;
}
.ic_01 li {
	position: relative;
	padding: 5px 5px 5px 0;
}
.ic_01 li:before {
	content: "";
	position: absolute;
	background: #000;
	top: 14px;
	left: -16px;
	height: 7px;
	width: 7px;
	border-radius: 50%;
	
}

/* 通常リスト 02 */
.ic_02 .clearfix {
	padding: 5px 5px 5px 35px;
}
.ic_02 .clearfix span {
	position: relative;
	line-height: 1;
}
.ic_02 span:before{
    content:"\00a0";
    display: block;
    border: solid 9px #000;
    height: 0;
    width: 0;
    position: absolute;
    left: -29px;
    top: 2px;
} 
.ic_02 span:after{
    content:"\00a0";
    display:block;
    width: 4px;
    height: 7px; 
    border: solid #fff;
    border-width: 0 2px 2px 0;
    position:absolute;
    left: -23px;
    top: 6px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* ul */
.ic_02 ul {
	margin: 35px;
}
.ic_02 li {
	position: relative;
	padding: 5px 5px 5px 0;
}
.ic_02 li:before {
    content:"\00a0";
    display: block;
    border: solid 9px #000;
    height: 0;
    width: 0;
    position: absolute;
    left: -29px;
    top: 10px;	
}
.ic_02 li:after{
    content:"\00a0";
    display:block;
    width: 4px;
    height: 7px; 
    border: solid #fff;
    border-width: 0 2px 2px 0;
    position:absolute;
    left: -23px;
    top: 14px;
    margin-top: 0;  
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* 矢印リスト 01 */
.ic_arrow_01 .clearfix {
	padding: 5px 5px 5px 25px;
}
.ic_arrow_01 span {
	position: relative;
}
.ic_arrow_01 span:before {
	display: block;
	content: "";
	position: absolute;
    top: 5px;
	left: -15px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left: 5px solid #000;
}
.ic_arrow_01 span:hover:before {
	left: -12px;
}
/* ul */
.ic_arrow_01 ul {
	margin: 25px;
}
.ic_arrow_01 li {
	position: relative;
	padding: 5px 5px 5px 0;
}
.ic_arrow_01 li:before {
	display: block;
	content: "";
	position: absolute;
    top: 13px;
	left: -15px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left: 5px solid #000;
}
.ic_arrow_01 li:hover:before {
	left: -12px;
}

/* 矢印リスト 02 */
.ic_arrow_02 .clearfix {
	padding: 5px 5px 5px 30px;
}
.ic_arrow_02 span {
	position: relative;
}
.ic_arrow_02 span:before {
	display: block;
	content: "";
	position: absolute;
    top: 2px;
	left: -25px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #999;
}
.ic_arrow_02 span:after {
	display: block;
	content: "";
	position: absolute;
    top: 5px;
	left: -19px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left: 5px solid #fff;
}
.ic_arrow_02 span:hover:before {
	left: -22px;
}
.ic_arrow_02 span:hover:after {
	left: -16px;
}

/* ul */
.ic_arrow_02 ul {
	margin: 30px;
}
.ic_arrow_02 li {
	position: relative;
	padding: 5px 5px 5px 0;
}
.ic_arrow_02 li:before {
	display: block;
	content: "";
	position: absolute;
    top: 10px;
	left: -25px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #999;
}
.ic_arrow_02 li:after {
	display: block;
	content: "";
	position: absolute;
    top: 13px;
	left: -19px;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left: 5px solid #fff;
}
.ic_arrow_02 li:hover:before {
	left: -22px;
}
.ic_arrow_02 li:hover:after {
	left: -16px;
}

/* 9-3. flow -------------------------- */
img.gnv_tmp_flow_arrow_01 {
	margin: 0 auto;
}
img.gnv_tmp_flow_arrow_02 {
	margin: 10px auto 0;
}

/* 9-4. qa -------------------------- */
.gnv_tmp_qa_q {
	border-left: 3px solid #333;
	margin-bottom: 10px;
	padding: 10px;
	display: table;
}
.gnv_tmp_qa_q span.tit {
	font-size: 200%;
	font-weight: bold;
	color: #333;
	padding-right: 20px;
	display: table-cell;
	width: 30px;
}
.gnv_tmp_qa_a {
	border-left: 3px solid #ccc;
	margin-bottom: 10px;
	padding: 10px;
	display: table;
}
.gnv_tmp_qa_a span.tit {
	font-size: 200%;
	font-weight: bold;
	color: #ccc;
	padding-right: 20px;
	display: table-cell;
	width: 30px;
}
.gnv_tmp_qa_a p,
.gnv_tmp_qa_q p {
	display: table-cell;
	width: 100%;
	vertical-align: top;
	padding-top: 15px;
}
 
/* =====================================
 10. MAP
===================================== */
.gnv_tmp_map {
	position: relative;
	padding-bottom: 40%; /* これが縦横比 */
	height: 0;
	overflow: hidden;
	margin-left: 15px;
	margin-right: 15px;
}
.gnv_tmp_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/* =====================================
 11. full
===================================== */
.content_width_full .parts {
	background: #efefef;
}

/* =====================================
 12. inquiry
===================================== */
/*
■問合せタイトルを付けたい場合
1）下記のコメントアウトを削除する
2）パーツ内の「テキスト」でタイトルを「テキスト」に入力する
 */ 
/*
body#inquiryBody .message {
	display: none;
}
body#inquiryBody .inquiry_textbox {
	margin-bottom: 20px;
}
body#inquiryBody .inquiry_textbox:first-child {
    border-bottom: 1px solid #dedede;
	background: url(/asset/h2_bg.gif) no-repeat bottom left;
	font-size: 130%;
    line-height: 1.2;
    padding: 15px;
	border-radius: 0;
    position: relative;
}
.inquiryFormTable {
	border: none;
}
*/

/* =====================================
 13. singlebox
===================================== */
/* 2-1. 2 column -------------------------- */
.singlebox2 {
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    width: 47% !important;
}
/* 2-2. 3 column -------------------------- */
.singlebox3 {
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    width: 30% !important;
}
/* 2-3. 4 column -------------------------- */
.singlebox4 {
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    width: 22% !important;
}

/* footer追記 -------------------------- */
.footer_access_box img.reserve{
	width:auto;
  display:block;
  padding: 0 20px 10px;
}


/* ----------------------------------------------------------
■ @media screen and (max-width: 1000px)
----------------------------------------------------------- */
@media screen and (max-width: 1000px) {
/* =====================================
 11. full
===================================== */
.content_width_full.under .contents_block {
	margin: 0;
}

.content_width_full .parts {
	background: none;
}
}

/* ----------------------------------------------------------
■ @media screen and (max-width: 767px)
----------------------------------------------------------- */
@media screen and (max-width: 767px) {
/* =====================================
 3. bt
===================================== */
.gnv_tmp_detail a {
	width: auto;
	margin: 0 auto;
	float: none;
}

/* =====================================
 4. base template
===================================== */
.text_box {
	float: right;
	width: 67%;
}
.b_11_2_in span img,
.b_11 .b_11_in span img {
	margin: 0 1em 1em 0;
}

/* =====================================
9. other
===================================== */
/* 9-1. before-after -------------------------- */
.ba_box {
	background: url(../asset/ba_ar_sp.html) no-repeat center 50%;
	margin: 0 auto 5em !important;
}
.ba_box div.column_l,
.ba_box div.column_r {
	width: 100%;
	display: block;
}
.ba_box .column_l {
	margin-bottom: 2em!important;
}
.ba_box .column_r span {
	text-align: center;
}

/* =====================================
 11. full
===================================== */
.content_width_full .b_10.b_10_column3 div.column_blank,
.content_width_full .b_11_2.b_11_2_column3 div.column_blank,
.content_width_full .b_11.b_11_column3 div.column_blank,
.content_width_full .b_11_3.b_11_3_column3 div.column_blank {
    display: block !important;
}

/* =====================================
 13. singlebox
===================================== */
/* 13-4. common column -------------------------- */
.singlebox2,
.singlebox3,
.singlebox4 {
    width: 100% !important;
    padding: 0;
}
.singlebox2 .b_11_2_in,
.singlebox3 .b_11_2_in,
.singlebox4 .b_11_2_in {
    padding: 5px;
}
.singlebox2 .b_11_2_in span img,
.singlebox3 .b_11_2_in span img,
.singlebox4 .b_11_2_in span img {
    margin: 0;
}
}

/* ----------------------------------------------------------
■ @media screen and (max-width: 600px)
----------------------------------------------------------- */
@media screen and (max-width: 600px) {
/* =====================================
 10. MAP
===================================== */
.gnv_tmp_map {
	position: relative;
	padding-bottom: 80%; /* これが縦横比 */
	height: 0;
	overflow: hidden;
	margin-left: 15px;
	margin-right: 15px;
}

}
/*==============================================追記==============================================*/
/*===============================================pc===============================================*/
/*==================調整用設定(pc)==================*/
body {
	color:#666;
	background: none!important;
 	line-height: 180%;
 	font-family:"メイリオ","Meiryo",verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Osaka","ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}
a:hover img{
 opacity: 0.8;
 filter: alpha(opacity=80);
 -ms-filter: "alpha( opacity=80 )";
}
#header h1 a:hover img{
opacity: 1;
 filter: alpha(opacity=100);
 -ms-filter: "alpha( opacity=100 )";
}
br.br_01{
display:block;
}
.clearfix:after {
content: " ";
display: block;
visibility: hidden;
clear: both;
height: 0.1px;
font-size: 0.1em;
line-height: 0;
}
.mb0em { margin-bottom: 0em!important;}
.mb05em { margin-bottom: 0.5em!important;}
.mb1em { margin-bottom: 1em!important;}
.mb15em { margin-bottom: 1.5em!important;}
.mb2em { margin-bottom: 2em!important;}
.mb3em { margin-bottom: 3em!important;}
.mb4em { margin-bottom: 4em!important;}

.mb_h3{
margin-bottom:17px!important;
}
.mb_h4{
margin-bottom:13px!important;
}
.mb_h5{
margin-bottom:10px!important;
}
.mb_01{
margin-bottom:30px!important;
}
.mb_02{
margin-bottom:50px!important;
}
.mb_03{
margin-bottom:65px!important;
}
.border_box01{
padding: 2%;
background: #F4F0EB;
box-shadow: inset -3px -3px 0px 0px #EDEDED;
border-radius: 10px;
}
.border_box02{
padding: 10px;
border:dotted 1px #ccc;
background-color:#dcdcdc;
}
.number {
padding: 0px 6px 0px 6px;
border-radius: 5px;
background: #10b4e7;
font-size: 23px;
color: #fff;
margin: 0 6px 0 0;
}
.arrow_box {
position: relative;
height: 40px;
width: 100%;
}
.arrow_box:before {
content: "";
position: absolute;
background: none;
top: 10px;
left: 0px;
height: 0;
border-top: dotted #E0E0E0 2px;
width: 100%;
}
.arrow_box:after {
display: block;
content: "";
position: absolute;
top: 10px;
left: 50%;
margin: 0 0 0 -30px;
width: 0px;
height: 0px;
border: 30px solid transparent;
border-top: 16px solid #E0E0E0;
}
.text_01 {
color: #edb329;
    font-size: 30px;
    font-weight: normal;
    padding: 10px 0;
    text-align: center;
		line-height: 1.4;
}
.text_02 {
color: #4c3000;
    font-size: 21px;
    font-weight: normal;
}
.text_03 {
color: #4c3000;
    font-size: 21px;
    font-weight: normal;
}
.text_a01 a{
color: #01a73b;
text-decoration: underline;
}
.text_a01 a:hover{
color:#ff4500;
text-decoration: none;
}
.ic_01 span:before {
content: "";
position: absolute;
background: #7B9610;
top:8px;
left: -11px;
height: 5px;
width: 5px;
border-radius: 50%;
}
ul.ul01 {
	list-style: none;
}
ul.ul01 li {
	padding: 0 0 5px 22px;
	position:relative;
}
.ul01 li:before {
background:#edb329;
    border-radius: 50%;
    content: "";
    height: 5px;
    left: 11px;
    position: absolute;
    top: 11px;
    width: 5px;
}
.table02 .b_06_item {
border: none;
border-bottom: 1px solid #08aa41;
background: none;
width:38%;
}
.table02 .b_06_content {
border:none;
border-bottom: 1px solid #ccc;
width: auto;
padding: 1%;
text-align: left;
}
table.table03 {
	border-collapse:collapse;
	background: #FFFFFF;
	width: 100%;	
}
table.table03 th {
	padding: 1%;
	font-weight: normal;
	text-align: left;
	border-bottom: solid 1px #105EA9;
	width: 38%;
	color: #105EA9;
	vertical-align: top;
}
table.table03 td {
	padding:1%;
	text-align: left;
	border-bottom: solid 1px #ccc;
}
#news dd a {
	text-decoration: underline;
	color:#666;
}
#news dd a:hover {
	text-decoration: none;
}
#news .ov {
        text-decoration: none;
}
#news .ov:hover {
        text-decoration: underline;
}
#news .newsBt {
    color: #4c3000;
    font-size: 100%;
    position: absolute;
    right: 10px;
    text-decoration: none;
    top: 13px
}
#news .newsBt:hover {
    text-decoration: underline;
}
#news dt {
    position: relative;
}
#news dt .newsNew {
background: #ed8d8d;
    border-radius: 3px;
    color: #fff;
    font-size: 10px;
    left: 115px;
    line-height: 1.4;
    margin: 0 0 0 10px;
    position: absolute;
    top: 3px;
}
#pagenation .active a, #pagenation a.active:hover {
    background:#aaaaaa;
}
ul.sitemap_ic li a {
color: #666;
text-decoration:none;
}
ul.sitemap_ic li a:hover {
	text-decoration:underline;
}
.blog #content .contentArea h3 a {
	color: #4c3000
}
.blog #content .contentArea .date {
color: #ed7a7a;
}
.blogside h3 {
border-top: 2px solid #ed7a7a;
color: #ed7a7a;
}
.blogside li:before {
    color: #ed7a7a;
}
#blogBody #pagenation a.active:hover, .blog #content #pagenation .active a {
    background:#ed7a7a;
}
#blogBody #pagenation a:hover {
    background:#ccc!important;
}
.inquiry #content .backBt,
.inquiry #content .confirmBt,
.inquiry #content .submitBt,
.inquiry #content .topBt {
-webkit-box-shadow:none;
-moz-box-shadow: none;
box-shadow: none;
border: none;
background-color: #ed7a7a;
background-image:none;
border-radius:7px;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ed7a7a', endColorstr='#ed7a7a')";
}
.inquiry #content .backBt:hover, 
.inquiry #content .confirmBt:hover, 
.inquiry #content .submitBt:hover, 
.inquiry #content .topBt:hover {
opacity: 0.8;
filter: alpha(opacity=80);
-ms-filter: "alpha( opacity=80 )";
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ed7a7a', endColorstr='#ed7a7a')";
}
/*==================見出し(pc)==================*/
#news h2,
h2.titleBg,
.static #content h2.titleBg,
.gnv_tmp_h3_bg h3,
.blog #content .contentArea h3{
    background:#fbf2f2;
		border:none;
    border-top:#ed8d8d 4px solid;
    color: #4c3000;
    font-size: 22px;
    font-weight: normal;
    padding: 10px 0 6px 10px;
}

.gnv_tmp_h2_bg {
	border-bottom: 1px solid #ededed;
	border-top: 3px solid #000;
	width: 100%;
}

.gnv_tmp_h2_bg h2 {
	padding: 10px 15px;
	font-size: 120%;
}

/*.static #content h2.titleBg,
h2.titleBg {
	background: none;
    border-left: none;
	border-bottom: 1px solid #626160;
	border-top: 3px solid #000;
	padding: 10px 15px;
	font-size: 120%;
}
.gnv_tmp_h3_bg {
	border-radius: 6px; 
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px; 
    background: #000;
    background: -moz-linear-gradient(top, #333, #000);  
    background: -webkit-gradient(linear, left top, left bottom, from(#333), to(#000));
	padding: 10px;
}
.gnv_tmp_h3_bg h3 {
	color: #fff;
	border-left: 3px solid #ccc;
	padding: 0 0 0 10px;
}*/
.gnv_tmp_h4_bg {
  position: relative;
  line-height: 1;
  padding: 10px 5px 10px 30px;
 border-bottom: 2px dotted #ccc;
	font-weight: bold;
}
.gnv_tmp_h4_bg h4{
	font-weight:normal;
	font-size: 18px;
	line-height: 1.4;
}
.gnv_tmp_h4_bg:after {
 background: none repeat scroll 0 0 #fff;
    border-radius: 50%;
    content: "";
    height: 12px;
    left: 10px;
    position: absolute;
    top: 15px;
    width: 12px;
}
.gnv_tmp_h4_bg:before {
  background: none repeat scroll 0 0 #edb329;
    border-radius: 50%;
    content: "";
    height: 18px;
    left: 7px;
    position: absolute;
    top: 12px;
    width: 18px;
}
h5 {
font-weight: normal;
padding: 6px 6px 6px 10px;
background: #E3F3E1;
border-radius: 7px;
}
/*==================content01,02(pc)==================*/
.top .contents01 {
   background: url(../asset/top_bg01.png) no-repeat center 0px;
background-size:cover;
height: 880px;
position: relative;
width: 100%;
}
.top .contents01_in {
height: auto;
overflow: visible;
}
.top .contents01 .col_box .col_content .lead_txt {
font-size: 24px;
margin: 0 0 10px 0;
color:#4c3000;
}
.top .contents01 .col_box .col_img {
    margin: 0 3% 0 0;
    max-width: 240px;
    width: 24%;
}
.top .contents01_inner_box {
height: auto;
top: 140px;
}
.top .contents01 .col_box .col_content {
display: block;
float: left;
width: 73%;
}
.top .contents01 .col_box .col_content p {
padding-bottom: 25px;
line-height: 1.5;
font-size:16px;
}
.top .contents01 .col_box .btn_style {
float: left;
width: 35%;
padding: 0 0 0;
padding-bottom: 0!important;
height: auto;
position: relative;
margin: 0px 0 0;
}
.top .contents01 .col_box .btn_style a{
float: none;
display: block;
width: 100%;
margin: 0;
height: auto;
padding: 7px 0 5px;
font-size: 18px;
line-height: 1.5;
border-radius: 6px;
background:#ed7a7a;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ed7a7a', endColorstr='#ed7a7a')";
-webkit-box-shadow:none;
-moz-box-shadow: none;
box-shadow: none;
color: #fff;
position: relative;
text-shadow: none;
overflow:hidden;
}
.top .contents01 .col_box .btn_style a:before{
border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: "";
    display: block;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 15px;
    transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
    width: 7px;
}


.top .link_box02 {
display: block;
width: 100%;
background: #f7e3e3;
position: absolute;
bottom: 0;
height: auto;
}
.top .link_box02_in {
display: block;
width: 1000px;
 height: auto;
margin: 0 auto;
}
.top .link_box02_in .lead_txt {
padding: 26px 0 0 0;
line-height: 1.5;
font-size: 18px;
color: #4c3000;
height: auto;
}
.top .link_box02_in .btn_style {
float: right;
width: 32%;
padding: 0 2% 0;
height: auto;
position: relative;
margin: 25px 0;
}
.top .link_box02_in .btn_style a{
float: none;
display: block;
width: 100%;
margin: 0;
height: auto;
padding: 12px 0;
font-size: 20px;
line-height: 1.5em;
background:#ed7a7a ;
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ed7a7a', endColorstr='#ed7a7a')";
-webkit-box-shadow:none;
-moz-box-shadow: none;
box-shadow: none;
position:relative;
border-radius:6px;
color: #fff;
position:relative;
}
.top .link_box02_in .btn_style a:after {
	border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: "";
    display: block;

    height: 7px;
    position: absolute;
    right: 10px;
    top: 20px;
    transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
    width: 7px;
}
.top .contents02 .menu_box li a {
    height: 314px;
    margin: 0 0 7px;
}
.tablet .contents02 .menu_box li a {
    height: auto;
    margin: 0 0 7px;
}
/*==================content下層(pc)==================*/
.b_11_2_in span img {
   width: 40%;
}
.text_box {
width: 57%;
}
.img_box01 p{
	text-align:center;
}
.max_800{
	max-width: 550px;
	margin:0 auto;
}
.max_800 img{
	width:100%;
}
.flow_box{
	max-width:800px;
	margin:0 auto;
}
.flow_box p.flow{
text-align: center;
background: #fbf2f2;
padding: 7px;
border-radius: 7px;
}
.span_mr {
padding: 4px 6px 0;
display: inline-block;
border-radius: 5px;
background: #f0a3a3;
font-size: 23px;
color: #fff;
margin: 0 6px 0 0;
}
.span_dmr {
 background: none repeat scroll 0 0 #999;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font-size: 23px;
    margin: 0 6px 0 0;
    padding: 4px 6px 0;
}
@media screen and (max-width: 1000px) {
/*====================================================================================*/
/*==================調整用設定(～1000px)==================*/

/*==================見出し(～1000px)==================*/

/*==================content01,02(～1000px)==================*/
.top .contents01_inner_box {
    height: auto;
    top: 70px;
}
.top .contents01 .col_box .btn_style {
    width: 40%;
}
.top .link_box02_in {
    padding: 0 2%;
    width: 96%;
}
.top .link_box02_in .lead_txt {
    float: left;
    text-align: left;
}
.top .link_box02_in .btn_style {
    padding: 0;
}
.top .contents02 .menu_box li a {
    height: auto;
    margin: 0;
}
/*==================content下層(～1000px)==================*/

}
@media screen and (max-width: 850px) {
/*====================================================================================*/
/*==================調整用設定(～1000px)==================*/

/*==================見出し(～1000px)==================*/

/*==================content01,02(～1000px)==================*/
.top .contents01 {
height: 780px;
}
/*==================content下層(～1000px)==================*/

}

@media screen and (max-width: 767px) {
/*====================================================================================*/
/*==================調整用設定(～767px)==================*/
br.br_01{
display:none;
}
.mb_h3{
margin-bottom:13px!important;
}
.mb_h4{
margin-bottom:10px!important;
}
.mb_h5{
margin-bottom:8px!important;
}
.mb01{
margin-bottom:20px!important;
}
.mb02{
margin-bottom:33px!important;
}
.mb03{
margin-bottom:45px!important;
}
table{
	font-size:13px;
}
/* footer追記 -------------------------- */
.footer_access_box img.reserve{
	 padding: 0 0 10px;
}

/*==================見出し(～767px)==================*/

/*==================content01,02(～767px)==================*/
.top .contents01 {
   height: 1020px;
    position: relative;
    width: 100%;
}
.top .contents01 .col_box {
    margin-bottom: 60px;
}
.top .contents01 .col_box .col_img {
    width: 33%;
}
.top .contents01 .col_box .col_content {
    width: 64%;
}
.top .contents01 .col_box .btn_style {
    width: 55%;
}
.top .link_box02_in .lead_txt {
    float: none;
    text-align: center;
		padding: 14px 0 0;
}
.top .link_box02_in .btn_style {
    float: none;
    margin: 16px auto;
    width: 40%;
}
.top .contents02 .menu_box li {
    display: block;
    float: none;
    margin: 0 auto 30px;
    width: 80%;
}
/*==================content下層(～767px)==================*/
.b_11_2_in span img {
   width: 100%;
	 margin: 0 0 10px;
}
.text_box {
width: 100%;
}
}

@media screen and (max-width: 640px) {
/*====================================================================================*/
/*==================調整用設定(～640px)==================*/

/*==================見出し(～640px)==================*/

/*==================content01,02(～640px)==================*/
.top .contents01 .col_box .btn_style {
    width: 65%;
}
.top .link_box02_in .btn_style {
    width: 55%;
}
/*==================content下層(～640px)==================*/

}

@media screen and (max-width: 560px) {
/*====================================================================================*/
/*==================調整用設定(～560px)==================*/

/*==================見出し(～560px)==================*/

/*==================content01,02(～560px)==================*/
.top .contents01 {
    height: 1040px;
}
.top .contents01 .col_box .btn_style {
    width: 80%;
}
/*==================content下層(～560px)==================*/

}

@media screen and (max-width: 480px) {
/*====================================================================================*/
/*==================調整用設定(～480px)==================*/
.text_01 {
    font-size: 23px;
}
/*==================見出し(～480px)==================*/

/*==================content01,02(～480px)==================*/
.top .contents01 {
    height: 1130px;
}
.top .contents01_inner_box {
    top: 50px;
}
.top .contents01 .col_box .btn_style {
    width: 100%;
}
.top .link_box02_in .btn_style a:after {
    top: 22px;
}
/*==================content下層(～480px)==================*/

}
@media screen and (max-width: 420px) {
/*====================================================================================*/
/*==================調整用設定(～420px)==================*/

/*==================見出し(～420px)==================*/

/*==================content01,02(～420px)==================*/
.top .contents01 {
    height: 1150px;
}
.top .contents01 .col_box .col_content .lead_txt {
    font-size: 17px;
    margin: 0 0 5px;
}
.top .link_box02_in .lead_txt {
    font-size: 16px;
}
.top .link_box02_in .btn_style {
    width: 80%;
}
/*==================content下層(～420px)==================*/

}

@media screen and (max-width: 360px) {
/*====================================================================================*/
/*==================調整用設定(～360px)==================*/
.text_01 {
    font-size: 20px;
}
.text_02 {
    font-size: 18px;
}


/*==================見出し(～360px)==================*/

/*==================content01,02(～360px)==================*/
.top .contents01 {
   height: 1220px;
}
.top .contents01 .col_box .btn_style a {
    font-size: 15px;
}
.top .link_box02_in .lead_txt {
    font-size: 14px;
}
.top .contents01 .col_box .btn_style a:before {
    top: 13px;
}
/*==================content下層(～360px)==================*/



}

@media screen and (max-width: 320px) {
/*====================================================================================*/
/*==================調整用設定(～320px)==================*/

/*==================見出し(～320px)==================*/

/*==================content01,02(～320px)==================*/
.top .contents01 {
   height: 1230px;
}
/*==================content下層(～320px)==================*/

}
h4 {
 word-break: break-all;
}





/* =====================================
 IFRAME 動画埋め込み
===================================== */
.youtubeWrap {
    position: relative;
    padding-bottom: 60%;
    height: 0;
    overflow: hidden;
    width:1000px;
    margin: 0 auto;
}
.youtubeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1000px) {
.youtubeWrap {
    width:90%;
}
}

/* =====================================
  1*. viemo
===================================== */
/* 1カラム */
.viemoFrame.col1 {
     position: relative!important;
     padding-top: 36.25%!important;
}
.viemoFrame.col1 iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 80%;
     height: 100%;
         margin: 0 auto;
         right: 0;
}
/* 2カラム */
.viemoFrame.col2.posiL .column_l, .viemoFrame.col2.posiR .column_r,
.viemoFrame.col2.double .column_l, .viemoFrame.col2.double .column_r {
     position: relative;
     padding-top: 28.125%;

}
.viemoFrame.col2 {
     display: table;
     table-layout: fixed;
     width: 100%;
}
.viemoFrame.col2 iframe {
     position: absolute;
     top: 0;
     left: 2%;
     width: 96%;
     height: 96%;
}
@media screen and (max-width: 767px) {
     .viemoFrame .b_11_in:last-child {
         margin: 0;
     }
}
@media screen and (max-width: 600px) {
     .viemoFrame.col2.posiL .column_l, .viemoFrame.col2.posiR .column_r,
.viemoFrame.col2.double .column_l, .viemoFrame.col2.double .column_r {
         padding-top: 56.25%;
     }
     .viemoFrame.col2 iframe, .viemoFrame.col2.double iframe {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
     }
}
/* =====================================


■CORONAバナー


===================================== */
/* バナー設置 */
.pc { display:block; }
.sp { display:none; }

.corona {
width:90%;
max-width:700px;
margin:40px auto 0;

}

@media screen and (max-width:767px) {

.pc { display:none; }
.sp { display:block; }

.corona {
width:90%;
 max-width:700px;
 margin:4.5vw auto 0;
}


}

/* バナー設置 */

.corona img {margin: 0 auto; width:100%; max-width: 800px;}
@media screen and (max-width: 767px) {
.corona img {
width: 100%;
}
}
