/*-----------------------------------------------
	#gra
-----------------------------------------------*/

#gra {
	margin: 0;
	padding: 0;
}

#gra h1 {
	font-family: 'Noto Sans Japanese', serif;
	font-weight: 500;
	font-size: 204%;
	line-height:1.6em;
	text-align: center;
	background-image:url(image);
	max-height: 100%;
	word-break: break-all;
	letter-spacing: 1px;
}

@media screen and (max-width: 680px) {
	#gra h1 {
	font-size: 144%;
	line-height:1.6em;
	letter-spacing: 0;
	}
}

#gra h2 {
	font-family: 'Noto Sans Japanese', serif;
	font-weight: 600;
	font-size: 268%;
	line-height:1.6em;
	text-align: center;
	background-image:url(image);
	max-height: 100%;
	word-break: break-all;
	letter-spacing: 3px;
}

@media screen and (max-width: 680px) {
	#gra h2 {
	font-size: 128%;
	line-height:1.6em;
	letter-spacing: 0;
	}
}


#gra h3 {
	font-family: 'Noto Sans Japanese', serif;
	font-weight: 600;
	font-size: 216%;
	line-height:1.6em;
	text-align: center;
	background-image:url(image);
	max-height: 100%;
	word-break: break-all;
	letter-spacing: 1px;
}

@media screen and (max-width: 680px) {
	#gra h3 {
	font-size: 114%;
	line-height:1.6em;
	}
}

#gra h4 {
	font-family: 'Noto Sans Japanese', serif;
	font-size: 144%;
	font-weight: 500;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	word-break: break-all;
}

@media screen and (max-width: 680px) {
	#gra h4 {
	font-size: 100%;
	line-height:1.6em;
	}
}

#gra h5 {
	font-family: 'Noto Sans Japanese', serif;
	font-size: 128%;
	font-weight: 500;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	word-break: break-all;
}

@media screen and (max-width: 680px) {
	#gra h5 {
	font-size: 88%;
	line-height:1.6em;
	}
}

#gra p {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height:1.8em;
	background-image:url(image);
	max-height: 100%;
	text-align: left;
}

@media screen and (max-width: 680px) {
	#gra p {
	font-size: 88%;
	line-height:1.6em;
	}
}


/*-----------------------------------------------
	#main
-----------------------------------------------*/

#main {
	margin: 0 auto;
	padding: 0;
	width: 100vw;
 	height: 100vh;
	background-image: url("../img/top/bg_main.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
	
	}
@media screen and (max-width: 680px) {
	#main {
		padding: 0;
	}
}

#main h1 {
	font-family: 'Lora', serif;
	font-size: 314%;
	font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	margin-bottom: 15px;
	animation-name:slideText;
	animation-duration:3s;
	animation-fill-mode:forwards;
    opacity: 0;
}
#main h1 span {
	color: #225A3D;
}
@media screen and (max-width: 680px) {
	#main h1 {
		font-size: 188%;
	}
}

#main h2 {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	animation-name:slideText;
	animation-duration:1s;
	animation-fill-mode:forwards;
    opacity: 0;
}
#main h2 span {
	color: #225A3D;
}
@media screen and (max-width: 680px) {
	#main h2 {
		font-size: 144%;
	}
}

#main h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 114%;
	font-weight: 500;
	line-height: 1.6em;
	letter-spacing: 1px;
	animation-name:slideText;
	animation-duration:5s;
	animation-fill-mode:forwards;
    opacity: 0;
}
@media screen and (max-width: 680px) {
	#main h3 {
		font-size: 88%;
	}
}

@keyframes slideText {
  from {
	opacity: 0;
  }
  to {
	opacity: 1;
  }
}

#main .mainVisual {
width: 100vw;
 	height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
　opacity:0;
  animation-name:bgchange;
  animation-duration:3s; 
  /*animation-iteration-count:infinite;*/
  animation-fill-mode: forwards;
}
@keyframes bgchange{
      0%   {background:rgba(255,255,255,0.0);}/*変化させたい色*/
      100% {background:rgba(255,255,255,0.5);}/*変化させたい色*/
 }


@media screen and (max-width: 680px) {
	#main .mainVisual {
		width: 100%;
	}
	#main h1 {
		padding: 0 30px;
	}
}

