@charset "utf-8";
/* CSS Document */

@media only screen and (max-width: 480px) {
	
body,html {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    color: #4D4D4D;
	height: 100%;
    width: 100%;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 0.9em;
    max-width: 100%;
    min-width: 100%;
}
.br_sp{
    display: block;

}
.br_pc{
	display: none;
}
#wrapper {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: 100%;
    min-width: 100%;
}
#sub_main_image   {
    margin-bottom: 2%;
}

#header{
    position: fixed;
    top: 0;
    margin: 0;
    width: 100%;
    z-index: 9999;
    height: 0%;
    background-color: #FFFFFF;
    border-bottom: 1px solid #B7B7B7;
    text-align: center;
}

#map {
    width: 100%;
    height: 350px;
    background-color: #E7E7E7;
    margin-top: 6%;
}



/*webフォント*/
.wf-mplus1p { 
	font-family: "M PLUS 1p";
}
.wf-roundedmplus1c { 
	font-family: "M PLUS Rounded 1c";
}
.wf-hannari { 
	font-family: "Hannari";
}
.wf-sawarabimincho { 
	font-family: "Sawarabi Mincho"; 
}
.wf-sawarabigothic { 
	font-family: "Sawarabi Gothic"; 
}



.text_red{
	color: red;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.site-header{
    position: fixed;
    justify-content: space-between;
    transition: .5s;
    width: 100%;
    z-index: 10000;
}
.header_wrapper{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFFFF;
    padding-top: 0px;
	padding-bottom: 1.5%;
}
.demo_img{
	margin-top: -30%;
	}	
.header_top{
    width: 100%;
    text-align: center;
}
.header_top_l{
    float: none;
    display: none;
    margin-top: 0.6%;
}
.header_top_r{
    float: none;
    display: block;
}
.header_company{
    display: none;
}
.header_company_sp{
    display: block;
    font-size: 1.3em;
    padding-top: 2.5%;
	padding-left: 9%;
    text-align: left;		
}
.header_company a{
    color: #3D3D3D
}
.header_company:link{
    color: #AF0E11
}
.header_company:visited{
	color: #3D3D3D
}
.header_company:hover{
    color: #869AAF
}
.header_company:link{
	color: #3D3D3D
}

.header_top_info{
    float: none;
    margin-right: 20px;
    display: block;
	
}
.header_contact {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 1.5% 3%;
	margin-top: 2%;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #FF5F00;
    transition: .4s;
    float: none;
	width: 40%;
	margin-left: auto;
	margin-right: auto;
}

.header_contact:hover {
    background-color: #FFA46E;
    color: white;

}

.header_tel{
    text-align: center;
    font-size: 1.6em;
    color: #154CB9;
}
.header_address{
	font-size: 0.9em;
}

nav ul{
display: block;
min-width: 100%;
    margin-top: 5px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}
nav li{
display: block;
min-width: 100%;
    transition: .4s;	
}
nav a{
    display: block;
    width: 100%;
    text-decoration: none;
    color: #024F74;
    padding-bottom: 5px;
    transition: .4s;
}
nav li:hover{
    color: #E7DA66;
    background-color: #FFFBE4;
    transition: .4s;
}

	

		nav.NavMenu{
			position: fixed;	/*表示位置を固定*/
			z-index: 2;		/*重ね順を変更*/
			top: 0;		/*表示位置を指定*/		
			left: 0;	/*表示位置を指定*/
			background: #fff;/*背景を白にする*/
			color: #000;	/*文字色を黒にする*/
			text-align: center;		/*テキストを中央揃え*/
			width: 100%;	/*全幅表示*/
			transform: translateY(-100%);	/*ナビを上に隠す*/
			transition: all 0.6s;	/*アニメーションの時間を指定*/
			
		}

		nav.NavMenu ul{
    background-color: #D0E3D0;	/*背景をグレーにする*/
    width: 100%;
    margin: 0 auto;
    padding: 0;
		}

		nav.NavMenu ul li{
			font-size: 1em;
			list-style-type: none;
			padding: 0;
			width: 100%;
			border-bottom: 1px dotted #333;		
		}

		nav.NavMenu ul li:last-child{
			padding-bottom: 0;
			border-bottom: none;	/*最後のメニュー項目のみ下線を消す*/
		}

		nav.NavMenu ul li a{
			display: block;		/*クリックできる領域を広げる*/
			color: #000;
			padding: 1em 0;
		}
		
		nav.NavMenu.active{
			transform: translateY(0%);		/*ナビを表示する*/
		}

		.Toggle {
		    display: block;
		    position: fixed;    /* bodyに対しての絶対位置指定 */
		    right: 13px;
		    top: 14px;
		    width: 42px;
		    height: 42px;
		    cursor: pointer;
		    z-index: 3;
		}
		 
		.Toggle span {
		    display: block;
		    position: absolute;
		    width: 30px;
		    border-bottom: solid 3px #FFFFFF;
		    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
		    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
		    transition: .35s ease-in-out;			/*変化の速度を指定*/
		    left: 6px;
		}
		 
		.Toggle span:nth-child(1) {
		    top: 9px;
		}
		 
		.Toggle span:nth-child(2) {
		    top: 18px;
		}
		 
		.Toggle span:nth-child(3) {
		    top: 27px;
		}
		 
		/* 最初のspanをマイナス45度に */
		.Toggle.active span:nth-child(1) {
		    top: 18px;
		    left: 6px;
		    -webkit-transform: rotate(-45deg);
		    -moz-transform: rotate(-45deg);
		    transform: rotate(-45deg);
		}
		 
		/* 2番目と3番目のspanを45度に */
		.Toggle.active span:nth-child(2),
		.Toggle.active span:nth-child(3) {
		    top: 18px;
		    -webkit-transform: rotate(45deg);
		    -moz-transform: rotate(45deg);
		    transform: rotate(45deg);
		}




		#fade{
			display: none;
		}	

