@charset "utf-8";

/* ===================================================================
CSS information

 file name  :style_mobile.css
 style info :コンテンツエリア関係 他

このスタイルシートの構成
 基本設定、レイアウト、横幅設定など
 汎用class
 #header
  #utilityNav
 #navi
  #gNav
 #footer
  #footerContents
 #page
 #mainImg
  #imgArea
  #contents
   #main
   #sub
=================================================================== */

/*-----------------------------------------------------------------------------------*/
/*	リセット paddingリセット
/*-----------------------------------------------------------------------------------*/

*{
	font-family:'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    padding:0;
    margin:0;
    -webkit-box-sizing: border-box;	/**	widthにpaddingを含める	**/
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, th,{
	margin:0px;
	padding:0px;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
}

body {
	font-size: 14px;
	width: 98%;
	margin-left: auto;
	margin-right: auto;
}


/*-----------------------------------------------------------------------------------*/
/*	リンク画像透過共通指定　hr装飾
/*-----------------------------------------------------------------------------------*/

/* 画像をマウスオーバー */
a img{
	transition: 0.3s;
}
a:hover img{
	opacity: 0.7;
	transition: 0.3s;
}

hr{
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	margin-top: 5px;
	margin-bottom: 5px;
}

/*********** youtube 地図 ***********/

.youtube_wrapp{
	max-width: 480px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 460px !important;
  max-height: 315px !important;
}

.map{
	width: 95%;
	padding: 10px;
	border: 1px solid #999999;
}
.googlecalendar iframe{
	width: 100%;
}
/*********** 解除・調整・その他 ***********/

/* margin
----------------------------------------------------------*/
/* Top */
.MG-T0 { margin-top: 0 !important; }
.MG-T5 { margin-top: 5px !important; }
.MG-T10 { margin-top: 10px !important; }
.MG-T15 { margin-top: 15px !important; }
.MG-T20 { margin-top: 20px !important; }
.MG-T25 { margin-top: 25px !important; }
.MG-T30 { margin-top: 30px !important; }
/* Bottom */
.MG-B0 { margin-bottom: 0 !important; }
.MG-B5 { margin-bottom: 5px !important; }
.MG-B10 { margin-bottom: 15px !important; }
.MG-B15 { margin-bottom: 15px !important; }
.MG-B20 { margin-bottom: 20px !important; }
.MG-B25 { margin-bottom: 25px !important; }
.MG-B30 { margin-bottom: 30px !important; }
.MG-B40 { margin-bottom: 40px !important; }

.clear{clear: both;}

.space_10 {margin-bottom: 10px;}
.space_20 {margin-bottom: 20px;}
.space_30 {margin-bottom: 30px;}
.space_40 {margin-bottom: 40px;}
.space_50 {margin-bottom: 50px;}

.pd_tb30{ padding-top: 30px; padding-bottom: 30px;}

.font_12{font-size: 12px;}
.font_14{font-size: 14px;}
.font_16{font-size: 16px;}
.font_18{font-size: 18px;}
.font_19{font-size: 19px;}
.font_20{font-size: 20px;}
.font_21{font-size: 21px;}
.font_22{font-size: 22px;}
.font_23{font-size: 23px;}
.font_24{font-size: 24px;}
.font_25{font-size: 25px;}
.font_30{font-size: 30px;}


.font_110{ font-size: 110%;}
.font_120{ font-size: 120%;}
.font_130{ font-size: 130%;}
.font_140{ font-size: 140%;}
.font_150{ font-size: 150%;}
.font_160{ font-size: 160%;}
.font_170{ font-size: 170%;}
.font_180{ font-size: 180%;}
.font_190{ font-size: 190%;}
.font_200{ font-size: 200%;}


.align_center{ text-align: center;}

.img_max {max-width: 100%;}

.only_pc {display: none;}
.only_mobile {}

/** Flex 指定 ********************/

.flex{
	display: -webkit-flex; /* Safari */
	display: flex;
}

.flex_r{
-webkit-flex-direction: row-reverse; /* Safari */
flex-direction:         row-reverse;
}

.flex_wrap{
display: flex;
flex-wrap: wrap;
}

/* 端詰め等間隔 */
.flex_space_between{
display: flex;
flex-wrap: wrap;
justify-content:space-between;
}
/* 等間隔 */
.flex_space_around{
display: flex;
flex-wrap: wrap;
justify-content:space-around;
}
/* センター寄せ */
.flex_justify_center {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/* 上下センター寄せ */
.flex_a_center{
align-items: center;
}

/* PC時Flex モバイル時Flexしない */
.flex_nonflex{
}
.flex_nonflex_r{
}
.flex_nonflex_between{
}
.flex_nonflex_between_r{
}
.flex_nonflex_around{
}
.flex_nonflex_around_r{
}

.one_half{
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
	text-align: center;
}

.a_banner{
	display: inline-block;
	width: auto;
	vertical-align: bottom;
}

.a_banner img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}


/* PC時Flexbetween モバイル時Flexaround */

.flex_switch{
	 display: flex;
flex-wrap: wrap;
justify-content: space-around;
}


.aligncenter {
	text-align:center;
}
.arrow-bottom {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 10px;
  border-bottom: 4px solid hwb(24 0% 3%);
  border-right: 4px solid hwb(24 0% 3%);
  transform: rotate(45deg);
}
.triangle-bottom {
  display: inline-block;
  border-style: solid;
  border-width: 24px 14px 0 14px;
  border-color: hwb(24 0% 3%) transparent transparent transparent;
}
/*** 共通文字色等 ***************************************/
.TXT-RED,.font_red { color:#d41616;}
.font_red_b{
	font-weight: 900;
	color:#d41616;	
}
.TXT-ORG { color:#FF9900;}
.TXT-GREEN { color:#32CD32;}
.TXT-GREEN2 { color:#007b50;}
.TXT-BLUE { color:#4876FF;}
.TXT-ORG{
	color: #ff6600;
}
.marker_yellow{
	background: linear-gradient(transparent 50%, #fff799 50%);
	font-weight: bold;
	border-radius:6px;
}
.marker_blue{
	background: linear-gradient(transparent 50%, #DDEEFF 50%);
	font-weight: bold;
	border-radius:6px;
}
/*** ページレイアウト ***************************************/

#page{

}

/*** ヘッダー ***************************************/

#headerDescArea h1{
	font-size: 80%;
	font-weight: 400;
	background-color: #F2F2F2;
}

#header h2{
	display: block;
	float: right;
	font-size: 100%;
	font-weight: 400;
	width: 100%;
	text-align: right;
	margin-bottom: 10px;
}

/*** メニュー ***************************************/
.switch .child {
    display: none;
}

.switch .menu:after {
  position: absolute;
  top: 60%;
  right: 10px;
  margin-top: -1.2rem;
  content: '>';
  font-size: 1.4rem;
  font-weight: bold;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transition: all, 0.25s, linear;
  -o-transition: all, 0.25s, linear;
  -webkit-transition: all, 0.25s, linear;
  transition: all, 0.25s, linear; }
.switch .menu.active:after {
  -moz-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.menu {
  display: block;
  position: relative;
	margin-bottom: 10px;
	padding-left: 20px;
}

.switch .menu {
	background-color: #3399cc;
	color: #fff;
	height: 40px;
	font-size: 130%;
	padding-top: 10px;
}

.switch .menu:hover {
	background-color: #336699;
    text-decoration: none;
}


#naviArea{}
#gNav{}
#gNav li{
	display: block;
	float: left;
	width: 32%;
	margin-left: 0.65%;
	margin-right: 0.65%;
	margin-bottom: 2px;
	list-style-type: none;
	background-color: #E0ECF8;
	border-radius: 5px;/**角丸**/
    -webkit-border-radius: 5px;/**角丸**/
    -moz-border-radius: 5px;/**角丸**/
	border: 1px solid #333333;
}

#gNav li a{
	color: #000066;
	text-decoration: none;
	padding-top: 5px;
	padding-bottom: 5px;
	display: block;
	text-align: center;
}

#gNav li a:hover{
	background-color: #99ccff;
}


/*** スライダー ***************************************/

.slides{
	background-color: #E6E6E6;
}

.flex-next,.flex-prev{
	display: none !important;
}

/*** ページコンテンツ ***************************************/
#contents{
	margin-top: 10px;
}

#billboard{
	text-align: center;
}

#billboard img{
	width: 100%;
	max-width: 700px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}


