/*=============================================================
  common.css
---------------------------------------------------------------

01. common layout
02. header
03. footer
04. home
05. service
06. access
07. media query
08. helper

===============================================================
01. common layout
=============================================================*/
.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}
html,body {
	color: #333;
}
.pc {
	display: inline-block;
}
.sp {
	display: none;
}
h1 {
	margin-bottom: 25px;
	text-align: center;
}
p,
.part ul li {
	margin-bottom: 15px;
	color: #fff;
	font-size: 15px;
	line-height: 2;
	text-align: center;
}
a {
	color: #333;
	text-decoration: underline;
}
img {
	width: 100%;
}
.part {
	text-align: center;
}
.part h1 img {
	width: auto;
}
.part h1.line-one img {
	height: 23px;
}
.part h1.line-two img {
	height: 70px;
}
.part h1.with-rubi img {
	height: 60px;
}
.tit-deco {
	width: 100px;
	height: auto;
	margin-bottom: 25px;
}
.part {
	margin-bottom: 100px;
}
.part-inner {
	width: 80%;
	margin: 0 auto;
}
.img-box {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#loading {
	width: 100%;
	height: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	transition: all ease 1000ms;
	-webkit-backface-visibility:hidden;
	backface-visibility:hidden;
	overflow: hidden;
}
#loading.active {
	opacity: 0;
	visibility: hidden;
}
.central {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
}
#wrapper {
	position: relative;
	z-index: 1;
}
#bg,
#visual-outer,
#visual {
	width: 100%;
	height: 100%;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
#bg {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
}
#visual-outer {
	position: relative;
}
#visual {
	transform: scale( 1.3 );
	transition: all linear 15000ms;
}
#visual-outer img {
	background: rgba( 64,33,15,0.01 );
}
#visual-inner {
	overflow: hidden;
}
.active #visual {
	transform: scale( 1 );
}
#visual::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba( 64,33,15,0.45 );
}
.pages-nav {
	padding: 40px 0;
	overflow: hidden;
}
.pages-nav ul {
	text-align: center;
}
.pages-nav ul li {
	display: inline-block;
	position: relative;
}
.pages-nav ul li:nth-of-type(5),
.pages-nav ul li:nth-of-type(6) {
	display: none;
}
.pages-nav ul li::after {
	display: inline-block;
	content: "";
	width: 30px;
	height: 1px;
	margin: 0 6px 6px;
	background: #fff;
	background: -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 120, color-stop(1.00, #e5d095), color-stop(0.00, #fefbf2));
	background: -webkit-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	background: -moz-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	background: -ms-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	background: radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	position: relative;
}
.pages-nav ul li:nth-of-type(4)::after,
.pages-nav ul li:nth-of-type(5)::after,
.pages-nav ul li:nth-of-type(6)::after {
	display: none;
}
.pages-nav ul li a {
	text-decoration: none;
}
.pages-nav ul li a img {
	display: inline-block;
	width: auto;
	height: 16px;
	background: rgba( 64,33,15,0.01 );
	overflow: hidden;
}
.pages-nav ul li a:hover img {
	animation: hoverRotate ease alternate 1000ms;
}
@keyframes hoverRotate {
	0% { transform: rotateY( 0deg ); }
	100% { transform: rotateY( 360deg ); }
}

#page-top {
	width: 15px;
	position: fixed;
	bottom: 20px;
	right: 4.5%;
	z-index: 9;
	text-align: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: all ease 600ms;
}
#page-top.active {
	bottom: 0;
	opacity: 1;
	visibility: visible;
}
#page-top img {
	margin-bottom: 16px;
	background: rgba( 255,255,255,0.01 );
}
#page-top::after {
	display: inline-block;
	content: "";
	width: 1px;
	height: 40px;
	background: #e5d095;
}