img{
    vertical-align: bottom;
    width: 100%;
    height: 100%;
    border: 0;
}

/*画像リンク透過*/
.transparent img {
  transition: .4s;
}
.transparent img:hover {
  opacity: 0.5;
}


/*テキストリンク透過*/
.textlink a:hover{
  transition: .3s;
}


h1{
    font-size: 1em;
    font-weight: normal;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    text-align: left;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    height: auto;
    color: #FFFFFF;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}



ol, ul ,li{
    list-style: none;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
}




.iframeWrap {
    position: relative;
    overflow: hidden;
    padding-bottom: 50%;

}
.iframeWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;height: 100% !important
		
}

#top_main_image {
    width: 100%;
    margin-right: auto;
    vertical-align: bottom;
    margin-top: -30%;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    display: block;
    position: relative;
}
.top_main_image_pc{
	display: none;	
}
.top_main_image_sp{
	display: block;
}	
	
	
.top_main_image_title {
    position: absolute;
    top: 20%;
    width: 50%;
    left: 25%;
}




#nav {

}
.nav_pc{
    display: none;
}


.nav_sp{
    display: block;
    z-index: 9999;
    padding-top: 03%;
    padding-bottom: 6%;
    background-color: #13642B;
    color: #FFFFFF;
}



	/*スマホメニューボタン*/	

	
	

#container {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 46%;
    background-size: contain;
}




#top_content {
    position: relative;
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.top_text {
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    text-align: left;
}
.top_menu_box {
    display: block;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    color: #FFFFFF;
    text-align: left;
}
.top_menu_box02 {
    display: none;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    color: #FFFFFF;
    text-align: left;
}	
.top_menu_box03 {
    display: block;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    color: #FFFFFF;
    text-align: left;
}	
	
.top_menu_box_l01 {
    width: 100%;
    float: none;
}
.top_menu_box_r01 {
	position: relative;
    width: 100%;
	padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 0%;	
    background-color: #274674;
    float: none;

}
.top_menu_box_l02 {
	width: 100%;
	float: none;
}
.top_menu_box_r02 {
	position: relative;
	width: 100%;
    padding-top: 2%;
	padding-bottom: 2%;
    padding-left: 0%;	
    background-color: #274674;	
	float: none;
}

.top_menu_box_name {
	font-size:1.1em;
	font-weight: bold;
	text-align: center
}
.top_menu_box_text {
    margin-top: 4%;
    text-align: center;
}


.top_menu_box_btn {
    position: static;
	margin-top: 2%;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
    bottom: 15%;
    left: 12%;
	text-align: center;
    display: block;
    padding: 1% 2%;
    font-size: 1.1em;
    text-decoration: none;
    color: #424E4F;
    background-color: #FFFEF8;
    transition: .4s;
}

.top_menu_box_btn:hover {
    background-color: #FFFFD4;
    color: #5C5C5C;
}








#top_content_bottom {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 3%;
}
.top_content_bottom_box {
    margin-top: 3%;
    width: 100%;
	display: flex;
    margin-left: auto;
    margin-right: auto;
	font-size: 1.1em;
}

	
	
