﻿@charset "utf-8";

/* ------ General Settings ------ */
html { *overflow-x: hidden; }
a:hover img {
	opacity:0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
	line-height:1px;
	transition: 0.3s;
}
/* ------ float ------ */
.fLeft { float:left; }
.fRight { float:right; }
/* ------ img ------ */
.forPc { display: block; }
.forMobile { display: none; }
@media screen and (max-width: 639px) {
	.forPc { display: none; }
	.forMobile { display: block; }
}
/* ------ webfont ------ */
/* 日本語フォント */
body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 160%;
	color: #222;
	text-align: left;
	-webkit-text-size-adjust: none;
}
/* 指定英字フォント */
.webfontL {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
}
.webfontS {
	font-family: 'Roboto', sans-serif;
	font-weight: normal;
}
/* ------ ライン ------ */
/* leftLine */
.leftLine {
	line-height: 100%;
	display: flex;
	align-items: center;
}
.leftLine:after {
	border-top: 1px solid;
	content: "";
	flex-grow: 1;
	margin-left: 2%;
}

/* ------ inview アニメーション ------ */
/* fadeIn */
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
/* fadeIn_up */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 1.5s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* fadeIn_left */
.fadeIn_left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 3s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* fadeIn_right */
.fadeIn_right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 3s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* ------ モバイルメニュー ------ */
#menuSp {
	display: none;
}
@media screen and (max-width: 800px) {
	#menuSp {
		display: block;
	}
}
/* ------ PCヘッダー ------ */
/* headArea */
#headArea {
	position: fixed;
	z-index: 10;
	top: -60px;
	left: auto;
	width: 100%;
	height: 60px;
	background-color: #fff;
	box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 800px) {
	#headArea {
		display: none;
	}
}
#headBlock {
	max-width: 1300px;
	margin: 0 auto;
}
.headLogo {
	padding: 12px 3% 0 3%;
	float: left;
}
.headLogo img {
	width: 80px;
}
/* headMenu */
#headMenu {
	float: right;
	width: 80%;
}
@media screen and (max-width: 800px) {
	#headMenu {
		display: none;
	}
}
/* headMenuBox */
.headMenuBox {
	float: left;
	width: 13.6%;
}
/* headMenuBox linkBox */
.headMenuBox .linkBox {
	position: relative;
	z-index: 10;
	overflow: hidden;
	text-align: center;
	padding-bottom: 8%;
}
@media screen and (max-width: 800px) {
	.headMenuBox .linkBox {
		padding-bottom: 4%;
	}
}
.headMenuBox .linkBox a {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    text-indent: -999px;
    z-index: 11;
}
.headMenuBox .zoomBox {
	display: block;
	transition-duration: 0.2s; /*変化に掛かる時間*/
}
.headMenuBox .zoomBox:hover {
	transform: scale(1.2); /*画像の拡大率*/
	transition-duration: 0.2s; /*変化に掛かる時間*/
}
.headMenuBox .zoomBox:hover {}
.headMenuBox h3 {
	padding-top: 18px;
	font-size: 80%;
	line-height: 120%;
	margin: 0;
}
.headMenuBox p {
	font-size: 70%;
	line-height: 140%;
}
.headMenuBox p.subTxt {
	padding-bottom: 10px;
}
/* プルダウン */
.menu {
	position: relative;
	width: 100%;
}
.menu > .menuSingle {
	-webkit-transition: all .5s;
	transition: all .5s;
}
.menuSingle .menuSecond {
	position: absolute;
	top: 56px;
	width: 100%;
	visibility: hidden;
	text-align: center;
	opacity: 0;
	z-index: 20;
}
.menuSingle:hover .menuSecond {
	visibility: visible;
	opacity: 1;
	transition: 0.2s;
}
.menuSingle .menuSecond p {
	background-color: #efefef;
	margin: 1px;
}
.menuSingle .menuSecond p a {
	color: #463318;
	display: block;
	padding: 15px 0;
}
/* ------ move ------ */
.move{
	overflow: hidden;
}
.move-fadeIn{
	transition: 1.5s;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
}
.fadeIn{
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
.move-up{
	transition: 1.5s;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px); 
	-ms-transform: translate(0,60px);
}
.up{
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
}
.move-side{
	transition: 1.5s;
	opacity: 0;
	filter: alpha(opacity=0);
	-ms-filter: "alpha( opacity=0 )";
	transform: translate(-300px,0); 
	-webkit-transform: translate(-300px,0); 
	-ms-transform: translate(-300px,0);
}
.side{
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
	transform: translate(0,0);
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
}