/*
* btn-01
*/
.btn-01 {
	display: inline-block;
	width: auto;
	padding: 2px;
	border: solid 1px #e5d095;
}
.btn-01 a {
	display: inline-block;
	padding: 25px 45px;
	border-left: solid 3px #e5d095;
	border-right: solid 3px #e5d095;
	position: relative;
}
.btn-01 a::before,
.btn-01 a::after {
	display: block;
	content: "";
	width: 100%;
	height: 3px;
	background: #fff;
	background: -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 120, color-stop(1.00, #e5d095), color-stop(0.00, #fefbf2));
	background: -webkit-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	background: -moz-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	background: -ms-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	background: radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	position: absolute;
}
.btn-01 a::before {
	top: 0;
	left: 0;
}
.btn-01 a::after {
	bottom: 0;
	left: 0;
}
.btn-01 a img {
	width: auto;
	height: 16px;
	background: rgba( 255,255,255,0.01 );
}
.btn-01 a span {
	display: inline-block;
	margin: 0 10px;
}
.btn-01 a:hover span img {
	animation: hoverRotate ease alternate 1000ms;
}

/*
* basic motion
*/
.not-android .part > h1,
.not-android .part-inner,
.not-android .img-box {
	transition: all ease 1000ms;
	transform: translateY(30px);
	opacity: 0;
	overflow: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.not-android .part.active > h1,
.not-android .active .part-inner,
.not-android .active .img-box {
	transform: translateY(0);
	opacity: 1;
}
.not-android .active .part-inner {
	transition-delay: 400ms;
}

/*
* pages
*/
.pages #visual-outer h1 img {
	display: inline-block;
	width: auto;
	height: 44px;
	transition: all ease 1000ms;
	transform: rotateY( -90deg ) translateY(40px);
	background: rgba( 64,33,15,0.01 );
	overflow: hidden;
	-webkit-backface-visibility: hidden;
}
.pages #visual-outer.active h1 img {
	transform: rotateY(0) translateY(0);
}
.pages #visual-outer.active h1 img:nth-of-type(1) {
	transition-delay: 800ms
}
.pages #visual-outer.active h1 img:nth-of-type(2) {
	transition-delay: 900ms
}
.pages #visual-outer.active h1 img:nth-of-type(3) {
	transition-delay: 1000ms
}
.pages #visual-outer.active h1 img:nth-of-type(4) {
	transition-delay: 1100ms
}
.pages #visual-outer.active h1 img:nth-of-type(5) {
	transition-delay: 1200ms
}
.pages #visual-outer.active h1 img:nth-of-type(6) {
	transition-delay: 1300ms
}
.pages #visual-outer.active h1 img:nth-of-type(7) {
	transition-delay: 1400ms
}

/*
* sns
*/
.sns ul {
	text-align: center;
}
.sns ul li {
	display: inline-block;
	width: 52px;
}
.sns ul li a {
	display: inline-block;
	padding: 0 6px;
}
.sns ul li a img {
	display: block;
	background: rgba( 255,255,255,0.01 );
	transition: all ease 250ms;
}
.sns ul li a:hover img {
	transform: translateY( -6px );
}

.line-bt img {
	width: 180px;
	transition: all ease 250ms;
}
.line-bt img:hover {
	transform: translateY( -6px );
}

/*
* cards
*/
.cards {
	width: 450px;
	margin: 0 auto;
}
.cards li {
	width: 25%;
	float: left;
	text-align: center;
}
.cards li img {
	width: auto;
}
.cards li:nth-of-type(1) img,
.cards li:nth-of-type(2) img {
	padding: 18px 4px;
	background: #fff;
}
.cards li:nth-of-type(4) img {
	padding: 13px 4px;
	background: #fff;
}


/*=============================================================
02. header
=============================================================*/
#main-header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background: rgba( 64,33,15,0 );
	transition: all ease 600ms;
}
#main-header.active {
	background: rgba( 64,33,15,0.75 );
}
#main-header #header-inner {
	width: 90%;
	margin: 0 auto;
	position: relative;
}
#main-header h1 {
	width: 140px;
	position: absolute;
	top: 17px;
	left: 0;
}
#main-header .pages-nav ul {
	text-align: right;
}
#main-header #cross {
	display: none;
	width: 26px;
	position: absolute;
	left: 25px;
	top: 28px;
}

/*=============================================================
03. footer
=============================================================*/
#main-footer {
	padding: 30px 0 30px;
	text-align: center;
	background: rgba( 255,255,255,0.1 );
}
#main-footer img {
	width: 360px;
}

