@charset "UTF-8";
/* CSS Document */

/* 改行スイッチ */
.new_line {
	display: none;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .new_line {
	display: inline;
	}
}

#scroll_wrap {
	width: 45px;
	position: fixed;
	right: 5%;
	bottom: 20px;
	z-index: 999;
}

.scroll_nav {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.circle {
	width: 45px;
	height: 45px;
	margin-top: 8px;
	margin-bottom: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	display: flex;
	align-items: center;
}

.arrow-up {
 	display: block;
 	vertical-align: middle;
 	color: #333;
 	line-height: 1;
 	position: relative;
 	width: 1px;
 	height: 1em;
	background: currentColor;
	left: 22px;
}

.arrow-up::before {
 	content: '';
 	width: 0.8em;
 	height: 0.8em;
 	border: 1px solid #333;
 	border-left: 0;
 	border-bottom: 0;
 	transform: rotate(-45deg);
 	transform-origin: top right;
 	position: absolute;
 	top: -0.05em;
 	right: 50%;
 	box-sizing: border-box;
}

.mail_btn {
	display: block;
 	position: relative;
	top: -2px;
	left: 11px;
}

/* ハンバーガーメニュー */
.ham_nav {
	display: none;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .ham_nav {
	display: block;
	}
}

.hamburger {
	width: 30px;
	height: 30px;
	opacity: 1;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 8px ;
	top: 8px ;
	z-index: 999;
	box-sizing: content-box;
}
	
.hamburger:hover {
	cursor: pointer;
}
	
.hamburger span {
	width: 25px;
	height: 2px;
	background: #333333;
	position: absolute;
	transition: 0.3s ease-out;
}
	
.hamburger span:nth-of-type(1) {
	top: 15px;
}
	
.hamburger span:nth-of-type(3) {
	bottom: 15px;
}
	
/* ハンバーガーメニューにactiveクラスがついたときのスタイル */
.hamburger.active span:nth-of-type(1) {
	transform: translateY(9px) rotate(-45deg);
	transition: 0.3s ease-out;
}
	
.hamburger.active span:nth-of-type(3) {
	transform: translateY(-9px) rotate(45deg);
	transition: 0.3s ease-out;
}
	
.hamburger.active span:nth-of-type(2) {
	opacity: 0;
}
	
/* メニュー */
.menu {
	width: 100% ;
	height: 100% ;
	background-color: rgba(255,255,255,0.9) ;
	color: #333333 ;
	font-size: 1.2em;
	text-align: center;
	position: fixed;
	padding-top: 20vh;
	opacity: 0;
	transition: .5s ease-out;
	z-index: -10;
}

.menu ul {
	width: 70%;
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	padding: 0px;
}
	
.menu li {
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #333333;
}
	
.menu a{
	color: #333333 ;
	transition: color 0.3s;
}

.menu img{
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
}
	
/* メニューにopenクラスがついたときのスタイル */
.menu.open {
	opacity: 1;
	transition: .5s ease-out;
	z-index: 998;
}

/* スクロールCSS */
.fade-in {
    opacity: 0;
    transition: all 1s ease;
}

.fade-in-up {
    transform: translate(0, 30px);
}

.fade-in-down {
    transform: translate(0, -30px);
}

.fade-in-left {
    transform: translate(-30px, 0);
}

.fade-in-right {
    transform: translate(30px, 0);
}

.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* ガイドライン */
.guid {
	width: 80px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 120px;
	border-top: 2px solid #00053a;
	transform: scale(0, 1);
	transition: all 1s ease;
}

.guid.scroll-ani {
	transform: scale(1);
}

/* マージン */
.mt100 {
	margin-top: 100px;
}

.mb100 {
	margin-bottom: 100px;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .mb100 {
	margin-bottom: 60px;
	}
}

.mb200 {
	margin-bottom: 200px;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .mb200 {
	margin-bottom: 120px;
	}
}

/* お問い合わせボタン */
.contact {
	width: 30%;
	text-align: center;
	text-decoration: none;
	margin-top: -2rem;
	margin-left: auto;
	margin-right: auto;
	padding: 1rem;
	border: 1px solid #00053a;
	background-color: #FFFFFF;
	position: relative;
	display: block;
	z-index: 98;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .contact {
	width: 60%;
	}
}

.contact a {
	display: block;
	transition: all 1s ease-out;
}

.contact:hover {
	color: #fff;
}

.contact::before {
	content: '';
	background: #00053a;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .5s;
}

.contact:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

.contents_space {
	height: 200px;
	margin-top: -1rem;
	content: "";
	background-color: #EEEEEE;
}

.button {
 	position: relative;
 	display: block;
 	padding: 10px;
 	border-bottom: 1px solid #FFFFFF;
 	color: #fff;
 	text-decoration: none;
	z-index: 2;
}

.button:hover {
 	color: #fff;
}

.button::before {
	content: "";
 	position: absolute;
 	top: 0;
 	right: 0;
 	bottom: 0;
 	left: 0;
 	z-index: -1;
 	background: #242A8D;
 	transform-origin: right top;
 	transform: scale(0, 1);
 	transition: transform .5s;
}

.button:hover::before {
 	transform-origin: left top;
 	transform: scale(1, 1);
}

.more {
	width: 30%;
	text-align: left;
	position: relative;
	margin: 50px 0 0 auto;
	padding: 0 0 10px 50px;
	border-bottom: 1px solid #00053a;
	cursor: pointer;
	transition: all .5s ease;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .more {
	width: 50%;
	text-align: left;
	position: relative;
	margin: 50px 0 0 auto;
	padding: 0 0 10px 50px;
	border-bottom: 1px solid #00053a;
	cursor: pointer;
	transition: all .5s ease;
	}
}

/*アイコンの＋と×*/
.more::before,
.more::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.more::before{
	top: 10px;
    left: 15px;
    transform: rotate(0deg);
    
}
.more::after{
	top: 10px;
    left: 15px;
    transform: rotate(-90deg);

}
/*　closeというクラスがついたら形状変化　*/
.more.close::before{
	transform: rotate(45deg);
	transition: all .5s ease;
}

.more.close::after{
	transform: rotate(-45deg);
	transition: all .5s ease;
}

.more2 {
	width: 30%;
	text-align: left;
	position: relative;
	margin: 50px 0 0 auto;
	padding: 0 0 10px 50px;
	border-bottom: 1px solid #00053a;
	cursor: pointer;
	transition: all .5s ease;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .more2 {
	width: 50%;
	text-align: left;
	position: relative;
	margin: 50px 0 0 auto;
	padding: 0 0 10px 50px;
	border-bottom: 1px solid #00053a;
	cursor: pointer;
	transition: all .5s ease;
	}
}

/*アイコンの＋と×*/
.more2::before,
.more2::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.more2::before{
	top: 10px;
    left: 15px;
    transform: rotate(0deg);
    
}
.more2::after{
	top: 10px;
    left: 15px;
    transform: rotate(-90deg);

}
/*　closeというクラスがついたら形状変化　*/
.more2.close::before{
	transform: rotate(45deg);
	transition: all .5s ease;
}

.more2.close::after{
	transform: rotate(-45deg);
	transition: all .5s ease;
}

body {
	width: 100%;
	margin: 0;
	color: #333333;
	font-size: 16px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	letter-spacing: 0.1rem;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  body {
	width: 100%;
	margin: 0;
	color: #333333;
	font-size: 15px;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	letter-spacing: 0.1rem;
	}
}

p {
	line-height: 1.7;
}

strong {
	font-weight: 400;
}

a {
	color: inherit;
	text-decoration: none;
}

a:visited{
  color: inherit;
}

hr {
	width: 80%;
	height: 3px;
	position: relative;
	margin-top: -1.75rem;
	border-top: 3px solid #00053a;
	z-index: 3;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  hr {
	margin-top: -1.6rem;
	}
}

section {
	display: block;
}

header {
	width: 100%;
	height: auto;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
	background: rgba(255,255,255,0.7);
	position: fixed;
	display: block;
	z-index: 99;
	transition: .5s; /*ヘッダーが0.5秒かけて動く*/
}

@media screen and (max-width: 768px){
  header {
	width: 100%;
	height: auto;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
	background: rgba(255,255,255,0.7);
	position: fixed;
	display: block;
	z-index: 99;
	transform: translateY(-100px);
	transition: .5s; /*ヘッダーが0.5秒かけて動く*/
	}
}

.hide{
	transform: translateY(-60px); /*マイナス方向(上方向)に元の高さ(100px)の100%分移動する*/
	background: rgba(255,255,255,0.7);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  .hide{
  	transform: translateY(0); /*マイナス方向(上方向)に元の高さ(100px)の100%分移動する*/
	background: rgba(255,255,255,0.7);
	}
}

header .contents {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 15px;
	padding-bottom: 15px;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: flex-end;
}

header h1 {
	font-size: 1rem;
	display: flex;
	margin:  0;
	position: relative;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  header h1 img {
	padding: 0;
	}
}

#g_nav {
	display: flex;
	flex-flow: column;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #g_nav {
	display: none;
	}
}

