@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*画面幅599px以下(スマホ)の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	/*color: #333;*/	/*全体の文字色*/
	color: #707070;
	/*font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	width: 100%;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

.pc{
    display:none;
}
.sp{
    display:block;
}

.zoom img {
	animation: animationZoom1 5s ease-in-out forwards;
  }
.zoom {
	overflow: hidden;
  }

  @keyframes animationZoom1 {
	100% { transform:scale(1.1)} 
  }
  @keyframes animationZoom2 {
	50% { transform:scale(1.1)} 
  }

.effect-fade {
	opacity : 0;
	transform : translate(0, 45px);
	transition : all 300ms;
}
	
.effect-fade.effect-scroll {
	opacity : 1;
	transform : translate(0, 0);
}
.fade-block1 {
	transform: translateY(50px);
  	transition: all .5s ease-in;
}
.fade-block2 {
	transform: translateY(100px);
  	transition: all .5s ease-in;

}
.fade-block3 {
	transform: translateY(150px);
  	transition: all .5s ease-in;
}
.fade-block4 {
	transform: translateY(50px);
  	transition: all .5s ease-in;
}
.fade-block5 {
	transform: translateY(100px);
  	transition: all .5s ease-in;
}
.fade-block6 {
	transform: translateY(150px);
  	transition: all .5s ease-in;
}

::placeholder {
	color: rgb(204, 204, 204);
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #ff4765;			/*マウスオン時の文字色*/
	/*text-decoration: none;*/	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
*{
    box-sizing:border-box; /*余白や線を幅や高さに含める*/
}
header{
	z-index:999;
    width:100%;
	height: 8%;
    background-color:#00000024;
	padding: 0 2%;
	display:flex;  /*ロゴとulを横に並べる*/
	justify-content:space-between; /*メニューを右端に置く方法*/
	align-items: center;
	position:fixed;  /*ヘッダーの位置を固定*/
    top:0;  /*ヘッダーの位置を固定（上0）*/
    left:0; /*ヘッダーの位置を左固定（左０）*/
	transition: 0.7s;
}
header:hover {
	background-color:#00000052;
	transition: 0.5s;

}
header h1{
	width:40%;
}
header img{
    max-width:80%;
	padding: 0 0 0 10px;
}
body{
    background-color:#fff;
    margin:0;
    padding:0;
}
header ul{
	display:flex;
}
header li{
    padding: 0 3% 0 4%;
}
header li a{
    text-decoration:none;
	text-decoration: none;display: block;text-align: center;
	width: 40px;	
	color: #fff;	
	border-bottom: 2px solid transparent;	
	padding-bottom: 7px;
	font-size: 2px;
}
header li a:hover {
	border-bottom: 2px solid #fff;
	letter-spacing: 0.1em;
	color: #ffffff;
}
nav {
    width:10%;
}
.navPad {
	display: flex;
	width:5%
}
.tagline {
	position: relative;
} 
.tagline p {
    position: absolute;
    top: 67%!important;
    right: 50%!important;
    /*transform: translate(-50%,-50%);*/
    margin:0;
    padding:0;
    /*文字の装飾は省略*/
	color: white;/*文字は白に*/
	font-size: 11px!important;/*サイズ2倍*/
	animation-name: fade;
    animation-duration: 3s;
}
/*tagline p のfade設定*/
@keyframes fade{
	0%{
	  opacity: 0;
	}
	100%{
	  opacity: 1;
	}
  }
.taglineBig {
	font-size: 2.4vh;
}