/*=============================================================
04. home
=============================================================*/
#home #main-header {
	opacity: 0;
	visibility: hidden;
}
#home #main-header.active {
	opacity: 1;
	visibility: visible;
}
#home #visual {
	background-image: url( /common/img/home/visual.jpg );
}
#home #bg {
	background-image: url( /common/img/home/bg.jpg?v1 );
}
#home #visual-inner {
	width: 24%;
	max-width: 420px;
	min-width: 260px;
	top: 52%;
}
#home #visual-inner img {
	display: block;
	background: rgba( 64,33,15,0.01 );
	transition-delay: 1000ms;
}
#home #visual-inner img.pc {
	display: block;
}
#home #visual-inner img.sp {
	display: none;
}

#home #visual-inner span {
	display: block;
	overflow: hidden;
}
#home #visual-inner span:nth-of-type(3) {
	margin-bottom: 50px;
}
#home #visual-inner span img {
	transition: all ease 1600ms;
}
#home .active #visual-inner span:nth-of-type(1) img,
#home .active #visual-inner span:nth-of-type(2) img,
#home .active #visual-inner span:nth-of-type(3) img {
	transform: translateY( 0 );
}
#home #visual-inner > img {
	margin-bottom: 12px;
	opacity: 0;
	transition: all ease 1600ms;
	transition-delay: 1000ms;
}
#home .active #visual-inner > img {
	opacity: 1;
}
#home #visual-inner span:nth-of-type(1) img {
	margin-bottom: 8px;
	transform: translateY( 100px );
	transition-delay: 1000ms;
}
#home #visual-inner span:nth-of-type(2) img {
	margin-bottom: 0;
	transform: translateY( 100px );
	transition-delay: 1700ms;
}
#home #visual-inner span:nth-of-type(3) img {
	transform: translateY( 120px );
	transition-delay: 1900ms;
}
#home #icon-scroll-outer {
	width: 70px;
	margin: 0 auto;
}
#home #icon-scroll-outer img {
	opacity: 0;
	transition: all ease 2000ms;
}
#home #icon-scroll-outer img:nth-of-type(1) {
	transform: translateY( 40px ) rotateY( 400deg );
}
#home .active #icon-scroll-outer img {
	opacity: 1;
	transform: translateY( 0 ) rotateY( 0 );
}
#home #icon-scroll-outer img:nth-of-type(1) {
	margin-bottom: 10px;
	transition-delay: 3000ms;
}
#home #icon-scroll-outer img:nth-of-type(2) {
	transition-delay: 3600ms;
}

/*
* visual nav
*/
#home #visual-outer #alt-navigation {
	opacity: 1;
	transition: all ease 600ms;
	transition-delay: 300ms;
}
#home #visual-outer #alt-navigation.hide {
	opacity: 0;
}
#home #visual-outer .pages-nav {
	width: 100%;
	position: absolute;
	top: 10px;
	left: 0.3em;
}
#home #visual-outer .pages-nav ul li img {
	margin: 0 -4px;
	transition: all ease 1200ms;
	transition-delay: 1500ms;
}
#home #visual-outer.active .pages-nav ul li img {
	margin: 0;
}
#home #visual-outer .pages-nav ul li {
	transition: all ease 1000ms;
	transition-delay: 1800ms;
	opacity: 0;
}
#home #visual-outer .pages-nav ul li:nth-of-type(2),
#home #visual-outer .pages-nav ul li:nth-of-type(3) {
	transition-delay: 1500ms;
}
#home #visual-outer .pages-nav ul li::after {
	width: 0;
	transition: all ease 1200ms;
	transition-delay: 1800ms;
}
#home #visual-outer .pages-nav ul li:nth-of-type(2)::after {
	transition-delay: 1000ms;
}
#home #visual-outer.active .pages-nav ul li {
	opacity: 1;
}
#home #visual-outer.active .pages-nav ul li::after {
	width: 30px;
}

#home #part-01 .part-inner p:last-of-type {
	margin-bottom: 15px;
}
#home #part-01 .btn-01 {
	margin-bottom: 20px;
}

#reserve {
	margin-top: 60px;
}

#home #part-02 > h1 {
	margin-bottom: 40px;
}
#home #part-02 .img-box {
	width: 100%;
	padding-top: 50%;
	background-image: url( /common/img/home/img-prof.jpg );
}
#home #part-02 .lefter,
#home #part-02 .righter {
	width: 50%;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#home #part-02 .part-inner h1,
