@charset "UTF-8";
/* CSS Document */
html {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
html.wf-active,
html.loading-delay {
    visibility: visible;
    opacity: 1;
}

* {
    word-break: break-all;
}
body {
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	color: #000;
	line-height: 1.6;
	letter-spacing: 0.02em;
}
#wrapper {
	overflow: hidden;
}
a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a img {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a:hover {
	color: #c59b6d;
}
.inner {
	max-width: 1240px;
	margin-right: auto;
	margin-left: auto;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
.ns_m {
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	font-style: normal;
}
.ns_b {
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 700;
	font-style: normal;
}
.tm {
	font-family: ten-mincho,serif;
	font-weight: 400;
	font-style: normal;
}

/* fade */
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
	opacity: 0;
}
/* fadeleft */
.fadeLeft {
	animation-name: fadeLeftAnime;
	animation-duration: 2.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
  transform: translateX(-120px);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* faderight */
.fadeRight {
	animation-name: fadeRightAnime;
	animation-duration: 2.2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
  transform: translateX(120px);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* fadeup */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
  from {
	opacity: 0;
	transform: translateY(180px);
  }
  to {
	opacity: 1;
	transform: translateY(0);
  }
}

/* zoomout */
@keyframes zoomOutAnime {
  from {
		transform: scale(1.2);
		opacity: 0;
  }
	to {
		transform:scale(1);
		opacity: 1;
	}
}
.zoomOutTrigger {
	opacity: 0;
}
.zoomOut {
	animation-name: zoomOutAnime;
	animation-duration: 1.8s;
	animation-fill-mode: forwards;
}

/*header*/
header {
	width: 100%;
	position: fixed;
	z-index: 100;
	box-shadow: 0 2px 13px rgb(0 0 0 / 20%);
	background-color: #fff;
}
header .h_inner {
	height: 70px;
	max-width: 1800px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .h_inner .h_left .h_logo {
	width: 280px;
}
header .h_inner .h_left .h_logo a {
	display: block;
}
header .h_inner .h_right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header .h_inner .h_right .h_btn {
	padding-left: 20px;
	margin-top: 50px;
}
header .h_inner .h_right .h_btn a {
	width: 100px;
	height: 100px;
	display: block;
	color: #fff;
	font-size: 15px;
	padding-top: 38px;
	text-align: center;
	font-weight: 500;
	background: #009394;
	border: 1px solid #009394;
	border-radius: 50%;
}
header .h_inner .h_right .h_btn a:hover {
	color: #009394;
	background: #fff;
}
header .h_inner .h_right .gnav {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
header .h_inner .h_right .gnav li {
	text-align: center;
	position: relative;
}
header .h_inner .h_right .gnav li:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 1px;
	height: 18px;
	background-color: #736357;
}
header .h_inner .h_right .gnav li:first-of-type:before {
	display: none;
}
header .h_inner .h_right .gnav li:last-of-type:after {
	content: "";
	position: absolute;
	top: 4px;
	right: 0;
	width: 1px;
	height: 18px;
	background-color: #736357;
}
header .h_inner .h_right .gnav li a {
	padding: 0 10px;
}
header .h_inner .h_right .gnav li a:after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #c59b6d;
	transition: all 0.3s;
	transform: scaleX(0);
}
header .h_inner .h_right .gnav li a:hover:after {
	transform: scaleX(1);
}
.toggle {
	position: fixed;
	top: 0;
	right: 16px;
	color: #736357;
	cursor: pointer;
	z-index: 9999;
	line-height: 0;
	display: none;
}
.toggle:before {
  font-family: "Font Awesome 5 Free";
	font-weight: bold;
  content: "\f0c9";
}
.toggle.open:before {
  content: "\f00d";
}

/* serviceArea */
.serviceArea {
	background-image: url("../img/top/area_bg.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}
.serviceArea::before {
	content: "";
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 373px;
	background-image: url(../img/top/area_mark.webp);
	background-repeat: no-repeat;
	background-position: right bottom;
}
.serviceArea .inner	{
	padding: 70px 20px;
	text-align: center;
	position: relative;
	z-index: 2;
}
.serviceArea .inner	.desc {
	max-width: 800px;
	margin: 0 auto;
	border-radius: 10px;
	background-color: rgba(255,255,255,.8);
	background-image: url("../img/common/ichien_map.svg");
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 300px;
	padding: 30px 20px;;
}
.serviceArea .inner	.desc dt {
	padding-bottom: 15px;
	font-size: 16px;
	text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff -2px 0px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px, #fff 1px -2px 2px, #fff -1px -2px 2px, #fff 2px 1px 2px, #fff -2px 1px 2px, #fff 2px -1px 2px, #fff -2px -1px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px;
}
.serviceArea .inner	.desc dd {
	font-size: 13px;
	text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff -2px 0px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px, #fff 1px -2px 2px, #fff -1px -2px 2px, #fff 2px 1px 2px, #fff -2px 1px 2px, #fff 2px -1px 2px, #fff -2px -1px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px;
}
.serviceArea .inner	.desc h1 {
	font-size: 18px;
	font-family: ten-mincho,serif;
	font-weight: 400;
	font-style: normal;
	padding-bottom: 10px;
}

/* footer */
footer {
	position: relative;
	background-color: #ddc4a7;
}
footer .inner {
	padding: 30px 20px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-end;
}
footer .inner .left,
footer .inner .right {
	width: 50%;
	color: #736357;
}
footer .inner .left ul {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
footer .inner .left ul li {
	padding-top: 18px;
	line-height: 1;
	width: calc(50% - 10px / 2);
}
footer .inner .left ul li a {
	color: #000;
}
footer .inner .left ul li a:hover {
	color: #fff;
}
footer .inner .right {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
footer .inner .right .desc .f_logo {
	width: 280px;
}
footer .inner .right .desc .f_logo a {
	display: block;
	background-color: #fff;
	border-radius: 50px;
	padding: 10px 0;
}
footer .inner .right .desc .f_logo a .img {
	width: 200px;
	margin: 0 auto;
	display: block;
}
footer .inner .right .desc .f_logo a:hover {
	background-color: #736357;
}
footer .inner .right .desc .add,
footer .inner .right .desc .tel {
	color: #000;
	line-height: 1.2;
}
footer .inner .right .desc .add {
	padding-top: 16px;
}
footer .inner .right .desc .tel {
	padding-top: 6px;
}
footer .copy {
	text-align: center;
	padding: 26px 0 10px;
	font-size: 12px;
	color: #000;
	font-weight: 500;
	background-color: #ddc4a7;
}
footer .pagetop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	height: auto;
	z-index: 99;
}
footer .pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	line-height: 1;
	background-color: #736357;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	text-align: center;
	padding-top: 12px;
}

@media screen and (max-width: 1400px) {
/*header*/
	header .h_inner .h_right .h_btn {
    padding-left: 6px;
	}
	header .h_inner .h_right .h_btn a {
		width: 80px;
		height: 80px;
		font-size: 13px;
		padding-top: 30px;
	}
}
	
@media screen and (max-width: 1200px) {
/*header*/
	header .h_inner .h_left .h_logo {
    width: 200px;
}
	header .h_inner .h_right .gnav li a {
		padding: 0px 6px;
		font-size: 13px;
	}
	header .h_inner .h_right .h_btn {
    padding-left: 0;
	}
	
/*footer*/
	footer .inner .right .desc .f_logo {
		width: 220px;
	}
	footer .inner .right .desc .f_logo a .img {
		width: 180px;
	}	
}
	
@media screen and (max-width: 1000px) {
	.inner {
		width: 100%;
		max-width: 100%;
	}
	
	/*header*/
	.toggle {
		display: block;
		top: 30px;
		font-size: 22px;
	}
	header {
		height: 60px;
	}
	header .h_inner {
		width: 100%;
		height: 60px;
		display: block;
		padding: 0
	}
	header .h_inner .h_left {
		padding-left: 16px;
		height: 60px;
	}
	header .h_inner .h_left .h_logo {
		padding-top: 16px;
		width: 200px;
	}
	header .h_inner .gnavArea {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 100%;
		width: 100vw;
		height: 100vh;
		background-color: rgba(221,196,167,.96);
		z-index: 9998;
		opacity: 0.6;
		transition: all 0.5s;
		overflow-y: auto;
		overflow-x: hidden;
		overscroll-behavior: contain;
	}
	header .h_inner .gnavArea.is_show {
		left: 0;
		opacity: 1;
	}
	header .h_inner .gnavArea .gnav {
		display: block;
		width: 100%;
		padding: 70px 0;
	}
	header .h_inner .gnavArea .gnav li {
		width: 100%;
		padding: 8px 0;
		position: static;
	}
	header .h_inner .gnavArea .gnav li a {
		padding: 6px 0;
		display: block;
	}
	header .h_inner .h_right .gnav li a:after {
		display: none;
	}
	header .h_inner .h_right .gnav li a:hover:after {
		display: none;
	}
	
/* serviceArea */
	.serviceArea .inner {
		padding: 60px 8vw;
	}
	
/* footer */
	footer .inner {
		padding: 30px 8vw 16px;
		display: block;
	}
	footer .inner .left,
	footer .inner .right { 
		width: 100%;
	}
	footer .inner .left {
		display: block;
	}
	footer .inner .left .fnav {
		width: 100%;
	}
	footer .inner .left .fnav li {
		width: 100%;
		text-align: center;
		border-bottom: 1px dotted #736357;
		margin-bottom: 10px;
	}
	footer .inner .left .fnav li a {
		display: block;
		padding-bottom: 10px;
		padding-top: 0;
	}
	footer .inner .right {
		padding-top: 20px;
		justify-content: center;
	}
	footer .inner .right .desc .f_logo {
    margin: 0 auto;
	}
	footer .inner .right .desc .add {
    padding-top: 26px;
}
	footer .copy {
		padding: 10px 0 26px;
	}	
	footer .pagetop {
		position: fixed;
		bottom: 16px;
		right: 16px;
	}
	footer .pagetop a {
		width: 40px;
		height: 40px;
		font-size: 20px;
		padding-top: 7px;
	}	
}

@media screen and (max-width: 767px) {
/* serviceArea */
	.serviceArea .inner {
		padding: 50px 6vw;
	}
}

@media screen and (max-width: 600px) {
/* serviceArea */
	.serviceArea .inner	.desc dd {
		text-align: left;
	}
	.serviceArea .inner .desc h1 {
		font-size: 16px;
		padding-bottom: 8px;
	}	
/* footer */
	footer .inner {
		padding: 30px 6vw 0;
	}
	footer .copy {
    padding: 20px 0;
	}
}
