@charset "UTF-8";

/*==================================================
基本のおまじない
===================================*/
html { 
	scroll-behavior: smooth;
	font-size: 10px;
	background-color: #F7F2F7;
	height: auto;
}
body {
	margin: 0;
	padding: 0;
	color: #fff;
	margin: 0 auto;
	font-family: "Shippori Mincho B1", serif;
 	font-weight: 400;
  	font-style: normal;
	height: auto;
	max-width: 1500px;
}
* {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	color: #fff;
}
a:hover {
	cursor: pointer;
}
p {
	margin: 0;
	padding: 0;
}
#section {
	overflow: hidden;
}
.fuwa {
	opacity: 0;
	transform: translateY(20px);
	transition: all ease-in-out .6s;
	
}
.fuwa.on {
	opacity: 1;
	transform: translateY(0px);
	transition: all ease-in-out .6s;
	transition-delay: .2s;
}

/*==================================================
トップページ
===================================*/
/* ローディング画面 */
#loading {
	width: 100vw;
	height: 100vh;
	transition: all 1s;
	background-color: rgb(255, 255, 255);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999999999;
  }
  .loaded {
	opacity: 0;
	visibility: hidden;
  }
  .spinner {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: auto;
	transform: translateY(-50%);
	text-align: center;
	animation: sk-scaleout 4.0s forwards ease-in-out;
	color: #000;
	font-size: 2rem;
  }
  /* ローディングアニメーション */
  @keyframes sk-scaleout {
	0% {
	  opacity: 0;
	} 100% {
	  opacity: 1;
	}
  }
   
/*==================================================
header
===================================*/
#top {
	width: 100%;
	height: 100vh;
	display:flex;
	position: relative;
	min-height: 740px;
}
@media screen and (max-width:625px) {
	#top {
		min-height: 700px;
	}
}
@media screen and (max-width:500px) {
	#top {
		min-height: 670px;
	}
}
#header {
	position: fixed;
	width: 100%;
	height: 100px;
	transition: all ease-in-out 0.5s;
	top: 0;
	z-index: 10000000;
}
#header.on {
	top: -130px;
}
#logo {
	width: 78px;
	height: 100px;
	margin: 0 auto;
	transition: all .5s;
}


#logo img {
	width: auto;
	height: 100%;
	margin-top: 0;
}
.main-nav {
	width: 893px;
	height: auto;
	display: flex;
	margin: 0 auto;
	transition: all 0.2s ease-in-out;
}
@media screen and (min-width:1300px) {
	.main-nav {
		width: 1093px;
	}
}
@media screen and (max-width:1000px) {
	.main-nav {
		width: 100%;
	}
}

.main-nav ul:nth-child(1) {
	padding-right: 50px;
}
.menu2 {
	padding-left: 50px;
}

.menu {
	box-sizing: border-box;
	display: flex;
	width: 400px;
	height: 100px;
}
@media screen and (min-width:1300px) {
	.menu {
		width: 500px;
	}
}
@media screen and (max-width:1000px) {
	.menu {
		display: none;
	}
}

.menu li {
	width: 50%;
	line-height: 100px;
	font-size: 1.5rem;
	font-family: "Shippori Mincho B1", serif;
 	font-weight: 700;
  	font-style: normal;
	letter-spacing: 0.05em;
}
.menu a{
	position: relative;
	display: inline-block;
    transition: 0.5s;
	width: 100%;
	height: auto;
	color: #000;
	text-align: center;
}
.menu a::before {
    display: block;
    position: absolute;
	color: transparent;
    top: 50%;
	left: 50%;
    transform:  translateY(-50%) translateX(-50%);
    text-align: center;
    white-space: nowrap;
    transition: ease-in-out .25s;
    content: attr(data-hover-text);
	font-family: "soleil", sans-serif;
    font-weight: 500;
    font-style: normal; 
}
.menu a:hover {
	color: transparent;
}
.menu a:hover::before {
	color: #000;
}
/*********header 出現タイムラグ ************/
.delay-time01{
	animation-delay: 1s;
}
.delay-time02{
	animation-delay: 1.2s;
}

.delay-time04{
	animation-delay: 1.4s;
}

.delay-time06{
	animation-delay: 1.6s;
}

.delay-time08{
	animation-delay: 1.8s;
}
.delay-time10{
	animation-delay: 2s;
}
.delay-time12{
	animation-delay: 2.2s;
}

@keyframes fadeUpAnime{
from {
	opacity: 0;
	transform: translateY(50px);
}

to {
	opacity: 1;
	transform: translateY(0);
}
}

.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

/*============ハンバーガーメニュー===============*/

.hamburger-menu {
	position: fixed;
	top: 0;
	right: 0;
	display: block;
	z-index: 10000000000;
	transition-delay: 3s;
}
.menu-btn {
	position:fixed;
    top: 25px;
    right: 20px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    animation-name: fadein;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
.menu-btn:hover {
	opacity: .6;
	cursor:pointer;
}
.menu-btn span,
.menu-btn span:before{
    content: '';
    display: block;
    height: 2px;
    width: 50px;
    background-color: #000000;
    position: absolute;
	box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.528);
	z-index: 10000;
	transition: ease-in 0.4s;
}
.menu-btn span:before {
    bottom: 9px;
}
.menu-btn span:after {
	position: absolute;
	content: 'MENU';
    display: inline-block;
	color: #000;
	bottom: -22px;
	left: 7px;
	letter-spacing: 0.2em;
	transform: rotate(0deg);
	transition: all ease-in 0.4s;
	text-shadow: #fff 0px 0px 2px ;
	font-size: 1.2rem;
	font-family: "Halant", serif;
  	font-weight: 400;
  	font-style: normal;
}
@media screen and (max-width:500px) {
	.menu-btn span:after {
		font-family: "Klee One", cursive;
		font-weight: 600;
	
	}
}

#menu-btn-check:checked ~ .menu-btn span {
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
	transform: rotate(45deg);
	transition: ease-in 0.4s;
	background-color: #fff;
}
#menu-btn-check:checked ~ .menu-btn span::before {
	box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
    bottom: 0;
    transform: rotate(90deg);
	transition: ease-in 0.4s;
	background-color: #fff;
}
#menu-btn-check:checked ~ .menu-btn span::after {
	content: 'CLOSE';
    display: inline-block;
	color: #000;
	bottom: -22px;
	right: 0;
	letter-spacing: 0.2em;
	transform: rotate(-45deg) translateY(20px) translateX(8px);
	color: #fff;
	transition: all ease-in 0.4s;
}

#menu-btn-check {
	display: none;
}

#menu-btn-check:checked ~ .menu-min {
	display: block;
}



.menu-min {
    position: fixed;
	top: 0;
	right: 0;
	display: none;
	width: 200px;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1000;
}

.min-menu {
	position: absolute;
	top: 100px;
	width: 100%;
	height: auto;
}

.min-menu a {
	color: #d4d1d1;
	display: block;
	line-height: 40px;
	font-size: 1.3rem;
	width: 160px;
	margin: 0 auto;
	border-left: 1px solid #a5a4a4;
	padding-left: 35px;
	letter-spacing: 0.2em;
	transition: all 0.2s;
}
@media screen and (max-width:500px) {
	.min-menu a {
		line-height: 60px;
	}
}

.min-menu a:hover {
	color: #fff;
	border-left: 2px solid #fff;
	transition: all 0.2s;
}

/*============*******トップレフト*****===============*/

.top_l {
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	width: 40%;
	height: 100%;
	z-index: 10000;
}
@media screen and (max-width:500px) {
	.top_l {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
}

/*********************TITLE**********************/
.top_title {
	display: flex;
	align-items: center;
	width: 200px;
	height: 500px;
	margin-top: 150px;
	transition: all .2s ease-in-out;
}

@media screen and (max-width:625px) {
	.top_title {
		width: 160px;
	}
}
@media screen and (max-width:500px) {
	.top_title {
		margin: 150px auto 0;
	}
}

/************* ************3本線の左側*************************/

.top_title_3line_l {
	position: relative;
	display: flex;
	align-items: center;
	width: 30px;
	height: 500px;
	opacity: .7;
	transition: all .5s ease-in-out;
}
@media screen and (max-width:625px) {
	.top_title_3line_l {
	height: 390px;
	opacity: .4;
	}
}
.top_title_3line_l span:nth-child(1) {
	width: 2px;
	height: 320px;
	background-color: #ffffff;
	box-shadow: 1px 1px 4px #00000070;
}
@media screen and (max-width:500px) {
	.top_title_3line_l span:nth-child(1) {
	height: 250px;
	}
}
.top_title_3line_l span:nth-child(2) {
	width: 3px;
	height: 390px;
	background-color: #fff;
	box-shadow: 1px 1px 4px #00000070;
	border-radius: 1px 1px 1px 1px;
	margin-left: 10px;
}
@media screen and (max-width:500px) {
	.top_title_3line_l span:nth-child(2) {
	height: 320px;
	}
}
.top_title_3line_l span:nth-child(3) {
	width: 4px;
	height: 460px;
	background-color: #ffffff;
	box-shadow: 1px 1px 4px #00000070;
	border-radius: 2px;
	margin-left: 10px;
}
@media screen and (max-width:500px) {
	.top_title_3line_l span:nth-child(3) {
	height: 390px;
	}
}

/**************************トップ真ん中の文字 *********************/

.top_title_center {
	position: relative;
	display: flex;
	flex-flow: column;
	width: 140px;
	height: 440px;
	transition: all 0.2s ease-in-out;
}
@media screen and (max-width:625px) {
	.top_title_center {
	width: 100px;
	height: 390px;	
}
}
@media screen and (max-width:500px) {
	.top_title_center {
	width: 100%;
	height: 390px;
}
}

/************************** 紋様 & 庭　*************************/
.center_niwa {
	width: 140px;
	height: 120px;
	transition: all .5s ease-in-out;
	
}
@media screen and (max-width:625px) {
	.center_niwa {
		width: 100px;
}
}
.top_title_niwa {
	width: 100px;
	margin-left: 24px;
	height: auto;
	margin-top: 18px;
	transition: all .5s ease-in-out;
}
@media screen and (max-width:625px) {
	.top_title_niwa {
		width: 80px;
		margin-left: 10px;
		margin-top: 10px;
}
}
.top_title_niwa2 {
	width: 100px;
	margin-left: 20px;
	height: auto;
	margin-top: 15px;
	transition: all .5s ease-in-out;
	display: none;
}
@media screen and (max-width:500px) {
	.top_title_niwa2 {
		display: block;
		width: 80px;
		margin-left: 15px;
		margin-top: 6px;
}
}

.top_title_niwa img{
	width: 100%;
}
@media screen and (max-width:500px) {
	.top_title_niwa img {
	display: none;
	width: 100%;
	height: auto;
}
}
.top_title_niwa2 img{
	display: none;
	width: 100%;
}
@media screen and (max-width:500px) {
	.top_title_niwa2 img {
	width: 100%;
	height: auto;
	display: block;
	opacity: .8;
}
}

.top_mon {
	position: absolute;
	left: 10px;
	width: 120px;
	height: auto;
	animation:20s linear infinite rotation;
	transition: all .5s ease-in-out;
}
@media screen and (max-width:625px) {
	.top_mon {
	width: 90px;
	left: 5px;	
}
}
@media screen and (max-width:500px) {
	.top_mon {
	width: 90px;	
}
}
.top_mon img {
	width: 100%;
	height: auto;
	opacity: .2;
}
@media screen and (max-width:625px) {
	.top_mon img {
	opacity: .5;
}
}

@keyframes rotation{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
  }

  /****************** 理想&作り *************************/

.top_title_p {
	width: 30px;
	height: 150px;
	margin-left: 55px;
	margin-top: 20px;
	transition: all .5s ease-in-out;
}
@media screen and (max-width:625px) {
	.top_title_p {
		width: 22px;
		height: 120px;
		margin-left: 40px;
		margin-top: 40px;
}
}
.top_title_p p {
	font-size: 2.5rem;
	color: #000;
	line-height: 45px;
	transition: .5s all ease-in-out;
}
@media screen and (max-width:625px) {
	.top_title_p p {
	font-size: 2.4rem;
	line-height: 35px;
}
}
@media screen and (max-width:500px) {
	.top_title_p p {
	color: #ffffffc9;
}
}
@media screen and (max-width:625px) {
	#top_title_p1 {
		margin-bottom: -10px;
	}
}
@media screen and (max-width:625px) {
	#top_title_p2 {
		margin-top: -20px;
	}
}