#home #part-02 .part-inner p,
#home #part-02 .part-inner ul li {
	text-align: left;
}
#home #part-02 .part-inner h1 {
	margin-bottom: 15px;
	color: #fff;
	font-size: 24px;
	line-height: 1.6;
	font-weight: normal;
}
#home #part-02 .part-inner ul {
	margin-bottom: 15px;
}
#home #part-02 .part-inner ul li {
	margin-bottom: 0px;
}
#home #part-02 .lefter {
	float: left;
	padding-right: 30px;
}
#home #part-02 .righter {
	float: right;
	padding-left: 30px;
}

/*
* gallery
*/
#home #gallery {
	margin-bottom: 70px;
}
#home #gallery .part-inner {
	position: relative;
	opacity: 1;
	transform: translateY(0);
}
#home #gallery .pict,
#home #gallery .pict::after {
	transition: all ease 1000ms;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
}
#home #gallery .pict {
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
}
#home #gallery .pict::after {
	display: inline-block;
	content: "";
	width: 100%;
	height: 100%;
	background: rgba( 64,33,15,0.65 );
	position: absolute;
	top: 0;
	right: 0;
}
#home #gallery .pict a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#home #gallery .pict:nth-of-type(1) {
	width: 55%;
	padding-top: 40%;
	margin-bottom: 5%;
	background-image: url(/common/img/home/img-01.jpg);
}
#home #gallery .pict:nth-of-type(2) {
	width: 35%;
	padding-top: 50%;
	background-image: url(/common/img/home/img-02.jpg);
	background-position: center right;
	position: absolute;
	left: 65%;
	top: 10%;
}
#home #gallery .pict:nth-of-type(3) {
	width: 35%;
	padding-top: 25%;
	background-image: url(/common/img/home/img-03.jpg);
	margin-left: 24%;
	margin-bottom: 5%;
}
#home #gallery .pict:nth-of-type(4) {
	width: 50%;
	padding-top: 35%;
	background-image: url(/common/img/home/img-04.jpg);
	margin-left: 5%;
	margin-bottom: 5%;
}
#home #gallery .pict:nth-of-type(5) {
	width: 35%;
	padding-top: 25%;
	background-image: url(/common/img/home/img-05.jpg);
	position: absolute;
	left: 60%;
	top: 55%;
}
#home #gallery .pict:nth-of-type(6) {
	width: 45%;
	padding-top: 30%;
	background-image: url(/common/img/home/img-06.jpg);
	margin-left: 50%;
	transform: translateX( -50% );
}
#home #gallery.active .pict::after {
	width: 0;
	opacity: 0.1;
	transition-delay: 600ms;
}

/*=============================================================
05. service
=============================================================*/
#service #visual {
	background-image: url( /common/img/service/visual.jpg );
}
#service #bg {
	background-image: url( /common/img/service/bg.jpg );
}
#service .line-single {
    width: 100%;
    height: 1px;
}
#service .part {
	margin-bottom: 0;
}
#service .part h1 {
	margin-bottom: 30px;
}
#service .part h2.tac {
    margin-bottom: 10px;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.8;
    color: #fff;
}
#service .part section {
	padding-bottom: 30px;
}
#service .part section:last-of-type {
	padding-bottom: 7px;
}
#service .part section div {
	margin-bottom: 16px;
}
#service .part section h1 {
	color: #fff;
	font-size: 20px;
	font-weight: normal;
	margin-bottom: 10px;
}
#service .part section p:last-of-type {
	margin-bottom: 0;
}
#service .part section ul li {
	margin-bottom: 0px;
	font-size: 20px;
}
#service .part-inner > p {
	margin-bottom: 25px;
}
#service .attention {
	width: 60%;
	padding: 25px 35px;
	border: solid 1px rgba( 255,255,255,0.2 );
	margin: 0 auto 35px;
	background: rgba( 255,255,255,0.1 );
}
#service .attention li,
#service .part section .attention li {
	margin-left: 1.2em;
	margin-bottom: 0;
	font-size: 15px;
	line-height: 2;
	text-indent: -0.6em;
	text-align: left;
}
#service .attention li::before {
	display: inline-block;
	content: "＊";
	margin-right: 0.2em;
	color: #e5d095;
}

#service #part-04 ul.mb-plus {
	margin-bottom: 30px;
}

