﻿/*-----------------------------------------------------------------------  
 // レイアウト  
-------------------------------------------------------------------------*/ 


/*-----------------------------------------------------------------------  
 // ページ共通 
-------------------------------------------------------------------------*/ 

html {
	height: 100%;
}

body {
	behavior:url(./csshover3.htc);
	text-align: center;
	width: 100%;
	background-color: #FFFFFF;
	color: #000000;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 16px;
	line-height: 170%;
	-webkit-print-color-adjust: exact;
}

textarea {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

a:hover {
	cursor: pointer;
	opacity: 0.5;
}


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

.site-header{
	background: rgba(255,255,255,0.8);
	padding: 0px;
	position: fixed;
	top: 0;
	transition: .5s;
	width: 100%;
	z-index: 999;
}
.site-header.hide{
    transform: translateY(-100%);
}


/*-----------------------------------------------------------------------  
 // トップページ
-------------------------------------------------------------------------*/ 

.top-media a{
	color: #000000;
	text-decoration: none;
}


.top-media-thumb{
	height: 250px;
	width: 100%;
	object-fit: cover;
}


/*-----------------------------------------------------------------------  
 // スライドイン
-------------------------------------------------------------------------*/ 

.fadein {
	opacity: 0;
	transform: translate(0,0);
	transition: all 1.5s;

	&.fadein-left{
	      transform: translate(-30px,0);
	}
	&.fadein-right{
	      transform: translate(30px,0);
	}
	&.fadein-bottom{
		transform: translate(0,100px);
	}
	&.scrollin{
		opacity: 1 !important;
		transform: translate(0, 0) !important;
	}
}

/*-----------------------------------------------------------------------  
 // 文字にアンダーライン
-------------------------------------------------------------------------*/ 

.highlight-green {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(153, 204, 51, 0.4); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/*-----------------------------------------------------------------------  
 // ボタン
-------------------------------------------------------------------------*/ 

.not-print {
	display: none;
}

@media print{
	div.noprint{
		display:none;
	}
}

img {
	border:none;
}


.scale {
    overflow: hidden;
}
.scale img {
    -moz-transition: -moz-transform 0.5s linear;
    -webkit-transition: -webkit-transform 0.5s linear;
    -o-transition: -o-transform 0.5s linear;
    -ms-transition: -ms-transform 0.5s linear;
    transition: transform 0.5s linear;
}
.scale img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


#container {
	margin: 0px auto;
	position: relative;
	min-height: 100%;
	height: 100%;
}



.centering {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.clear {
	clear: both;
}





/*-----------------------------------------------------------------------  
 // 罫線 
-------------------------------------------------------------------------*/ 

hr.solid {
	border-top: 1px solid #000000;
	border-bottom: 1px solid #FFFFFF;
}

hr.dashed {
	border-top: 1px dashed #CCCCCC;
	border-bottom: 1px solid #FFFFFF;
}



/*-----------------------------------------------------------------------  
 // PC用
-------------------------------------------------------------------------*/ 

@media screen and (min-width: 768px) {

	.none-pc {
		display: none;
	}

	#wrap{
		clear: both;
		width: 1200px;
		margin-top: 300px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 100px;
		min-height: 100vh;
		text-align: left;
		font-size: 26px;
		font-weight: 400;
		line-height: 170%;

	}

	div.height-adjustment {
		padding-top: 220px;
		margin-top: -220px;
	}

	div.height-adjustment-bottom {
		clear: both;
		margin-bottom: 100px;
	}

	h2 {
		color: #000000;
		font-size: 90px;
		line-height: 90px;
		margin-bottom: 10px;
	}

	h3 {
		color: #000000;
		font-size: 50px;
		line-height: 60px;
	}

	.unit {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 20px 0px 150px 0px;
	}

	/*-----------------------------------------------------------------------  
	 // トップに戻るボタン
	-------------------------------------------------------------------------*/ 

	.pagetop-button {
		display: inline-block;
		color: #FFFFFF;
		text-decoration: none;
		background-color: #000000;
		border-radius: 5px;
		position:  relative;
		height: 100px;
		width: 50px;
	}

	.pagetop-button::before {
		content: '';
		width: 20px;
		height: 20px;
		display: block;
		border-top: solid 2px;
		border-right: solid 2px;
		transform: rotate(-45deg);
		position: absolute;
		top: 10px;
		bottom: 35px;
		left: 0;
		right: 0;
		margin: auto;
	}

	.pagetop-button:hover {
		background-color: #99CC33;
		opacity: 1.0;
	}

	#pagetop {
		z-index: 1;
		position: fixed;
		right: 70px;
		bottom: 250px;
	}

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

	#header {
		width: 100%;
		height: 100px;
		border-bottom: 6px solid #000000;
		padding-top: 30px;
		padding-bottom: 30px;
		margin-bottom: 20px;
		background-color: #FFFFFF;
	}

	#logo-header {
		position: fixed;
		top: 30px;
		left: 50px;
	}
	#logo-header img {
		width: 250px;
	}

	#global-menu {
		position: fixed;
		top: 70px;
		right: 50px;
	}
	#global-menu li { 
		display: inline-block;
		margin-left: 20px;
	}
	#global-menu a {
		position: relative;
		color: #000000;
		font-size: 22px;
		font-weight: bold;
		text-decoration: none;
		white-space: pre-wrap;
	}

	#global-menu li a:after {
		position: absolute;
		bottom: 22px;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		background-color: #000000;
		transition: all .5s;
		transform: scaleX(0);
	}

	#global-menu li p {
		white-space: pre-wrap;
		font-size: 14px;
		font-weight: 300;
		line-height: 12px;
		transition: all 0.5s;
		transition-timing-function: ease-in;
		opacity:0;
	}

	#global-menu li a:hover {
		opacity: 1.0;
	}

	#global-menu li a:hover::after {
		transform: scaleX(1);
	}

	#global-menu li a:hover p {
		opacity:1;
	}



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

	#footer {
		width: 100%;
		height: 250px;
		background: linear-gradient(106deg, #000000 0%, #000000 70%, #99CC33 70%, #99CC33 100%);
		color: #FFFFFF;
		padding-top: 20px;
		padding-bottom: 20px;
		position: relative;
	}

	.global-menu-footer { 
		position: absolute;
		top: 50px;
		left: 50px;
	}

	.global-menu-footer li { 
		display: inline-block;
		margin-right: 20px;
	}

	.global-menu-footer a {
		position: relative;
		color: #FFFFFF;
		font-size: 20px;
		font-weight: bold;
		text-decoration: none;
	}

	.global-menu-footer li a:after {
		position: absolute;
		bottom: -5px;
		left: 0;
		content: '';
		width: 100%;
		height: 1px;
		background-color: #FFFFFF;
		transition: all .5s;
		transform: scaleX(0);
	}

	.global-menu-footer li a:hover::after {
		transform: scaleX(1);
	}

	.office-footer{
		text-align: left;
		position: absolute;
		top: 120px;
		left: 90px;
	}

	.office-footer-company {
		font-size: 24px;
	}

	#logo-footer {
		position: absolute;
		top: 90px;
		right: 90px;
	}
	#logo-footer img {
		width: 200px;
	}

	/*-------------------------------------------------  
	 // トップページ
	--------------------------------------------------*/

	.top-compose {
		height: 800px;
		padding-top: 100px;
		margin-bottom: 100px;
	}

	.top-compose-move {
		font-size: 300px;
		font-weight: 700;
	}

	.top-compose-1 {
		position: relative;
		top: 0px;
		left:0px;	
		animation: top-compose-1 3s 1;
	}

	@keyframes top-compose-1 {
		0% {
			transform: translate(0px, 400px);
			opacity: 0;
		}
		100% {
			transform: translate(0, 0);
			opacity: 1;
		}
	}

	.top-compose-2 {
		position: relative;
		top: 270px;
		left: 0px;
		animation: top-compose-2 3s 1;
		animation-delay: top-compose-2 1.0s;
	}

	@keyframes top-compose-2 {
		0% {
			transform: translate(0px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}

	.top-compose-3 {
		position: relative;
		top: 540px;
		left: 0px;
		animation: top-compose-3 3s 1;
		animation-delay: top-compose-3 2.0s;
	}

	@keyframes top-compose-3 {
		0% {
			transform: translate(0px, -400px);
			opacity: 0;
		}
		100% {
			transform: translate(0, 0);
			opacity: 1;
		}
	}


	.right-left {
		background: linear-gradient(-90deg, #FFFFFF 57%, #FFFFFF 43%);
	}

	.right-left span {
		background: linear-gradient(-90deg, #99CC33 57%, #000000 43%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-transform: uppercase;
		white-space: nowrap;
	}


	.top-compose-text {
		position: relative;
		top: 100px;
		left: 350px;
		width: 850px;
		animation: top-compose-text 10s 1;
		animation-delay: top-compose-text 5.0s;
	}

	@keyframes top-compose-text {
		0% {
			transform: translate(0px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}



	.top-text {
		margin-bottom: 70px;
	}

	.top-media {

	}

	.top-media-article {
		display: inline-block;
		vertical-align: top;
		width: 30%;
		margin-bottom: 40px;
		margin-right: 20px;
	}

	.top-media-article-title {
		font-size: 30px;
		line-height: 36px;
		font-weight: 800;
		margin-bottom: 10px;
	}

	.top-media-article-excerpt {
		font-size: 20px;
		line-height: 28px;
	}

	.top-media-article-date {
		text-align: right;
		font-size: 20px;
	}

	/*-------------------------------------------------  
	 // サービス
	--------------------------------------------------*/

	.service-top {
		width: 100%;
		height: 500px;
		padding-top: 40px;
		margin-bottom: 50px;
	}

	.service-top-box-message {
		font-size: 60px;
		font-weight: 800;
		color: #FFFFFF;
		width: 1200px;
		height: 120px;
		line-height: 120px;
		padding: 0px;
		margin: 0px 0px 40px 0px;
		box-sizing: border-box;
		text-align: center;
	}

	.service-top-box-message span {
		padding-left: 20px;
		letter-spacing: 5px;
	}

	.service-top-text {
		font-size: 32px;
		animation-name: service-top-text;
		animation-duration: 1s;
		animation-delay: 0.6s;
		animation-fill-mode:forwards;
		opacity:0;
	}
	
	@keyframes service-top-text{
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}


	/*背景色が伸びて出現 共通*/
	.bgextend{
		animation-name:bgextendAnimeBase;
		animation-duration:1s;
		animation-fill-mode:forwards;
		position: relative;
		overflow: hidden;/*　はみ出た色要素を隠す　*/
		opacity:0;
	}

	@keyframes bgextendAnimeBase{
		from {
			opacity:0;
		}

		to {
			opacity:1;  
		}
	}

	/*中の要素*/
	.bgappear{
		animation-name:bgextendAnimeSecond;
		animation-duration:1s;
		animation-delay: 0.6s;
		animation-fill-mode:forwards;
		opacity: 0;
		position: relative;
		top: 0px;
		left: -10px;
	}

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

	/*--------- 左から --------*/
	.bgLRextend::before{
		animation-name:bgLRextendAnime;
		animation-duration:1s;
		animation-fill-mode:forwards;
		content: "";
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		background-color: #99CC33;/*伸びる背景色の設定*/
	}


	@keyframes bgLRextendAnime{
		0% {
			transform-origin:left;
			transform:scaleX(0);
		}
		50% {
			transform-origin:left;
			transform:scaleX(1);
		}
	}


	.service-top-box {
		width: 370px;
		height: 370px;
		border: 1px solid #000000;
		text-align: center;
  		display: grid;
		justify-items: center;
		align-content: center;
	}

	.service-top-box-1 {
		position: relative;
		top: 0px;
		left: 0px;
		animation: service-top-box-1 1.0s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-1 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}

	.service-top-box-2 {
		position: relative;
		top: -370px;
		left: 415px;
		animation: service-top-box-2 1.5s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-2 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}

	.service-top-box-3 {
		position: relative;
		top: -740px;
		left: 830px;
		animation: service-top-box-3 2.0s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-3 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}


	.service-top-box-caption {
		font-size: 46px;
		font-weight: 700;

	}

	.service-top-box-caption-japanese {
		font-size: 26px;
		font-weight: 500;

	}


	.service-top-arrow {
		position: relative;
		width: 110px;
		height: 20px;
		background: #99CC33;
	}
	.service-top-arrow::after {
		content: "";
		position: absolute;
		right: -19px;
		border-left: 10px solid #99CC33;
		border-top: 10px solid transparent;
		border-right: 10px solid transparent;
		border-bottom: 10px solid transparent;
	}

	.service-top-arrow-1 {
		position: relative;
		top: -820px;
		left: 335px;
		animation: service-top-arrow-1 0.3s 1;
		animation-delay: 1.5s;
		opacity: 0;
		animation-fill-mode: forwards;
	}

	@keyframes service-top-arrow-1 {
		0% {
			transform: translate(-100px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0, 0);
			opacity: 1;
		}
	}

	.service-top-arrow-2 {
		position: relative;
		top: -840px;
		left: 750px;
		animation: service-top-arrow-2 0.3s 1;
		animation-delay: 1.5s;
		opacity: 0;
		animation-fill-mode: forwards;
	}

	@keyframes service-top-arrow-2 {
		0% {
			transform: translate(-100px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0, 0);
			opacity: 1;
		}
	}


	.service {
		margin-top: 50px;
		margin-bottom: 150px;
		clear: both;
	}

	.service h4 {
		width: 400px;
		font-size: 28px;
		letter-spacing: 5px;
		display: inline-block;
		margin: 0 .1em .6em 0;
		padding: .6em;
		line-height: 1;
		text-decoration: none;
		color: #FFFFFF;
		background-color: #99CC33;
		border: 1px solid #6A8429;
		border-left: 10px solid #6A8429;

	}

	.service-arrow {
		margin-top: -38px;
		margin-bottom: 20px;
		margin-left: 20px;
		width: 500px;
		height: 10px;
		border-bottom: 1.5px solid #6A8429;
		border-right: 3px solid #6A8429;
		transform: skew(45deg);
	}

	.service h5 {
		font-size: 50px;
		font-weight: bold;
		margin-top: 50px;
		margin-bottom: 20px;
	}

	.service-exp {
		margin-bottom: 20px;
	}

	.service span {
		display: inline-block;
		margin: 0 10px 10px 0;
		padding: .6em;
		font-size: 20px;
		line-height: 1;
		text-decoration: none;
		color: #000000;
		background-color: #FFFFFF;
		border: 1px solid #000000;
	}


	/*---------- 参考価格 ----------*/
	.service-price {
		position:relative;
		border:1px solid #6A8429;
		border-radius: 5px;
		padding: 30px 0px 10px 50px;
		margin-top: 50px;
	}

	.service-price:before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(-45deg, #99CC33 5%, #FFFFFF 0 5%);
		content: '';
		z-index: -1;
	}

	.service-price-title {
		font-size: 36px;
		font-weight: 700;
		letter-spacing: 5px;
		color: #6A8429;
		position: absolute;
		top: -20px;
		left: 10px;
		padding: 5px 25px;
		background-color:#FFFFFF;
		border-radius: 5px;
		line-height: 1em;
	}

	.service-price-title span {
		border: none;
		font-size: 20px;
		font-weight: 400;
		letter-spacing: 0px;
		color: #6A8429;
		padding: 0px;
		margin-left: 20px;
		margin-top: -10px;
	}

	.service-price-reference {
		clear: both;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.service-price-reference-item {
		float: left;
		font-weight: 600;
	}

	.service-price-reference-arrow {
		float: left;
		margin-top: 15px;
		margin-left: 30px;
		margin-right: 30px;
		width: 30px;
		height: 7px;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		transform: skew(45deg);
	}

	.service-price-reference-fee {
		float: left;
		font-weight: 600;
	}

	.service-price-reference-remarks {
		clear: both;
		font-size: 20px;
		font-weight: 300;
		line-height: 26px;
		margin-left: 20px;
	}




	/*-------------------------------------------------  
	 // オフィス
	--------------------------------------------------*/

	.office {
		width: 100%;
		margin-bottom: 30px;
		clear: both;
	}

	.office-caption {
		float: left;
		width: 150px;
	}

	.office-arrow {
		float: left;
		margin-top: 15px;
		margin-right: 40px;
		width: 30px;
		height: 7px;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		transform: skew(45deg);
	}

	.office-content {
		float: left;
		width: 1020x;
	}

	.office-plofile {
		margin-top: 100px;
		clear: both;
	}

	.office-plofile h3 {
		margin-bottom: 10px;
	}

	.office-plofile-arrow {
		margin-top: 0px;
		margin-bottom: 20px;
		width: 450px;
		height: 7px;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		transform: skew(45deg);
	}

	.office-plofile span {
		margin-bottom: 20px;
	}

	/*-------------------------------------------------  
	 // お問合わせ
	--------------------------------------------------*/

	.contact-item {
		margin-bottom: 15px;
	}

	.required {
	    color: #E60012;
	}
	.required:after {
	    content: " *";
	}

	#contact input {
		width: 100%;
		height: 40px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 20px;
	}

	#contact textarea {
		width: 100%;
		height: 400px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 20px;
	}

	.contact-alert {
		font-size: 16px;
		color: #E60012;
	}

	.contact-submit {
		width: 70%;
		height: 70px;
		line-height: 70px;
		font-size: 26px;
		font-weight: 500;
		letter-spacing: 5px;
		cursor: pointer;
		color: #000000;

		display: block;
		background: linear-gradient(to right, #8FC31F 50%, #FFFFFF 50%);

		background-size: 200% 100.5%;
		background-position: right bottom;
		border: none;
		border: 1px solid #8FC31F;
		border-left: 20px solid #8FC31F;
		border-color: none;
		transition: all 0.2s ease-out;
	}
	.contact-submit:hover {
		background-position: left bottom;
		color: #FFFFFF;
	}

}


/*-----------------------------------------------------------------------  
 // タブレット用
-------------------------------------------------------------------------*/ 

@media only screen and (min-width: 767px) and (max-width: 1280px) {

	.none-pc {
		display: none;
	}

	#wrap{
		clear: both;
		width: 90%;
		margin-top: 260px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 100px;
		min-height: 100vh;
		text-align: left;
		font-size: 20px;
		font-weight: 300;
		line-height: 160%;
		
	}

	.unit {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 20px 0px 0px 0px;
	}

	div.height-adjustment {
		padding-top: 220px;
		margin-top: -220px;
	}

	div.height-adjustment-bottom {
		clear: both;
		margin-bottom: 150px;
	}

	h2 {
		color: #000000;
		font-size: 60px;
		line-height: 60px;
	}

	h3 {
		color: #000000;
		font-size: 35px;
		font-weight: 500;
		line-height: 35px;
	}


	/*-----------------------------------------------------------------------  
	 // トップに戻るボタン
	-------------------------------------------------------------------------*/ 

	.pagetop-button {
		display: inline-block;
		color: #FFFFFF;
		text-decoration: none;
		background-color: #000000;
		border-radius: 5px;
		position:  relative;
		height: 80px;
		width: 50px;
	}

	.pagetop-button::before {
		content: '';
		width: 20px;
		height: 20px;
		display: block;
		border-top: solid 2px;
		border-right: solid 2px;
		transform: rotate(-45deg);
		position: absolute;
		top: 10px;
		bottom: 15px;
		left: 0;
		right: 0;
		margin: auto;
	}

	.pagetop-button:hover {
		background-color: #99CC33;
		opacity: 1.0;
	}

	#pagetop {
		z-index: 1;
		position: fixed;
		right: 5px;
		bottom: 100px;
		width: 70px;
		height: 140px;
	}

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

	#header {
		width: 100%;
		height: 120px;
		border-bottom: 2px solid #000000;
		margin-bottom: 20px;
		background-color: #FFFFFF;
	}

	#logo-header {
		position: fixed;
		top: 20px;
		left: 20px;
	}

	#logo-header img {
		width: 180px;
	}

	#global-menu {
		position: fixed;
		top: 90px;
		right: 30px;
	}

	#global-menu li { 
		display: inline-block;
		margin-left: 8px;
	}
	#global-menu a {
		position: relative;
		color: #000000;
		font-size: 18px;
		font-weight: bold;
		text-decoration: none;
	}

	#global-menu li p {
		white-space: pre-wrap;
		font-size: 12px;
		font-weight: 300;
		margin-top: 0px;
		line-height: 8px;
		opacity:1;
	}

	#global-menu li a:after {
		background: none;
	}



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

	#footer {
		width: 100%;
		height: 150px;
		background: linear-gradient(106deg, #000000 0%, #000000 65%, #99CC33 65%, #99CC33 100%);
		color: #FFFFFF;
	}

	.global-menu-footer {
		display: none;
	}

	.office-footer{
		position: absolute;
		top: 50px;
		left: 5%;
		text-align: left;
		font-size: 18px;
	}

	.office-footer-company {
		font-size: 24px;
	}

	#logo-footer {
		position: absolute;
		top: 60px;
		right: 5%;
	}

	#logo-footer img {
		width: 150px;
	}

	/*-------------------------------------------------  
	 // トップページ
	--------------------------------------------------*/

	.top-compose {
		width: 100%;
		height: 400px;
		padding-top: 120px;
		margin-bottom: 50px;
	}

	.top-compose-left {
		float: left;
		width: 30%;
		height: 100%;
	}

	.top-compose-right {
		float: right;
		width: 70%;
		height: 100%;
		text-align: left;		
	}

	.top-compose-move {
		font-size: clamp(40px, 19.0vw, 180px);
		font-weight: 700;
		line-height: 0px;
		margin: 0px 0px 0px 0px;
	}

	.top-compose-1 {
		position: relative;
		top: 0%;
		left:0%;	
		animation: top-compose-1 3s 1;
	}

	@keyframes top-compose-1 {
		0% {
			transform: translate(0px, 180px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}

	.top-compose-2 {
		position: relative;
		top: 45%;
		left: 0%;
		animation: top-compose-2 3s 1;
		animation-delay: top-compose-2 1.0s;
	}

	@keyframes top-compose-2 {
		0% {
			transform: translate(0px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}

	.top-compose-3 {
		position: relative;
		top: 90%;
		left: 0%;
		animation: top-compose-3 3s 1;
		animation-delay: top-compose-3 2.0s;
	}

	@keyframes top-compose-3 {
		0% {
			transform: translate(0px, -180px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}

	.right-left {
		background: linear-gradient(-90deg, #FFFFFF 60%, #FFFFFF 40%);
	}

	.right-left span {
		background: linear-gradient(-90deg, #99CC33 60%, #000000 40%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.top-compose-text {
		position: relative;
		top: 20%;
		left: 0%;
		animation: top-compose-text 10s 1;
		animation-delay: top-compose-text 5.0s;
		width: 100%;
	}

	@keyframes top-compose-text {
		0% {
			transform: translate(0px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}

	.top-text {
		width: 100%;
		margin-bottom: 30px;
	}

	.top-media {
		width: 100%;
	}

	.top-media-article {
		display: inline-block;
		vertical-align: top;
		width: 47%;
		margin-bottom: 40px;
		margin-right: 2%;
		margin-left: 0%;
	}

	.top-media-article-title {
		font-size: 24px;
		font-weight: 600;
		line-height: 34px;
		margin-bottom: 10px;
	}

	.top-media-article-excerpt {
		font-size: 18px;
	}

	.top-media-article-date {
		text-align: right;
	}



	/*-------------------------------------------------  
	 // サービス
	--------------------------------------------------*/

	.service-top {
		width: 100%;
		height: 300px;
		padding-top: 30px;
		margin-bottom: 50px;
	}

	.service-top-box-message {
		font-size: 38px;
		font-weight: 600;
		color: #FFFFFF;
		width: 100%;
		height: 80px;
		line-height: 80px;
		padding: 0px;
		margin: 0px 0px 30px 0px;
		box-sizing: border-box;
		text-align: center;
	}

	.service-top-box-message span {
		padding-left: 20px;
		letter-spacing: 5px;
	}
	
	.service-top-text {
		font-size: 22px;
		animation-name: service-top-text;
		animation-duration: 1s;
		animation-delay: 0.6s;
		animation-fill-mode:forwards;
		opacity:0;
	}
	
	@keyframes service-top-text{
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}

	/*背景色が伸びて出現 共通*/
	.bgextend{
		animation-name:bgextendAnimeBase;
		animation-duration:1s;
		animation-fill-mode:forwards;
		position: relative;
		overflow: hidden;/*　はみ出た色要素を隠す　*/
		opacity:0;
	}

	@keyframes bgextendAnimeBase{
		from {
			opacity:0;
		}

		to {
			opacity:1;  
		}
	}

	/*中の要素*/
	.bgappear{
		animation-name:bgextendAnimeSecond;
		animation-duration:1s;
		animation-delay: 0.6s;
		animation-fill-mode:forwards;
		opacity: 0;
		position: relative;
		top: 0px;
		left:-1%;
	}

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

	/*--------- 左から --------*/
	.bgLRextend::before{
		animation-name:bgLRextendAnime;
		animation-duration:1s;
		animation-fill-mode:forwards;
		content: "";
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		background-color: #99CC33;/*伸びる背景色の設定*/
	}


	@keyframes bgLRextendAnime{
		0% {
			transform-origin:left;
			transform:scaleX(0);
		}
		50% {
			transform-origin:left;
			transform:scaleX(1);
		}
	}


	.service-top-box {
		width: 31%;
		height: 300px;
		border: 1px solid #000000;
		text-align: center;
  		display: grid;
		justify-items: center;
		align-content: center;
	}

	.service-top-box-1 {
		position: relative;
		top: 0px;
		left: 0px;
		animation: service-top-box-1 1.0s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-1 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}

	.service-top-box-2 {
		position: relative;
		top: -302px;
		left: 34%;
		animation: service-top-box-2 1.5s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-2 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}

	.service-top-box-3 {
		position: relative;
		top: -604px;
		left: 68%;
		animation: service-top-box-3 2.0s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-3 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}


	.service-top-box-caption {
		font-size: 28px;
		font-weight: 700;

	}

	.service-top-box-caption-japanese {
		font-size: 20px;
		font-weight: 500;

	}


	.service-top-arrow {
		position: relative;
		width: 9%;
		height: 10px;
		background: #99CC33;
	}
	.service-top-arrow::after {
		content: "";
		position: absolute;
		right: -10px;
		border-left: 5px solid #99CC33;
		border-top: 5px solid transparent;
		border-right: 5px solid transparent;
		border-bottom: 5px solid transparent;
	}

	.service-top-arrow-1 {
		position: relative;
		top: -670px;
		left: 28%;
		animation: service-top-arrow-1 0.3s 1;
		animation-delay: 1.5s;
		opacity: 0;
		animation-fill-mode: forwards;
	}

	@keyframes service-top-arrow-1 {
		0% {
			transform: translate(-50px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0, 0);
			opacity: 1;
		}
	}

	.service-top-arrow-2 {
		position: relative;
		top: -680px;
		left: 62%;
		animation: service-top-arrow-2 0.3s 1;
		animation-delay: 1.5s;
		opacity: 0;
		animation-fill-mode: forwards;
	}

	@keyframes service-top-arrow-2 {
		0% {
			transform: translate(-50px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0, 0);
			opacity: 1;
		}
	}



	.service {
		margin-top: 50px;
		margin-bottom: 100px;
		clear: both;
	}

	.service h4 {
		width: 350px;
		font-size: 26px;
		letter-spacing: 3px;
		font-weight: 600;
		display: inline-block;
		margin: 0 .1em .6em 0;
		padding: .6em;
		line-height: 1;
		text-decoration: none;
		color: #FFFFFF;
		background-color: #99CC33;
		border: 1px solid #6A8429;
		border-left: 10px solid #6A8429;

	}

	.service-arrow {
		margin-top: -38px;
		margin-bottom: 20px;
		margin-left: 20px;
		width: 500px;
		height: 10px;
		border-bottom: 1.5px solid #6A8429;
		border-right: 3px solid #6A8429;
		transform: skew(45deg);
	}

	.service h5 {
		font-size: 36px;
		font-weight: 600;
		line-height: 50px;
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.service-exp {
		margin-bottom: 20px;
	}

	.service span {
		display: inline-block;
		margin: 0 5px 5px 0;
		padding: .5em;
		font-size: 16px;
		line-height: 1;
		text-decoration: none;
		color: #000000;
		background-color: #FFFFFF;
		border: 1px solid #000000;
	}

	/*---------- 参考価格 ----------*/
	.service-price {
		position:relative;
		border:1px solid #6A8429;
		border-radius: 5px;
		padding: 30px 0px 10px 30px;
		margin-top: 50px;
	}

	.service-price:before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(-45deg, #99CC33 3%, #FFFFFF 0 3%);
		content: '';
		z-index: -1;
	}

	.service-price-title {
		font-size: 36px;
		font-weight: 700;
		letter-spacing: 5px;
		color: #6A8429;
		position: absolute;
		top: -20px;
		left: 10px;
		padding: 5px 25px;
		background-color:#FFFFFF;
		border-radius: 5px;
		line-height: 1em;
	}

	.service-price-title span {
		border: none;
		font-size: 20px;
		font-weight: 400;
		letter-spacing: 0px;
		color: #6A8429;
		padding: 0px;
		margin-left: 20px;
		margin-top: -10px;
	}

	.service-price-reference {
		clear: both;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.service-price-reference-item {
		float: left;
		font-weight: 600;
	}

	.service-price-reference-arrow {
		float: left;
		margin-top: 10px;
		margin-left: 20px;
		margin-right: 20px;
		width: 25px;
		height: 7px;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		transform: skew(45deg);
	}

	.service-price-reference-fee {
		float: left;
		font-weight: 600;
	}

	.service-price-reference-remarks {
		clear: both;
		font-size: 18px;
		font-weight: 300;
		line-height: 20px;
		margin-left: 20px;
	}


	/*-------------------------------------------------  
	 // オフィス
	--------------------------------------------------*/

	.office {
		width: 100%;
		margin-bottom: 30px;
		clear: both;
	}

	.office-caption {
		float: left;
		width: 100px;
		font-weight: 600;
	}

	.office-arrow {
		float: left;
		margin-top: 15px;
		margin-right: 30px;
		width: 20px;
		height: 7px;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		transform: skew(45deg);
	}

	.office-content {
		float: left;
		width: auto;
	}

	.office-plofile {
		margin-top: 100px;
		clear: both;
	}

	.office-plofile h3 {
		margin-bottom: 10px;
	}

	.office-plofile-arrow {
		margin-top: 0px;
		margin-bottom: 20px;
		width: 400px;
		height: 7px;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		transform: skew(45deg);
	}

	.office-plofile span {
		margin-bottom: 10px;
		font-weight: 600;
	}

	/*-------------------------------------------------  
	 // お問合わせ
	--------------------------------------------------*/

	.contact-item {
		margin-bottom: 15px;
	}

	.required {
	    color: #E60012;
	}
	.required:after {
	    content: " *";
	}

	#contact input {
		width: 100%;
		height: 40px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 18px;
	}

	#contact textarea {
		width: 100%;
		height: 300px;
		padding: 5px;
		margin-bottom: 5px;
		font-size: 18px;
	}

	.contact-alert {
		font-size: 16px;
		color: #E60012;
	}

	.contact-submit {
		width: 70%;
		height: 70px;
		line-height: 70px;
		font-size: 26px;
		font-weight: 500;
		letter-spacing: 5px;
		cursor: pointer;
		color: #000000;

		display: block;
		background: linear-gradient(to right, #8FC31F 50%, #FFFFFF 50%);

		background-size: 200% 100.5%;
		background-position: right bottom;
		border: none;
		border: 1px solid #8FC31F;
		border-left: 20px solid #8FC31F;
		border-color: none;
		transition: all 0.2s ease-out;
	}
	.contact-submit:hover {
		background-position: left bottom;
		color: #FFFFFF;
	}


}


/*-----------------------------------------------------------------------  
 // スマートフォン用
-------------------------------------------------------------------------*/ 

@media screen and (max-width: 767px) {

	.none-sp {
		display: none;
	}

	#wrap{
		clear: both;
		width: 90%;
		margin-top: 100px;
		margin-bottom: 100px;
		margin-left: auto;
		margin-right: auto;
		min-height: 100vh;
		text-align: left;
		font-size: 18px;
		font-weight: 300;
		line-height: 150%;
	}

	div.height-adjustment {
		padding-top: 180px;
		margin-top: -180px;
	}

	div.height-adjustment-bottom {
		clear: both;
		margin-bottom: 30px;
	}

	h2 {
		color: #000000;
		font-size: 56px;
		line-height: 60px;
		margin-bottom: -10px;
	}

	h3 {
		color: #000000;
		font-size: 30px;
		font-weight: 500;
		line-height: 40px;
	}

	.unit {
		clear: both;
		width: 100%;
		text-align: left;
		margin: 10px 0px 30px 0px;
	}

	/*-----------------------------------------------------------------------  
	 // トップに戻るボタン
	-------------------------------------------------------------------------*/ 

	.pagetop-button {
		display: inline-block;
		color: #FFFFFF;
		text-decoration: none;
		background-color: #000000;
		border-radius: 5px;
		position:  relative;
		height: 50px;
		width: 50px;
	}

	.pagetop-button::before {
		content: '';
		width: 20px;
		height: 20px;
		display: block;
		border-top: solid 2px;
		border-right: solid 2px;
		transform: rotate(-45deg);
		position: absolute;
		top: 10px;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}

	.pagetop-button:hover {
		background-color: #99CC33;
		opacity: 1.0;
	}

	#pagetop {
		position: absolute;
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

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

	#header {
		width: 100%;
		height: 50px;
		border-bottom: 2px solid #000000;
		padding-top: 10px;
		padding-bottom: 10px;
		margin-bottom: 20px;
		background-color: #FFFFFF;
	}

	#logo-header {
		position: fixed;
		top: 10px;
		left: 10px;
	}
	#logo-header img {
		width: 120px;
	}

	/************ ドロワーメニュー ************/


	.drawer-nav ul {
		height: 70%;
		background-color: #000000;
		padding-top: 50px;
		padding-left: 35px;
	}

	.drawer-nav li {
		text-align: left;
		margin-bottom: 15px;
		line-height: 20px;
	}

	.drawer-nav a{
		color: #FFFFFF;
		font-size: 20px;
		font-weight: 700;
		letter-spacing: 3px;
		text-decoration: none;
	}

	.drawer-nav span{
		font-size: 14px;
		font-weight: 300;
		letter-spacing: normal;
		margin-top: -15px;
	}

	.logo-nav {
		margin: 0px;
		height: 30%;
	}

	.logo-nav li {
		background: linear-gradient(106deg, #000000 0%, #000000 75%, #99CC33 75%, #99CC33 100%);
	}

	.logo-nav img {
		margin-top: 5%;
		width: 60%;
	}

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

	#footer {
		width: 100%;
		height: 230px;
		background-color: #000000;
		color: #FFFFFF;
		padding-top: 20px;
		padding-bottom: 20px;
		position: relative;
	}

	.global-menu-footer { 
		display: none;
	}

	.office-footer{
		width: 90%;
		font-size: 15px;
		position: absolute;
		top: 50px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
	}

	.office-footer-company {
		font-size: 20px;
	}

	#logo-footer {
		width: 90%;
		margin-top: 110px;
		position: absolute;
		top: 50px;
		left: 50%;
		transform: translateX(-50%);
		text-align: center;
	}

	#logo-footer img {
		width: 150px;
	}


	/*-------------------------------------------------  
	 // トップページ
	--------------------------------------------------*/

	.top-compose {
		width: 100%;
		height: 250px;
		padding-top: 70px;
		margin-bottom: 70px;
	}

	.top-compose-left {
		display: inline-block;
		float: left;
		width: 30%;
		height: 100%;
	}

	.top-compose-right {
		float: left;
		width: 70%;
		text-align: left;
	}

	.top-compose-move {
		font-size: clamp(30px, 22.0vw, 115px);
		font-weight: 700;
		line-height: 0px;
		margin: 0px 0px 0px 0px;
	}

	.top-compose-1 {
		position: relative;
		top: 0%;
		left:0%;	
		animation: top-compose-1 3s 1;
	}

	@keyframes top-compose-1 {
		0% {
			transform: translate(0px, 150px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}

	.top-compose-2 {
		position: relative;
		top: 45%;
		left: 0%;
		animation: top-compose-2 3s 1;
		animation-delay: top-compose-2 1.0s;
	}

	@keyframes top-compose-2 {
		0% {
			transform: translate(0px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}

	.top-compose-3 {
		position: relative;
		top: 90%;
		left: 0%;
		animation: top-compose-3 3s 1;
		animation-delay: top-compose-3 2.0s;
	}

	@keyframes top-compose-3 {
		0% {
			transform: translate(0px, -150px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}


	.right-left {
		background: linear-gradient(-90deg, #FFFFFF 57%, #FFFFFF 43%);
	}

	.right-left span {
		background: linear-gradient(-90deg, #99CC33 57%, #000000 43%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-transform: uppercase;
		white-space: nowrap;
	}


	.top-compose-text {
		display: inline-block;
		width: 100%;
		position: relative;
		top: 20%;
		left: 0%;
		animation: top-compose-text 5s 1;
		animation-delay: top-compose-text 5.0s;
	}

	@keyframes top-compose-text {
		0% {
			transform: translate(0px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0px, 0px);
			opacity: 1;
		}
	}

	.top-text {
		width: 100%;
		margin-bottom: 30px;
	}

	.top-media {
		width: 100%;
	}

	.top-media-article {
		display: inline-block;
		vertical-align: top;
		width: 47%;
		margin-bottom: 40px;
		margin-right: 2%;
		margin-left: 0%;
	}

	.top-media-thumb{
		height: 120px;
		width: 100%;
		object-fit: cover;
	}

	.top-media-article-title {
		font-size: 18px;
		line-height: 20px;
		font-weight: 600;
		margin-bottom: 10px;
	}

	.top-media-article-excerpt {
		word-wrap:break-word;
		font-size: 16px;
		line-height: 18px;
	}

	.top-media-article-date {
		font-size: 14px;
		text-align: right;
	}

	/*-------------------------------------------------  
	 // サービス
	--------------------------------------------------*/

	.service-top {
		width: 100%;
		height: 460px;
		padding-top: 20px;
		margin: 0px 0px 0px 0px;
	}

	.service-top-box-message {
		font-size: 32px;
		font-weight: 600;
		color: #FFFFFF;
		width: 100%;
		height: 120px;
		line-height: 45px;
		padding: 20px 0px 20px 0px;
		margin: 0px 0px 20px 0px;
		box-sizing: border-box;
		text-align: center;
	}

	.service-top-box-message span {
		letter-spacing: 0px;
	}
	
	.service-top-text {
		font-size: 20px;
		animation-name: service-top-text;
		animation-duration: 1s;
		animation-delay: 0.6s;
		animation-fill-mode:forwards;
		opacity:0;
	}
	
	@keyframes service-top-text{
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}

	/*背景色が伸びて出現 共通*/
	.bgextend{
		animation-name:bgextendAnimeBase;
		animation-duration:1s;
		animation-fill-mode:forwards;
		position: relative;
		overflow: hidden;/*　はみ出た色要素を隠す　*/
		opacity:0;
	}

	@keyframes bgextendAnimeBase{
		from {
			opacity:0;
		}

		to {
			opacity:1;  
		}
	}

	/*--------- 左から --------*/
	.bgLRextend::before{
		animation-name:bgLRextendAnime;
		animation-duration:1s;
		animation-fill-mode:forwards;
		content: "";
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 100%;
		background-color: #99CC33;/*伸びる背景色の設定*/
	}

	@keyframes bgLRextendAnime{
		0% {
			transform-origin:left;
			transform:scaleX(0);
		}
		50% {
			transform-origin:left;
			transform:scaleX(1);
		}
	}

	/*中の要素*/
	.bgappear{
		animation-name: bgextendAnimeSecond;
		animation-duration:1s;
		animation-delay: 0.6s;
		animation-fill-mode: forwards;
		opacity: 0;
		position: relative;
		top: 0px;
		left:0px;
	}

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


	.service-top-box {
		width: 100%;
		height: 120px;
		border: 1px solid #000000;
		text-align: center;
		line-height: 20px;
  		display: grid;
		justify-items: center;
		align-content: center;
	}


	.service-top-box-1 {
		position: relative;
		top: 0px;
		left: 0px;
		animation: service-top-box-1 1.0s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-1 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}

	.service-top-box-2 {
		position: relative;
		top: 20px;
		left: 0px;
		animation: service-top-box-2 1.5s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-2 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}

	.service-top-box-3 {
		position: relative;
		top: 40px;
		left: 0px;
		animation: service-top-box-3 2.0s;
		animation-delay: 0.0s;
	}

	@keyframes service-top-box-3 {
		0% {
			opacity: 0;
		}
		70% {
			opacity: 0;	
		}
		100% {
			opacity: 1;
		}
	}



	.service-top-box-caption {
		font-size: 30px;
		font-weight: 700;

	}

	.service-top-box-caption-japanese {
		font-size: 20px;
		font-weight: 500;

	}


	.service-top-arrow {
		position: relative;
		width: 10px;
		height: 50px;
		background: #99CC33;
	}
	.service-top-arrow::after {
		content: "";
		position: absolute;
		bottom: -10px;
		border-left: 5px solid transparent;
		border-top: 5px solid #99CC33;
		border-right: 5px solid transparent;
		border-bottom: 5px solid transparent;
	}

	.service-top-arrow-1 {
		position: relative;
		top: -260px;
		left: 85%;
		animation: service-top-arrow-1 0.3s 1;
		animation-delay: 1.5s;
		opacity: 0;
		animation-fill-mode: forwards;
	}

	@keyframes service-top-arrow-1 {
		0% {
			transform: translate(-50px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0, 0);
			opacity: 1;
		}
	}

	.service-top-arrow-2 {
		position: relative;
		top: -165px;
		left: 85%;
		animation: service-top-arrow-2 0.3s 1;
		animation-delay: 1.5s;
		opacity: 0;
		animation-fill-mode: forwards;
	}

	@keyframes service-top-arrow-2 {
		0% {
			transform: translate(-50px, 0px);
			opacity: 0;
		}
		100% {
			transform: translate(0, 0);
			opacity: 1;
		}
	}


	.service {
		margin-top: 40px;
		margin-bottom: 70px;
		clear: both;
	}

	.service h4 {
		width: 80%;
		font-size: 24px;
		font-weight: 600;
		letter-spacing: 1px;
		display: inline-block;
		margin: 0 .1em 20px 0;
		padding: .6em;
		line-height: 1;
		text-decoration: none;
		color: #FFFFFF;
		background-color: #99CC33;
		border: 1px solid #6A8429;
		border-left: 10px solid #6A8429;

	}

	.service-arrow {
		margin-top: -38px;
		margin-bottom: 20px;
		margin-left: 15px;
		width: 95%;
		height: 10px;
		border-bottom: 1px solid #6A8429;
		border-right: 2px solid #6A8429;
		transform: skew(45deg);
	}

	.service h5 {
		font-size: 30px;
		font-weight: bold;
		line-height: 36px;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.service-exp {
		margin-bottom: 20px;
	}

	.service span {
		display: inline-block;
		margin: 0 3px 3px 0;
		padding: .5em;
		font-size: 15px;
		line-height: 1;
		text-decoration: none;
		color: #000000;
		background-color: #FFFFFF;
		border: 1px solid #000000;
	}

	/*---------- 参考価格 ----------*/
	.service-price {
		position:relative;
		border:1px solid #6A8429;
		border-radius: 3px;
		padding: 20px 0px 10px 0px;
		margin-top: 30px;
	}

	.service-price:before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(-45deg, #99CC33 4%, #FFFFFF 0 4%);
		content: '';
		z-index: -1;
	}

	.service-price-title {
		font-size: 28px;
		font-weight: 600;
		letter-spacing: 2px;
		color: #6A8429;
		position: absolute;
		top: -20px;
		left: 10px;
		padding: 5px 10px;
		background-color:#FFFFFF;
		border-radius: 5px;
		line-height: 1em;
	}

	.service-price-title span {
		border: none;
		font-size: 16px;
		font-weight: 400;
		letter-spacing: 0px;
		color: #6A8429;
		padding: 0px;
		margin-left: 10px;
		margin-top: -10px;
	}

	.service-price-reference {
		clear: both;
		margin-top: 15px;
		margin-bottom: 20px;
		margin-left: 15px;
		margin-right: 15px;
	}

	.service-price-reference-item {
		width: 100%;
		font-weight: 600;
	}

	.service-price-reference-arrow {

	}

	.service-price-reference-fee {
		float: right;
		font-weight: 600;
	}

	.service-price-reference-remarks {
		clear: both;
		font-size: 16px;
		font-weight: 300;
		line-height: 20px;
		padding-top: 10px;
	}


	/*-------------------------------------------------  
	 // オフィス
	--------------------------------------------------*/

	.office {
		width: 100%;
		margin-bottom: 30px;
		clear: both;
	}

	.office-caption {
		width: 100%;
		font-weight: 700;
	}

	.office-arrow {
		margin-bottom: 10px;
		width: 100%;
		height: 7px;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		transform: skew(45deg);
	}

	.office-content {
		width: 100%;
	}

	.office-plofile {
		margin-top: 100px;
		clear: both;
	}

	.office-plofile h3 {
		margin-bottom: 10px;
	}

	.office-plofile-arrow {
		margin-bottom: 20px;
		width: 100%;
		height: 7px;
		border-bottom: 1px solid #000000;
		border-right: 1px solid #000000;
		transform: skew(45deg);
	}

	.office-plofile span {
		margin-bottom: 10px;
		font-weight: 700;
	}

	/*-------------------------------------------------  
	 // お問合わせ
	--------------------------------------------------*/

	.contact-item {
		margin-bottom: 15px;
	}

	.required {
	    color: #E60012;
	}
	.required:after {
	    content: " *";
	}

	#contact input {
		width: 97%;
		height: 30px;
		padding: 3px;
		margin-bottom: 5px;
		font-size: 16px;
	}

	#contact textarea {
		width: 97%;
		height: 200px;
		padding: 3px;
		margin-bottom: 5px;
		font-size: 16px;
	}

	.contact-alert {
		font-size: 14px;
		color: #E60012;
	}

	.contact-submit {
		width: 100%;
		height: 70px;
		line-height: 70px;
		font-size: 20px;
		letter-spacing: 5px;
		cursor: pointer;
		color: #000000;

		display: block;
		background: linear-gradient(to right, #8FC31F 50%, #FFFFFF 50%);

		background-size: 200% 100.5%;
		background-position: right bottom;
		border: none;
		border: 1px solid #8FC31F;
		border-left: 20px solid #8FC31F;
		border-color: none;
		transition: all 0.1s ease-out;
	}
	.contact-submit:hover {
		background-position: left bottom;
		color: #FFFFFF;
	}



}