/*ハンバーガーメニュー
---------------------------------------------------------------------------*/
  @keyframes bugfix {
	from {
	  padding: 0;
	}
	to {
	  padding: 0;
	}
  }
  @-webkit-keyframes bugfix {
	from {
	  padding: 0;
	}
	to {
	  padding: 0;
	}
  }
  #overlay-button {
	position: absolute;
    right: 0em;
    top: 0em;
    padding: 26px 11px;
    z-index: 1000;
    cursor: pointer;
    user-select: none;
	position:fixed;
  }
  #overlay-button span {
	height: 4px;
	width: 35px;
	border-radius: 2px;
	background-color: white;
	position: relative;
	display: block;
	transition: all .2s ease-in-out;
  }
  #overlay-button span:before {
	top: -10px;
	visibility: visible;
  }
  #overlay-button span:after {
	top: 10px;
  }
  #overlay-button span:before, #overlay-button span:after {
	height: 4px;
	width: 35px;
	border-radius: 2px;
	background-color: white;
	position: absolute;
	content: "";
	transition: all .2s ease-in-out;
  }
  #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
	background: #fff;
  }
  input[type=checkbox] {
	display: none; 
  }
  input[type=checkbox]:checked ~ #overlay {
	visibility: visible; 
  }
  input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
	background: transparent;
  }
  input[type=checkbox]:checked ~ #overlay-button span:before {
	transform: rotate(45deg) translate(7px, 7px);
  }
  input[type=checkbox]:checked ~ #overlay-button span:after {
	transform: rotate(-45deg) translate(7px, -7px);
  }
  #overlay {
	height: 100vh;
	width: 100vw;
	background: #000000c0;
	z-index: 2;
	visibility: hidden;
	position: fixed;
  }
  #overlay.active {
  
  }
  #overlay ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	height: 100vh;
	padding-left: 0;
	list-style-type: none;
  }
  #overlay ul li {
	padding: 1em;
  }
  #overlay ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 1.5em;
	transition: 0s;
  }
  #overlay ul li a:hover {
	color: #000!important;
  }