/**************** ３本線の右かわ　**********************/

.top_title_3line_r {
	position: relative;
	display: flex;
	align-items: center;
	width: 30px;
	height: 500px;
	opacity: .7;
	transition: all .5s ease-in-out;
}
@media screen and (max-width:625px) {
	.top_title_3line_r {
	height: 390px;
	opacity: .4;
}
}
.top_title_3line_r span:nth-child(1) {
	width: 4px;
	height: 460px;
	background-color: #ffffff;
	box-shadow: 1px 1px 4px #00000070;
	border-radius: 2px;
}
@media screen and (max-width:500px) {
	.top_title_3line_r span:nth-child(1) {
	height: 390px;
	}
}
.top_title_3line_r span:nth-child(2) {
	width: 3px;
	height: 390px;
	background-color: #fff;
	box-shadow: 1px 1px 4px #00000070;
	border-radius: 1px 1px 1px 1px;
	margin-left: 10px;
}
@media screen and (max-width:500px) {
	.top_title_3line_r span:nth-child(2) {
	height: 320px;
	}
}
.top_title_3line_r span:nth-child(3) {
	width: 2px;
	height: 320px;
	margin-left: 10px;
	background-color: #ffffff;
	box-shadow: 1px 1px 4px #00000070;
}
@media screen and (max-width:500px) {
	.top_title_3line_r span:nth-child(3) {
	height: 250px;
	}
}




/*********************** トップ下奥井造園 *********************/

.okuizoen {
	position: absolute;
	bottom: 40px;
	width: 80%;
	margin-left: 5%;
	height: auto;
}
@media screen and (max-width:500px) {
	.okuizoen {
	display: none;
}
}
.okuizoen img {
	width: 100%;
	height: auto;
}
.okui_kanji {
	position: relative;
	display: flex;
	width: 140px;
	height: auto;
	font-size: 3rem;
	font-family: "Yuji Syuku", serif;
  	font-weight: 400;
  	font-style: normal;
	color: #303030;
	margin-top: 70px ;
	background-color:#F7F2F7;
	box-shadow: #F7F2F7 0px 0px 20px 20px ;
	z-index: 10000;
	justify-content: center;
	border-radius: 10px;
	transition: all .5s ease-in-out;
}
@media screen and (max-width:1000px) {
	.okui_kanji {
	margin-top: 50px;
}
}
@media screen and (max-width:625px) {
	.okui_kanji {
	font-size: 2.7rem;
	margin-top: 0px;
	text-align: center;
	opacity: 0;
}
}
@media screen and (max-width:500px) {
	.okui_kanji {
		margin-top: -50px;
		display: none;
}
}
.okui_kanji::before {
	position:absolute;
	width: 200px;
	height: auto;
	content: "OKUI ZOEN";
	font-size: 1.2rem;
	text-align: center;
	top: -10px;
	letter-spacing: 0.1em;
}

/*************************** 松イラスト *********************/
.top_matsu {
	position: absolute;
	left: 0;
	width: 40%;
	height: auto;
	opacity: .6;
	bottom: 50px;
	z-index: 1000;
	transition: all .5s ease-in-out;
}
@media screen and (max-width:500px) {
	.top_matsu {
		bottom:0;
		top: 0;
}
}

.top_matsu img {
	width: 100%;
	height: auto;
}

/**************************** 葉っぱ ***********************/
.ha {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 20;
	transition: all 0.2s ease-in-out;
	opacity: .3;
}
@media screen and (max-width:625px) {
	.ha {
	display: none;
}
}
.ha img {
	width: 100%;
	height: auto;
}
.ha_s {
	position: absolute;
	top: 100px;
	left: 0px;
	width: 100%;
	height: auto;
	opacity: .6;
	z-index: 0;
	display: none;
}
@media screen and (max-width:625px) {
	.ha_s {
	display:block;
}
}
.ha_s img {
	width: 100%;
	height: auto;
}

/*=======================トップライト=======================*/
.top_r {
	width: 60%;
	height: 100%;
}
@media screen and (max-width:500px) {
	.top_r {
	top: 0;
	left: 0;
	position: absolute;
	height: auto;
	width: 100%;
	height: 100%;
}
}
/*************トップ画像スライドアニメーション:::********/
@keyframes fade {
	/* 非表示状態からフェードインを開始する */
	0% {
	  opacity: 0;
	  transform: scale(1); /* ズームのための指定 */
	}
	/* フェードインを完了し完全表示する */
	4.16% {
	  opacity: 1;
	}
	/* ここまで完全表示を維持したらフェードアウトを開始する */
	33.33% {
	  opacity: 1;
	}
	/* フェードアウトを完了し非表示にする */
	41.66% {
	  opacity: 0;
	  
	}
	100% {
	  opacity: 0;
	  transform: scale(1.05); /* ズームのための指定 */
	}
  }
 /*************トップ画像スライドアニメーション:::********/
 
 /*****************トップフォト***************************/
.top_photo {
	position: relative;
	overflow: hidden;
	margin-top: 120px;
	width: 98%;
	height: 83%;
	border-radius: 100px 0 0 0;
	z-index: 30;
	background-color: #ffffff;
}
@media screen and (max-width:500px) {
	.top_photo {
	width: 96%;
	height:80% ;
	margin-top: 110px;
	margin-left: 2%;
}
}
.top_photo_inner {
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-color: #000000;
	opacity: 0;
    animation-name: fade;
    animation-duration: 21s;
    animation-iteration-count: infinite;	
}
.top_photo1 {
	background-image: url(../images/top_photo5.png);
}
.top_photo2 {
	background-image: url(../images/top_photo.png);
	animation-delay: 7s;
}
.top_photo3 {
	background-image: url(../images/top_photo3.png);
	animation-delay: 14s;
}


/*********************** BOSHU 募集 ************************/
#boshu {
	position: fixed;
	display: flex;
	flex-flow: column;
	width: 110px;
	height: 160px;
	bottom: 0px;
	right: 0%;
	z-index: 100;
	overflow: hidden;
	z-index: 1000000;
}
@media screen and (max-width:500px) {
	#boshu {
		width: 120px;
		height: 160px;	
}
}
.ins {
	width: 100%;
	height: 40px;
	background-color: #ffffffb1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px 0 0 0;
	transition: all 0.2s ease-in-out;
}
@media screen and (max-width:500px) {
	.ins {
		border-radius: 5px 0 0 0;
}
}
.ins img:nth-child(1) {
	width: auto;
	height: 80%;
}
.ins img:nth-child(2) {
	width: auto;
	height: 50%;
	margin-left: 5px;
	margin-top: 5px;
}
.ins:hover {
	border: 1px #000 solid;
	background-color: #fff;
}

.mitumori {
	text-align: center;
	width: 100%;
	height: 80px;
	line-height: 20px;
	background-color: #405d6ed5;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: #fff;
	transition: 0.25s all ease-in-out;
}
@media screen and (max-width:500px) {
	.mitumori {
		height: 80px;
		font-size: 1.3rem;	
		line-height: 15px;
		font-weight: 600;	
}
}
.mitumori li:first-child {
	font-size: 1rem;
	line-height: 15px;
	margin-top:14px;
}
.mitumori:hover {
	color: #000;
	background-color: #fff;
	border: 1px solid #00000076;
	border-radius: 5px 5px 0 0;
	transition: 0.25s all ease-in-out;
}

.line_touroku {
	text-align: center;
	width: 100%;
	height: 40px;
	background-color: #68C66F;
	font-size: 1.3rem;
	line-height: 40px;
	color: #fff;
}

@media screen and (max-width:500px) {
	.line_touroku {
		height: 40px;
		line-height: 40px;
		font-weight: 700;	
}
}
.line_touroku span {
	letter-spacing: 0.1em;
}
.line_touroku:hover {
	color: #35b033;
	background-color: #fff;
	border: 1px solid #00000076;
	border-radius: 0 0 0 5px;
	transition: 0.25s all ease-in-out;
}


/*============スクロールアイコン===============*/
#scroll{
	position:fixed;
	width: 60px;
	height: 80px;
	left:5%;
	bottom:10px;
	transform: translateX(-50%);
	z-index: 1000000;
	background-color: #2222229d;
	border-radius: 20px;
	padding: 10px 0;
	opacity: 1;
	transition: all .3s ease-in-out;
  }
@media screen and (max-width:900px) {
	#scroll {
		width: 50px;
		height: 70px;
	}
}
@media screen and (max-width:625px) {
	#scroll {
		left: 10%;
	}
}
#scroll.on {
	opacity: 0;
}

  
  /*Scrollテキストの描写*/
  .scrolldown1 span{
	position: absolute;
	bottom: 10px;
	left: 7px;
	margin: 0 auto;
	  /*テキストの形状*/
	color: #ffffff;
	font-size: 1.4rem;
	letter-spacing: 0.08em;
  }
  @media screen and (max-width:900px) {
	.scrolldown1 span {
		font-size: 1rem;
		left: 9px;
		
	}
}
  
  /* 線の描写 */
  .scrolldown1::before {
	content: "";
	  /*描画位置*/
	position: absolute;
	left: 50%;
	  /*線の形状*/
	width: 1px;
	height: 50px;
	background: #ffffff;
	  /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 2s ease-in-out infinite;
	opacity:0;
	margin-top: 10px;
  }