/*-----------------------------------------------
	#about_us
-----------------------------------------------*/

#about_us {
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 10;
}
@media screen and (max-width: 680px) {
	#about_us {
		margin: 0 auto;
		padding: 0;
	}
}

#about_us h2 {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 700;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	text-align: right;
}
@media screen and (max-width: 680px) {
	#about_us h2 {
		font-size: 128%;
		text-align: left;
	}
}

#about_us h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 88%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: right;
}
@media screen and (max-width: 680px) {
	#about_us h3 {
		text-align: left;
	}
}

#about_us p {
	text-align: right;
}
@media screen and (max-width: 680px) {
	#about_us p {
		text-align: left;
	}
}

#about_us .about_usarea {
	margin: 0 auto;
	padding: 135px 0 0 0;
	box-sizing: border-box;
	max-width: 1140px;
	min-height: 827px;
    display: flex;
    justify-content: flex-end;
    align-items:stretch;
	position: relative;
/*	background-image: url("../img/top/bg_about_us.jpg");
	background-repeat: no-repeat;
	background-position: left top;*/
}

@media screen and (max-width: 680px) {
#about_us .about_usarea {
	flex-flow: column wrap;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	min-height: auto;
	}
}

#about_us .data {
	width: 430px;
	z-index: 100;
}
@media screen and (max-width: 680px) {
	#about_us .data {
		width: 100%;
		padding: 30px 0;
	}
}

#about_us .ttl {
	margin-bottom: 100px;
	padding: 15px 25px;
	box-sizing: border-box;
	opacity:0;
}
@media screen and (max-width: 680px) {
	#about_us .ttl {
		margin-bottom: 30px;
	}
}

#about_us .txt {
	padding: 25px 25px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.7);
}

/*-----------------------------------------------
	#service
-----------------------------------------------*/

#service {
	position: relative;
	top: -130px;
	margin: 0 auto -130px auto;
	padding: 0;
	box-sizing: border-box;
	z-index: 5;
}
@media screen and (max-width: 680px) {
	#service {
		margin: 0 auto 30px auto;
		padding: 0;
		position: static;
	}
}

#service h2 {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 700;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	text-align: left;
}
@media screen and (max-width: 680px) {
	#service h2 {
		font-size: 128%;
	}
}

#service h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 88%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: left;
}

#service h4 {
	font-family: 'Lora', serif;
	font-size: 128%;
	font-weight: 600;
	line-height: 1.6em;
	text-align: left;
	margin-bottom: 10px;
	
}
#service h4 span {
	padding: 0 40px;
	background:linear-gradient(transparent 50%, #93A897 50%);
}

#service h5 {
	font-family: 'Lora', serif;
	font-size: 114%;
	font-weight: 500;
	line-height: 1.6em;
	text-align: center;
	margin-bottom: 10px;
}

#service p {
	text-align: left;
}

#service .servicearea {
	margin: 0 auto;
	padding: 265px 0 0 0;
	box-sizing: border-box;
	max-width: 1140px;
	min-height: 990px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
	position: relative;
	/*background-image: url("../img/top/bg_service.jpg");
	background-repeat: no-repeat;
	background-position: right top;*/
}
@media screen and (max-width: 680px) {
	#service .servicearea {
		flex-flow: column wrap;
		width: 100%;
		margin: 0 auto;
		padding: 0;
		min-height: auto;
	}
}

#service .data {
	width: 430px;
	z-index: 100;
}
@media screen and (max-width: 680px) {
	#service .data {
		width: 100%;
		padding: 30px 0 0 0;
	}
}

#service .ttl {
	margin-bottom: 100px;
	padding: 15px 25px;
	box-sizing: border-box;
	opacity:0;
}
@media screen and (max-width: 680px) {
	#service .ttl {
		margin-bottom: 30px;
	}
}

#service .txt {
	margin-bottom: 350px;
	padding: 15px 25px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.7);
}
@media screen and (max-width: 680px) {
	#service .txt {
		margin-bottom: 30px;
	}
}

#service .ph {
	width: 580px;
	margin-left: 60px;
	z-index: 100;
}
@media screen and (max-width: 680px) {
	#service .ph {
		width: 100%;
		margin:0 auto;
		padding:0;
		box-sizing: border-box;
	}
}