.top_caption_image {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.top_content_bottom_btn{
    width: 31%;
    margin-left: 1%;
    margin-right: 1%;
}
.top_content_bottom_btn_image{
	
}
.top_content_bottom_btn_text{
	font-size: 0.9em;
}
.cp_focus {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.cp_focus:hover {
	border: 10px solid #ffffff;
	border-radius: 50%;
}
.cp_focus img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
.cp_focus:hover img {
	-webkit-transform: scale(1.5,1.5);
	transform: scale(1.5,1.5);
}


.top_content_bottom_btn02{
	width: 48%;
	margin-left: 1%;
	margin-right: 1%;
}
.top_content_bottom_btn_image02{
	
}
#news  {
    display: none;
}
#news_sp   {
	display: block;
    width: 100%;
	margin-top: 8%;
}
.news_area {
    width:85%;
    padding-top: 0.5%;
    padding-right: 0.5%;
    padding-bottom: 0.5%;
    padding-left: 0.5%;
	margin-left: auto;
	margin-right: auto;
}





#sub_title{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 2%;
    padding-bottom: 2%;
    color: #FFFFFF;
    background-color: #355677;
    font-size: 1.6em;
    background-image: url(../img/sub_title_bg.png);
    background-size: cover;
    margin-top: 8%;
}
#sub_page{
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;	
	margin-top: 3%;
}



#office{
	width: 100%;
	margin-left: auto;
	margin-right: auto;	
}
.office_text{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
    font-size: 1.2em;
	text-align: left;
    margin-top: 2%;
    color: #AA4A4E;
    font-weight: bold;
    letter-spacing: 1.5px;
}
.office_box{
	display: block;
	align-items:stretch; 
	margin-top: 2%;
}
.office_detail{
    width: 90%;
	margin-left: auto;
	margin-right: auto;
    margin-top: 5%;
    border: 2px solid #B0B0B0;
    background-color: #FFFFFF;
}
.office_name{
    background-color: #578281;
    color: #FFFFFF;
    padding-top: 1.3%;
    padding-bottom: 1.3%;
    font-size: 1.1em;
}

.office_ico{
    width: 90%;
    margin-left: auto;
    margin-right: auto;	
	margin-top: 3%;
}
.office_ico01{
    width: 30%;
    margin-left: auto;
    margin-right: auto;	
	float: left;
}
.office_ico02{
    width: 30%;
    margin-left: 6%;;
	float: left;
}
.office_ico03{
    width: 30%;
    margin-left: auto;
    margin-right: auto;	
	float: right;
}
.office_link_box{
	display: flex;
	margin-top: 2.5%;
	margin-bottom: 2%;
}
.office_link_btn {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #2F6268;
    background-color: #D4D4D4;
    transition: .4s;
    width: 40%;
    margin-left: 5%;
    margin-right: 5%;
}

.office_link_btn:hover {
  	background: #00bcd4;
	color: white;
}


.office_address{
	margin-top: 2%;	
}
.office_tel{
    margin-top: 1%;
    padding-top: 0.6%;
    padding-bottom: 0.7%;
    color: #D96295;
    font-weight: bold;
}

.office_map {
	margin-top: 2%;
	height: 100%;
	
}
/*.office_map iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}*/



/*ボックス全体*/
.accbox {
    padding: 0;
    max-width: 100%;/*最大幅*/
}

/*ラベル*/
.accbox label {
    display: block;
    margin-top: 1.5%;
    text-align: left;
    padding-top: 3%;
    padding-left: 1%;
    padding-bottom: 3%;
    color: #498AB8;
    font-weight: bold;
    font-size: 1.3em;
    background-color: #ECECEC;
    cursor : pointer;
    transition: all 0.5s;
    border-radius: 4px;
}

/*アイコンを表示*/
.accbox label:before {
    content: '\f054';
    font-family: 'FontAwesome';
    padding-right: 8px;
}

/*ラベルホバー時*/
.accbox label:hover {
    background-color: #C9C9C9;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background-color: #F0F0F0;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '\f078';
}



#procedure{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.procedure_intoro{
	text-align: center;
	margin-top: 3%;
	font-size: 1em;
}

.procedure_tilte {
    font-size: 1.6em;
    font-weight: bold;
    color: #921D41;
    margin-top: 3%;
    text-align: center;
    border-bottom: 2px double #D9BDC3;
    padding-top: 0.6%;
    padding-bottom: 0.5%;
    letter-spacing: 2px;
    -webkit-box-shadow: 3px 3px #FFE0E0;
    box-shadow: 3px 3px #FFE0E0;
    background-color: #FFF3F3;
}
.procedure_box_wrapper{
    border: 2px solid #EDE7E7;
    border-radius: 4px;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2%;
    width: 96%;
    background-color: #FDFDF7;
    margin-bottom: 5%;
}