header nav ul {
	font-size: 1rem;
	display: flex;
	flex-flow: row;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

header nav .nav01 a {
	position: relative;
 	display: inline-block;
	margin-top: 15px;
	margin-left: 15px;
	text-decoration: none;
}

header nav .nav02 a {
	position: relative;
 	display: inline-block;
	margin-left: 50px;
	padding-top: 25px;
	padding-bottom: 5px;
	text-decoration: none;
}

header nav .nav02 a::after {
	width: 100%;
	height: 2px;
	background: #333;
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}

header nav .nav02 a:hover::after {
	transform: scale(1, 1);
	transform: translate3d(0, 0, 0);
}

#slider {
	width: 100%;
	height: 100vh;
	min-height: 400px;
	background-position: 50% 50%;
	color: #FFFFFF;
	margin: 0;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider {
	width: 100%;
	height: 90vh;
	min-height: 240px;
	background-position: 50% 50%;
	color: #FFFFFF;
	margin: 0;
	}
}

#slider .contents {
	width: 90%;
	max-width: 1400px;
	margin: 0 auto;
	padding-left: 50px;
	position: relative;
	top: 45%;
	color: #FFFFFF;
	display: flex;
	flex-direction: column-reverse;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider .contents {
	width: 90%;
	max-width: 90%;
	margin: 0 auto;
	padding-left: 0;
	position: relative;
	top: 30%;
	color: #FFFFFF;
	display: flex;
	flex-direction: column-reverse;
	}
}