#service .bimarea {
	margin: 0 auto 30px auto;
	padding: 0;
	box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
#service .bimimg {
	flex: 2;
	padding: 0 30px;
	box-sizing: border-box;
}
#service .bimdata {
	flex: 1;
}
#service .bimdata article {
	padding: 0;
}
#service .bimdata p {
	font-size: 78%;
	line-height: 1.4em;
}
@media screen and (max-width: 680px) {
	#service .bimarea{
		flex-flow: column wrap;
		width: 100%;
		margin: 0 auto;
		padding: 30px 15px;
		box-sizing: border-box;
		background-color: #FFFFFF;
	}
	#service .bimimg {
		margin:0 auto 30px auto;
	}
	#service .bimdata article {
		margin:0 auto 15px auto;
		padding: 0 60px;
	}
}

#service .bimdit {
	margin: 0 auto;
	padding: 0;
}
@media screen and (max-width: 680px) {
	#service .bimdit {
		margin: 0 auto;
		padding: 0 30px;
	}
}

/*-----------------------------------------------
	#tool
-----------------------------------------------*/

#tool {
	position: relative;
	top: -110px;
	margin: 0 auto -110px auto;
	padding: 0;	
	box-sizing: border-box;
	z-index: 10;
}
@media screen and (max-width: 680px) {
	#tool {
		margin: 0 auto;
		padding: 0;
		position: static;
	}
}

#tool h2 {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 700;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	text-align: right;
}
@media screen and (max-width: 680px) {
	#tool h2 {
		font-size: 128%;
		text-align: left;
	}
}

#tool h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 88%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: right;
}
@media screen and (max-width: 680px) {
	#tool h3 {
		text-align: left;
	}
}

#tool p.more {
	text-align: right;
}

#tool .toolarea {
	margin: 0 auto;
	padding: 260px 0 0 0;
	box-sizing: border-box;
	max-width: 1140px;
	min-height: 988px;
    display: flex;
    justify-content: flex-end;
    align-items:stretch;
	position: relative;
	/*background-image: url("../img/top/bg_tool.jpg");
	background-repeat: no-repeat;
	background-position: left top;*/
}
@media screen and (max-width: 680px) {
#tool .toolarea {
	flex-flow: column wrap;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	min-height: auto;
	}
}

#tool .data {
	width: 430px;
	z-index: 100;
}
@media screen and (max-width: 680px) {
	#tool .data {
		width: 100%;
		padding: 30px 0 0 0;
	}
}

#tool .ttl {
	margin-bottom: 100px;
	padding: 15px 25px;
	box-sizing: border-box;
	opacity:0;
}
@media screen and (max-width: 680px) {
	#tool .ttl {
		margin-bottom: 30px;
	}
}

#tool .txt {
	padding: 25px 25px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.7);
}

#tool .toolitem {
	margin: 0 0 0 30px;
	padding: 0;
	box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items:stretch;
	flex-wrap: wrap;
	list-style-type: disc;
}
@media screen and (max-width: 680px) {
	#tool .toolitem {
		flex-flow: column wrap;
		width: 100%;
		margin: 0 0 0 20px;
		padding: 0;
	}
}

#tool .toolitem li {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	text-align: left;
	width: 50%;
}
@media screen and (max-width: 680px) {
	#tool .toolitem li {
		width: auto;
	}
}

/*-----------------------------------------------
	#works
-----------------------------------------------*/

#works {
	position: relative;
	top: 0px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	z-index: 5;
	background-color: #51655A;
	background-image: url("../img/top/bg_works_top.png");
	background-repeat: repeat-x;
}
@media screen and (max-width: 680px) {
	#works {
		margin: 0 auto;
		padding: 0;
	}
}

#works h2 {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 700;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	text-align: left;
}
@media screen and (max-width: 680px) {
	#works h2 {
		font-size: 128%;
		text-align: left;
	}
}

#works h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 88%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: left;
}
@media screen and (max-width: 680px) {
	#works h3 {
		text-align: left;
	}
}

#works h4 {
	font-family: 'Noto Serif JP', serif;
	font-size: 100%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: center;
	margin-top: 10px;
}
@media screen and (max-width: 680px) {
	#works h4 {
		font-size: 78%;
		margin-top: 5px;
	}
}