.procedure_box {
    width: 94%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    background-color: #FFFBF0;
    padding-top: 1.5%;
    padding-bottom: 1%;
    padding-left: 1%;
    padding-right: 1%;
    font-size: 1.1em;
    border-bottom: 1px dashed #DFE09B;
}

.procedure_box02 {
    width: 94%;
	text-align: center;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1%;
    padding-right: 1%;
    font-size: 1.1em;

}

.procedure_btn {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #388DD3;
    transition: .4s;
    letter-spacing: 2px;
}
.procedure_btn:hover {
    background-color: #EC7687;
    color: white;
}
.procedure_btn02 {
	width: 40%;
	margin-left: auto;
	margin-right: auto;
    position: relative;
    display: block;
    font-weight: normal;
    padding: 0.5% 5%;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #DC7400;
    transition: .4s;
    letter-spacing: 2px;
    border-radius: 2px;
}
.procedure_btn02:hover {
    background-color: #E4A257;
    color: white;
}
.procedure_text{
	margin-bottom: 1%;
	font-size: 0.9em;
	
}
.procedure_attention {
    width: 90%;
	margin-top: -2%;
    margin-left: auto;
    margin-right: auto;
    padding: 1%;
    border: 1px solid #D3D3D3;
    background-color: #F4FFF4;
    border-radius: 4px;
    margin-bottom: 0px;
}	
	
.procedure_btn_box{
	display: block;
	width: 90%;
	margin-top: 3.5%;
    margin-left: auto;
    margin-right: auto;
	
}
.procedure_btn03{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
	margin-top: 2%;
	text-align: center;
    font-size: 1em;
    position: relative;
    display: inline-block;
    font-weight: normal;
    padding: 0.5% 1%;
    text-decoration: none;
    transition: .4s;
    letter-spacing: 2px;
    border-radius: 12px;
    background-color: #6AB558;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}
.procedure_btn03:hover {
    background-color: #F1FFEE;
    color: #5C9F4C;
    border: 1px solid #3F533A;
}	
	
a.anchor{
    display: block;
    padding-top: 800px;
    margin-top: -800px;
}

a.anchor02{
    display: block;
    padding-top: 150px;
    margin-top: -150px;
}
a.anchor03{
    display: block;
    padding-top: 250px;
    margin-top: -250px;
}



#permission {
	width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.permission_intor {
    width: 93%;
    margin-left: auto;
    margin-right: auto;		
    margin-top: 5%;
    border: 2px solid #D1D1D1;
    background-color: #F4F4F4;
    padding: 1.2%;
    border-radius: 3px;
}
.permission_box {
    margin-top: 5%;
    padding: 1.5%;
    background-color: #357727;
    color: #FFFFFF;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #AFD1AD;
    border-radius: 4px;
}
.permission_case {
    font-size: 1.3em;
    color: #FFFD00;
    text-align: left;
}
.permission_btn_box{
    margin-top: 2%;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    display: flex;

}
.permission_btn{
    position: relative;
    width: 28%;
    float: left;
    margin-left: 1.2%;
    margin-right: 1.5%;
    text-align: center;
	font-size: 0.9em;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #00BCD4;
    background-color: #FFFFFF;
    transition: .4s;
    border-radius: 4px;
}
.permission_btn:hover {
  	background: #00bcd4;
  	color: white;
}

.sub_content_select {
    color: #FFFFFF;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
} 
#sub_content {
	width: 96%;
	margin-left: auto;
	margin-right: auto;	
	margin-top: 4%;
	margin-bottom: 4%;
}
.sub_content_title01 {
    margin-top: -33%;
    padding-top: 4%;
    padding-bottom: 4%;
    background-image: url(../img/sub_content_title_img01.png);
    background-repeat: no-repeat;
    color: #FFFFFF;
    text-align: center;
    background-color: #FDFFF4;
    background-position: 25% 70%;
    border-bottom: 0px solid #B7B28E;
}
.sub_content_title02 {
    margin-top: -33%;
    padding-top: 4%;
    padding-bottom: 4%;
    background-image: url(../img/sub_content_title_img02.png);
    background-repeat: no-repeat;
    color: #FFFFFF;
    text-align: center;
    background-color: #FDFFF4;
    background-position: 50% 50%;
    border-bottom: 0px solid #B7B28E;
}
h2 {
    text-align: center;
    font-size: 1.5em;
	padding-top: 10%;
    letter-spacing: 2px;
}	
.top_caption {
	width: 94%;
	margin-left: auto;
	margin-right: auto;

}	

.top_comment_text {
    display: inline-block;
    text-align: left;
    margin-top: 1%;
    font-size: 1.2em;
    width: 90%;
    height: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: auto;
    margin-right: auto;
    background-image:none;
    background-repeat: no-repeat;
    background-size: 100% auto;
}	
	