#slider .contents h2 {
	font-size: 1.2rem;
	font-weight: normal;
	margin-left: 1.5rem;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider .contents h2 {
	font-size: 1em;
	font-weight: normal;
	margin-left: 0.5rem;
	}
}

#slider .contents dl {
	font-size: 1.5rem;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider .contents dl {
	font-size: 1rem;
	}
}

#slider .contents dt {
	margin-bottom: 30px;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

#slider .contents dd {
	margin-left: 1rem;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #slider .contents dd {
	margin-left: 0.5rem;
	}
}

#slider .arrow-Bottom {
	content: "";
	border-bottom: solid 1px #FFFFFF;
	border-right: solid 1px #FFFFFF;
	width: 24px;
	height: 24px;
	transform: rotate(45deg) translateX(-50%);
	display: block;
	position: absolute;
	bottom: 30px;
	left: 50%;
}

#instagram {
	width: 100%;
	background-color: #EEEEEE;
	margin-top: 0;
	padding-top: 100px;
	padding-bottom: 100px;
}

#instagram .contents {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #instagram .contents {
	width: 100%;
	}
}

#instagram h2 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #instagram h2 {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	}
}

#profile {
	width: 100%;
	background-color: #FFFFFF;
	padding-top: 100px;
	padding-bottom: 50px;
}

#profile h2 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center ;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #profile h2 {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center ;
	}
}

#profile .contents {
	width: 80%;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #profile .contents {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	}
}

#profile .contents .career {
	width: 55%;
	display: flex;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #profile .contents .career {
	width: 90%;
	display: flex;
	}
}

#profile .contents .career h3 {
	font-size: 1.2rem;
	font-weight: normal;
	margin-bottom: 40px;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #profile .contents .career h3 {
	text-align: center;
	}
}

#profile .contents p {
	margin-bottom: 40px;
}

#profile .contents img {
	max-width: 45%;
	margin-top: 0;
	margin-bottom: 50px;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #profile .contents img {
	width: 200px;
	max-width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	}
}

#profile .contents ul {
	list-style: none;
	padding-left: 0;
}