@media screen and (max-width:900px) {
	.scrolldown1::before {
		height: 40px;
		animation: pathmove2 2s ease-in-out infinite;	
	}
}
  
  /*高さ・位置・透過が変化して線が上から下に動く*/
  @keyframes pathmove{
	0%{
	  height:0;
	  top:0;
	  opacity: 0;
	}
	30%{
	  height:50px;
	  opacity: 1;
	}
	100%{
	  height:0;
	  top:50px;
	  opacity: 0;
	}
  }
  @keyframes pathmove2{
	0%{
	  height:0;
	  top:0;
	  opacity: 0;
	}
	30%{
	  height:40px;
	  opacity: 1;
	}
	100%{
	  height:0;
	  top:40px;
	  opacity: 0;
	}
  }
/********************go top ***************************/
#gotop {
	position: fixed;
	left: 20px;
	bottom: 20px;
	display: block;
	width: 20px;
	height: auto;
	z-index: 1000000;
	display: none;
}
#gotop.on {
	display: block;
	
}
#gotop img {
	width: 100%;
	height: auto;
}
#gotop a {
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
}


  
  /*==================================================
ページ2_About_
===================================*/
  /*==================================================
ページ2_About_
===================================*/

#page2 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	margin-top: 0px;
	overflow: hidden;
}
.about_moji {
	position: absolute;
	top: 0;
	right: 0px;
	width: 10%;
	height: auto;
	z-index: 2;
}
@media screen and (max-width:625px) {
	.about_moji {
		width: 25%;
		transform: translateX(20px);
		right: 10px;
	}
}
.about_moji img {
	width: 100%;
	height: auto;
}

.page2_l {
	box-sizing: border-box;
	width: 50%;
	height: auto;
	padding-top: 10%;
	position: relative;
}
@media screen and (max-width:625px) {
	.page2_l {
		width: 85%;
	}
}

.page2_photo1 {
	position: relative;
	width: 91%;
	height: auto;
	aspect-ratio: 3/4.2;
	overflow: hidden;
	border-radius: 0 20px 20px 0;
}
@media screen and (max-width:500px) {
	.page2_photo1 {
		width: 95%;
	}
}
.page2_photo1 img {
	width: 100%;
	height: auto;
	margin-top: -20%;
}
@media screen and (max-width:500px) {
	.page2_photo1 img {
		margin-top: -30%;
	}
}

.page2_l span {
	position: absolute;
	width: 90%;
	height: auto;
	aspect-ratio: 3/4;
	top: 30%;
	left: 30%;
	background-color: #EAEAEA;
	border-radius: 10%;
}
@media screen and (max-width:500px) {
	.page2_l span {
		width: 100%;
		top: 45%;
		left: 30%;
		background-color: #d7d7d7;
	}
}

.page2_r {
	box-sizing: border-box;
	position: relative;
	width: 50%;
	height: auto;
}
@media screen and (max-width:625px) {
	.page2_r {
		width: 100%;
		padding-bottom: 100px;
	}
}

.about_box {
	width: 100%;
	height: auto;
	margin-top: 150px;
	padding-left: 30px;
}
@media screen and (max-width:625px) {
	.about_box {
		margin: 150px auto 0;
		padding-left: 0;
	}

}
.about_box .section_title {
	position: relative;
	top:0;
	left: -10%;
	width: 350px;
	height: 66px;
	z-index: 100;
	margin: 0 auto;
}
@media screen and (max-width:860px) {
	.about_box .section_title {
		width: 250px;
	}	
}
@media screen and (max-width:625px) {
	.about_box .section_title {
		width: 276px;
		left: 0;
		top: -10px;
	}
}

.title_okui {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.6rem;
	border: 1px #000 solid;
	color: #000000b0;
	transition: all .2s ease-in-out;
	transition-delay: 1s;
	width: 100%;
	line-height: 66px;
	letter-spacing: 0.05em;
}
.title_okui.on {
	color: #fff;
}
.title_okui2 {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #5c5b5bb0;
	background-color: #676267;
	transition: all .4s ease-in-out;
	transition-delay: 1s;
	width:0px;
	height: 68px;
}
.title_okui2.on {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #5c5b5bb0;
	background-color: #676267;
	transition: all .4s ease-in-out;
	transition-delay: 1s;
	width: 352px;
	height: 68px;
}
@media screen and (max-width:860px) {
	.title_okui2.on {
		width: 252px;
	}
}
@media screen and (max-width:625px) {
	.title_okui2.on {
		width: 278px;
	}
}

.about_box .sen {
	position: absolute;
	margin-top: 12px;
	right: -150px;
	width: 180px;
	border-bottom: 1px solid #000;
}
@media screen and (max-width:860px) {
	.about_box .sen {
		right: 0;
		bottom: -2px;
	}
}
@media screen and (max-width:625px) {
	.about_box .sen {
		width: 120px;
		right: -100px;
		bottom: 30px;
	}
}
@media screen and (max-width:500px) {
	.about_box .sen {
		width: 180px;
		right: 70px;
		bottom: -2px;
	}
}
.section_title .sen::before {
	content: "ABOUT OKUI ZOEN";
	font-size: 1rem;
	color: #000;
	line-height: 20px;
	letter-spacing: 0.1em;
	margin-left: 50px;
}
@media screen and (max-width:860px) {
	.section_title .sen::before {
		color: #fff;
	}
}
@media screen and (max-width:625px) {
	.section_title .sen::before {
		content: "ABOUT";
		color: #000;
	}
}
@media screen and (max-width:500px) {
	.section_title .sen::before {
		content: "ABOUT OKUI ZOEN";
		color: #fff;
	}
}
.about_p {
	position: relative;
	top: 30px;
	left: -10%;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	color: #000000b0;
	line-height: 38px;
	letter-spacing: 0.01em;
	width: 350px;
	z-index: 100;
	margin: 0 auto;
}
@media screen and (max-width:860px) {
	.about_p {
		line-height: 30px;
		width: 300px;
		font-size: 1.4rem;
	}
}
@media screen and (max-width:625px) {
	.about_p {
		width: 360px;
		padding: 30px 5px 0;
		border-radius: 10px;
		left: 0;
	}
}
@media screen and (max-width:500px) {
	.about_p {
		width: 90%;
		border-radius: 10px;
		left: 0;
		margin-left: 5%;
	}
}
.about_p li {
	margin-bottom: 20px;
}
.page2_photo_iwa {
	position: absolute;
	top: 40%;
	right: 0;
	width: 65%;
	height: auto;
	z-index: 1;
}
.page2_photo_iwa img {
	width: 100%;
	height: auto;
	opacity: .7;
}
.page2_photo_hito_box {
	position: relative;
	display: flex;
	top: 5%;
	right: 0;
	width: 120%;
	height: auto;
	margin-bottom: 30% ;
}
@media screen and (max-width:860px) {
	.page2_photo_hito_box {
		right: 10%;
		top: 10%;
	}
}
@media screen and (max-width:625px) {
	.page2_photo_hito_box {
		width: 100%;
		right: 0;
	}
}
@media screen and (max-width:370px) {
	.page2_photo_hito_box {
		margin-bottom: 60%;
	}
}
.page2_photo_hito {
	width: 42%;
	position: relative;
	top: 0;
	left: 0;
	aspect-ratio: 3/4.2;
	height: auto;
	overflow: hidden;
	border-radius: 20px 0 0 20px;
	background-color: #ffffff;
	margin-left: 5%;
	z-index: 10;
}
@media screen and (max-width:625px) {
	.page2_photo_hito {
		margin-left: 10%;
		width: 48%;
	}
}
@media screen and (max-width:370px) {
	.page2_photo_hito {
		width: 70%;
	}
}

.page2_photo_hito img {
	position: absolute;
	top: -20%;
	left: -10%;
	width: 120%;
	height: auto;
	opacity: .9;
}
@media screen and (max-width:1000px) {
	.page2_photo_hito img {
		top: -25%;
	}
}
@media screen and (max-width:860px) {
	.page2_photo_hito img {
		top: -24%;
	}
}
@media screen and (max-width:625px) {
	.page2_photo_hito img {
		top: -15%;
	}
}


.table_design01 {
  position: absolute;
  bottom: 0;
  left: 48%;
  border-collapse: collapse;
  width: 200px;
  height: auto;
  color: #000;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  z-index: 100;
  font-weight: 600;
}
@media screen and (max-width:625px) {
	.table_design01 {
		width: 150px;
		left: 60%;
	}
}
@media screen and (max-width:370px) {
	.table_design01 {
		bottom: -120px;
		left: 0;
		margin-left: 20%;
		width: 200px;
	}
}

.table_design01 th {
  text-align: center;
  font-weight: 700;
  width: 40px;
}
.kyoka {
	margin-left: 10px;
	margin-bottom: 20px;

}



/*==================================================
nihon_image
===================================*/
#nihon {
	position: relative;
	width: 100%;
	height: auto;
	background-color: #F4EDED;
	overflow: hidden;
	padding: 120px 0 150px;
}
@media screen and (max-width:625px) {
	#nihon {
		padding: 120px 0 100px;
	}
}
#nihon_moji {
	position: absolute;
	top: 50%;
	left: 0px;
	width: 10%;
	height: auto;
	transform: translateY(-50%);
	z-index: 2;
}
#nihon_moji img {
	width: 100%;
	height: auto;
}
@media screen and (max-width:625px) {
	#nihon_moji {
		width: 25%;
		left: -20px;
	}
}

/*-----------title--------------------*/
#section_title_wa {
	position: relative;
	width: 350px;
	height: 66px;
	text-align: center;
	margin: 0 auto;
}
@media screen and (max-width:840px) {
	#section_title_wa {
		width: 250px;
	}
}
@media screen and (max-width:625px) {
	#section_title_wa {
		width: 278px;
	}
}
@media screen and (max-width:370px) {
	#section_title_wa {
		margin: -20px auto 0;
	}
}
#title_wa2.on {
	background-color: #fff;
}
#title_wa.on {
	color: #000000bb;
}
#section_title_wa .sen {
	position: absolute;
	bottom: 50%;
	right: -160px;
	width: 180px;
	border-bottom: 1px solid #000;
}
@media screen and (max-width:625px) {
	#section_title_wa .sen {
		right: 60px;
		bottom: -4px;
	}
}
#section_title_wa .sen::before {
	content: "LEAVE ONE’S SPIRIT";
	margin-left: 25px;
	color: #000;
}
.wa_title_p {
	width: 370px;
	height: auto;
	text-align: center;
	margin: 30px auto;
	color: #000;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 20px;
	font-weight: 500;
	
}
@media screen and (max-width:500px) {
	.wa_title_p {
		width: 350px;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 400;
	}
}
/*-----------title--------------------*/
.nihon_box {
	position: relative;
	width: 80%;
	height: auto;
	margin-top: 10%;
	margin-left: 10%;
}