#works h5 {
	font-family: 'Lora', serif;
	font-size: 114%;
	font-weight: 500;
	line-height: 1.6em;
	text-align: center;
	margin-bottom: 10px;
}

#works p {
	text-align: left;
}

#works .worksarea {
	margin: 0 auto;
	padding: 120px 0 240px 0;
	box-sizing: border-box;
	max-width: 1140px;
	background-image: url("../img/top/bg_works_bar.png");
	background-repeat: repeat-y;
	background-position: left top;
}
@media screen and (max-width: 680px) {
	#works .worksarea {
		width: 100%;
		margin: 0 auto;
		padding: 0 0 90px 0;
		background-size: 20%;
	}
}

#works .ttl {
	margin-bottom: 60px;
	padding: 15px 25px;
	width: 430px;
	box-sizing: border-box;
	opacity:0;
}
@media screen and (max-width: 680px) {
	#works .ttl {
		width: 100%;
		margin-bottom: 30px;
	}
}

#works .data {
	margin: 0 auto 30px auto;
	padding: 50px 150px 20px 150px;
	box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: stretch;
	background-color: rgba(255,255,255,0.7);
}
@media screen and (max-width: 680px) {
#works .data {
	/*flex-flow: column wrap;*/
	width: 100%;
	margin: 0 auto;
	padding: 5px;
	}
}

#works .data article {
	flex: 1;
}
@media screen and (max-width: 680px) {
	#works .data article {
		padding: 1px;
		box-sizing: border-box;
	}
}

#works .data article a:link{
	text-decoration:none;
	color:#000000;
}
#works .data article a:visited {
	text-decoration:none;
	color:#000000;
}
#works .data article a:hover{
	text-decoration:none;
	color: #93A897;
	transition: color 0.3s ease 0s;
}
#works .data article a:active {
	text-decoration:none;
	color:#000000;
}

#worksitem {
	margin: 0 auto;
	padding: 0;
	/*width: 100vw;
 	height: 100vh;*/
	background-color: none;
}

#worksitem .slider {
    margin: 0 auto;
	max-width: 680px;
}
#worksitem .slider img {
	margin: 0 auto;
	padding: 30px 0 0 0;
	box-sizing: border-box;
	max-height: 80vh;
}
#worksitem .thumb {
    margin: 0 auto;
	max-width: 680px;
}
#worksitem .thumb img {
	margin: 0 auto;
	padding: 15px 0;
	box-sizing: border-box;
	max-height: 20vh;
}
/*slick setting*/
#worksitem .slick-prev:before,
#worksitem .slick-next:before {
    color: #FFFFFF;
}


/*-----------------------------------------------
	#profile
-----------------------------------------------*/

#profile {
	position: relative;
	top: -130px;
	margin: 0 auto -130px auto;
	padding: 0;
	box-sizing: border-box;
	z-index: 10;
}
@media screen and (max-width: 680px) {
	#profile {
		margin: 0 auto;
		padding: 0;
		position: static;
	}
}

#profile h2 {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 700;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	text-align: right;
}
@media screen and (max-width: 680px) {
	#profile h2 {
		font-size: 128%;
		text-align: left;
	}
}

#profile h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 88%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: right;
}
@media screen and (max-width: 680px) {
	#profile h3 {
		text-align: left;
	}
}

#profile p.more {
	text-align: right;
}

#profile .profilearea {
	margin: 0 auto;
	padding: 260px 0 0 0;
	box-sizing: border-box;
	max-width: 1140px;
	min-height: 996px;
    display: flex;
    justify-content: flex-end;
    align-items:stretch;
	position: relative;
	/*background-image: url("../img/top/bg_profile.jpg");
	background-repeat: no-repeat;
	background-position: left top;*/
}

@media screen and (max-width: 680px) {
#profile .profilearea {
	flex-flow: column wrap;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	min-height: auto;
	}
}

#profile .data {
	width: 430px;
	z-index: 100;
}
@media screen and (max-width: 680px) {
	#profile .data {
		width: 100%;
		padding: 30px 0 0 0;
	}
}