#profile .contents li {
	height: 2.5rem;
	margin-left: 0;
	padding-bottom: .5rem;
	padding-left: .5rem;
	vertical-align: middle;
}

/*
#profile .contents li::before {
    content: "";
    width: 24px;
    height: 24px;
	display: inline-block;
    background: url("../img/link_icon.png") no-repeat;
	margin-right: 1rem;
	position: relative;
}
*/

#profile .contents li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid #333333;
    border-top: 1px solid #333333;
    display: inline-block;
    transform: rotate(45deg) translateY(-50%);
	margin-right: 1em;
	position: relative;
}

#profile .contents li a:hover {
	text-decoration: underline;
}

#jumokui {
	background-color: #EEEEEE;
	border-bottom: 1px solid #00053a;
	z-index: 2;
	position: relative;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

#jumokui .wrapper {
	padding-top: 100px;
	padding-bottom: 200px;
}

#jumokui .main {
	width: 100%;
	height: auto;
	display: flex;
	position: relative;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .main {
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
	}
}

#jumokui .main .main_img {
	width: 60%;
 	height: 480px;
 	top: 0;
 	object-fit: cover;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .main .main_img {
	width: 100%;
	}
}

#jumokui .main .content {
	width: 45%;
	min-height: 480px;
	padding: 3rem;
	margin-top: 100px;
	margin-left: -100px;
	z-index: 2;
	background: rgba(255,255,255,0.7);
	border-bottom: 2px solid #00053a;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .main .content {
	width: 95%;
	padding: 2rem;
	margin-top: -150px;
	margin-left: auto;
	margin-right: auto;
	}
}

#jumokui .main h2 {
	color: #00053a;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 2.4rem;
	padding-left: 2.4rem;
	position: relative;
}

#jumokui .main h2::after{
	content: "TREE DOCTOR";
	font-size: 1rem;
	display: block;
	font-weight: normal;
	margin-top: 5px;
}

/*アイコン正方形*/
#jumokui .main h2 span::before,
#jumokui .main h2 span::after{
    position: absolute;
    content:'';
    width: .8rem;
    height: .8rem;
    background-color: #00053a;
    
}

#jumokui .main h2 span::before{
	top: .8rem;
    left: 0;
}

#jumokui .main h2 span::after{
	top: 1.6rem;
    left: .8rem;
}

#jumokui .main dt {
	font-size: 1.2rem;
	font-weight: 800;
}

#jumokui .main dd {
	margin-left: 0;
	margin-bottom: 1rem;
}

#jumokui .jisseki_area {
	width: 90%;
	max-width: 1200px;
	padding-top: 150px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

#jumokui .print_pc {
	position: absolute;
	top: 130px;
	right: 0;
	display: block;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .print_pc {
	display: none;
	}
}

#jumokui .print_sp {
	width: 150px;
	text-align: center;
	padding: 1rem;
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #333333;
	display: none;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .print_sp {
	display: block;
	}
}

#jumokui .print_sp:hover {
	background-color: #FFFFFF;
}

#jumokui .print_btn {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 1px solid #333333;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 40px;
	cursor: pointer;
	transition: all .5s ease;
}

#jumokui .print_btn:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: opacity linear 0.4s;
  content: '';
  z-index: -99;
}

@keyframes pulseMotion {
  0% {
    transform: translate(-50%, -50%) scale(1, 1);
    background-color: rgba(200, 200, 200, 0.4)
  }
  100% {
    transform: translate(-50%, -50%) scale(6.5, 6.5);
    background-color: rgba(200, 200, 200, 0)
  }
}

#jumokui .print_btn:after {
  animation: pulseMotion 1.4s linear infinite;
}

#jumokui .print_btn:hover {
	background-color: #FFFFFF;
}

#jumokui .print_btn span {
	display: block;
}

#jumokui h3.jisseki {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	clear: both;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .guid {
	width: 80px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	border-top: 2px solid #00053a;
	}
}

#jumokui .wrap {
	max-height: 0;
	min-height: 640px;
	overflow-y: hidden;
	transition: all .5s ease;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .wrap {
	max-height: 0;
	min-height: 570px;
	overflow-y: hidden;
	transition: all .5s ease;
	}
}

#jumokui .wrap.open {
	transition: all .5s ease;
}