#service #part-09 h1 img {
	width: 150px;
	height: auto;
}

.mb-plus {
	margin-bottom: 50px;
}

#service strong {
	font-size: 20px;
}
#service .footnote {
	margin-top: 20px;
}
#service .part section p.mb-plus {
	margin-bottom: 30px;
}

#service #part-16 {
	margin-bottom: 0px;
}
#service #part-16 .attention {
	width: 50%;
}
#service .price-cotion {
	margin-bottom: 40px;
	font-size: 12px;
	letter-spacing: 1px;
	text-align: center;
	opacity: 0.7;
}

/*=============================================================
06. access
=============================================================*/
#access #visual {
	background-image: url( /common/img/access/visual.jpg );
}
#access #bg {
	background-image: url( /common/img/access/bg.jpg );
}
#access dl {
	margin-bottom: 30px;
	color: #fff;
	font-size: 15px;
	line-height: 2;
	letter-spacing: 2px;
}
#access dl dt {
	font-size: 20px;
}
#access dl dt:nth-of-type(5) {
	margin-bottom: 12px;
}
#access dl dd a {
	color: #fff;
	text-decoration: underline;
}
#access dl dd:nth-of-type(1) a {
	text-decoration: none;
}
#access dl dd > img {
	padding-top: 4px;
	vertical-align: middle;
}
#access .img-box,
#access #map-outer {
	width: 50%;
	height: 600px;
	float: left;
}
#access .img-box {
	background-image: url( /common/img/access/img-01.jpg );
}
#access #map {
	width: 100%;
	height: 600px;
	opacity: 0.8;
}

/*=============================================================
07. media query
=============================================================*/
@media screen and (min-width: 1420px){
	.pages #visual-outer h1 img {
		height: 60px;
	}
}

@media screen and (max-width: 1024px){
	.sns ul li a img {
		transition: none;
	}
	.sns ul li a:hover img {
		transform: none;
	}
}