#profile .ttl {
	margin-bottom: 100px;
	padding: 15px 25px;
	box-sizing: border-box;
	opacity:0;
}
@media screen and (max-width: 680px) {
	#profile .ttl {
		margin-bottom: 30px;
	}
}

#profile .txt {
	padding: 25px 25px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.7);
}

#profile .profiletbl {
	margin: 0 auto;
	padding: 0;
	border-collapse: collapse;
}

#profile .profiletbl th {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	font-weight: normal;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	text-align: left;
	word-break: keep-all;
	padding-right: 30px;
}

#profile .profiletbl td {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	text-align: left;
}

#profile .profileul {
	margin: 0 0 0 20px;
	padding: 0;
}
@media screen and (max-width: 680px) {
#profile .profileul {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	}
}

#profile .profileul li {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	text-align: left;
}

/*-----------------------------------------------
	#contact
-----------------------------------------------*/

#contact {
	position: relative;
	top: -120px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	z-index: 5;
}
@media screen and (max-width: 680px) {
	#contact {
		margin: 0 auto;
		padding: 0;
		position: static;
	}
}

#contact h2 {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 700;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	text-align: left;
}
@media screen and (max-width: 680px) {
	#contact h2 {
		font-size: 128%;
		text-align: left;
	}
}

#contact h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 88%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: left;
}
@media screen and (max-width: 680px) {
	#contact h3 {
		text-align: left;
	}
}

#contact h4 {
	font-family: 'Noto Serif JP', serif;
	font-size: 100%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: center;
	margin-top: 10px;
}

#contact h5 {
	font-family: 'Lora', serif;
	font-size: 114%;
	font-weight: 500;
	line-height: 1.6em;
	text-align: center;
	margin-bottom: 10px;
}

#contact p {
	text-align: left;
}

#contact .contactarea {
	margin: 0 auto;
	padding: 260px 0 60px 0;
	box-sizing: border-box;
	max-width: 1140px;
	min-height: 984px;
	position: relative;
	/*background-image: url("../img/top/bg_contact.jpg");
	background-repeat: repeat-y;
	background-position: right top;*/
}
@media screen and (max-width: 680px) {
	#contact .contactarea {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		min-height: auto;
	}
}

#contact .data {
	width: 430px;
	z-index: 100;
	position: relative;
}
@media screen and (max-width: 680px) {
	#contact .data {
		width: 100%;
		padding: 0;
	}
}

#contact .ttl {
	margin-bottom: 100px;
	padding: 15px 25px;
	box-sizing: border-box;
	opacity:0;
}
@media screen and (max-width: 680px) {
	#contact .ttl {
		margin-bottom: 30px;
	}
}
#contact .ttl2 {
	margin-bottom: 100px;
	padding: 15px 25px;
	box-sizing: border-box;
	background-color: #93A897;
}
@media screen and (max-width: 680px) {
	#contact .ttl2 {
		margin-bottom: 30px;
	}
}

#contact .txt {
	padding: 25px 25px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.8);
}

@media screen and (max-width: 680px) {
	#contact .data {
		width: 100%;
		margin: 0 auto;
		padding: 30px 0 0 0;
	}
}


#contact dl.mailform {
	width: 100%;
	margin: 0 auto;
	padding:0 ;
}

#contact dl.mailform dt {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height: 1.6em;
	text-align: left;
	background-image:url(image);
	max-height: 100%;
	word-break: keep-all;
	margin-bottom: 1%;
	color: #000000;
}

#contact dl.mailform dd {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height: 1.6em;
	text-align: left;
	background-image:url(image);
	max-height: 100%;
	margin-bottom: 3%;
	background-color:none;
}

#contact dl.mailform dt a:link {
	color: #00acee;
}

#contact dl.mailform dt a:visited {
	text-decoration:none;
	color: #00acee;
}

#contact dl.mailform dt a:hover{
	text-decoration: underline;
	color: #BC0000;
}

#contact dl.mailform dt a:active {
	text-decoration:none;
	color: #00acee;
}

#contact dl.mailform span.red {
	color: #CC0000;
}

@media screen and (max-width: 680px) {
	#contact dl.mailform {
		width: auto;
		margin: 0 auto;
		padding:0 ;
	}
	#contact dl.mailform dt {
		font-size: 88%;
	}
	#contact dl.mailform dd {
		font-size: 88%;
	}
}