.nihon_bg1 {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	background-color: #9A6666;
	border-radius: 50%;
	z-index: 1;
}
@media screen and (max-width:625px) {
	.nihon_bg1 {
		width: 200%;
		left: 0%;
	}
}
.nihon_bg1_s {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	background-color: #9A6666;
	border-radius: 50%;
	z-index: 1;
	display: none;
}
@media screen and (max-width:625px) {
	.nihon_bg1_s {
		display: block;
		width: 210%;
		left: -90%;
		top: -50px;
	}
}
.nihon_bg2 {
	position: absolute;
	width: 60%;
	height: auto;
	top: -10%;
	left: 5%;
	opacity: .2;
	z-index: 2;
}
@media screen and (max-width:625px) {
	.nihon_bg2 {
		width: 100%;
		top: -3%;
	}
}
.nihon_bg2 img {
	width: 100%;
	height: auto;
}
.nihon_bg2_s {
	position: absolute;
	width: 80%;
	height: auto;
	top: 55%;
	left: -10%;
	opacity: .2;
	z-index: 2;
	display: none;
}
@media screen and (max-width:625px) {
	.nihon_bg2_s {
		width: 120%;
		display: block;
	}
}
.nihon_bg2_s img {
	width: 100%;
	height: auto;
}
.images4 {
	position: absolute;
	top: 3%;
	left: 1%;
	width: 80%;
	height: 500px;
	z-index: 10;
}
.tobiishi {
	position:absolute;
	margin-top: 19.8%;
	left: 14%;
	width: 46%;
	height: auto;
	aspect-ratio: 4/3.5;
	border-radius: 80% 0 0 0;
	overflow: hidden;
	z-index: 10;
	background-color: #000;
}
@media screen and (max-width:625px) {
	.tobiishi {
		margin-top: 0%;
		width: 120%;
	}
}
.tobiishi img {
	width: 125%;
	margin-top: -40px;
	margin-left: -20%;
	height: auto;
	position: absolute;
}
@media screen and (max-width:625px) {
	.tobiishi img {
		margin-top: -20px;
	}
}
.tobiishi p {
	position: absolute;
	width: 100%;
	top: 55%;
	left: 2%;
	transform: translateY(-50%);
	text-align: center;
	font-size: 2.4rem;
	font-family: "Halant", serif;
  	font-weight: 400;
  	font-style: normal;
	letter-spacing: 0.5em;
	opacity: .7;
}
@media screen and (max-width:700px) {
	.tobiishi p {
		font-size: 2.7rem;
		opacity: .9;
	}
}
.tobiishi p::before {
	position: absolute;
	top: -18px;
	left: 0;
	content: "TOBIISHI";
	width: 100%;
	height: auto;
	font-family: "Halant", serif;
  	font-weight: 500;
  	font-style: normal;
	font-size: 1.7rem;
	text-align: center;
}
@media screen and (max-width:700px) {
	.tobiishi p::before {
		font-size: 1.5rem;
	}
}
.niwaki {
	position:absolute;
	margin-top: 10%;
	left: 60%;
	width: 40%;
	height: auto;
	aspect-ratio: 3.2/4;
	border-radius: 0 60% 0 0;
	overflow: hidden;
	z-index: 10;
	background-color: #000;
}
@media screen and (max-width:625px) {
	.niwaki {
		width: 100%;
		margin-top: 233%;
		left: 10%;
	}
}

.niwaki img {
	position: absolute;
	width: 110%;
	height: auto;
	margin-top: -40px;
	margin-left: -10px;
}
@media screen and (max-width:625px) {
	.niwaki img {
		width: 115%;
		margin-top: -20px;
	}
}
.niwaki p {
	position: absolute;
	width: 100%;
	top: 55%;
	transform: translateY(-50%);
	text-align: center;
	font-size: 2.4rem;
	font-family: "Halant", serif;
  	font-weight: 400;
  	font-style: normal;
	letter-spacing: 0.5em;
	opacity: .7;
}
@media screen and (max-width:700px) {
	.niwaki p {
		opacity: .9;
		font-size: 2.7rem;
	}
}
.niwaki p::before {
	position: absolute;
	top: -18px;
	left: 0;
	content: "NIWAKI";
	width: 100%;
	height: auto;
	font-family: "Halant", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.6rem;
	text-align: center;
}
@media screen and (max-width:700px) {
	.niwaki p::before {
		font-size: 1.5rem;
	}
}
.ishizumi {
	position:absolute;
	margin-top: 60%;
	left: 20%;
	width: 42%;
	height: auto;
	aspect-ratio: 3.4/4;
	border-radius: 0 0 0 70%;
	overflow: hidden;
	z-index: 10;
	background-color: #000;
}
@media screen and (max-width:625px) {
	.ishizumi {
		width: 100%;
		margin-top: 105%;
		left: 30%;
	}
}
.ishizumi img {
	position: absolute;
	width: 100%;
	height: auto;
	margin-top: -40px;
}
@media screen and (max-width:625px) {
	.ishizumi img {
		margin-top: -20px;
	}
}
.ishizumi p {
	position: absolute;
	width: 100%;
	top: 46%;
	left: 2%;
	transform: translateY(-50%);
	text-align: center;
	font-size: 2.4rem;
	font-family: "Halant", serif;
  	font-weight: 400;
  	font-style: normal;
	letter-spacing: 0.5em;
	opacity: .7;
}
@media screen and (max-width:700px) {
	.ishizumi p {
		opacity: .9;
		font-size: 2.7rem;
	}
}
.ishizumi p::before {
	position: absolute;
	top: -18px;
	left: 0;
	content: "ISHIZUMI";
	width: 100%;
	height: auto;
	font-family: "Halant", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.6rem;
	text-align: center;
}
@media screen and (max-width:700px) {
	.ishizumi p::before {
		font-size: 1.5rem;
	}
}
.ranbari {
	position:absolute;
	margin-top: 60%;
	left: 62%;
	width: 46%;
	height: auto;
	aspect-ratio: 4.3/3.5;
	border-radius: 0 0 60% 0;
	overflow: hidden;
	z-index: 10;
	background-color: #000;
}
@media screen and (max-width:625px) {
	.ranbari {
		width: 125%;
		margin-top: 358%;
		left: 0%;
	}
}
.ranbari img {
	position: absolute;
	margin-top: -40px;
	width: 100%;
	height: auto;
}
.ranbari p {
	position: absolute;
	width: 100%;
	top: 50%;
	left: -2%;
	transform: translateY(-50%);
	text-align: center;
	font-size: 2.4rem;
	font-family: "Halant", serif;
  	font-weight: 400;
  	font-style: normal;
	letter-spacing: 0.5em;
	opacity: .7;
}
@media screen and (max-width:700px) {
	.ranbari p {
		opacity: .9;
		font-size: 2.7rem;
	}
}
.ranbari p::before {
	position: absolute;
	top: -18px;
	left: 0;
	content: "RANBARI";
	width: 100%;
	height: auto;
	font-family: "Halant", serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1.6rem;
	text-align: center;
}
@media screen and (max-width:700px) {
	.ranbari p::before {
		font-size: 1.5rem;
	}
}

  /*==================================================
イングリッシュガーデンページ
========================*/
#ing_garden {
	position: relative;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	background-color: #fff;
	padding: 100px 0 130px;
	overflow: hidden;
}
@media screen and (max-width:625px) {
	#ing_garden {
		padding: 100px 0 80px;
	}
}
#ing_moji {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 7%;
	height: auto;
	transform: translateY(-50%);
	z-index: 2;
}
#ing_moji img {
	width: 100%;
	height: auto;
}
@media screen and (max-width:625px) {
	#ing_moji {
		width: 14%;
	}
}
.ing_inner {
	position:relative;
	width: 100%;
	height: auto;
	
}
/****************title****************/
.oomoji {
	font-size: 2.1rem;
}
#ing_garden .title_box {
	position: relative;
	z-index: 10;
}
#ing_garden .wa_title_p {
	position: relative;
	text-shadow: #fff 1px 1px 2px;
	z-index: 2;
}
#title_ing2 {
	background-color: #Fff;
}
#title_ing2.on {
	background-color: #F4EDED;
	height: 70px;
}
/****************title****************/
.ing_bg_box {
	position: relative;
	width: 90%;
	height: auto;
	position: relative;
	margin-left: 5%;
	padding-bottom: 80px;
}
@media screen and (max-width:625px) {
	.ing_bg_box {
		padding-bottom: 0px;
	}
}
@media screen and (max-width:400px) {
	.ing_bg_box {
		width: 100%;
		margin-left: 0;
	}
}
.ing_bg1 {
	position: absolute;
	top: 40%;
	left: 0%;
	width: 100%;
	height: 200px;
	background-color: #A35C5C;
}
@media screen and (max-width:880px) {
	.ing_bg1 {
		height: 150px;
	}
}
.ing_bg2 {
	width: 200px;
	height: auto;
	aspect-ratio: 2/10;
	background-color: #A35C5C;
	z-index: 0;
	margin: 0 auto;
}
@media screen and (max-width:880px) {
	.ing_bg2 {
		aspect-ratio: 2/10;
		width: 150px;
	}
}
@media screen and (max-width:880px) {
	.ing_bg2 {
		aspect-ratio: 2/10;
		width: 150px;
	}
}
@media screen and (max-width:625px) {
	.ing_bg2 {
		aspect-ratio: 2/15;
		width: 120px;
	}
}
@media screen and (min-width:1400px) {
	.ing_bg2 {
		aspect-ratio: 2/12;	
	}
}
.ing_bg3 {
	position: absolute;
	top: 0;
	left: 10%;
	width: 100%;
	height: auto;
	opacity: .4;
}
@media screen and (max-width:625px) {
	.ing_bg3 {
		width: 160%;
		left: -10%;
	}
}
.ing_bg3 img {
	width: 100%;
	height: auto;
}
.ing_boxbox {
	position: absolute;
	top: 10%;
	left: 10%;
	height: auto;
	width: 100%;
	height: auto;
	z-index: 10;
	max-width: 1000px;
	margin: 0 auto;
}
/******************** ING BOX1 *********************/

.ing_photo_box1 {
	width: 35%;
	height: auto;
	aspect-ratio: 3/4;
	overflow: hidden;
	border-radius: 0 150px 0 0;
	min-width: 250px;
}
@media screen and (max-width:880px) {
	.ing_photo_box1 {
		border-radius: 0 100px 0 0;
		margin-top: -5%;
	}
}
@media screen and (max-width:750px) {
	.ing_photo_box1 {	
		border-radius: 0 100px 0 0;
		margin-top: -5%;
		margin-left: -5%;
	}
}
@media screen and (max-width:625px) {
	.ing_photo_box1 {
		border-radius: 0 80px 0 0;
		width: 280px;
	}
}
@media screen and (min-width:1400px) {
	.ing_photo_box1 {
		margin-top: -5%;
		width: 40%;
		
	}
}
.ing_photo_box1 img {
	width: 110%;
	height: auto;
	margin-top: -20px;
}
@media screen and (max-width:625px) {
	.ing_photo_box1 img {
		margin-top: 0px;
	}
}