@media screen and (max-width: 767px){
	/*
	* nav
	*/
	#main-header,
	#home #main-header {
		opacity: 1;
		visibility: visible;
		position: absolute;
		top: 0;
		left: 0;
	}
	#main-header #header-inner {
		width: 100%;
		height: 100%;
	}
	#main-header h1 {
		width: 120px;
		left: 20px;
		top: 20px;
	}
	#main-header #nav-outer {
		width: 100%;
		height: 100%;
		background: rgba( 64,33,15,0.9 );
		position: fixed;
		top: 0;
		left: 0;
		opacity: 0;
		visibility: hidden;
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		overflow: hidden;
		
	}
	.not-android #main-header #nav-outer {
		transition: all ease 800ms;
		transition-delay: 300ms;
		transform: scale( 0.7 );
	}
	#main-header #nav-inner {
		position: relative;
		top: 48%;
		transform: translateY( -50% );
		-webkit-transform: translateY( -50% );
	}
	#main-header::before,
	#main-header::after,
	#main-header #header-inner::before,
	#main-header #header-inner::after {
		content: "";
		display: block;
		width: 5px;
		height: 0;
		background: #e5d095;
		position: fixed;
		z-index: 1;
		opacity: 0;
	}
	.not-android #main-header::before,
	.not-android #main-header::after,
	.not-android #main-header #header-inner::before,
	.not-android #main-header #header-inner::after {
		transition: all ease 800ms;
	}
	#main-header::before {
		bottom: 0;
		left: 0;
	}
	#main-header::after {
		top: 0;
		right: 0;
	}
	#main-header #header-inner::before,
	#main-header #header-inner::after {
		width: 0;
		height: 5px;
		background: #fff;
		background: -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 120, color-stop(1.00, #e5d095), color-stop(0.00, #fefbf2));
		background: -webkit-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
		background: -moz-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
		background: -ms-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
		background: radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
	}
	#main-header #header-inner::before {
		top: 0;
		left: 0;
	}
	#main-header #header-inner::after {
		bottom: 0;
		right: 0;
	}
	.pages-nav {
		padding: 0;
		
	}
	.pages-nav ul li,
	.pages-nav ul li a {
		display: inline-block;
		width: 100%;
		text-align: center;
	}
	.pages-nav ul li:nth-of-type(5),
	.pages-nav ul li:nth-of-type(6) {
		display: inline-block;
	}
	.pages-nav ul li a {
		padding: 15px 0;
	}
	.pages-nav ul li:nth-of-type(5) a {
		width: auto;
		display: inline-block;
	}
	.pages-nav ul li:nth-of-type(5) a img {
		width: 40px;
		padding: 0 6px;
		height: auto;
	}
	.pages-nav ul li a img {
		height: 20px;
		transform: rotateY( 140deg );
		opacity: 0;
	}
	.not-android .pages-nav ul li a img {
		transition: 1600ms;
		transition-delay: 600ms;
	}
	.pages-nav ul li::after {
		display: none;
	}
	
	/*
	* icon nav
	*/
	#main-header #icon-nav {
		width: 80px;
		height: 80px;
		background: rgba( 64,33,15,0.7 );
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10;
	}
	.not-android #main-header #icon-nav {
		transition: all ease 600ms;
	}
	#main-header #icon-nav span {
		display: block;
		width: 30px;
		height: 1px;
		background: #fff;
		background: -webkit-gradient(radial, 50% 100%, 0, 50% 100%, 120, color-stop(1.00, #e5d095), color-stop(0.00, #fefbf2));
		background: -webkit-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
		background: -moz-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
		background: -ms-radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
		background: radial-gradient(50% 100%, circle, #fefbf2, #e5d095);
		position: absolute;
		left: 25px;
	}
	.not-android #main-header #icon-nav span {
		transition: all ease 500ms;
	}
	#main-header #icon-nav span:nth-of-type(1) {
		top: 30px;
	}
	#main-header #icon-nav span:nth-of-type(2) {
		top: 40px;
	}
	#main-header #icon-nav span:nth-of-type(3) {
		top: 50px;
	}
	
	/*
	* nav open
	*/
	#main-header.open #nav-outer {
		opacity: 1;
		visibility: visible;
		transform: scale( 1 );
	}
	#main-header.open .pages-nav ul li a img {
		transform: rotateY( 0 );
		opacity: 1;
	}
	#main-header.open .pages-nav ul li:nth-of-type(2)::before,
	#main-header.open .pages-nav ul li:nth-of-type(2)::after {
		width: 40px;
	}
	#main-header.open #icon-nav {
		background: rgba( 64,33,15,0 );
	}
	#main-header.open #icon-nav span:nth-of-type(1) {
		transform: rotate( 45deg );
		-webkit-transform: rotate( 45deg );
		top: 40px;
	}
	#main-header.open #icon-nav span:nth-of-type(2) {
		width: 0;
		left: 40px;
	}
	.not-android #main-header.open #icon-nav span:nth-of-type(2) {
		transition-delay: 500ms;
	}
	#main-header.open #icon-nav span:nth-of-type(3) {
		top: 40px;
		transform: rotate( 135deg );
		-webkit-transform: rotate( 135deg );
	}
	.android #main-header.open #icon-nav span {
		display: none;
	}
	.android #main-header.open #icon-nav #cross {
		display: block;
	}
	#main-header.open #header-inner::before,
	#main-header.open #header-inner::after {
		width: 100%;
		opacity: 1;
	}
	#main-header.open::before,
	#main-header.open::after {
		height: 100%;
		opacity: 1;
	}	
	/*
	* pages
	*/
	.pages #visual-outer h1 {
		width: 100%;
		text-align: center;
	}
	.pages #visual-outer h1 img {
		height: 30px;
	}
	.part h1.with-rubi img {
		height: 48px;
	}
	
	/*
	* home
	*/
	#home #main-header h1 {
		display: none;
	}
	#home #visual-outer nav {
		display: none;
	}
	
	/*
	* service
	*/
	#service .part section h1,
	#service .part section ul li {
		font-size: 16px;
		line-height: 1.8;
		text-align: center;
	}
	#service .part > img,
	#service .part section img {
		height: 1px;
	}
	#service .part img.tit-deco {
		height: auto;
	}
	#service .attention,
	#service #part-16 .attention {
		width: 100%;
		padding: 10px 15px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
	#access dl dt {
		font-size: 18px;
	}
	#access dl dd {
		font-size: 14px;
	}
	#access .img-box,
	#access #map-outer,
	#access #map {
		width: 100%;
		height: 320px;
		float: none;
	}
	#access dl dd > img {
		height: 1px;
	}
}
@media screen and (max-width: 500px){
	.pc {
	display: none;
	}
	.sp {
		display: inline-block;
	}
	p,
	.part ul li {
		font-size: 14px;
		text-align: left;
	}
	#visual {
		transform: scale( 1.57 );
	}
	.part {
		margin-bottom: 40px;
	}
	.btn-01,
	.btn-01 a {
		width: 100%;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
	.btn-01 a {
		padding: 25px 0;
	}
	.btn-01 a img {
		height: 14px;
	}
	.part h1.line-one img {
		height: 18px;
	}
	.part h1.line-two img {
		height: 54px;
	}
	
	/*
	* cards
	*/
	.part .cards li {
		text-align: center;
	}
	
	/*
	* footer
	*/
	#main-footer {
		padding: 20px 0;
	}
	#main-footer img {
		width: 80%;
		height: auot;
	}
	#main-footer p#copy {
		text-align: center;
	}
	#page-top {
		display: none;
	}

	/*
	* home
	*/
	#home #visual-inner img.pc {
		display: none;
	}
	#home #visual-inner img.sp {
		display: block;
	}
	#home #visual-inner {
		min-width: 240px;
		top: 49%;
		overflow: visible;
	}
	#home #visual-inner span {
		overflow: visible;
	}
	#home #visual-inner img {
		opacity: 0;
	}
	#home #visual-inner span:nth-of-type(1) img,
	#home #visual-inner span:nth-of-type(2) img,
	#home #visual-inner span:nth-of-type(3) img {
		transform: translateY( 40px );
	}
	#home #visual-inner span:nth-of-type(1) img {
		transition-delay: 1400ms;
	}
	#home #visual-inner span:nth-of-type(2) img {
		transition-delay: 1800ms;
	}
	#home #visual-inner span:nth-of-type(3) img {
		transition-delay: 2200ms;
	}
	#home .active #visual-inner span:nth-of-type(1) img,
	#home .active #visual-inner span:nth-of-type(2) img,
	#home .active #visual-inner span:nth-of-type(3) img {
		opacity: 1;
		transform: translateY(0);
	}
	#home #visual-inner span:nth-of-type(3) {
		margin-bottom: 30px;
	}
	#home #bg {
		background-position: top right;
	}
	#home #part-02 > h1 {
		margin-bottom: 15px;
	}
	#home #part-02 .lefter h1 {
		margin-bottom: 10px;
	}
	#home #part-02 p span {
		display: inline-block;
		width: 100%;
		margin-bottom: 16px;
		text-align: center;
	}
	#home #part-02 .img-box {
		padding-top: 110%;
		background-position: center right;
	}
	#home #part-02 .part-inner .lefter h1 {
		text-align: center;
	}
	#home #part-02 .lefter,
	#home #part-02 .righter {
		float: none;
		width: 100%;
		padding: 0;
	}
	#home #part-02 .righter section:last-of-type ul {
		margin-bottom: 0;
	}
	#home #gallery {
		margin-bottom: 40px;
	}
	#home #gallery .pict::after {
		display: none;
	}
	
	/*
	* service
	*/
	#service #part-08 section p,
	#service #part-09 section p,
	#service #part-11 section p {
		text-align: center;
	}
	#service .attention li,
	#service .part section .attention li {
		font-size: 14px;
	}
	#service #part-12 section h1,
	#service #part-13 section h1,
	#service #part-14 section h1 {
		text-align: left;
	}
	#service strong {
		font-size: 17px;
	}
	#service #part-15 {
		margin-bottom: 0px;
	}
	#service #part-15 .attention {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 420px){
	
	/*
	* cards
	*/
	.part .cards {
		width: 100%;
		padding: 0;
		background: #fff;
	}
	.part .cards li {
		width: 25%;
		margin-bottom: 0;
		float: left;
	}
	.part .cards li img {
		width: 100%;
		height: auto;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
}

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

	.part h1.with-rubi img {
		height: 42px;
	}

}

/*=============================================================
08. helper
=============================================================*/
.clr {
	clear: both;
}

/*
* clear fix
*/
.cf:before,
.cf:after {
	content:"";
	display: block;
	height: 0;
	overflow: hidden;
}
.cf:after {
	clear: both;
}