#contact .mform_in {
	margin: 30px auto 0 auto;
	padding:0 ;
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;	
}

#contact .mform_in .ebutton {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height: 1.6em;
	padding: 15px 0px 15px 0px;
	margin: 0;
	box-sizing: border-box;
	background-image: url(image);
	max-height: 100%;
	width: 80%;
	cursor: pointer;
	border: none;
	background-color: #93A897;
	color: #FFFFFF;
	text-shadow: none;
}

#contact .mform_in .ebutton:hover {
	background-color: #0A7288;
	color:#FFFFFF;
}

@media screen and (max-width: 680px) {
#contact .mform_in .ebutton {
	width:90%;
	font-size: 88%;
	box-sizing: border-box;
}
}

#contact .mform_in .cbutton {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height: 1.6em;
	padding: 15px 0px 15px 0px;
	margin: 0 5%;
	background-image: url(image);
	max-height: 100%;
	width: 300px;
	cursor: pointer;
	border: none;
	background-color: #CCCCCC;
	color: #FFFFFF;
	text-shadow: none;
}

#contact .mform_in .cbutton:hover {
	background-color: #999999;
	color:#FFFFFF;
}

@media screen and (max-width: 680px) {
#contact .mform_in .cbutton {
	width:90%;
	font-size: 88%;
	box-sizing: border-box;
}
}

@media screen and (max-width: 680px) {
#contact input,#contact textarea {
	width: 100%;
	margin: 0;
}
}


#contact input[type="text"],#contact input[type="email"],#contact textarea {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
	line-height: 1.6em;
	text-align: left;
	background-image:url(image);
	max-height: 100%;
	outline: none;
	border: 1px solid #aaa;
	-webkit-transition: all .3s;
	transition: all .3s;
	padding: 1% 1%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
	box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
}
#contact input[type="text"]:focus,#contact input[type="email"]:focus,#contact textarea:focus {
	box-shadow: 0 0 1px #1B0023;
	border: 1px solid #1B0023;
}

#contact input[type="text"] {
	width: 60%;
	-webkit-transition: width .3s;
	transition: width .3s;
}
#contact input[type="text"]:focus
{
	width: 100%;
}
#contact input[type="email"] {
	width: 60%;
	-webkit-transition: width .3s;
	transition: width .3s;
}
#contact input[type="email"]:focus
{
	width: 100%;
}
#contact input[type="textarea"] {
	width: 100%;
}

#contact .screen-reader-response ul {
	margin: 0px 0px 0 25px;
	padding:0;
	list-style-position: outside;
	display: none;
}

#contact .screen-reader-response ul li {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
	line-height:1.8em;
	text-align: left;
	background-image:url(image);
	max-height: 100%;
	list-style: disc;
	margin-bottom: 1%;
	color: #000000;
	letter-spacing: 1px;
}

@media screen and (max-width: 680px) {
	#contact .screen-reader-response ul {
	margin: 10px 0px 0 25px;
}
	#contact .screen-reader-response ul li {
	font-size: 88%;
	line-height:1.6em;
	text-align: left;
	margin-bottom: 1%;
	}
}

#contact .wpcf7-not-valid-tip {
	display: block;
	color: #FF3F00;
}

#contact .screen-reader-response {
	color: #FF3F00;
}

#contact .wpcf7-response-output {
	margin-top: 5%;
	color: #FF3F00;
}

/*-----------------------------------------------
	#privacy
-----------------------------------------------*/

#privacy {
	position: relative;
	top: -180px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	z-index: 3;
}
@media screen and (max-width: 991px) {
	#privacy {
		margin: 0 auto;
		padding: 0;
		position: static;
	}
}

#privacy h2 {
	font-family: 'Lora', serif;
	font-size: 168%;
	font-weight: 700;
	line-height: 1.6em;
	letter-spacing: 2px;
	color: #393939;
	text-align: right;
}
@media screen and (max-width: 680px) {
	#privacy h2 {
		font-size: 128%;
		text-align: left;
	}
}

#privacy h3 {
	font-family: 'Noto Serif JP', serif;
	font-size: 88%;
	font-weight: 700;
	line-height: 1.6em;
	text-align: right;
}
@media screen and (max-width: 680px) {
	#privacy h3 {
		text-align: left;
	}
}