#billboard_full{
	text-align: center;
	margin-bottom: 20px;
}

#billboard_full img{
	width: 100%;
	max-width: 960px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.box{
	border: 1px dotted #3399cc;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
}

.imgL a img{
	float: left;
	margin-left: -10px;
}

.imgL img{
	float: left;
	margin-right: 10px;
}

.imgR img{
	float: right;
	margin-left: 10px;
}
.box{
	margin-bottom: 30px;
	overflow: hidden;
}

.box div a{
	font-size: 120%;
	display: block;
	padding-top: 10px;
}


.box h3 a{
	font-size: 100%;
	display: block;
	padding-top: 10px;
	font-weight: 400;
}



#main h2{
	background-image: url(images/bg-h2.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 5px;
	margin-top: 25px;
	margin-bottom: 10px;
	font-size: 125%;
	color: #0A2A0A;
	font-weight: 400;
}

#main h3{
	background-image: url(images/bg-h3.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	padding-top: 20px;
	padding-right: 30px;
	padding-left: 5px;
	padding-bottom: 5px;
	margin-bottom: 10px;
	margin-left: 10px;
	font-size: 120%;
	color: #000099;
	font-weight: 400;
}

#main h4{
	color: #003333;
	font-size: 105%;
	font-weight: 400;
	margin-top: 5px;
	margin-bottom: 5px;
	min-height: 35px;
	height: auto !important;
	height: 35px;
}