.ing_photo_box1 p {
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
	left: 0;
	font-size: 2rem;
	color: #fff;
	text-align: center;
	letter-spacing: 0.3em;
	opacity: .8;
	font-weight: 700;
}
@media screen and (max-width:880px) {
	.ing_photo_box1 p {
		font-size: 1.6rem;
	}
}
@media screen and (max-width:625px) {
	.ing_photo_box1 p {
		top: 50%;
		font-size: 1.8rem;
	}
}
.ing_photo_box1 p::before {
	position: absolute;
	top: -18px;
	left: 0;
	content: "モダンガーデン";
	width: 100%;
	height: auto;
	font-size: 1.6rem;
	text-align: center;
}
@media screen and (max-width:880px) {
	.ing_photo_box1 p::before {
		font-size: 1.2rem;
	}
}
@media screen and (max-width:625px) {
	.ing_photo_box1 p::before {
		font-size: 1.5rem;
		top: -22px;
	}
}

/******************** ING BOX2 *********************/
.ing_photo_box2 {
	width: 50%;
	height: auto;
	aspect-ratio: 4/2.8;
	overflow: hidden;
	border-radius: 120px 120px 0 0;
	margin-top: 150px;
	margin-left: 40%;
	min-width: 360px;
}
@media screen and (max-width:880px) {
	.ing_photo_box2 {
		border-radius: 100px 100px 0 0;
		margin-top: 100px;
	}
}
@media screen and (max-width:750px) {
	.ing_photo_box2 {
		margin-top: 50px;
		margin-left: 30%;
	}
}
@media screen and (max-width:625px) {
	.ing_photo_box2 {
		margin-top: 90px;
		margin-left: 0;
		border-radius: 80px 80px 0 0;
		aspect-ratio: 4/3.3;
		min-width: 360px;
	}
}
@media screen and (min-width:1400px) {
	.ing_photo_box2 {
		width: 60%;
		margin-left: 50%;
		margin-top: 100px;	
	}
}
.ing_photo_box2 img {
	width: 110%;
	height: auto;
	margin-top: -10px;
}
@media screen and (max-width:625px) {
	.ing_photo_box2 img {
		margin-top: 0px;
	}
}
.ing_photo_box2 p {
	position: absolute;
	width: 100%;
	height: auto;
	top: 46%;
	left: 0;
	font-size: 2rem;
	color: #fff;
	text-align: center;
	letter-spacing: 0.3em;
	opacity: .8;
	font-weight: 700;
}
@media screen and (max-width:880px) {
	.ing_photo_box2 p {
		font-size: 1.6rem;
	}
}
@media screen and (max-width:625px) {
	.ing_photo_box2 p {
		font-size: 2rem;
	}
}
.ing_photo_box2 p::before {
	position: absolute;
	top: -18px;
	left: 0;
	content: "コブルストーン";
	width: 100%;
	height: auto;
	font-size: 1.6rem;
	text-align: center;
}
@media screen and (max-width:880px) {
	.ing_photo_box2 p::before {
		font-size: 1.2rem;
	}
}
@media screen and (max-width:625px) {
	.ing_photo_box2 p::before {
		font-size: 1.5rem;
		top: -22px;
	}
}

  /*==================================================
  worksページ
===================================*/
  /*==================================================
  worksページ
===================================*/
#works {
	width: 100%;
	height: auto;
	padding: 100px 0 100px;
	position: relative;
	overflow: hidden;
	z-index: 10;
	background-color: #3D4A69;
}
.works_moji {
	width: 90%;
	height:auto;
	z-index: 2;
	margin-top: 50px;

}
.works_moji img {
	width: 100%;
	height: auto;
}
.works_bg {
	position: absolute;
	top: -10%;
	width: 80%;
	height: auto;
	z-index: 0;
	opacity: .1;
}
@media screen and (max-width:630px) {
	.works_bg {
		display: none;
	}
}
.works_bg img {
	width: 100%;
	height: auto;
}

.works_bg_s {
	position: absolute;
	width: 100%;
	display: none;
	opacity: .1;
}
.works_bg_s img {
	width: 200%;
	height: auto;
	margin-top: -200px;
	margin-left: -200px;

}
@media screen and (max-width:630px) {
	.works_bg_s {
		width: 100%;
		height: auto;
		display: block;
	}
}


/************title**************/
#section_title_works {
	position: relative;
	width: 350px;
	margin: 0 auto;
}
@media screen and (max-width:840px) {
	#section_title_works {
		width: 250px;
	}	
}
@media screen and (max-width:630px) {
	#section_title_works {
		width: 277px;
	}
}
@media screen and (max-width:630px) {
	#section_title_works h2 {
		font-size: 1.8rem;
	}
}
#section_title_works .sen {
	position: absolute;
	top:10px ;
	right: -180px;
	width: 200px;
	border-bottom: 1px solid #ffffffd0;
} 
@media screen and (max-width:630px) {
	#section_title_works .sen {
		top: 47px;
		right: 50px;
	}
}
#title_works {
	font-weight: 300;
	border: 1px solid #ffffffd0;
}
#title_works.on {
	font-weight: 300;
}
#title_works2.on {
	background-color: #43407600;
}

#section_title_works span::before {
	content: "WORKS OF OKUI ZOEN";
	width: 100%;
	margin-left: 40px;
	color: #ffffffd0;
}
@media screen and (max-width:630px) {
	#section_title_works span::before {
		color: #ffffffd0;
	}
}
.works_title_p {
	position: relative;
	top: 0;
	width: 100%;
	height: auto;
	text-align: center;
	margin: 90px 0;
	color: #ffffffd0;
	font-size: 1.4rem;
	z-index: 1;
	font-weight: 500;
}
@media screen and (max-width:625px) {
	.works_title_p {
		margin: 80px auto 50px;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 400;
	}
}
/************** work_box **************/
.works_box {
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	z-index: 10;
}
@media screen and (max-width:630px) {
	.works_box {
		flex-wrap: wrap;
		margin-top: 0px;
	}
}
.works_box1 {
	display: flex;
	box-sizing: border-box;
	width: 30%;
	height: auto;
	padding: 2%;
	background-color: #2d405f90;
	box-shadow: inset 1px 1px 6px #000000;
}
@media screen and (max-width:880px) {
	.works_box1 {
		width: 30%;
	}
}
@media screen and (max-width:630px) {
	.works_box1 {
		width: 100%;
		height: auto;
		padding: 15% 0 10%;
	}
}
.works_box_inner {
	width: 100%;
	height: auto;
}
@media screen and (max-width:630px) {
	.works_box_inner {
		box-sizing: border-box;
		width: 80%;
		margin-left: 10%;
	}
}

.works_box1:nth-child(1) {
	margin-right: 2%;
}
@media screen and (max-width:880px) {
	.works_box1:nth-child(1) {
		margin-left: 3%;
		margin-right: 2%;
	}
}
@media screen and (max-width:630px) {
	.works_box1:nth-child(1) {
		margin-left: 0%;
		margin-right: 0%;
	}
}
.works_box1:nth-child(2) {
	margin-right: 2%;
	background-color: #2d405f90;
	box-shadow: inset 1px 1px 6px #000000;
}
@media screen and (max-width:880px) {
	.works_box1:nth-child(2) {
		margin-right: 2%;
	}
}
@media screen and (max-width:630px) {
	.works_box1:nth-child(2) {
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 40px;
	}
}
.works_box1:nth-child(3) {
	background-color: #2d405f90;
	box-shadow: inset 1px 1px 6px #000000;
}

@media screen and (max-width:630px) {
	.works_box1:nth-child(3) {
		margin-left: 0%;
		margin-right: 0%;
		margin-top: 40px;
	}
}

.works_photo {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 3/3.5;
	overflow: hidden;
	text-align: center;
	margin: auto;
	border-radius: 5px 5px 0 0;
	background-color: #000;
}
@media screen and (max-width:630px) {
	.works_photo {
		width: 100%;
		height: auto;
		border-radius: 5px 5px 0 0;
		margin-bottom: 20px;
	}
}
.works_photo h2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height:auto;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.4rem;
	opacity: .5;
	letter-spacing: 0.1em;
	text-shadow: 2px 2px 4px #00000059;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 800;
}
@media screen and (max-width:630px) {
	.works_photo h2 {
		font-size: 3.5rem;
	}
}
@media screen and (max-width:500px) {
	.works_photo h2 {
		font-size: 3rem;
		font-weight: 700;
	}
}
.works_photo img {
	width: 100%;
	height: auto;
	transition: all 0.2s ease-in-out;
}
@media screen and (max-width:630px) {
	.works_photo img {
		width: 100%;
	}
}
@media screen and (max-width:500px) {
	.works_photo img {
		width: 100%;
		margin-top: 0px;
	}
}
.works_photo:hover img {
	transform: scale(1.05);
	height: auto;
	opacity: .4;
	transition: all 0.5s ease-in-out;
}

.works_p {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: auto;
	color: #ffffffd0;
	padding: 2%;
	border-radius: 0 0 10px 10px;
	margin-top: 20px;
}
@media screen and (max-width:630px) {
	.works_p {
		width: 100%;
		height: auto;
		border-radius: 0 0 5px 5px;
		margin-top: 40px;
	}
}
.works_p_inner {
	width: 97%;
	height: 98%;
	margin: 1%;
	padding: 20px 0;
}
@media screen and (max-width:500px) {
	.works_p_inner {
		width: 100%;
		margin: 0;
		padding: 0;
	}
}

.works_p h3 {
	position: relative;
	font-size: 1.8rem;
	letter-spacing: 0.03em;
	line-height: 20px;
	text-align: center;
	font-weight: 400;
}
@media screen and (max-width:500px) {
	.works_p h3 {
		font-size: 2rem;
		font-weight: 700;
	}
}
.works_p h3::before {
	content: "理想の庭をつくります";
	font-size: 1.2rem;
	position: absolute;
	top: -23px;
	left: 0;
	text-align: center;
	width: 100%;
	line-height: 20px;
}
#kouji::before {
	content: "玄関周りもお任せください";

}
#sentei::before {
	content: "いつ見ても美しい庭を";

}
.works_p ul {
	margin-top: 20px;
	width: 96%;
	margin-left:2% ;

}
.works_p li {
	width: 100%;
	height: auto;
	font-size: 1.4rem;
	line-height: 24px;
	text-align: center;
	border-bottom: 1px solid #ffffff26;
}
@media screen and (max-width:500px) {
	.works_p li {
		font-weight: 600;
		font-size: 1.6rem;
	}
}