/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
.container {
	max-width: 100%;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

.container a, .container a:link, .container a:visited, .container a:hover, .container a:active {
	text-decoration: none;
	color:#707070;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
/*
.contents {
	overflow: hidden;
	padding: 50px 3%;
}
.contents section + section {
	padding-top: 50px;
}
*/
/*コンテンツ内にあるh2(見出し)タグの指定*/
.contents h2 {
	text-align: center;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	font-size: 20px;
	height: 35px;
	margin-top: 20px;
}
.bottomline {
	width:24px;
	border-bottom: 5px solid #AD6060;
}
.contents h3 {
	text-align: center;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	font-size: 13px;
    margin-top: 10px;
	margin-bottom: 5px;
}
.contents p {
	text-align: center;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	font-size: 10px;
    margin-top: 10px;
	width:360px;
	left: 0;
    right: 0;
    margin: auto;

}

/*buttonBox
---------------------------------------------------------------------------*/
.buttonBox {
	width: 200px;
	height: 50px;
	margin: 20px auto 20px auto;
	color: #707070;
	/*font-family: 'Open Sans', sans-serif;*/
	font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 1.6rem;
	line-height: 50px;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	cursor: pointer;
}

buttonBox:hover svg rect, .buttonBox:hover svg polyline {
	stroke: #707070;
}
svg {
	position: absolute;
	top: 0;
	left: 0;
}
  svg rect, svg path, svg polyline {
	fill: none;
	stroke: #707070;
	stroke-width: 1;
}
svg rect {
	stroke-dasharray: 400, 0;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
  }
.buttonBox:hover svg rect {
	stroke-width: 3;
	stroke-dasharray: 35, 245;
	stroke-dashoffset: 38;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
}
.buttonBoxDouble{
	display: block;
    margin: 0 0 0 0;
}
.submit {
	margin: 23px 0px 0px 0px;
}
/*WORKS
---------------------------------------------------------------------------*/
.works {
	text-align: center;
	padding-bottom: 10px;
}
.works ul{
	display: flex;
}

/*CRAFTSMAN
---------------------------------------------------------------------------*/
.craftsman {
	padding-bottom: 10px;
}

/*NEWS
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
.new dl {
	padding-left: 0px;
	margin-bottom: 0px;
	width: 90%;
	font-size: 14px;
}
/*日付設定*/
.new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
.new dd {
	padding-left: 9em;
	text-align: left;
}

.newicon{
	color:#AD6060;
}

.new {
	padding-bottom:60px;
}

/*CONTACT
---------------------------------------------------------------------------*/
.contact{
	display: block;
}
.contactUs{
	width:100%;
	text-align:left;
	background-color: #EEF1F2;
	padding: 30px 10px 30px 10px;
}
.contactForm{
	width: 100%;
    padding: 30px 10px 30px 60px;
}
.info {
	width:60%;
	margin-left: auto;
    margin-right: auto;
	font-size:15px;
}
.infoLine {
	display: flex;
    align-items: center;
}
.contactUs img{
	height: 20px;
}
.contactUs p{
	text-align:left;
	margin-left:10px;
    width:100%!important;
	font-size: 14px;
}
.contactUs h2{
	text-align:left;
	width: 50%;
	margin:auto;
}
.contactUs h3{
	text-align:left;
	width: 50%;
	margin:auto;
	padding-left: 38px;
}
#textboxName {
	margin: 0 0 0 20px;
    height: 28px;
    width: 12em;
    transition: all .6s ease;
    border-bottom:1px solid #cccccc;
    border-right:none;
    border-left:none;
    border-top:none;
    border-radius:0px;
}
#textboxName:focus{
	outline: 0;
}
#textboxEmail {
	margin: 0 0 0 11px;
    height: 28px;
    width: 18em;
    transition: all .6s ease;
    border-bottom:1px solid #cccccc;
    border-right:none;
    border-left:none;
    border-top:none;
    border-radius:0px;
}
#textboxEmail:focus{
	outline: 0;
}
#textboxSubject {
	margin: 0 0 0 20px;
    height: 28px;
    width: 18em;
    transition: all .6s ease;
    border-bottom:1px solid #cccccc;
    border-right:none;
    border-left:none;
    border-top:none;
    border-radius:0px;
}
#textboxSubject:focus{
	outline: 0;
}
#textareabox {
	margin: 10px 0 0 20px;
    width: 70%;
    transition: all .6s ease;
    border-bottom:1px solid #cccccc;
    border-right:none;
    border-left:none;
    border-top:none;
    border-radius:0px;
}
#textareabox:focus{
	outline: 0;
}
.formPadding {
	padding-bottom: 15px;
    font-size: 13px;
}
.contact input[type="submit"]{
	margin: 0 0 0 50px;
	padding: 10px 20px 10px 20px;
	border: solid 1px;
	cursor: pointer;
	transition: 0.5s;
	background-color: #000000a2;
	color:rgb(255, 255, 255);
}
.contact input[type="submit"]:hover{
	background-color: #ffffff;
	color: rgb(0, 0, 0);
}

/*GOOGLE MAP
---------------------------------------------------------------------------*/
.googlemap {
	filter:grayscale(50%);
	/*filter:invert(78%);*/
	/*filter:brightness(50%);*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: 100%;
	clear: both;
	text-align: center;
	font-size: 85%;		/*文字サイズ*/
	position: absolute;
	left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	font-size:5px;
}
footer a {
	text-decoration: none;
}
footer a:hover {
	color: #AD6060;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer ul {
	display: flex;
    justify-content: center;
}
footer li:first-child {
    padding-right: 10px;
    border-right: 1px solid #d5d5d5;
}
footer li:last-child {
	padding-left:10px;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.scroll-show {display: block;}
.scroll a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
.scroll a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}



/*画面幅600px以上1024pxまで(タブレット)の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*
@media screen and (min-width:600px){

}
*/



