/* reset
------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
ol, ul ,li {list-style: none;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

/* bace
------------------------------------------------------------*/
body {
	color: #333;
	font-family: "Hiragino Sans ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: .8em;
	line-height: 2em;
	letter-spacing: .2em;
	font-weight: lighter;
	overflow-x: hidden;
	background: #fff;
	/*合字回避*/
	font-variant-ligatures: none;
	/*iPhone_文字サイズ自動調整*/
	-webkit-text-size-adjust: 100%;
	/*カーニング_webfont対応*/
	text-rendering: optimizeLegibility;
}
#wrapper {
  /* 一番大きな囲み */
}
#content_wrapper {
  /* つぎに大きな囲み */
  max-width: 960px;
  margin: 0 auto;
}
.inner {
  width: 94%;
  margin: 0 auto;
  padding-bottom: 80px;
}
.innerS {
  width: 80%;
  margin: 0 auto;
}
.clear {
  clear: both;
}
@media screen and (min-width: 800px) {
.column {
  display: block;
  text-align: justify;
  /*コラム数*/
  column-count: 2;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  /*コラム間隔*/
  column-gap: 20px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
}
}
.colorBG1 {
  background-color: #FBFAF3;
}
.orange {
  color: #e45827;
}
.green {
	color: #3B8E87;
}
.green2 {
	color: #3F91A6;
}
.blue {
	color: #277AE4;
}
.light_orange {
	color: #FFA000;
}
.light_green {
	color: #f2f8f5;
}
.light_blue {
	color: #4998FF;
}
.BG_light_yellow {
	background-color: #FFFCE7;
}
.BG_light_green {
	background-color: #EDF8F8;
}
.space10 {
	margin-top: 10px;
}
.space20 {
	margin-top: 20px;
}
.space30 {
	margin-top: 30px;
}
.space60 {
	margin-top: 60px;
}

/* リンク設定
------------------------------------------------------------*/
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #A0A0A0;
  text-decoration: none;
}
a:active, a:focus, input:active, input:focus {
  outline: 0;
}