.table-scroll {
  overflow: scroll;
  margin-top: 3%;	
}
.tbl_wrapper01{
	width: 100%;
  	margin-top: 2%;		
}
.number_title{
    margin-top: 8%;
    font-weight: bold;
    font-size: 1.2em;
    color: #3F3838;
}	
.number_box_l{
	width: 100%;
	float: none;
}
.number_box_r{
	width: 100%;
	margin-top: 2%;
	float: none;
}	
.number_kibou_l{
	width: 100%;
	float: none;

}
.number_kibou_r{
	width: 100%;
	margin-top: 2%;
	float: none;
}
.number_image{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1%;
}
.sub_conten_box ul li {
    margin-top: 0.3%;
    list-style-type: disc;
	margin-left: 4%;
}	
.number_chishiki_l{
	width: 100%;
	float: none;
}
.number_chishiki_r{
	width: 100%;
	margin-top: 2%;
	float: none;
}	
td .chishiki_list li {
    margin-top: 1%;
	margin-left: 10%;
    text-align: left;
}	
.company_title_l{
    float: left;
    width: 15%;
    border-bottom: 1px solid #5A5A5A;
    background-color: #FFFCF2;
	padding-top: 1%;
	padding-bottom: 1%;
}
.company_title_r{
	float: left;
	width: 80%;
 	display: block;
    border-bottom: 1px solid #5A5A5A;
	padding-top: 1%;
	padding-bottom: 1%;
	padding-left:1%; 
}	
.company_box_l{
	width: 100%;
	float: none;
}
.company_box_r{
	width: 100%;
	float: none;
	margin-top: 2%;
}
.gaiyou_time {
    float: left;
    text-align: right;
    width: 90px;
}	
.tokutei_tbl{
	width: 96%;
	margin-left: auto;
	margin-right: auto;
}	
.slider_img{
	display: block;
	width: 60px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2%;
}	
.company_name_pc{
    display: none;

}
.company_name_sp{
    display: block;
	text-align: center;
    font-size: 1.4em;

}	
	
	
	
	
	
	
	
.motorcycle_box {
	margin-top: 5%;
}

.motorcycle_title {
    margin-top: 1%;
    font-weight: bold;
    font-size: 1.5em;
    color: #FFAF55;
	letter-spacing: 2px;
}
.motorcycle_case {
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
    width: 98%;
}
.motorcycle_case_name {
    float: none;
	width: 100%;
    font-weight: 600;
    color: #485C54;
}
.motorcycle_case_detail {
	float: none;
	width: 100%;
	margin-left: 1%;
}




.motorcycle_btn_box {
	margin-top: 1%;	
	display: flex;
}
.motorcycle_btn {
	width: 20%;
	margin: 1.5%;
	text-align: center;
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #388DD3;
    transition: .4s;
    margin-top: 0.5%;
    letter-spacing: 2px;
    -webkit-box-shadow: 2px 2px 2px #A3A3A3;
    box-shadow: 2px 2px 2px #A3A3A3;	
}
.motorcycle_text_box {
    margin-top: 1%;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
	
	
	
}
.motorcycle_btn:hover {
    background-color: #EC7687;
    color: white;
}

.motorcycle_sub{
    margin-top: 2%;
    width: 96%;
    margin-left: auto;
    margin-right: auto;	
    text-align: center;
    margin-bottom: 2%;
}
.motorcycle_sub_caption{
    margin-top: 2%;
    font-size: 1.2em;
    font-weight: bold;
    color: #386390;
    text-align: left;
}
.motorcycle_sub_caption_sub{
    font-size: 0.8em;
    color: #97456B
}
.motorcycle_sub_text{
    margin-top: 0.5%;
    text-align: left;
}
.motorcycle_sub_text02{
    margin-top: 1%;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 6px;
    border: 1px solid #B5B5B5;
    text-align: left;
    padding-top: 1%;
    padding-bottom: 1%;
    padding-left: 2%;
    padding-right: 2%;
    background-color: #F6FCFF;
}