#jumokui .square_contents {
	width: 100%;
	max-width: 980px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: auto;
	margin-right: auto;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .square_contents {
	width: 100%;
	max-width: 360px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: auto;
	margin-right: auto;
	}
}
 
#jumokui .square_contents a {
	width: 300px;
 	margin: 10px;
 	display: block;
 	position: relative;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .square_contents a {
 	width: 360px;
	height: 180px;
	margin: 5px;
	}
}
 
#jumokui .square_contents a::before {
 	content: "";
 	display: block;
 	padding-top: 100%;
}
 
#jumokui .square_contents img {
	width: 100%;
 	height: 100%;
 	position: absolute;
 	top: 0;
 	object-fit: cover;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .square_contents img {
	width: 100%;
 	height: 100%;
 	position: absolute;
 	top: 0;
 	object-fit: cover;
	}
}

#jumokui .square_contents .caption {
	color: #ffffff;
	font-size: 1rem;
	text-align: left;
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translate(0,-50%);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .square_contents .caption {
	color: #ffffff;
	font-size: 1rem;
	text-align: left;
	position: absolute;
	left: 10%;
	top: 50%;
	transform: translate(0,-50%);
	}
}

#jumokui .square_contents .caption dd {
	margin-left: 1rem;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .square_contents .caption dd {
	margin-left: 0;
 }
}

#jumokui .mask {
	width: 100%;
	height: 100%;
	position: absolute;	/* 絶対位置指定 */
	display: block;
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	background-color: rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition:	all 0.2s ease;
	transition: all 0.2s ease;
}

#jumokui .mask:hover  {
	opacity: 1;	/* マスクを表示する */
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #jumokui .mask {
	width:100%;
	height:50%;
	position: absolute;	/* 絶対位置指定 */
	display: block;
	top: 50%;
	left: 0;
	opacity: 1;	/* マスクを表示する */
	background-color: rgba(0,0,0,0.4);	/* マスクは半透明 */
	}
}

#oniwa {
	background-color: #FFFFFF;
	margin-top: 100px;
	padding-top: 100px;
	padding-bottom: 200px;
	border-bottom: 1px solid #00053a;
	position: relative;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

#oniwa .main {
	height: auto;
	display: flex;
	justify-content: flex-start;
	position: relative;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #oniwa .main {
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
	}
}

#oniwa .main .main_img {
	width: 60%;
 	height: 480px;
 	top: 0;
 	object-fit: cover;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #oniwa .main .main_img {
	width: 100%;
	}
}

#oniwa .main .content {
	width: 45%;
	min-height: 480px;
	background: rgba(255,255,255,0.7);
	padding: 3rem;
	margin-top: 100px;
	margin-left: -100px;
	z-index: 2;
	border-bottom: 2px solid #00053a;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #oniwa .main .content {
	width: 95%;
	padding: 2rem;
	margin-top: -150px;
	margin-left: auto;
	margin-right: auto;
	}
}

#oniwa .main h2 {
	color: #00053a;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 2.4rem;
	padding-left: 2.4rem;
	position: relative;
}

#oniwa .main h2::after{
	content: "GARDENER";
	font-size: 1rem;
	display: block;
	font-weight: normal;
	margin-top: 5px;
}

/*アイコン正方形*/
#oniwa .main h2 span::before,
#oniwa .main h2 span::after{
    position: absolute;
    content:'';
    width: .8rem;
    height: .8rem;
    background-color: #00053a;
    
}

#oniwa .main h2 span::before{
	top: .8rem;
    left: 0;
}

#oniwa .main h2 span::after{
	top: 1.6rem;
    left: .8rem;
}

#oniwa .main dt {
	font-size: 1.2rem;
	font-weight: 800;
}

#oniwa .main dd {
	margin-left: 0;
	margin-bottom: 1rem;
}

#oniwa .jirei {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
}

#oniwa .guid {
	width: 80px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	border-top: 2px solid #00053a;
}

#oniwa .wrap {
	width: 90%;
	max-width: 1000px;
	max-height: 0;
	min-height: 372px;
	overflow-y: hidden;
	transition: all .5s ease;
	margin-left: auto;
	margin-right: auto;
}

#contact {
	width: 100%;
	margin-top: 0;
	padding-top: 200px;
	padding-bottom: 200px;
}