/*画面幅1025px以上(PC)の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width:600px){

/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	/*color: #333;*/	/*全体の文字色*/
	color: #707070;
	/*font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 16px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
	width: 100%;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

.pc{
    display:block;
}
.sp{
	display:none;
}

.effect-fade {
	opacity: 0;
    transform: translate3d(0, 30px, 0);
}
	
.effect-fade.effect-scroll {
	opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-block1 {
	transform: translate3d(0, 0, 0);
    transition: 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-block2 {
	transform: translate3d(0, 0, 0);
    transition: 900ms cubic-bezier(0.165, 0.84, 0.44, 1);

}
.fade-block3 {
	transform: translate3d(0, 0, 0);
    transition: 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-block4 {
	ransform: translate3d(0, 0, 0);
	transition: 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-block5 {
	ransform: translate3d(0, 0, 0);
	transition: 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-block6 {
	ransform: translate3d(0, 0, 0);
  	transition: 900ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

::placeholder {
	color: rgb(204, 204, 204);
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #ff4765;			/*マウスオン時の文字色*/
	/*text-decoration: none;*/	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
*{
    box-sizing:border-box; /*余白や線を幅や高さに含める*/
}
header{
	z-index:999;
    width:100%;
	height: 55px;
    background-color:#00000024;
	padding: 0 2%;
	display:flex;  /*ロゴとulを横に並べる*/
	justify-content:space-between; /*メニューを右端に置く方法その１*/
	align-items: center;
	position:fixed;  /*ヘッダーの位置を固定*/
    top:0;  /*ヘッダーの位置を固定（上0）*/
    left:0; /*ヘッダーの位置を左固定（左０）*/
	transition: 0.7s;
}
header:hover {
	background-color:#00000052;
	transition: 0.5s;
}
header h1{
	width:40%;
}
header img{
    max-width:50%; /*画像が親要素からはみ出すのを防ぐ*/
	height:50px;
	padding: 5px 0 5px 22px;
}
body{
    background-color:#fff;
    margin:0;
    padding:0;
}
header ul{
	display:flex;
}
header li{
    padding: 0 3% 0 4%;
}
header li a{
    text-decoration:none;
	text-decoration: none;display: block;text-align: center;
	width: 80px;	
	color: #fff;	
	border-bottom: 2px solid transparent;	
	padding-bottom: 0.1px;
	font-size: 16px;
}
header li a:hover {
	border-bottom: 2px solid #fff;
	letter-spacing: 0.1em;
	color: #ffffff;
}
nav {
    width:10%;
}
.navPad {
	display: flex;
	width:5%
}
.tagline {
	position: relative;
} 
.tagline p {
    position: absolute;
    top: 60%!important;
    right: 40%!important;
    /*transform: translate(-50%,-50%);*/
    margin:0;
    padding:0;
    /*文字の装飾は省略*/
	color: white;/*文字は白に*/
	font-size: 17px!important;/*サイズ2倍*/
	width:50%!important;
}
.taglineBig {
	font-size:23px;
}