.motorcycle_sub_list{
	width: 94%;
    margin-left: auto;
    margin-right: auto;
}
.motorcycle_sub_list li {
    list-style-type: disc;
	margin-top: 0.5%;
}
.motorcycle_link{
	margin-top: 1%;
}
.faq_link a {
    color: #109F40;	
}
.faq_link a:link {
    color: #109F40;	
}
.faq_link a:hover {
    color: #92CCA5;
}
.faq_link a:visited {
    color: #109F40;	
}

	
.top_comment {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1%;
	text-align: center;
}	
.top_bottom_wrap01 {
	width: 94%;
    margin-left: auto;
	margin-right: auto;
    background-color: #F4F4F4;	
	padding-top: 2%;
	padding-bottom: 2%;
	margin-top: 1%;
}
	
	
.top_comment_text {
	display: inline-block;
	text-align: left;
	margin-top: 1%;
	font-size: 1em;
}	
.top_bottom {
    margin-top: 1%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;

}
.top_bottom_l {
    float: none;
    width: 100%;

}
.top_bottom_r {
    float: none;
    width: 286px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3%;

}
.top_bottom_l01 {
    float: none;
	width: 100%;
    background-image: url(../img/top_bottom_content_bg02.png);
    background-repeat: no-repeat;
    background-size: 48% auto;
    background-position: 95% 96%;
    background-color: #FFFFFF;
}	
	
.top_bottom_l02 {
	float: none;
	width: 100%;	
    background-image: url(../img/top_bottom_content_bg01.png);
    background-repeat: no-repeat;
    background-size: 52% auto;
    background-position: 95% 94%;
    background-color: #FFFFFF;	
	margin-left: 0%;;
}
.top_bottom_l03 {
	float: none;
	width: 100%;	
    background-image: url(../img/top_bottom_content_bg03.png);
    background-repeat: no-repeat;
    background-size: 52% auto;
    background-position: 95% 94%;
    background-color: #FFFFFF;	
	margin-left: 0%;	
}
.top_bottom_title {
    text-align: center;
    padding-top: 1%;
    padding-bottom: 1%;
    font-size: 1.3em;
	width: 100%;
	padding-left: 1.2px;
	padding-right: 1.2px;
	margin-top: 4%;
}
.top_bottom_content {
    width: 100%;
    padding-top: 2%;
    padding-bottom: 1%;
    clear: both;
    height: 100%;

}
.top_bottom_content02 {
    border-right: 1px solid #A3A3A3;
    border-bottom: 1px solid #A3A3A3;
    border-left: 1px solid #A3A3A3;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    width: 100%;
    padding-top: 2%;
    padding-bottom: 1%;
    clear: both;
    height: 100%;
}
.top_bottom_content ul li {
    padding-left: 4%;
    padding-top: 2%;
    margin-left: 4%;
    background-repeat: no-repeat;
    background-image: url(../img/maker01.png);
    background-size: 3% auto;
    background-position: 0% 60%;
    font-size: 1.1em;
    text-shadow: 1px 1px 2px #FFFFFF;
}

.top_bottom_content02 ul li {

    padding-left: 8%;
    padding-top: 2%;
    margin-left: 4%;
    background-repeat: no-repeat;
    background-image: url(../img/maker01.png);
    background-size: 4% auto;
    background-position: 0% 60%;
    font-size: 1.1em;

}

.top_bottom_content ul li a{
    display: block;
    width: 96%;
    text-decoration: none;
    color: #585858;
    padding-bottom: 5px;
    transition: .4s;
}
.top_bottom_content ul li a:hover{
    color: #E7DA66;
    transition: .4s;
}
.top_bottom_content02 ul li a{
    display: block;
    width: 96%;
    text-decoration: none;
    color: #585858;
    padding-bottom: 5px;
    transition: .4s;
}
.top_bottom_content02 ul li a:hover{
    color: #E7DA66;
    transition: .4s;
}
.top_bottom02{
	margin-top: 3%;
    width: 100%;;
    margin-left: auto;
    margin-right: auto;
}
.top_bottom02 img {
			transition: 1.0s ;
		}

.top_bottom02 img:hover {
			opacity: 0.7 ;
		}

.top_number_btn01{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	float: none;
}
.top_number_btn02{
	width: 80%;
	margin-top: 3%;
	margin-left: auto;
	margin-right: auto;
	float: none;
}	
	
	
	
#link{
	margin-top: 5%;
    padding-top: 1%;
    padding-bottom: 1%;
    text-align: center;
}
.link_box {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.1em;
    margin-top: 1%;
    display: block;
}
.link_box02 {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.1em;
    margin-top: 1%;
	display: block;
}
.link_name{
    width: 100%;
    float: none;
    color: #494949;
 	margin-left: auto;
	margin-right: auto;
	text-align: center;
	margin-top: 1.3%;
}
.link_name a{
    color: #494949; 
	padding-left: 4%;	
	padding-right: 4%;	
}

.link_name a:hover{
    transition: .4s;
    color: #FFFFFF;
	padding-left: 4%;	
	padding-right: 4%;	
}
	
	
	
	

#faq{
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
	font-size: 1.1em;
}
.faq_intro {
    background-color: #F9FFF7;
    border: 1px solid #B8B8B8;
    padding: 1%;
    border-radius: 4px;

}
.faq_intro_top {
    text-align: center;
    margin-bottom: 2%;
    font-size: 1.05em;
    color: #003447;
}