#contact .contents {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

#contact h2 {
	font-size: 2rem;
	font-weight: normal;
	text-align: center;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  #contact h2 {
	font-size: 1.5rem;
	font-weight: normal;
	text-align: center;
	}
}

#contact p {
	width: 90%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
}

/* お問い合わせフォーム */
#Form {
	margin: 0 auto ;
	width: 90% ;
	max-width: 800px;
	text-align: left ;
}

#Form p {
	width: 100%;
	margin-bottom: 1rem;;
}
	
.Form-Item {
	border-top: 1px solid #00053a;
	padding-top: .5rem;
	padding-bottom: .5rem;
	width: 100%;
	align-items: center;
}
	
.Form-Item:nth-child(5) {
	border-bottom: 1px solid #00053a;
}
	
.Form-Item-Label {
	width: 100%;
	max-width: 800px;
	font-size: 1rem;
	margin-bottom: .5rem
}
	
.Form-Item-Label-Required {
	margin-right: .5rem;
 	padding: .5rem;
	display: inline-block;
	text-align: center;
	background: #00053a;
	color: #fff;
	font-size: .8rem;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
}
	
.Form-Item-Input {
	border: 1px solid #00053a;
	margin-bottom: 1rem;
	padding: 1rem ;
	width: 100%;
	background: #EEEEEE;
	color: #00053a;
	font-size: 1rem;
}

textarea {
	appearance: none;
}
	
.Form-Item-Textarea {
	border: 1px solid #00053a;
	height: 200px;
	padding: 1rem;
	width: 100%;
	max-width: 800px;
	background: #EEEEEE;
	color: #00053a;
	font-size: 1rem;
}

.Form-Btn-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
}
	
.Form-Btn {
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	width: 30% ;
	display: inline-block;
	background: #00053a;
	color: #fff;
	font-size: 1rem;
	border: 0 ;
	cursor: pointer;
}

.Form-Btn:active {
	opacity: .7;
}

.Form-Btn2 {
	margin-top: 20px;
	margin-left: 5px;
	margin-right: 5px;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
	width: 20% ;
	display: inline-block;
	background: #CE8866;
	color: #fff;
	font-size: 1rem;
	border: 0 ;
	cursor: pointer;
}

.Form-Btn2:active {
	opacity: .7;
}

footer {
	color: #FFFFFF;
	background-color: #00053a;
}

footer a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
}

footer ul {
	border-top: 1px solid #FFFFFF;
	padding-left: 0;
	z-index: 2;
}

footer .contents {
	width: 90%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
	display: flex;
	justify-content:space-between;
	/*border-left: 1px solid #FFFFFF;*/
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  footer .contents {
	width: 90%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	/*border-left: 1px solid #FFFFFF;*/
	}
}

footer .contents a {
	margin-right: 10px;
	display: inline-block;
}

footer .contents p {
	margin-top: 30px;
	margin-bottom: 30px;
}

footer .contents address {
	width: 50%;
	height: auto;
	min-height: 300px;
	font-style: normal;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  footer .contents address {
	width: 100%;
	height: auto;
	min-height: 300px;
	font-style: normal;
	margin-top: 60px;
	}
}

footer .contents nav {
	width: 40%;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  footer .contents nav {
	width: 100%;
	display: none;
	padding-left: 0;
	padding-bottom: 60px;
	}
}

footer .center_line {
	width: 100%;
	height: 30px;
	content: "";
	margin-top: 100px;
	border-right: 1px solid #FFFFFF;
}

/** 768px以下の場合のCSS */
@media screen and (max-width: 768px){
  footer .center_line {
	width: 50%;
	height: 30px;
	content: "";
	margin-top: 100px;
	border-right: 1px solid #FFFFFF;
	}
}

footer .line {
	width: 100%;
	content: "";
	border-top: 1px solid #FFFFFF;
	margin-top: -10px;
	transform: scale(0, 1);
	transition: all 1s ease;
}

footer .line.scroll-ani {
	transform: scale(1);
}

footer small {
	width: 90%;
	max-width: 1200px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 80px;
	/*border-left: 1px solid #FFFFFF;*/
}

#infomation {
	width: 100%;
	background: #FFF;
	padding: 0 0 3rem 0;
}
#infomation .banner {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}