.loopSlide{
    display: flex;
    width: 100vw;
    height: auto;
    overflow: hidden;
	margin-top: 50px;

    img {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width:500px) {
	.loopSlide img {
		height: 100px;
		width: auto;
		
	}
}

.loopSlide img:nth-child(1) {
	animation: slide1 60s -30s linear infinite;
}
.loopSlide img:nth-child(2) {
	animation: slide2 60s linear infinite;
}
/********************* works ループのアニメーション *********************/
@keyframes slide1 {
	0% {
	  transform: translateX(100%);
	}
	to {
	  transform: translateX(-100%);
	}
  }
  
  @keyframes slide2 {
	0% {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-200%);
	}
  }
/********************* works ループのアニメーション *********************/

.teinei {
	width: 100%;
	text-align: center;
	font-size: 2rem;
	color: #ffffffaf;
	margin: 80px 0 30px;
}
@media screen and (max-width:630px) {
	.teinei {
		font-size: 1.8rem;
		margin: 20px 0 30px;
	}
}
.section_title_works_bottom_box {
	width: 100%;
}
.section_title_works_bottom {
	position: relative;
	top:0;
	left: 0;
	width: 350px;
	height: 66px;
	z-index: 100;
	margin: 0 auto;
}
@media screen and (max-width:630px) {
	.section_title_works_bottom {
		width: 280px;
	}
}
.section_title_works_bottom:hover .go_works a{
	color: #fff;
	background-color: #282748;
}
.section_title_works_bottom:hover .yaji{
	transform: translateX(10%);
}

.go_works a {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.8rem;
	border: 1px #ffffffb6 solid;
	color: #ffffffd3;
	transition: all .2s ease-in-out;
	width: 100%;
	line-height: 66px;
	font-weight: 300;
}

.yaji {
	position: relative;
	width: 200px;
	height: auto;
	top: 35%;
	transform: translateY(-90%);
	right: -320px;
	transition: all 0.2s ease-in-out;
}
@media screen and (max-width:630px) {
	.yaji {
		right: -40px;
		top: 100px;
	}
}
.yaji img {
	width: 100%;
	height: auto;
}
.yaji::before {
	position: absolute;
	top: -10px;
	content: "WORKS OF OKUI ZOEN";
	width: 100%;
	height: auto;
	font-size: 1rem;
	color: #ffffffc0;
	line-height: 20px;
	letter-spacing: 0.05em;
	text-align: center;
	margin-left: 10px;
}
@media screen and (max-width:630px) {
	.yaji::before {
		margin-left: 0px;

	}
}

  /*==================================================
料金PRICEページ
===================================*/
#price {
	width: 100%;
	height: auto;
	overflow: hidden;
	margin-top: 50px;
}
.price_inner {
	position: relative;
	width: 92%;
	margin-left: 2%;
	height: auto;
	background-color: #DEDEDE;
	border-radius: 20px;
	padding: 100px 2%;
	overflow: hidden;
}
@media screen and (max-width:500px) {
	.price_inner {
		padding: 100px 2% 60px;
	}	
}
#section_title_price {
	width: 350px;
	height: 66px;
	margin: 0 auto;
}
@media screen and (max-width:840px) {
	#section_title_price {
		width: 250px;
	}	
}
@media screen and (max-width:625px) {
	#section_title_price {
		width: 277px;
	}	
}
#section_title_price .sen {
	position: absolute;
	top:10px ;
	right: -180px;
	width: 200px;
	border-bottom: 1px solid #ffffff;
}
@media screen and (max-width:625px) {
	#section_title_price .sen {
		width: 130px;
		right: -110px;
	}	
}
@media screen and (max-width:526px) {
	#section_title_price .sen {
		top: 47px;
		right: 72px;
	}	
}
#section_title_price span::before {
	content: "PRICE";
	margin-left: 80px;
	color: #fff;
}
@media screen and (max-width:625px) {
	#section_title_price span::before {
		margin-left: 48px;
	}	
}
#title_price {
	font-size:2rem;
}
#title_price2.on {
	background-color: #7ac47f;
}
.plice{
	width: 100%;
}
#plice_title_p {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 30px 0;
	color: #000;
	font-size: 1.4rem;
	z-index: 1;
	font-weight: 400;
}
@media screen and (max-width:625px) {
	#plice_title_p {
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 400;
	}	
}

/***********手順************/

.tejyun {
	width: 100%;
	height: auto;
	overflow: hidden;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
	max-width: 1000px;
	margin: 50px auto;
}
@media screen and (max-width:625px) {
	.tejyun {
		display: none;
	}	
}
.tejyun_inner {
	box-sizing: border-box;
	width: 100%;
	height: 90px;
	display: flex;
	margin: 0 auto;
}
.tejyun_box {
	width: 18%;
	height: auto;
	background-color: #ffffff51;
	padding: 10px 0;
}

.tejyun_box img {
	width: 35%;
	height: auto;
	text-align: center;
	margin-left: 35%;
}
.tejyun_box p {
	color: #000;
	font-size: 1.2rem;
	text-align: center;
	line-height: 20px;
	margin-top: 10px;
}
@media screen and (max-width:920px) {
	.tejyun_box p {
		font-size: 1rem;

	}
}
.tejyun_yaji {
	width: 2.5%;
	height: auto;
}
.tejyun_yaji img {
	width: 100%;
	height: auto;
	margin-top: 20px;

}

/***********TEJYUN_s************/
.tejyun_s {
	width: 100%;
	height: auto;
	display: none;
}
@media screen and (max-width:625px) {
	.tejyun_s {
		display: block;
		margin-top: 50px;
	}	
}
.tejyun_s_box {
	position: relative;
	box-sizing: border-box;
	width: 200px;
	height: auto;
	background-color: #ffffff30;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px auto 0;
	padding: 10px 0;
}
.tejyun_s_box:nth-child(1)::before {
	content: "";
	width: 40px;
	height: 31px;
	background-image: url(../images/tejyun1.png);
	background-position: center;
	background-size: cover;
	vertical-align: middle;
	position: absolute;
	left: -50px;

}
.tejyun_s_box:nth-child(3)::before {
	content: "";
	width: 40px;
	height: 31px;
	background-image: url(../images/tejyun2.png);
	background-position: center;
	background-size: cover;
	vertical-align: middle;
	position: absolute;
	left: -50px;

}
.tejyun_s_box:nth-child(5)::before {
	content: "";
	width: 40px;
	height: 31px;
	background-image: url(../images/tejyun3.png);
	background-position: center;
	background-size: cover;
	vertical-align: middle;
	position: absolute;
	left: -50px;

}
.tejyun_s_box:nth-child(7)::before {
	content: "";
	width: 40px;
	height: 31px;
	background-image: url(../images/tejyun5.png);
	background-position: center;
	background-size: cover;
	vertical-align: middle;
	position: absolute;
	left: -50px;

}
.tejyun_s_box:nth-child(9)::before {
	content: "";
	width: 40px;
	height: 31px;
	background-image: url(../images/tejyun6.png);
	background-position: center;
	background-size: cover;
	vertical-align: middle;
	position: absolute;
	left: -50px;

}

.tejyun_s p {
	color: #000;
	box-sizing: border-box;
	width:100%;
	height: auto;
	font-size: 1.4rem;
	text-align: center;
}
@media screen and (max-width:625px) {
	.tejyun_s p {
		font-size: 1.6rem;
	}	
}
.tejyun_yaji_s {
	width: 5%;
	height: auto;
	margin: 0 auto -30px;
}
.tejyun_yaji_s img {
	width: 100%;
	height: auto;
}

/***********価格表リスト************/

.price_list_box {
	width: 100%;
	height: auto;
	margin: 30px auto;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.price_list_boxs1 {
	box-sizing: border-box;
	display: grid;
	width: 352px;
	height: 140px;
	grid-template-columns: 150px 200px;
	grid-template-rows: 34px 34px 34px 36px;
	font-size: 1.3rem;
	line-height: 34px;
	border-radius: 5px;
	border: 1px solid #000;
	background-color: #35b033;
	margin: 1%;	
}
@media screen and (max-width:500px) {
	.price_list_boxs1 {
		width: 302px;
		grid-template-columns: 120px 180px;
		margin: 1% 1% 5% 1%;
		
	}	
}
.price_list_boxs2 {
	display: grid;
	width: 350px;
	height: 172px;
	grid-template-columns: 150px 200px;
	grid-template-rows: 34px 34px 34px 34px 36px;
	font-size: 1.3rem;
	line-height: 34px;
	border-radius: 5px;
	border: 1px solid #000;
	background-color: #35b033;
	margin: 1%;	
}
@media screen and (max-width:500px) {
	.price_list_boxs2 {
		width: 300px;
		grid-template-columns: 120px 180px;
		margin: 1% 1% 5% 1%;	
	}	
}

.item {	
	text-align: center;
	color: #000;
}
.item_a1 {
	grid-column: 1;
	grid-row: 1;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	background-color: #F5F5B2;
	border-radius: 5px 0 0 0;
}
.item_a2 {
	grid-column: 1;
	grid-row: 2;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	background-color: #D8D8C3;
}
.item_a3 {
	grid-column: 1;
	grid-row: 3;
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	background-color: #D8D8C3;

}
.item_a4 {
	grid-column: 1;
	grid-row: 4;
	border-right: 1px solid #000;
	background-color: #D8D8C3;
	border-radius: 0 0 0 5px;
	padding-bottom: 4px;
}
.item_a5 {
	grid-column: 2;
	grid-row: 1;
	border-bottom: 1px solid #000;
	background-color: #FFFBCB;
	border-radius: 0 5px 0 0;
}
.item_a6 {
	grid-column: 2;
	grid-row: 2;
	border-bottom: 1px solid #000;
	background-color: #EDEBD3;
}
.item_a7 {
	grid-column: 2;
	grid-row: 3;
	border-bottom: 1px solid #000;
	background-color: #EDEBD3;
}
.item_a8 {
	grid-column: 2;
	grid-row: 4;
	background-color: #EDEBD3;
	border-radius: 0 0 5px 0;
}
.item_b1 {
	grid-column: 1;
	grid-row: 4;
	border-right: 1px solid #000;
	background-color: #D8D8C3;
	padding-bottom: 4px;
	border-bottom: 1px solid #000;
}
.item_b2 {
	grid-column: 1;
	grid-row: 5;
	background-color: #D8D8C3;
	border-radius: 0 0 0 5px;
	border-right: 1px solid #000;
}
.item_b3 {
	grid-column: 2;
	grid-row: 5;
	background-color: #EDEBD3;
	border-radius: 0 0 5px 0;
}
.item_b4 {
	grid-column: 2;
	grid-row: 4;
	background-color: #EDEBD3;
	border-radius: 0 0 0 0;
	border-bottom: 1px solid #000;
}
.plice_p_box {
	width: 100%;
	height: auto;
	margin-top: 50px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	margin-left: 40px;
}
.plice_p_box li {
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	color: #000;
	line-height: 24px;
}

  /*==================================================
qaページ
===================================*/
#qa {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	padding: 100px 0 0px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 300;
}
#qa label {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.qa_inner {
	width: 100%;
	height: auto;
	background-color: #699185;
	padding: 100px 0 70px;
}
.qa_inner h2{
	position: relative;
	font-size: 3rem;
	width: 100%;
	text-align: center;	
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
.qa_inner h2::before {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	content: "Q&A";
	text-align: center;	
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	letter-spacing: 0.2em;

}
.qa_box {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	margin: 50px auto 0;
	max-width: 1100px;
}
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa  {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.cp_actab {
	position: relative;
	overflow: hidden;
	width: 300px;
	margin: 1em;
	color: #1b2538;
}
@media screen and (max-width:625px) {
	.cp_actab {
		width: 330px;
	}	
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	border-radius: 0.5em;
	background-color: #fff;
	font-size: 1.1rem;
}
@media screen and (max-width:625px) {
	.cp_qa .cp_actab label {
		font-size: 1.3rem;
		font-weight: bold;
	}	
}
.cp_qa .cp_actab label::before {
	font-family: serif;
	font-size: 1.5em;
	margin-left: -2em;
	padding-right: 0.5em;
	content: 'Q';
}
.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: #00838f;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	content: '+';
	display: inline-block;
	width: 2em;
	height: 2em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;
	border-radius: 0 0 0.5em 0.5em;
	font-size: 1.1rem;
	background-color: #25242499;
	color: #fff;
	font-weight: 400;
}
@media screen and (max-width:625px) {
	.cp_qa .cp_actab .cp_actab-content {
		font-size: 1.3rem;
		font-weight: bold;
	}	
}
.cp_qa .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 1.5em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: 'A';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
	border: 5px solid rgba(255, 255, 255, 0.444);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
	color: #00838f;
	border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

  /*==================================================
対応エリアページ
===================================*/
#area {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;

}
.area_inner {
	box-sizing: border-box;
	position: relative;
	top: 0%;
	left: 5%;
	width: 90%;
	height: auto;
	margin: 50px 0;
	border: 1px solid #000;

}
.title_area {
	position: relative;
	width: 300px;
	height: 200px;
	margin: 0 auto;	
}
.title_area h2 {
	position: relative;
	top: -100px;
	left: 0%;
	font-size: 3rem;
	text-align: center;
	color: #000;
}
.title_area h2::before {
	position: absolute;
	top: -20px;
	left: 0;
	content: "Area Map";
	font-size: 1.4rem;
	font-weight: 400;
	text-align: center;
	width: 100%;
	height: auto;

}
.wrap {
	padding-top: 40px;
	padding-left: 10px;
	transform: rotate(-40deg);
}
.path{
	stroke: #a675a5; 
	stroke-width: 1px; 
	stroke-dasharray: 2 2; 
	fill: none;
  }
  .circle{
	fill: #b2353562; 
	mix-blend-mode: multiply;
  }
  .text{
	fill: #fff;
	text-anchor: middle;
	border: 1px solid #000;
  }