.faq_box {
    margin-top: 4%;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1%;
    border-left: 1px solid #B0B0B0;
    border-right: 1px solid #B0B0B0;
    border-bottom: 1px solid #B0B0B0;
    -webkit-box-shadow: 2px 2px #909090;
    box-shadow: 2px 2px #909090;
}
.faq_q {
	padding: 0.8%;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.2em;
    background-color: #30BBFF;
}
.faq_a {
    margin-top: 1%;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
.faq_a_text{
    font-size: 1.1em;
    color: #B82B52;
    font-weight: bold;
}
.faq_list {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.4%;
	margin-bottom: 0.6%;
}
.faq_list li {
    list-style-type: circle;
}
.faq_list02 {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.6%;
	margin-bottom: 0.8%;
}
.faq_list02 li {
    list-style-type: square;
}
.faq_link{
	text-align: center;
	margin-top: 1%;
}








#garage{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.garage_box{
	width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.garage_box_text {
    display: inline-block;
    margin-top: 1%;
    color: #09491A;
    font-size: 1.3em;
    background-image: -webkit-linear-gradient(270deg,rgba(255,255,255,0.00) 93.27%,rgba(212,40,40,1.00) 94.30%);
    background-image: -moz-linear-gradient(270deg,rgba(255,255,255,0.00) 93.27%,rgba(212,40,40,1.00) 94.30%);
    background-image: -o-linear-gradient(270deg,rgba(255,255,255,0.00) 93.27%,rgba(212,40,40,1.00) 94.30%);
    background-image: linear-gradient(180deg,rgba(255,255,255,0.00) 93.27%,rgba(212,40,40,1.00) 94.30%);
    padding-left: 0.5%;
    padding-right: 0.5%;
}
.garage_box_inner {
    margin-top: 4%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5%;
    border: 1px solid #8A8A8A;
    background-color: #FBF8F5;
}

.garage_box_intor{
	margin-top: 4%;
	font-size: 1.05em;
}
.garage_list{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.5%;
	margin-bottom: 0.6%;
}
.garage_list li{
	list-style-type : decimal;
}
.garage_bottom{
	margin-top: 3%;
}
.garage_link{
	text-align: right;
	margin-top: 1%;
}
.garage_link a:link{
	font-size: 1.1em;
    color: #1A6FBD;
}
.garage_link a:active{
	font-size: 1.1em;
    color: #1A6FBD;
}
.garage_link a:hover{
    font-size: 1.1em;
    color: #5F97CB;
}
.garage_link a:visited{
	font-size: 1.1em;
    color: #1A6FBD;
}





#oss{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
	font-size: 1.05em;
	line-height: 180%;
}

.oss_box{
    width: 90%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #A4B1C0;
    padding: 1.8%;
    border-radius: 4px;
}


	
#works{
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}	
	
.works_box{
	margin-top: 0%;
    margin-left: auto;
    margin-right: auto;
}
.works_case {
	width: 98%;
	margin-top: 7%;
	margin-left: 1%;
	margin-right: 1%;
	float: none;
}
.works_case_image {
	width: 100%;
	height: auto;
}
.works_case_name {
	margin-top: 1.5%;
	text-align: center;
}
.cp_imghover {
	overflow: hidden;
	cursor: pointer;
}
/*zoomin*/
.cp_zoomin img {

	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
.cp_zoomin img:hover {
	-webkit-transform: scale(1.5,1.5);
	transform: scale(1.5,1.5);
}
	

#soukogyo{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}
.soukogyo_text{
    word-spacing: 10px;
	margin-top: 0.3%;
}
.btn-soukogyo{
    position: relative;
    display: block;
    font-size: 1.2em;
    text-decoration: none;
    color: #0A5712;
    background-color: #FFE500;
    transition: .4s;
    margin-top: 1.2%;
    border: 2px solid #ECE303;
    padding-top: 0.2%;
    padding-bottom: 0.2%;
    padding-left: 0.8%;
    padding-right: 0.8%;
    text-align: center;
}
.btn-soukogyo_box{
    margin-left: auto;
    margin-right: auto;
    background-color: #D16466;
}
.btn-soukogyo:hover {
    background-color: #FFF49A;
    color: #062909;
}	
	
	

#footer {
    width: 100%;
    height: 100%;
    border-top: 2px solid #DDE0CF;
    padding-top: 1.5%;
    padding-bottom: 1.5%;
    text-align: center;
    color: #FFFFFF;
    margin-top: 3%;
}
.footer_company_name {
	font-size: 1.3em;
    display: block;
    font-weight: bold;
}