/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
.container {
	max-width: 100%;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

.container a, .container a:link, .container a:visited, .container a:hover, .container a:active {
	text-decoration: none;
	color:#707070;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
/*
.contents {
	overflow: hidden;
	padding: 50px 3%;
}
.contents section + section {
	padding-top: 50px;
}
*/
/*コンテンツ内にあるh2(見出し)タグの指定*/
.contents h2 {
	text-align: center;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	font-size: 30px;
	height: 55px;
	margin-top: 20px;
}
.bottomline {
	width:44px;
	border-bottom: 10px solid #AD6060;
}
.contents h3 {
	text-align: center;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	font-size: 13px;
    margin-top: 10px;
	margin-bottom: 5px;
}
.contents p {
	text-align: center;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	font-size: 13px;
    margin-top: 10px;
	width:450px;
	left: 0;
    right: 0;
    margin: auto;

}

/*buttonBox
---------------------------------------------------------------------------*/
.buttonBox {
	width: 200px;
	height: 50px;
	margin: 30px auto 50px auto;
	color: #707070;
	/*font-family: 'Open Sans', sans-serif;*/
	font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-size: 1.6rem;
	line-height: 50px;
	text-transform: uppercase;
	text-align: center;
	position: relative;
	cursor: pointer;
}

buttonBox:hover svg rect, .buttonBox:hover svg polyline {
	stroke: #707070;
}
svg {
	position: absolute;
	top: 0;
	left: 0;
}
  svg rect, svg path, svg polyline {
	fill: none;
	stroke: #707070;
	stroke-width: 1;
}
svg rect {
	stroke-dasharray: 400, 0;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
  }
.buttonBox:hover svg rect {
	stroke-width: 3;
	stroke-dasharray: 35, 245;
	stroke-dashoffset: 38;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
}
.buttonBoxDouble{
	display: flex;
    margin: 0 30% 0 30%;
}
.submit {
	margin: 23px 0px 0px 0px;
}
/*WORKS
---------------------------------------------------------------------------*/
.works {
	text-align: center;
	padding-bottom: 20px;
}
.works ul{
	display: flex;
}

/*CRAFTSMAN
---------------------------------------------------------------------------*/
.craftsman {
	padding-bottom: 20px;
}

/*NEWS
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
.new dl {
	padding-left: 20px;
	margin-bottom: 15px;
	width: 45%;
}
/*日付設定*/
.new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
.new dd {
	padding-left: 9em;
	text-align: left;
}

.newicon{
	color:#AD6060;
}

.new {
	padding-bottom:100px;
}

/*CONTACT
---------------------------------------------------------------------------*/
.contact{
	display: flex;
}
.contactUs{
	width:50%;
	text-align:left;
	background-color: #EEF1F2;
	padding: 30px 30px 30px 30px;
}
.contactForm{
	width:50%;
	padding: 30px 30px 30px 30px;
}
.info {
	width:45%;
	margin-left: auto;
    margin-right: auto;
}
.infoLine {
	display: flex;
    align-items: center;
}
.contactUs img{
	height: 20px;
}
.contactUs p{
	text-align:left;
	margin-left:10px;
/*	width:40%;*/
}
.contactUs h2{
	text-align:left;
	width: 50%;
	margin:auto;
}
.contactUs h3{
	text-align:left;
	width: 50%;
	margin:auto;
	padding-left: 65px;
}
#textboxName {
	margin: 0 0 0 20px;
    height: 28px;
    width: 12em;
    transition: all .6s ease;
    border-bottom:1px solid #cccccc;
    border-right:none;
    border-left:none;
    border-top:none;
    border-radius:0px;
}
#textboxName:focus{
	outline: 0;
}
#textboxEmail {
	margin: 0 0 0 10px;
    height: 28px;
    width: 20em;
    transition: all .6s ease;
    border-bottom:1px solid #cccccc;
    border-right:none;
    border-left:none;
    border-top:none;
    border-radius:0px;
}
#textboxEmail:focus{
	outline: 0;
}
#textboxSubject {
	margin: 0 0 0 20px;
    height: 28px;
    width: 20em;
    transition: all .6s ease;
    border-bottom:1px solid #cccccc;
    border-right:none;
    border-left:none;
    border-top:none;
    border-radius:0px;
}
#textboxSubject:focus{
	outline: 0;
}
#textareabox {
	margin: 20px 0 0 20px;
    width: 70%;
    transition: all .6s ease;
    border-bottom:1px solid #cccccc;
    border-right:none;
    border-left:none;
    border-top:none;
    border-radius:0px;
}
#textareabox:focus{
	outline: 0;
}
.formPadding {
	padding-bottom: 3px;
}
.contact input[type="submit"]{
	padding: 10px 20px 10px 20px;
	border: solid 1px;
	margin-top: 20px;
	cursor: pointer;
	transition: 0.5s;
	background-color: initial;
	color:#707070;
}
.contact input[type="submit"]:hover{
	background-color: #161718;
	color: white;
}

/*GOOGLE MAP
---------------------------------------------------------------------------*/
.googlemap {
	/*filter:grayscale(50%);*/
	/*filter:invert(78%);*/
	filter:brightness(50%);
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	font-size: 85%;		/*文字サイズ*/
	position: absolute;
	left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
footer a {
	text-decoration: none;
}
footer a:hover {
	color: #AD6060;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.scroll-show {display: block;}
.scroll a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
.scroll a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

}
/*PC*/