/* ヘッダー
------------------------------------------------------------*/
#header {
}
@media screen and (max-width: 680px) {
  #header {
	background-color: #fff;
/*	background-color: rgba(255,255,255,0.6);*/	
	text-decoration: none;
	/*ボックスシャドウ*/
	box-shadow: 0px 0px 6px #555;
	-moz-box-shadow: 0px 0px 6px #555;
	-webkit-box-shadow: 0px 0px 6px #555;
  }
}
.logo {
	height: 36px;
	display: block;
	margin: 0 0 6px 16px;
	animation-name: fadein;
	animation-duration: 4s;
	float: left;
}
/* グローバルナビゲーション
------------------------------------------------------------*/
#mainnav {
	text-align: right;
	margin: 14px 010px 0 0;
}
#mainnav a {
  color: #000;
}
#mainnav a:hover {
	color: #B7B7B7;
}
@media screen and (min-width: 681px)  {
  a#menu {
    display: none;
  }
  .panel {
    display: block !important;
  }
  ul a {
    display: block;
  }
  #mainnav ul {
  }
  #mainnav li { 			/* 1行6列 */
	font-size: 1em;
	letter-spacing: 0.15em;
	text-align: center;
	width: 86px;
	display: inline-block;
	margin: 0px;
	border-left: 1px solid #999;
  }
  #mainnav li:first-child {
    border-left: none;
  }
}
/* ハンバーガー */
@media screen and (max-width: 680px) {
  #header {
	position: fixed;
	width: 100%;
	z-index: 500;
  }
  #header h1 {
    font-size: 1.8em;
    margin-top: 0px;
    padding-top: 16px;
    text-align: center;
  }
  #headerWrap {
    position: relative;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #fff;
  }
  a#menu {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
	margin-top: -100px;
  }
  #menuBtn { 			/* ハンバーガー中 */
    display: block;
    position: absolute;
    top: 80%;/* 上アキ */
    left: 20%;/* 右アキ */
    width: 18px;
    height: 2px;
    background: #000;
    transition: .2s;
  }
  #menuBtn:before, #menuBtn:after { 			/* ハンバーガー上下&クロス */
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 18px;
	height: 2px;
	background: #000;
	transition: .3s;
  }
  #menuBtn:before {
    margin-top: -7px;
  }
  #menuBtn:after {
    margin-top: 5px;
  }
  a#menu .close {
    background: transparent;
  }
  a#menu .close:before, a#menu .close:after {
    margin-top: 0;
  }
  a#menu .close:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  a#menu .close:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
  #mainnav {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: right;
    z-index: 500;
  }
  #mainnav ul {
	font-size: 1em;
	background: rgba(255,255,255,0.8);
	text-align: center;
	clear: both;
	margin-top: 30px;/* ヘッダーとの距離 */
  }
  #mainnav li a { 			/* リンクメニュー */
    position: relative;
    display: block;
    padding: 10px 0px;
    border-bottom: 1px solid #999;
  }
  #mainnav li:first-child {
    border-top: 1px solid #999;
  }
  #mainnav li a:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    width: 6px;
    height: 6px;
    margin: -4px 0 0 0;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/* メイン画像
------------------------------------------------------------*/
#main_img img {
	width: 100%;
	height: auto;
}
@keyframes display {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.pic-ctn {
  position: relative;
  width: 100vw;
  height: auto;
}
.pic-ctn2 {
	position: relative;
	width: 100vw;
	height: auto;
}
@media screen and (max-width: 701px) {/* 画面サイズ801px以上はこのファイルはスタイルが適用される */
  .br-701 {
    display: none;
  }
}
@media screen and (min-width: 700px) {
/* スマホで画像非表示 */
  .br-700 {
    display: none;
  }
}
.pic-ctn > img {
  position: absolute;
  top: 10px;
  opacity: 0;
  animation: display 20s infinite;
}
.pic-ctn2 > img {
  position: absolute;
  top: 10px;
  opacity: 0;
  animation: display 20s infinite;
}
@media screen and (max-width: 700px) {
.pic-ctn2 > img {
  margin-top: 61px;
  top: 11px;
}
}
/*@media screen and (max-width: 380px) {
.pic-ctn2 > img {
  position: absolute;
  margin-top: 16%;
  opacity: 0;
  animation: display 20s infinite;
}
}*/
.aboutus_clear {
	padding-bottom: 36%;
}
/*メイン画像とタイトルの間隔*/
@media screen and (max-width: 700px) {
.aboutus_clear {
	padding-bottom: 74%;
}
}
@media screen and (max-width: 640px) {
.aboutus_clear {
	padding-bottom: 80%;
}
}

img:nth-child(1) {
  animation-delay: 0s;
}
img:nth-child(2) {
  animation-delay: 4s;
}
img:nth-child(3) {
  animation-delay: 8s;
}
img:nth-child(4) {
  animation-delay: 12s;
}
img:nth-child(5) {
  animation-delay: 16s;
}

/* コンテンツエリア
------------------------------------------------------------*/
.content {
	width: 100%;
}
.sub_img {
	width: 100%;
	height: auto;
}
.title {
	color: #127888;
	font-family: 'Barlow', sans-serif;
	font-size: 3em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin: 50px 0 12px 0;
	text-align: center;
}
.title_mini {
	font-size: 1em;
	letter-spacing: 0.2em;
	text-align: center;
}
.middtitle {
	font-size: 1em;
	width: 100%;
	text-align: center;
	margin: 0px auto 60px auto;
	letter-spacing: 0.2em;
}
.bodycopy {
	font-size: 1em;
	text-align: justify;
	margin: 50px auto 60px auto;
	letter-spacing: 0.1em;
	line-height: 2em;
}
@media screen and (max-width: 450px) {
.bodycopy {
	font-size: .9em;
	text-align: justify;
	margin: 0px auto 60px auto;
	line-height: 2em;
}
}
/*下からフェードイン
------------------------------------------------------------*/
.wrapper_oll{
  overflow: hidden;
}
.sec_box{
  width: 100%;
  box-sizing:border-box;
}
/* fadeUp */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeUpAnime{
from {
  opacity: 0;
  transform: translateY(80px);
  }
to {
  opacity: 1;
  transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 .fadeUpTrigger{
    opacity: 0;
}

/* SEC01 私たちについて
------------------------------------------------------------*/
#sec01 {
	padding-bottom: 30px;
}
.about_title {
	color: #127888;
	font-family: 'Barlow', sans-serif;
	font-size: 3em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	margin: 50px 0 12px 0;
	text-align: center;
}
.about_bodycopy {
	font-size: 1.1em;
	margin-top: 50px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: justify;
}
@media screen and (min-width: 800px) {
.about_bodycopy {
	font-size: 1.1em;
	margin-top: 50px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: justify;
	display: block;
  /*コラム数*/
	column-count: 2;
	-webkit-column-count: 2;
	-moz-column-count: 2;
  /*コラム間隔*/
	column-gap: 20px;
	-webkit-column-gap: 20px;
	-moz-column-gap: 20px;
}
}
@media screen and (max-width: 450px) {
.aboutus_lead {
	text-align: justify;
	font-size: 1em;
	padding: 16px 0;
	line-height: 2em;
	letter-spacing: 0em;
}
}
/* 新着情報 */
.content {
  /*要素の高さを指定*/
  /*上下方向にはみ出した要素ををスクロールさせる*/
  overflow-y: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
/*スクロールバー非表示（Chrome・Safari）*/
.content::-webkit-scrollbar{
  display:none;
}
#news_box {
	width: 100%;
	height: auto;
	margin: 30px 0 50px 0;
	padding: 50px 0;
    background-color: #0D2A45;
	/*グラデ背景*/
    background: -webkit-radial-gradient(top, ellipse cover, #3093AF 0%, #0D2A45 100%);
    background: -moz-radial-gradient(top, ellipse cover, #3093AF 0%, #0D2A45 100%);
    background: -ms-radial-gradient(top, ellipse cover, #3093AF 0%, #0D2A45 100%);
    background: -o-radial-gradient(top, ellipse cover, #3093AF 0%, #0D2A45 100%);
    background: radial-gradient(ellipse at top, #3093AF 0%, #0D2A45 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, StartColorStr='#3093AF', EndColorStr='#0D2A45'); 	
}
#news_title {
	color: #fff;
	font-family: 'Barlow', sans-serif;
	font-size: 1.8em;
	letter-spacing: 0.2em;
	font-weight: 400;
	text-align: center;
	margin-bottom: 30px;
}
/* Instagram */
.snsblock {
  text-align: center;
  width: auto;
  margin: 0 auto;
}
.sns {
	width: 32px;
	margin-bottom: 20px;
}
.sns_text {
	text-align: center;
	font-size: 0.9em;
	margin-bottom: 10px;
}

/* SEC02　事業内容
------------------------------------------------------------*/
#sec02 {
	background-color: #f2f8f5;
	padding-bottom: 80px;
}
.subimg_service {
	width: 100%;
	margin-bottom: 60px;
}
.service_parent {
	width: 100%;
	margin: 0px 0 50px 0;
}
.service_text_box {
	width: 100%;
	margin: 10px 0 0 0;
	z-index: 10;
}
.service_img_box {
	width: 100%;
	/* border-radius */
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.service_title {
	color: #127888;
	font-family: 'Barlow', sans-serif;
	font-size: 3em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 12px;
}
.service_title_mini {
	font-size: 1em;
	letter-spacing: 0.2em;
	text-align: center;
}
.service_bodycopy {
	font-size: 1.1em;
	margin: 50px 0 60px 0;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: center;
}
@media screen and (max-width: 700px) {
	.service_bodycopy {
	text-align: justify;
}
}
/*4つの内容*/
.service_wrap {
	width: 100%;
	height: auto;
	margin: 60px auto 10px auto;
}
@media screen and (min-width: 800px) {
.service_wrap {
	width: 80%;
}
}
@media screen and (min-width: 1000px) {
.service_wrap {
	width: 60%;
}
}
.service_number {
	color: #2992C6;
	font-family: 'Barlow', sans-serif;
	font-size: 4.2em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	padding: 40px 0 10px 0;
}
.service_subtitle {
	color: #2992C6;
	font-size: 1.2em;
	margin: 16px 0 10px 0;
	font-weight: bold;
	width: 100%;
	border-left: 0;
	text-align: center;
	margin-bottom: 20px;
}
hr.style{
	border-bottom: 3px solid #62B5DE;
	width: 3em;
	margin-bottom: 26px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-left-width: 0px;
}
.service_lead {
	font-size: 1.2em;
	margin-top: 8px;
	line-height: 1.9em;
	text-align: justify;
	width: 100%;
	font-weight: normal;
	letter-spacing: 0;
}
.service_text {
	font-size: 1em;
	margin-top: 8px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: justify;
	width: 100%;
}
.img_circle {
	margin: 0 auto 20px auto;
	text-align: center;
	display: flex;
	width: 180px;
	/* border-radius */
	border-radius:50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
}

/*.illst_service {
	margin: 10px auto 0 auto;
	text-align: center;
	display: flex;
	width: 70px;
	opacity: 0.5 ;
}
.service_img {
	width: 60%;
	height: auto;
	margin-left: 40%;
}
.service_textbox {
	width: 80%;
	margin: 0 auto;
}*/

/* SEC03　会社案内
------------------------------------------------------------*/
#sec03 {
	padding-bottom: 80px;
}
.profile_img {
	color: #fff;
	font-family: 'Barlow', sans-serif;
	font-size: 2.6em;
	letter-spacing: 0.3em;
	text-align: center;
	background-image: url(../img/subimg_profile.jpg);
	background-size: cover;
	padding: 10% 0  11.5% 0;
	margin-bottom: 30px;
	text-transform: uppercase;
}
.profile_title_mini {
	font-size: 1em;
	letter-spacing: 0.2em;
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 1px solid #85CCC6;
}
/*テーブル*/
table {
	font-size: .95em;
	line-height: 1.8em;
	text-align: left;
	border-top: 1px solid #85CCC6;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;
}
.table-cap {
	font-size: 1.3em;
	line-height: 1.25;
	margin-bottom: 50px;
	text-align: center;
	color: #17746B;
}
table th,
table td {
	padding: 1em;
	border-bottom: 1px solid #BAD9C9;
}
table th {
}

/* 3つの社内施工写真
------------------------------------------------------------*/
.sec03_flexbox{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	height: auto;
}
@media screen and (max-width: 600px) {
.sec03_flexbox{
    padding: 0 1.5% 0 1.5%;
}
}
@media screen and (max-width: 450px) {
.sec03_flexbox{
	margin-bottom: 30px;
}
}

.flexbox {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	height: auto;
}
.adjust-box {
    position: relative;
    width: 33%;
    height: auto;
    float: left;
}
@media screen and (max-width: 600px) {
.adjust-box {
	margin: 0 4px;
}
}
.box-1x1:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.inner2 {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}
.threeline_img {
	width: 100%;
	/* border-radius */
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}

/* SEC04　施工実績
------------------------------------------------------------*/
#sec04 {
	padding: 20px 0 60px 0;
	background-color: #0D2A45;
	/*グラデ背景*/
    background: -webkit-radial-gradient(top, ellipse cover, #3093AF 0%, #0D2A45 100%);
    background: -moz-radial-gradient(top, ellipse cover, #3093AF 0%, #0D2A45 100%);
    background: -ms-radial-gradient(top, ellipse cover, #3093AF 0%, #0D2A45 100%);
    background: -o-radial-gradient(top, ellipse cover, #3093AF 0%, #0D2A45 100%);
    background: radial-gradient(ellipse at top, #3093AF 0%, #0D2A45 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, StartColorStr='#3093AF', EndColorStr='#0D2A45'); 	
}
.project_bg_title {
	width: 100%;
	margin: -20px 0 20px 0;
	opacity: 0.1;
}
.sec04_title {
	color: #fff;
	padding: 50px 0 10px 0;
	text-align: justify;
	font-size: 1.6em;
	border-bottom: 1px dotted #555;
	margin-bottom: 30px;
}
.project_subtitle {
	color: #fff;
	font-size: .75em;
	line-height: 1.5em;
	text-align: left;
	letter-spacing: 0em;
	margin-top: -3px;
}
.flexbox {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: stretch;
	align-items: stretch;
	text-align: center;
	height: auto;
}
.adjust-box {
	position: relative;
	width: 48%;
	height: auto;
	float: left;
	margin: 0 2%;
}
.box-1x1:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.inner {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
}
.projectimg0_imginner {
	text-align: center;
	margin: 0 auto;
    padding-bottom: 6%;
}
.projectimg0_img {
	width: 96%;
}
.twoline_img {
    width: 100%;
}

/* SEC05　採用情報
------------------------------------------------------------*/
#sec05 {
  	padding: 20px 0 30px 0;
}
/*.recruit_img {
	width: 40%;
	height: auto;
	float: left;
	margin-right: 40px;
}*/
/*ヨコ並び*/
.recruit_parent {
	width: 100%;
	display: flex;
	align-items: center;
	margin: 40px 0 50px 0;
}
@media screen and (min-width: 900px) {
.recruit_parent {
	margin: 40px 0 50px 50px;
}
}
.recruit_text_box {
	width: 47%;
	margin: 10px 20px 0 0;
	z-index: 10;
}
.recruit_img_box {
	max-width: 260px;
}
.recruit_img_box2 {
	width: 100%;
	margin: 40px 0 -40px 0;
}
.recruit_title {
	color: #127888;
	font-family: 'Barlow', sans-serif;
	font-size: 3em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	text-align: left;
	padding-bottom: 12px;
}
.recruit_title_mini {
	font-size: 1em;
	letter-spacing: 0.2em;
	text-align: left;
}
.recruit_bodycopy {
	font-size: 1.1em;
	margin-top: 50px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: justify;
	font-weight: bolder;
}
.recruit_bodycopy2 {
	font-size: 1.1em;
	margin: 50px 0;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: justify;
}
/*求人サイト内容流用情報*/
/*.offer_title {
	color: #127888;
	font-size: 1.2em;
	margin: 20px 0;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: center;
	padding: 3px;
	border: 1px solid #127888;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
}
.offer_subtitle {
	color: #127888;
	font-size: 1.1em;
	margin-top: 10px;
	letter-spacing: 0.1em;
	line-height: 1.6em;
	font-weight: bolder;
}
.offer_text {
	font-size: 1em;
	line-height: 1.6em;
}*/
/*タテ並び*/
@media screen and (max-width: 660px) {
.recruit_parent {
	width: 100%;
	margin: 40px 0 50px 0;
}
.recruit_text_box {
	width: 100%;
	margin: 10px 0 0 0;
	clear: both;
}
.recruit_title {
	color: #127888;
	font-family: 'Barlow', sans-serif;
	font-size: 3em;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 12px;
}
.recruit_title_mini {
	font-size: 1em;
	letter-spacing: 0.2em;
	text-align: center;
}
.recruit_bodycopy {
	font-size: 1.1em;
	margin-top: 50px;
	letter-spacing: 0.1em;
	line-height: 2em;
	text-align: justify;
}
}
@media screen and (max-width: 660px) {/* 画面サイズ801px以上はこのファイルはスタイルが適用される */
  .br-660 {
    display: none;
  }
}
@media screen and (min-width: 661px) {/* 画面サイズ801px以上はこのファイルはスタイルが適用される */
  .br-661 {
    display: none;
  }
}
/*リクルートリンク*/
.recruit_link {
	width: 98%;
	font-size: 1em;
	text-align: center;
	letter-spacing: 0.1em;
	margin: 40px auto;
	padding: 2px;
	border: 1px solid #e45827;
	/* border-radius */
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.recruit_link a {
	color: #e45827;
}
.recruit_link:hover {
	opacity: 0.5 ;
}
@media screen and (min-width: 570px) {
.recruit_link {
	width: 50%;
}
}

/* SEC06　お問い合せ
------------------------------------------------------------*/
#sec06 {
	background-color: #f2f8f5;
	margin-bottom: 50px;
	padding-bottom: 60px;
}
.contactus_img {
	color: #fff;
	font-family: 'Barlow', sans-serif;
	font-size: 2.6em;
	letter-spacing: 0.3em;
	text-align: center;
	background-image: url(../img/subimg_contact.jpg);
	background-size: cover;
	padding: 10% 0  11.5% 0;
	margin-bottom: 60px;
	text-transform: uppercase;
}
.contact_lead {
	font-size: 1em;
	text-align: center;
	margin-bottom: 40px;
}
.contact_subtitle {
	color: #0F4541;
	font-size: 1.6em;
	text-align: center;
	margin-bottom: 8px;
	font-weight: bolder;
}
.contact_tel {
	font-size: 2em;
	font-family: 'Barlow', sans-serif;
	text-align: center;
	margin-bottom: 16px;
}
.contact_tel a {
	color: #127888;
}
.contact_tel a:hover {
	opacity: 0.5 ;
}
.contact_body {
	text-align: center;
	font-size: 1em;
	line-height: 1.6em;
	margin-bottom: 50px;
}
.contactus-text {
	font-size: 1.2em;
	line-height: 1.7em;
	text-align: center;
	margin-top: 10px;
	font-weight: normal;
	letter-spacing: 0;
}
.contactus-text2 {
	font-size: 1.2em;
	line-height: 1.7em;
	text-align: center;
	font-weight: normal;
	letter-spacing: 0;
}
.contactus-attention {
	font-size: .85em;
	line-height: 1.6em;
	text-align: justify;
	margin-top: 4px;
}
@media screen and (max-width: 900px) {
.contactus-text {
	text-align: justify;
}
}
.form_title {
	color: #127888;
	font-size: 1em;
	line-height: 1.6em;
	font-weight: 500;
	margin: 60px 0 6px 0;
	letter-spacing: 1px;
	margin-left: 25%;
	padding-left: 1em;
	text-indent: -1em;
	padding-bottom: 6px;
}
/*名前・アドレス欄*/
.input {
	width: 50%;
	height: 30px;
	border: thin solid #BAD9C9;
	margin-left: 25%;
	/* 角丸 */
	border-radius: 3px;/* CSS3草案 */
	-webkit-border-radius: 3px;/* Safari,Google Chrome用 */
	-moz-border-radius: 3px;/* Firefox用 */
}
/*お問い合わせ内容欄*/
.inquiry {
	width: 50%;
	border: thin solid #BAD9C9;
	margin-left: 25%;
	/* 角丸 */
    border-radius: 3px;/* CSS3草案 */
	-webkit-border-radius: 3px;/* Safari,Google Chrome用 */
	-moz-border-radius: 3px;/* Firefox用 */
}
/*確認ボタン*/
.check_button {
	color: #FFF;
	background-color: #666;
	margin: 10px 0;
	border-style: none;
	font-size: 1em;
	letter-spacing: 0.2em;
	margin-left: 25%;
	padding: 4px 10px;
	cursor: pointer;
	box-shadow: 0 10px 6px -6px #777;
	float: none;
	/* 角丸 */
	border-radius: 2px;/* CSS3草案 */
	-webkit-border-radius: 2px;/* Safari,Google Chrome用 */
	-moz-border-radius: 2px;/* Firefox用 */
}
@media screen and (max-width: 1000px) {
.form_title {
	margin-left: 0;
}
.input {
	width: 99%;
	margin-left: 0;
}
.inquiry {
	width: 99%;
	margin-left: 0;
}
.check_button {
	margin-left: 0;
}
}
.office-name {
	font-size: 1.6em;
	line-height: 1.3em;
	text-align: center;
	letter-spacing: .1em;
	margin: 60px 0 30px 0;
	border-top-width: 1px;
	border-top-style: dotted;
	padding-top: 60px;
}
.office-text {
	font-size: 1.1em;
	line-height: 1.6em;
	text-align: center;
	letter-spacing: .1em;
}
.map {
/* 角丸 */
	border-radius: 4px;/* CSS3草案 */
	-webkit-border-radius: 4px;/* Safari,Google Chrome用 */
	-moz-border-radius: 4px;/* Firefox用 */
}

/* SEC09 その他
------------------------------------------------------------*/
#otherblock {
  width: auto;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.other {
  padding: 12px 16px 0 16px;
  display: inline-block;
}

/* フッター
------------------------------------------------------------*/
#footer {
	font-size: .8em;
	text-align: center;
	border-top: dotted 1px #000;
	border-top-width: 100%;
	margin-top: 16px;
	padding: 16px 0 16px 0;
}
#footer2 {
	font-size: .8em;
	text-align: center;
	padding: 8px 0 16px 0;
}

/* ページtopへ戻る
------------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 14px;
  right: 10px;
  font-size: 0.8em;
  line-height: 1em;
}
#page-top a {
  text-decoration: none;
  color: #000;
  text-align: center;
  display: block;
}
#page-top a:hover {
  text-decoration: none;
}

/* レスポンシブ表示・非表示
------------------------------------------------------------*/

/* スマホで改行なくなる */
@media screen and (max-width: 601px) {
	.br-nonsp { 
	display:none; 
	}
}	
@media screen and (max-width: 701px) {
	.br-nonsp2 { 
	display:none; 
	}
}	
@media screen and (max-width: 801px) {
	.br-nonsp3 { 
	display:none; 
	}
}	
@media screen and (max-width: 450px) {
	.br-nonsp4 { 
	display:none; 
	}
}	

/* スマホで改行される */
@media screen and (min-width: 600px) {
	.br-sp { 
	display:none; 
	}
}	
@media screen and (min-width: 700px) {
	.br-sp2 { 
	display:none; 
	}
}
@media screen and (min-width: 800px) {
	.br-sp3 { 
	display:none; 
	}
}
@media screen and (min-width: 450px) {
	.br-sp4 { 
	display:none; 
	}
}