.footer_box {
    width: 100%;
	height: 100%;
    margin-top: 1.5%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding-top: 0px;
}
.footer_company_info{
    width: 80%;
	text-align: center;
    margin-top: 1.5%;
    margin-left: auto;
    margin-right: auto;
    float: none;
}
.footer_sitemap {
    width: 92%;
    margin-top: 1.5%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2%;
    line-height: 150%;
    font-size: 0.8em;
    float: none;
    border-left: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
}
.footer_sitemap_box{
    width: 100%;
}
.footer_sitemap_ul01 {
    width: 24%;
    margin-left: 2%;
    float: left;
}
.footer_sitemap_ul02 {
    width: 39%;
    margin-left: 2%;
    float: left;
}
.footer_sitemap_ul03 {
    width: 24%;
    margin-left: 2%;
    float: left;
}

.footer_sitemap_ul01 li {
    color: #FFFFFF;
}
.footer_sitemap_ul01 li a:link{
    color: #FFFFFF;
}
.footer_sitemap_ul01 li a:hover{
    color: #8EA3BF
}
.footer_sitemap_ul01 li a:visited {
    color: #FFFFFF;
}
.footer_sitemap_ul01 li a:active {
    color: #FFFFFF;
}

.footer_sitemap_ul02 li a:link{
    color: #FFFFFF;
}
.footer_sitemap_ul02 li a:hover{
    color: #8EA3BF
}
.footer_sitemap_ul02 li a:visited {
    color: #FFFFFF;
}
.footer_sitemap_ul02 li a:active {
    color: #FFFFFF;
}

.footer_sitemap_ul03 li a:link{
    color: #FFFFFF;
}
.footer_sitemap_ul03 li a:hover{
    color: #8EA3BF
}
.footer_sitemap_ul03 li a:visited {
    color: #FFFFFF;
}
.footer_sitemap_ul03 li a:active {
    color: #FFFFFF;
}
.footer_logo {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


.footer_info {
    margin-top: 0.3%;
}
.footer_link{
    margin-left:0.5%;
    margin-top: 0.6%;
    text-align: left;
    display: block;
	width: 100%;
}
.footer_link a {
    color: #FFFFFF;
	transition: 0.5s ;
}
.footer_link a:link {
    color: #FFFFFF;
}

.footer_link a:hover {
    color: #71A0B3;

}
.footer_link a:visited {
    color: #FFFFFF;
}
.footer_link a:active {
    color: #FFFFFF;
}
.footer_link a {
    color: #FFFFFF;
}

.footer_copy {
    font-size: 0.8em;
    text-align: center;
    margin-top: 1.5%;
    word-spacing: 0.1em;
}	

#sitemap {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5%;
}
.sitemap_wrapper {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
}
.sitemap_box {
    margin-top: 30px;
	padding-bottom: 2%;
    border-bottom: 1px dashed #B8C7CF;

}
.sitemap_text01{
	font-size: 0.8em;
}
.sitemap_description {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    float: none;
	margin-top: 2%;
}

.sitemap_button{
	width: 100%;
    font-weight: normal;
    text-decoration: none;
    color: #FFFFFF;
    transition: .4s;
}

.sitemap_button:hover {
    color: #A4E4EC;
}



.sitemap_neme {
    width: 100%;
    float: none;
    font-weight: bold;
    background-color: #61A41C;
    text-align: center;
    color: #FFFFFF;
    padding-top: 1%;
    padding-bottom: 1%;
}


#privacy {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
.privacy_box {
	width: 100%;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
}
.privacy_caption{
    font-weight: bold;
    font-size: 1.3em;
    color: #005DBF;
}
.privacy_dl {
    margin-top: 20px;
}
.privacy_dl dt {
    color: #3353AA;
    margin-top: 2%;
}
.privacy_dl dd {
    margin-top: 0.5%;
	display: list-item;
 	list-style-type: circle;
}

.privacy_signature {
	margin-top: 3%;
	text-align: right;
}

.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 4%;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #FFDD00;
}
.pagetop  span {
    position: absolute;
    display: inline-block;
    left: 2%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width : 50px;
    text-align: center;
    font-size: 2em;
}
.pagetop a {
    display: block;
    bottom: 30px;
    right: 55px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    text-align: center;
    color: #16434F;
    font-size: 0.8em;
}
	

	
.tokutei_tbl th{
  	width:100%;
  	display:block;
  	margin: 0 auto;
  	border:none;
  	border-radius: 3px;
}
.tokutei_tbl td{
  	display: list-item;
  	width: 100%;
  	border-top: none !important;
}	
	

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
input[type="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}

#link01{
	display: block;
}
	
}