#main p{
	margin-bottom: 10px;
}

#divRss ul{
	list-style-type: none;
}

#divRss ul li{
	margin-bottom: 20px;
}

#divRss ul li:after{
	clear: both;
}

#divRss ul li a{
	vertical-align: bottom;
}

#divRss ul li a img{
	width: 160px;
	height: 120px;
	float: left;
	margin-right: 10px;
}

.feeddate{
	display: inline-block;
	color: #ff6600;
	line-height: 20px;
}

.feednew{
	color: #ff0000;
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

#divRss ul li h4{
	font-weight: 800;
}


.alignright{
	text-align: right;
}

.img_full{
	width: 100%;
	padding: 5px;
	border: 1px solid #999999;
}
.img_full_noborder{
	width: 100%;
	padding: 5px;
}

.img_max480{
	max-width: 480px;
}
.img_center_illust{
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	height: 150px;
}

.grid_half{
	float: left;
	width: 100%;
	text-align: center;
}

.grid_half a img{
	width: 100%;
	max-width: 320px;
	height: auto;
	margin-bottom: 20px;
}

.company{
	width: 100%;
}

.company tr td.t-head{
	display: block;
	width: 100%;
	padding: 5px;
	background-color: #2e9afe;
	border-bottom: 1px dotted #999999;
}

.company tr td.t-item{
	display: block;
	width: 100%;
	padding: 5px;
	border-bottom: 2px solid #999999;
}

.section{
	margin-bottom: 30px;
}

.section2{
	margin-bottom: 30px;
}

.section2 p a{
	word-break: break-all;
}

.mobile_block{
	clear: both;
	display: block;
	padding-top: 10px;
}

.rireki{
	height: 300px;
	overflow-y: scroll;
}
.list_point_check{
	list-style-type: none;
}

.list_point_check li{
	font-size: 20px;
	padding-bottom: 5px;
}
.list_point_check li::before{
	display:  inline-block;  
	content: "";
	background-image: url(./images/point_check.png);
	background-size: cover;
	width: 25px;
	height: 25px;
	
}