#privacy p.more {
	text-align: right;
}

#privacy .privacyarea {
	margin: 0 auto;
	padding: 130px 0 0 0;
	box-sizing: border-box;
	max-width: 1140px;
	min-height: 1554px;
    display: flex;
    justify-content: flex-end;
    align-items:stretch;
	position: relative;
	/*background-image: url("../img/top/bg_privacy.jpg");
	background-repeat: no-repeat;
	background-position: left top;*/
}
@media screen and (max-width: 680px) {
#privacy .privacyarea {
	flex-flow: column wrap;
	width: 100%;
	margin: 0 auto;
	padding: 0;
	min-height: auto;
	}
}

#privacy .data {
	width: 430px;
	z-index: 100;
}
@media screen and (max-width: 680px) {
	#privacy .data {
		width: 100%;
		padding: 30px 0 0 0;
	}
}

#privacy .ttl {
	margin-bottom: 100px;
	padding: 15px 25px;
	box-sizing: border-box;
	opacity:0;
}
@media screen and (max-width: 680px) {
	#privacy .ttl {
		margin-bottom: 30px;
	}
}

#privacy .txt {
	padding: 25px 25px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.8);
}

#privacy .privacytbl {
	margin: 15px auto 0 auto;
	padding: 0;
	border-collapse: collapse;
}

#privacy .privacytbl th {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	font-weight: normal;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	text-align: left;
	word-break: keep-all;
	padding-bottom: 5px;
}

#privacy .privacytbl td {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 88%;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	text-align: left;
	padding-bottom: 10px;
}

#privacy .privacyul {
	margin: 0 0 0 20px;
	padding: 0;
}
@media screen and (max-width: 680px) {
#privacy .privacyul {
	width: 100%;
	margin: 0 0 0 20px;
	padding: 0;
	}
}

#privacy .privacyul li {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 100%;
	line-height:1.6em;
	background-image:url(image);
	max-height: 100%;
	text-align: left;
}


#error {
	margin: 0 auto;
	padding: 0;
	}
@media screen and (max-width: 991px) {
#error {
	margin: 0 auto;
	}
}

#error h2 {
	font-weight: 300;
	font-size: 168%;
	padding-bottom: 5px;
	letter-spacing: 1px;
	margin-bottom: 15px;
	color: #0F467E;
	border-bottom: 1px solid #0F467E;

}
@media screen and (max-width: 680px) {
#error h2 {
	font-size: 88%;
	}
}

#error .dit {
	margin: 0 auto;
	padding: 0;
	display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center;
	height: 90vh;
	}

.bgimg_l {
	position: absolute;
	top:0;
	left: 0;
	opacity:0;
}
@media screen and (max-width: 680px) {
	.bgimg_l {
		width: 100%;
	}
}

.fade-in-l { 
　opacity:0;
  animation-name:fade-in-l;
  animation-duration:15s; 
  /*animation-iteration-count:infinite;*/
  animation-fill-mode: forwards;
}
@keyframes fade-in-l {
0% {
 opacity: 0;
 transform: translateX(-60px);
}
  50%{
    opacity: 1;
     transform: translateX(0);
  }
 100% {
 opacity:1;
 transform: translateX(0);
 } 
}

.bgimg_r {
	position: absolute;
	top:0;
	right: 0;
	opacity:0;
}
@media screen and (max-width: 680px) {
	.bgimg_r {
		width: 100%;
	}
}
.bgimg_r2 {
	position: absolute;
	top:0;
	right: 0;
	/*opacity:0;*/
}
@media screen and (max-width: 680px) {
	.bgimg_r2 {
		width: 100%;
	}
}
.fade-in-r { 
　opacity:0;
  animation-name:fade-in-r;
  animation-duration:15s; 
  /*animation-iteration-count:infinite;*/
  animation-fill-mode: forwards;
}
@keyframes fade-in-r {
0% {
 opacity: 0;
 transform: translateX(60px);
}
  50%{
    opacity: 1;
     transform: translateX(0);
  }
 100% {
 opacity:1;
 transform: translateX(0);
 } 
}

.ttls {
	background-color: #93A897;
	animation-name:fadeInAnime;
	animation-duration:3s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}