/* ------ body ------ */
body {
}
/* ------ wrapper ------ */
#wrapper {
	background-color: #e3dcd2;
}
@media screen and (max-width: 639px) {
	#wrapper {
		padding: 60px 0 0;
	}
}
/* ------ menuBox ------ */
.menuBox {
	width: 100%;
}
.menuBtn {
	position: fixed;
	top: 10px;
	right: 10px;
    z-index: 1001;
	width: 6%;
}
.menuBtn img{
	width: 100%;
	height: auto;
}
@media screen and (max-width: 800px) {
	.menuBtn {
		top: 5px;
		right: 5px;
		width: 50px;
	}
}
/* ------ mobileTop ------ */
#mobileTop {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-color: #fff;
	box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .1);
}
@media screen and (max-width: 639px) {
	#mobileTop {
		display:  block;
	}
}
#mobileTop .mobileTopLogo {
	width: 80px;
	padding: 10px 0 0 5%;
	float: left;
}
#mobileTop .telNo {
	float: right;
	padding: 18px 65px 0 0;
	font-size: 60%;
}
#mobileTop .telNo a{
	color: #d4191e;
}
#mobileTop .telNo span {
	color: #d4191e;
	font-size: 170%;
}




/* ------ container ------ */
@media screen and (max-width: 639px) {
	#container {
		padding: 60px 0 0;
	}
}
/* ------ footer ------ */
#footArea {
	position: relative;
	z-index: 1;
}
#footArea p {
	font-size:70%;
	font-weight: bold;
	text-align:center;
	padding-bottom: 100px;
}
#footArea p.footLogo {
	width: 30%;
	max-width: 200px;
	margin:0 auto;
	padding:60px 0 20px;
}
#footArea p.footLogo img{
	width: 100%;
}
@media screen and (max-width: 639px) {
	.footLogo {
		padding: 120px 0 20px;
	}
}

/*---------------------------------------------
	ブログ_mainTit
  ---------------------------------------------*/
.mainTit {
	width: 12%;
	margin: 0 auto;
	padding: 40px 0;
}
@media screen and (max-width: 600px) {
	.mainTit {
		width: 20%;
		padding: 40px 0;
	}
}

/*---------------------------------------------
	ブログ_pageTit
  ---------------------------------------------*/
.pageTit {
	width: 90%;
	margin: 0 auto;
	padding-bottom: 40px;
	text-align: center;
}

/* ------ backtotop ------ */
.backtotop {
    position: fixed;
    bottom: 15px;
    z-index: 9000;
    display: none;
    right: 15px;
}
.backtotop a {
    display: block;
}
.backtotop a img {
	width: 60px;
}
.backtotop a:hover img {
	opacity:0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
	line-height:1px;
}
@media screen and (max-width: 639px) {
	.backtotop {
		right: 10px;
	}
	.backtotop a img {
		width: 40px;
	}
}
/* ------ btnTel ------ */
.btnTel {
    position: fixed;
    bottom: 15px;
    z-index: 9001;
    display: none;
    left: 15px;
}
.btnTel img {
	width: 200px;
}
@media screen and (max-width: 700px) {
	.btnTel img {
		width: 180px;
	}
}
@media screen and (max-width: 639px) {
	.btnTel {
		left: 10px;
	}
	.btnTel img {
		width: 130px;
	}
}
/* ------ btnReserve01 ------ */
.btnReserve01 {
    position: fixed;
    bottom: 15px;
    z-index: 9001;
    display: none;
    left: 220px;
}
.btnReserve01 img {
	width: 200px;
}
@media screen and (max-width: 700px) {
	.btnReserve01 {
		left: 200px;
	}
	.btnReserve01 img {
		width: 180px;
	}
}
@media screen and (max-width: 639px) {
	.btnReserve01 {
		left: 10px;
	}
	.btnReserve01 img {
		width: 130px;
	}
}
/* ------ btnReserve02 ------ */
.btnReserve02 {
    position: fixed;
    bottom: 15px;
    z-index: 9000;
    display: none;
    left: 425px;
}
.btnReserve02 img {
	width: 200px;
}
@media screen and (max-width: 700px) {
	.btnReserve02 {
		left: 385px;
	}
	.btnReserve02 img {
		width: 180px;
	}
}
@media screen and (max-width: 639px) {
	.btnReserve02 {
		left: 145px;
	}
	.btnReserve02 a img {
		width: 130px;
	}
}