.area_bottom_box {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.area_bottom_l {
	box-sizing: border-box;
	width: 50%;
	height: auto;
	margin-bottom: 50px;
}
@media screen and (max-width:625px) {
	.area_bottom_l {
		width: 100%;
		height: auto;
	}	
}
.area_bottom_l img {
	width: 80%;
	height: auto;
	margin-left: 10%;
}
.area_bottom_r {
	box-sizing: border-box;
	width: 50%;
	color: #000;
}
@media screen and (max-width:625px) {
	.area_bottom_r {
		width: 100%;
		height: auto;
	}	
}
.chiiki_box {
	box-sizing: border-box;
	width: 220px;
	height: 90px;
	display: grid;
	grid-template-columns: 110px;
	grid-template-rows: 30px;
	margin: 100px auto;
}
@media screen and (max-width:625px) {
	.chiiki_box {
		margin: 0px auto;
		transform: translateX(20px);
	}	
}

.chiiki {
	position: relative;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
	line-height: 30px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
@media screen and (max-width:800px) {
	.chiiki {
		font-size: 1.2rem;
		line-height: 15px;
	}	
}
@media screen and (max-width:625px) {
	.chiiki {
		font-size: 1.5rem;
		line-height: 30px;
	}	
}
.chiiki::before {
	position: absolute;
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	content: "";
	width: 15px;
	height: 6px;
	background-color: #35b033;
}
@media screen and (max-width:800px) {
	.chiiki::before {
		top: 30%;
	}	
}
@media screen and (max-width:625px) {
	.chiiki::before {
		top: 50%;
	}	
}
.c1 {
	grid-column: 1;
	grid-row: 1;
}
.c2 {
	grid-column: 1;
	grid-row: 2;
}
.c3 {
	grid-column: 1;
	grid-row: 3;
}
.c4 {
	grid-column: 2;
	grid-row: 1;
	margin-left: 10px;
}
.c5 {
	grid-column: 2;
	grid-row: 2;
	margin-left: 10px;
}
.c6 {
	grid-column: 2;
	grid-row: 3;
	margin-left: 10px;
}
.area_bottom_r p {
	position: relative;
	font-size: 1.4rem;
	letter-spacing: 0.03em;
	line-height: 30px;
	text-align: left;
	width: 330px;
	margin: 100px auto;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}
@media screen and (max-width:800px) {
	.area_bottom_r p {
		font-size: 1.2rem;
		line-height: 20px;

	}	
}
@media screen and (max-width:625px) {
	.area_bottom_r p {
		font-size: 1.4rem;
		line-height: 30px;
	}	
}
@media screen and (max-width:500px) {
	.area_bottom_r p {
		font-size: 1.1rem;
		line-height: 20px;
		width: 250px;
		margin: 60px auto;
	}	
}
.area_bottom_r p::before {
	position: absolute;
	top: 0;
	left: -20px;
	content: "※";
	font-size: 1/8rem;
	color: #000;
}	


  /*==================================================
CONTACTページ
===================================*/
.contact_bg {
	position:relative;
	left: 0;
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	overflow: hidden;
}
@media screen and (max-width:730px) {
	.contact_bg {
		aspect-ratio: 3/3.5;
	}	
}
@media screen and (max-width:500px) {
	.contact_bg {
		aspect-ratio: 3/5;
	}	
}
.contact_bg img {
	width: 100%;
	height: auto;
	margin-top: 0px;
}
@media screen and (max-width:1000px) {
	.contact_bg img {
		margin-top: 130px;
	}	
}

@media screen and (max-width:730px) {
	.contact_bg img {
		margin-top: 300px;
	}	
}
@media screen and (max-width:630px) {
	.contact_bg img {
		margin-top: 130px;
	}	
}
@media screen and (max-width:625px) {
	.contact_bg img {
		margin-top: -40px;
	}	
}
@media screen and (max-width:500px) {
	.contact_bg img {
		width: 120%;
		margin-top: 170px;

	}	
}
#contact {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	top: 0;
	left: 0;
	margin-top: -75%;
	aspect-ratio: 4/3;
	background-image: url(../images/co_inner_bg.png);
	background-size:  cover;
}
@media screen and (max-width:1000px) {
	#contact {
		aspect-ratio: 3/3;
		background-size: cover;
		background-position: center;
		margin-top: -80;
	}	
}
@media screen and (max-width:730px) {
	#contact {
		aspect-ratio: 3/4;
		background-size: cover;
		background-position: center;
		margin-top: -117%;
	}	
}
@media screen and (max-width:500px) {
	#contact {
		aspect-ratio: 3/6;
		background-size: cover;
		background-position: center;
		margin-top: -160%;
	}	
}
.contact_inner {
	width: 100%;
	height: auto;
}

/************************ title_contact ***************************/
#section_title_contact {
	width: 350px;
	height: 66px;
	margin: 100px auto 0px;
}
@media screen and (max-width:625px) {
	#section_title_contact {
		width: 250px;
	}	
}
#section_title_contact .sen {
	position: absolute;
	top:10px ;
	right: -180px;
	width: 200px;
	border-bottom: 1px solid #ffffff;
}
@media screen and (max-width:625px) {
	#section_title_contact .sen {
		width: 150px;
		right: -120px;
	}	
}
@media screen and (max-width:500px) {
	#section_title_contact .sen {
		right: 55px;
		top: 47px;
	}	
}
#section_title_contact span::before {
	content: "CONTACT";
	color: #fff;
	margin-left: 70px;
}
@media screen and (max-width:625px) {
	#section_title_contact span::before {
		margin-left: 50px;
	}	
}
@media screen and (max-width:630px) {
	#section_title_contact span::before {
		margin-left: 50px;
	}	
}
#title_contact {
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 400;
	font-size: 1.6rem;
	border: 1px #000 solid;
	color: #ffffff;
	transition: all .2s ease-in-out;
	transition-delay: 1s;
	width: 100%;
	line-height: 66px;
	letter-spacing: 0.05em;
	border: 1px solid #fff;
}
@media screen and (max-width:625px) {
	#title_contact {
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 400;
		font-size: 2rem;
	}	
}
#title_contact2.on {
	background-color: #000000;
}
#contact_title_p {
	padding: 0;
	margin: 30px auto 80px;
	color: #ffffffa4;
	text-shadow: #0000003a 2px 2px 4px;
	font-weight: 400;
}
@media screen and (max-width:400px) {
	#contact_title_p {
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 400;
		font-size: 1.2rem;
	}	
}

/************************** title_contact ****************************/
.form {
	width: 40%;
	margin-left: 10%;
	height: auto;
	margin-top: -30px;
}
@media screen and (max-width:500px) {
	.form {
		width: 100%;
		margin-left: 0;
	}	
}
.contact_l {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0;
	z-index: 100;
}


#error_m {
	color: red;
}

.contact_box {
	width: 220px;
	height: auto;
	margin: 0 auto 20px;
}
@media screen and (max-width:625px) {
	.contact_box {
		width: 280px;
	}	
}

.contact_box2 {
	width: 220px;
	height: auto;
	margin: 0 auto;
}
@media screen and (max-width:625px) {
	.contact_box2 {
		width: 280px;
	}	
}

.inputs {
	box-sizing: border-box;
	width: 100%;
	height: 30px;
	padding: 5px;
	border-radius: 5px;
	border: none;
	box-shadow: inset #0000005f  0px 3px 6px;
}
@media screen and (max-width:625px) {
	.inputs {
		height: 35px;
		padding: 5px;
		border-radius: 5px;
	}	
}

.inputs2 {
	box-sizing: border-box;
	width: 100%;
	height: 8em;
	margin: 0px auto;
	padding: 5px;
	border-radius: 5px;
	box-shadow: inset #0000005f  0px 3px 6px;
}
@media screen and (max-width:625px) {
	.inputs2 {
		height: 8rem;
		padding: 5px;
		border-radius: 5px;
	}	
}
.button_wrapper {
	width: 100%;
}