/** 実績紹介ギャラリーページ ************************************************/

.imgcaption{
	width: 170px;
	text-align: center;
	float: left;
	margin-left: 5px;
	border: 1px solid #999999;
	padding: 5px;
	margin-bottom:10px;
}

.imgcaption a img{
	width: 100%;
}

/** お客様の声ページ ************************************************/

dt{
	margin-bottom: 10px;
}

dd{
	padding-bottom: 10px;
	margin-bottom: 25px;
	border-bottom: 1px solid #999999;
}

/** サイドメニュー部分 ************************************************/

#sub{
	margin-top: 30px;
	text-align: center;
}

#sub a img{
	width: 100%;
	max-width: 320px;
	height: auto;
	margin-bottom: 20px;
}

#sub h3{
	background-image: url(images/bg-side-h3.png);
	background-position: bottom left;
	background-repeat: no-repeat;
	color: #0A2A0A;
	text-align: left;
	font-weight: 400;
	font-size: 120%;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-top: 20px;
	padding-left: 30px;
	padding-bottom: 5px;
}

#sub ul{
	margin-bottom: 30px;
}

#sub ul li{
	border-bottom: 1px dotted #999999;
	text-align: left;
	background-color: #CED8F6;
}

#sub ul li.top{
	border-top: 1px dotted #999999;
}

#sub ul li a{
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	text-decoration: none;
}

#sub ul li a:hover{
	background-color: #A9D0F5;
}

/** フッター ************************************************/

#footer {
	background-image: url(images/bg_footer.png);
	background-repeat: repeat-x;
	background-position: bottom;
	margin-top: 50px;
	padding-bottom: 70px;
	padding-top: 20px;
	border-top: 2px dotted #666666;
}

#footer .copyright {
	color: #707070;
	text-align: center;
}

#footer .copyright a{
	text-decoration: none;
	color: #707070;
}


/** サイトマップ ************************************************/

.sitemap {
	margin: 0 10px 20px 0px;
}

.sitemap li{
	background-image: url(images/sitemap/icon_ladybug.gif);
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 20px;
	margin-left: 10px;
	list-style-type: none;
	line-height: 250%;
}


/** faqページ ************************************************/

.faq_a{
	margin-bottom: 30px !important;
}

/*** メンテナンス体制 ****************************************/

.maintenance{	/*flexで端詰め*/
	width: 100%;
}

.maintenance div:nth-child(2n+1){
	background-color: #E0F2F7;
}

.maintenance_menberline{
	width: 100%;
	display: -webkit-flex; /* Safari */
    display: flex;
	padding: 20px 10px;
	border-bottom: 1px dotted #999999;
}

.one_of_line{	/*1行に1人*/
	width: 100%;
}

.two_of_line{
	width: 100%;
}