.button {
	position: relative;
	box-sizing: border-box;
	display: block;
	width: 220px;
	height: 40px;
	margin: 40px auto;
	border: 1px solid #979494;
	background-color: #727272;
	text-align: center;
	border-radius: 5px;
	color: #fff;
	font-size: 1.2rem;
	z-index: 100000;
	letter-spacing: 0.1em;
	appearance: none;
	-webkit-appearance: none;
}
@media screen and (max-width:625px) {
	.button {
		height: 40px;
		padding: 5px;
		border-radius: 5px;
		width: 280px;
		font-size: 1.4rem;
	}	
}

.button:hover {
	background-color: #ffffff;
	color: #000000;
	transition: 0.5s;
}


  /*==================================================
CONTACT2 募集ページ
===================================*/

#contact2 {
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
.contact2_inner {
	box-sizing: border-box;
	width: 80%;
	height: 600px;
	margin-top: 100px;
	margin-bottom: 100px;
	margin-left: 10%;
	background-color:#204953 ;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: #fff;
	border-radius: 10px;
	padding-top: 70px;
}
@media screen and (max-width:670px) {
	.contact2_inner {
		height: auto;
		padding-top: 50px;
		width: 96%;
		margin-left: 2%;
		margin-top: 80px;
		margin-bottom: 80px;
	}	
}
.contact2_l {
	width: 45%;
	height: auto;
	text-align: center;
	margin-left: 2.5%;
}
@media screen and (max-width:670px) {
	.contact2_l {
		width: 100%;
	}	
}
.contact2_l h2 {
	font-size: 3rem;
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}
@media screen and (max-width:800px) {
	.contact2_l h2 {
		font-size: 2.4rem;
	}	
}
.contact2_l p {
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 25px;
}
@media screen and (max-width:800px) {
	.contact2_l p {
		font-size: 1.2rem;
	}	
}
@media screen and (max-width:670px) {
	.contact2_l p {
		font-size: 1.4rem;
		margin-bottom: 50px;
		font-weight: 600;
	}	
}
.contact2_r {
	width: 50%;
	height: auto;
	box-sizing: border-box;
	text-align: center;
}
@media screen and (max-width:670px) {
	.contact2_r {
		width: 100%;
	}	
}
.contact2_r ul {
	width: 100%;
	height: auto;
}
.contact2_r li {
	box-sizing: border-box;
	width: 80%;
	height: auto;
	margin-left: 10%;
	border-left:1px  #ffffff solid ;
	border-top:1px  #ffffff solid ;
	border-right:1px  #ffffff solid ;
	padding: 14px ;
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	line-height: 22px;
}
@media screen and (max-width:800px) {
	.contact2_r li {
		font-size: 1.1rem;
	}	
}
@media screen and (max-width:670px) {
	.contact2_r li {
		font-size: 1.3rem;
	}	
}
@media screen and (max-width:450px) {
	.contact2_r li {
		font-size: 1.2rem;
		line-height:20px ;
	}	
}
.contact2_r li:nth-child(3) {
	border-bottom:1px  #ffffff solid ;
}

.contact2_r_bottom {
	box-sizing: border-box;
	width: 80%;
	height: auto;
	box-shadow: inset 10px 10px 10px #0000002e;
	padding: 10px ;
	border-radius: 10px;
	margin-top: 40px;
	margin-left: 10%;
}
@media screen and (max-width:670px) {
	.contact2_r_bottom {
		margin-bottom: 30px;
	}	
}
#contact2_r_bottom_h2 {
	width: 100%;
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 10px;
}
@media screen and (max-width:800px) {
	#contact2_r_bottom_h2 {
		font-size: 2rem;
	}	
}

.contact2_r_bottom p:nth-child(2) {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.6rem;
}
@media screen and (max-width:800px) {
	.contact2_r_bottom p:nth-child(2) {
		font-size: 1.2rem;
	}	
}
@media screen and (max-width:670px) {
	.contact2_r_bottom p:nth-child(2) {
		font-size: 1.4rem;
	}	
}
.contact2_r_bottom p:nth-child(3) {
	width: 100%;
	height: auto;
	text-align: center;
	font-size: 1.6rem;
}
@media screen and (max-width:800px) {
	.contact2_r_bottom p:nth-child(3) {
		font-size: 1.2rem;
	}	
}
@media screen and (max-width:670px) {
	.contact2_r_bottom p:nth-child(3) {
		font-size: 1.4rem;
	}	
}
.contact2_ha {
	width: 100%;
	height: auto;
	position: absolute;
	top: 10%;
	opacity: .4;
	z-index: 10;
	overflow: hidden;
	aspect-ratio: 4/3;
	overflow: hidden;
}
@media screen and (max-width:1300px) {
	.contact2_ha {
		top: 300px;
	}	
}
@media screen and (max-width:1000px) {
	.contact2_ha {
		top: 500px;
	}	
}
@media screen and (max-width:800px) {
	.contact2_ha {
		top: 650px;
		aspect-ratio: 3/4;
	}	
}
@media screen and (max-width:670px) {
	.contact2_ha {
		aspect-ratio: 3/7;
		top: 600px;
	}	
}
@media screen and (max-width:625px) {
	.contact2_ha {
		top: 100px;
		aspect-ratio: 3/7;
	}	
}
@media screen and (max-width:400px) {
	.contact2_ha {
		top: 300px;
		aspect-ratio: 3/7;
		width: 130%;
	}	
}
.contact2_ha img {
	width: 100%;
	height: auto;
}
.contact2_ha img:nth-child(2) {
	display: none;
}
@media screen and (max-width:670px) {
	.contact2_ha img:nth-child(2) {
		display: block;
		transform: scale(-1, 1);
	}	
}


    /*==================================================
FOOTER フッターページ
===================================*/
#footer {
	width: 100%;
	height: auto;
	position: relative;
	color: #000;
	padding-bottom: 20px;
	overflow: hidden;
}
.footer_inner {
	width: 96%;
	height: auto;
	margin-left: 2%;
	background-color: #EAEACF;
	padding: 50px 0 0;
}

.footer_logo {
	width: 100px;
	height: auto;
	margin: 0 auto 30px;
}
@media screen and (max-width:500px) {
	.footer_logo {
		width: 80px;
		margin: 0 auto 20px;
	}	
}
.footer_logo img {
	width: 100%;
	height: auto;
}

/**************フッターのタイトル部分********************/
.footer_logo_p {
	position: relative;
	width: 400px;
	height: auto;
	display: flex;
	align-items: center;
	margin: 0 auto;
}
@media screen and (max-width:500px) {
	.footer_logo_p {
		width: 270px;
	}	
}
.footer_logo_p1 {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	width: 40%;
	height: auto;
	font-size: 3rem;
	text-align: center;
	letter-spacing: 0.5em;
}
@media screen and (max-width:500px) {
	.footer_logo_p1 {
		font-size: 2.4rem;
		left: 0;
	}	
}
.footer_logo_p2 {
	position: absolute;
	top: 50%;
	left: 240px;
	transform: translateY(-50%);
	width: 40%;
	height: auto;
	font-size: 3rem;
	text-align: center;
	letter-spacing: 0.5em;
}
@media screen and (max-width:500px) {
	.footer_logo_p2 {
		font-size: 2.4rem;
		left: 170px;

	}	
}


/*@media screen and (max-width:500px) {
	.footer_logo_p p {
		font-size: 2.4rem;
		letter-spacing: 0.5em;
		width: 110px;
	}	
}*/

.footer_p_niwa {
	width: 20%;
	height: auto;
	margin: 0 auto;
}
@media screen and (max-width:500px) {
	.footer_p_niwa {
		width: 60px;
	}	
}
.footer_p_niwa img {
	width: 100%;
	height: auto;
}
.map {
	width: 96%;
	margin-left: 2%;
	height: 300px;
	margin-top: 50px;
}
iframe {
	width: 100%;
	height: 100%;
}
.footer_ado {
	font-size: 1.4rem;
	width: 100%;
	height: auto;
	text-align: center;
	margin-top: 10px;
	letter-spacing: 0.05em;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 300;
}
.footer_bottom {
	width: 96%;
	height: auto;
	margin-left: 2%;
	margin-top: 50px;
	border-top: #000 1px solid;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.footer_menu {
	box-sizing: border-box;
	width: 50%;
	height: auto;
	display: grid;
	grid-template-columns: 160px 160px 160px;
	grid-template-rows: 40px 40px 40px;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: 4%;
	letter-spacing: 0.05em;
	min-width: 450px;
}
@media screen and (max-width:500px) {
	.footer_menu {
		width: 270px;
		grid-template-columns: 90px 90px 90px;
	}	
}
@media screen and (max-width:370px) {
	.footer_menu {
		margin-left: 40px;
	}	
}
.footer_menu_item {
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	line-height: 40px;
}
@media screen and (max-width:500px) {
	.footer_menu_item {
		font-weight: 600;
	}	
}
.footer_menu_item a::before {
	position: absolute;
	content: "";
	background-color: #6C6767;
	width: 15px; 
	height: 8px;
	top: 50%;
	transform: translateY(-50%);
	margin-left: -20px;
}
.footer_menu_item a {
	position: relative;
	width: 100%;
	height: 40px;
	transition: all 0.1s ease-in-out;
	color: #000;
}
.footer_menu_item a:hover {
	opacity: 0.4;
}
.footmenu1 {
	grid-column: 1;
	grid-row: 1;
}
.footmenu2 {
	grid-column: 1;
	grid-row: 2;
}
.footmenu3 {
	grid-column: 1;
	grid-row: 3;
}
.footmenu4 {
	grid-column: 2;
	grid-row: 1;
}
.footmenu5 {
	grid-column: 2;
	grid-row: 2;
}
.footmenu6 {
	grid-column: 2;
	grid-row: 3;
}
.footmenu7 {
	grid-column: 3;
	grid-row: 1;
}
.footmenu8 {
	grid-column: 3;
	grid-row: 2;
}
.footer_r {
	box-sizing: border-box;
	width: 46%;
	height: auto;
}
.footer_tel {
	box-sizing: border-box;
	width: 300px;
	height: auto;
	background-color: #AFD69E;
	border: 1px solid #00000044;
	color: #fff;
	padding: 20px 0;
	margin: 0 auto;
}
@media screen and (max-width:976px) {
	.footer_tel {
		margin: 0 auto 50px;
	}	
}
@media screen and (max-width:370px) {
	.footer_tel {
		width: 250px;
		margin-left: 40px;
	}	
}
.footer_tel p:nth-child(1) {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 5px;
	letter-spacing: 0.1em;
}
@media screen and (max-width:500px) {
	.footer_tel p:nth-child(1) {
		font-weight: 600;
		font-size: 2.2rem;
	}	
}
.footer_tel p:nth-child(2) {
	font-size: 1.4rem;
	text-align: center;
}
@media screen and (max-width:500px) {
	.footer_tel p:nth-child(2) {
		font-weight: 600;
		font-size: 1.6rem;
	}	
}
.copy {
	width: 100%;
	height: auto;
	line-height: 40px;
	text-align: center;
	font-size: 1.2rem;
}