.member_img_bg{
	padding: 5px;
	border: 1px solid #999999;
	border-radius: 4px;/**角丸**/
    -webkit-border-radius: 4px;/**角丸**/
    -moz-border-radius: 4px;/**角丸**/
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d8e0de+0,aebfbc+22,99afab+33,8ea6a2+50,829d98+67,4e5c5a+82,0e0e0e+100;Grey+3D */
background: rgb(216,224,222); /* Old browsers */
background: -moz-linear-gradient(-45deg,  rgba(216,224,222,1) 0%, rgba(174,191,188,1) 22%, rgba(153,175,171,1) 33%, rgba(142,166,162,1) 50%, rgba(130,157,152,1) 67%, rgba(78,92,90,1) 82%, rgba(14,14,14,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  rgba(216,224,222,1) 0%,rgba(174,191,188,1) 22%,rgba(153,175,171,1) 33%,rgba(142,166,162,1) 50%,rgba(130,157,152,1) 67%,rgba(78,92,90,1) 82%,rgba(14,14,14,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  rgba(216,224,222,1) 0%,rgba(174,191,188,1) 22%,rgba(153,175,171,1) 33%,rgba(142,166,162,1) 50%,rgba(130,157,152,1) 67%,rgba(78,92,90,1) 82%,rgba(14,14,14,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d8e0de', endColorstr='#0e0e0e',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.member_img_bg img{
	width: 100px;
	vertical-align: bottom;
}

.member_info{
	padding: 10px;
	line-height: 150%;
}

.member_name{
	display: block;
	font-size: 120%;
	padding-top: 20px;
}

.img_gallery{
	display: -webkit-flex; /* Safari */
    display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
	-webkit-align-items: center; /* Safari */
	align-items:         center;
}

.img_gallery a{
	text-align: center;
	max-width: 100px;
	margin-bottom: 10px;
}

.img_gallery a img{
	width: 100%;
}
.a_button{
  display: inline-block;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
  vertical-align: bottom;
  margin-top: 15px;
  margin-bottom: 15px;
  background-color: #e6e6fa;
  transition: 0.3s;
  border: 1px solid #999999;
}
.a_button_red{
	display: inline-block;
	padding: 5px 15px;
	font-size: 15px;
	font-weight: 900;
	text-decoration: none;
	border-radius: 10px;
	vertical-align: bottom;
	margin-top: 15px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	border: 4px solid #FC2600;
	transition: 0.3s;
	background-color: whitesmoke;
}
.a_button_red:hover{
	background-color: #FF9900;
	transition: 0.3s;
}
.a_select_button{
	display: inline-block;
	width: 160px;
	text-align: center;
	font-size: 20px;
	font-weight: 900;
	color: #3261AB;
	text-decoration: none;
	padding: 15px;
	border: 4px solid #3261AB;
	border-radius: 10px;
	background-color: #E4F0E4;
	transition: 0.3s;
}
.a_select_button i{
	font-size: 30px;
}
.a_select_button:hover{
	color: #fff;
	background-color: #3261AB;
	transition: 0.3s;
	text-decoration: none;
}

/** ▼SDGsページ▼ ****/
.page_des{
  font-size: 15.5px !important;
  padding-left: 0px !important;
  padding-bottom: 35px !important;
}
.dl_sdgs{}
.dl_sdgs dt{
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}
.dl_sdgs dd{
  padding-top: 15px;
  padding-bottom: 35px;
  padding-left: 5px;
}
.h4_sdgs{
  color: #3261AB !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  border-bottom: 1px solid #6A8CC7;
}
.img_sdgs_icon{
	width: 150px;
	max-width: 30%;
	height: auto;
}
.table_sdgs{
  font-size: 14px;
}
.table_sdgs tr th{
	width: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: top;
}
.table_sdgs tr td{
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

@media screen and (min-width:600px) {/**スマホ縦**/
	.table_simu {
		display: block;
	}
}
.scroll{
	overflow-x: scroll;
}

.table_simu {/**タブ・スマホ横**/
	display: inline-block;
	overflow-x: scroll;
	margin-left: auto;
	margin-right: auto;
	border: none;
	border-top: solid 1px #666;
	border-bottom: solid 1px #666;
	border-right: solid 1px #666;
	border-left: solid 1px #666;
	border-collapse: collapse;
	border-spacing: 0 10px;
	background: #f5f5f5;
}

.table_simu th {
	white-space: nowrap;
	vertical-align: middle;
	padding: 10px;
	margin: 0;
	text-align: center;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	border-right: dotted 1px #666;
	border-bottom: solid 1px #666;
	background-color: #3261AB;
}
.table_simu th:last-child{
	border-right: none;
}
.table_simu td {
	padding: 10px;
	margin: 0;
	border: none;
	color: #666;
	font-size: 12px;
	line-height: 180%;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
	overflow: hidden;
	border-right: dotted 1px #666;
	border-bottom: dotted 1px #666;
	
}
.table_simu td:last-child{
	border-right: none;
}
.simu_arrow{
	width: 75px;
	height: auto;
}
.button_area{
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
/** ▲SDGsページ▲ ****/
/**Vお客様の声ページV**/
.voice_main_image img{
	width: 250px;
	max-width: 35%;
	height: auto;
}
.voice_images{
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 20px;
}
.voice_images li{
	width: 32%;
}
.voice_images li a{
	display: inline-block;
	vertical-align: bottom;
}
.voice_images li a img{
	width: 100%;
	height: auto;
}
/**Λお客様の声ページΛ**/
.contact_button_area{
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}
.a_contact_button{
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	color: #fff !important;
	font-size: 1.2rem !important;
	font-weight: 900;
	text-decoration: none;
  background-color: #eb6100;
	padding: 20px 30px;
	border-radius: 5px;
	border: 2px solid #eb6100;
	transition: 0.3s;
}
.a_contact_button:hover{
	background-color: #EAA475;
	transition: 0.3s;
	text-decoration: none;
}

/**VシミュレーションフォームV**/
.h3_simu_question{
	width: 100%;
	font-size: 17px !important;
	text-align: center;
	color: #fff !important;
	font-weight: 900 !important;
	background: orangered !important;
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	margin-left: 0px !important;
	padding-right: 0px !important;
	margin-bottom: 20px !important;
	border-radius: 10px;
}
input.radio_question[type=radio]{
	display: none;
}
.question_label{
	width: 160px;
	text-align: center;
	font-size: 18px;
	font-weight: 900;
	padding: 15px;
	border: 4px solid #3261AB;
	border-radius: 10px;
}
input.radio_question[type=radio]:checked  + label.question_label{
	background-color: #3261AB;
	color: #fff;
}
.question1_no_sorry{
	text-align: center;
	padding: 15px;
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 200%;
	border: 2px solid #F00;
	border-radius: 10px;
}
.img_480{
	width: 480px;
	height: auto;
	max-width: 95%;
	margin-left: auto;
	margin-right: auto;
}
.input_w100{
	margin-left: auto;
	margin-right: auto;
	font-size: 35px;
	width: 150px;
}
.input_w100_center{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 35px;
	width: 150px;
}
.tani{
	font-size: 18px;
}
.simu_submit_button{
	display: inline-block;
	background-color: cornflowerblue;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 900;
	font-size: 23px;
	padding: 10px;
	border-radius: 10px;
	transition: 0.3s;
}
.simu_submit_button:hover{
	background-color: #000066;
	transition: 0.3s;
}
.img_arrow_down{
	height: 60px;
	width: 150px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}
.kekka_object_last{
	font-size: 18px;
	margin-bottom: 10px;
}
.kekka_result_last{
	font-size: 25px;
	font-weight: 900;
}
.kekka_object{
	font-size: 16px;
}
.kekka_result{
	font-size: 18px;
}
.check_visible{
	display: none;
}
.dl_order_form dt{
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 16px;
	background-color:#FFF2E5;
}
.dl_order_form dd{
	padding: 10px 10px 20px 10px;
	font-size: 16px;
}
.dl_order_form dd label{
	display: block;
	padding: 10px 15px;
	margin-right: 15px;
	margin-bottom: 10px;
	border: 2px solid #3261AB;
	border-radius: 10px;
}
.dl_order_form dd input{
	font-size: 19px;
	margin-bottom: 5px;
}
.hint{
	display: block;
	padding: 10px;
	border: 2px dotted #eb6100;
	border-radius: 10px;
}
.p_hikakunow{
	padding: 15px;
	font-size: 25px;
}
.p_hikakunow span{
	padding-bottom: 0px;
	vertical-align: bottom;
	border-bottom: 7px solid red;
	line-height: 200%;
}
.with_95{
	width: 95%;
	margin-top: 2px;
	margin-left: 2px !important;
	padding-left: 0px !important;
}
.mfp_col10 input{
	max-width: 95%;
	margin-top: 2px !important;
	margin-bottom: 2px !important;
	margin-left: 2px !important;
	padding-left: 0px !important;
}
.a_tel_contact{
	font-size: 1.3rem;
	font-weight: 900;
	text-decoration: underline;
	color: #000099;
}
.a_tel_contact:hover{
	color: #3261AB;
}

/**ΛシミュレーションフォームΛ**/