@charset "UTF-8";
/*
 * common.css
 */ 

/* !layout
---------------------------------------------------------- */
html	{overflow-y: scroll;}
body	{font-size: 14px;
		-webkit-text-size-adjust: 100%;
		color:#323232;
}
a.txt_link{
	color:#323232;
	padding-bottom:4px;
	border-bottom:1px solid #323232;
}
a.txt_link:hover{
	color:#9b8c69;
	border-bottom:1px solid #9b8c69;
}

@media screen and (max-width:767px){
	html,body	{height:100%;}
	a.txt_link:hover{
		color:#323232;
		border-bottom:1px solid #323232;
	}
}
@media print {
		html,
		html body { *zoom: 0.65;}
}
/* !wrapper
---------------------------------------------------------- */
.pc{
	display:block!important;
}
.sp{
	display:none!important;
}

@media screen and (max-width:767px){
	.sp{
		display:block!important;
	}
	.pc{
		display:none!important;
	}
}

/* header
---------------------------------------------------------- */
header{
	margin-bottom:55px;
}
header #head{
	position:relative;
	margin:30px auto 35px;
	width:1080px;
	min-width:1080px;
	padding:0 10px 0;
}
header h1{
	width:350px;
	margin-left:340px;
}
header .head_tel{
	position:absolute;
	right:0;
	top:0;
	font-weight:700;
}
header .head_tel p:first-child{
	margin-bottom:5px;
}
header .head_tel dl dt{
	float:left;
	padding:2px;
	margin-right:5px;
	margin-top:3px;
	border:1px solid #9b8c69;
	color:#9b8c69;
	font-size:72%;
}
header .head_tel dl dd{
	float:left;
	margin-top:3px;
	line-height:1.2;
}
header #mv{
	margin-bottom:15px;
}
header nav.tile{
	border-bottom:1px solid #dadada;
}
header nav.tile ul{
	margin:0 auto;
	width:1080px;
	min-width:1080px;
}
header nav.tile ul li{
	float:left;
	width:20%;
	padding-bottom:2px;
	text-align:center;
	line-height:1.1;
	font-size:115%;
	font-weight:500;
}
header nav.tile ul li a{
	position:relative;
	display:block;
	padding:23px 0 20px;
	width:100%;
	height:100%;
}
header nav.tile ul li a.current:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  content: '.';
  color: transparent;
  background: #9b8c69;
  height: 3px;
  transition: width .3s;
  -webkit-transition: width .3s;
}

header nav.tile ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #9b8c69;
  height: 3px;
  transition: width .3s;
  -webkit-transition: width .3s;
}
header nav.tile ul li a:hover:after {
  width: 100%;
  transition: width .3s;
  -webkit-transition: width .3s;
}
header nav.tile ul li span{
	font-size:60%;
	color:#9b8c69;
}
@media screen and (max-width:767px){
	header{
		width:100%;
	}
	header #head{
		position:fixed;
		width:90%;
		min-width:initial;
		padding:15px 5% 15px;
		margin:0;
		background-color:#ffffff;
		z-index:100;
		border-bottom:1px solid #dadada; 
	}
	header h1{
		width:100%;
		margin-left:0;
	}
	header h1 img{
		width:80%;
		margin:0 15% 0 5%;
	}
	header .head_tel{
		display:none;
	}
	header #mv{
		width:90%;
		margin:0 auto 15px;
		padding-top:45%;
	}
	header #mv img{
		width:100%;
	}
	header nav.tile ul{
		display:none;
	}
}

/* .container
---------------------------------------------------------- */
.container{
	width:1080px;
	min-width:1080px;
	margin:0 auto;
	padding:0 10px;
}
.contents h1{
	padding-bottom:40px;
	border-bottom:solid 1px #323232;
	font-family: "Noto Serif Japanese";
	text-align:center;
	font-size:193%;
	font-weight:600;
}
.contents h1 span{
	font-family: Arial, Helvetica, Verdana, "Noto Sans Japanese", sans-serif;
	font-size:45%;
	font-weight:400;
	color:#9b8c69;
}
.contents h1.no_span{
	padding-bottom:50px;
}
@media screen and (max-width:767px){
	.container {
		width:100%;
		min-width:initial;
		padding:0;
	}
	.contents{
		padding-top:15%;
		width:90%;
		margin:0 auto;
	}
	.contents h1{
		padding-bottom:30px;
		font-size:165%;
		line-height:0.7;
	}
	.contents h1.no_span{
		padding-bottom:40px;
	}
}

/* ボタンの効果
---------------------------------------------------------- */
/*金色→白*/
.btn_dc_a{
	border:1px solid #9b8c69;
	width:300px;
}
.btn_dc_a a{
	overflow:hidden;
	display:block;
	position:relative;
	width:300px;
	padding:25px 0;
	color:#ffffff;
	text-align:center;
	background-color:transparent;
	transition: 0.3s ease-in-out;
}
.btn_dc_a a:before {
    content: '';
	position:absolute;
	right: -50px;
	top:0;
	bottom:0;
	left:0;
    border-right: 50px solid transparent;
    border-bottom: 70px solid #ffffff;
    transform: translateX(-100%);
	transition: 0.5s ease-in-out;
	box-sizing:border-box;
	z-index:-1;
}
.btn_dc_a a:after {
    content: '';
	position:absolute;
	left: -50px;
	top:0;
	bottom:0;
	right:0;
	bottom:0;
    border-left: 50px solid transparent;
    border-top:  70px solid #ffffff;
    transform: translateX(100%);
	transition: 0.5s ease-in-out;
	box-sizing:border-box;
	z-index:-1;
}
.btn_dc_a a:hover{
	color:#9b8c69;
}
.btn_dc_a a:hover:before{
	transform: translateX(-49%); 
}
.btn_dc_a a:hover:after{
	transform: translateX(49%);
}
.btn_dc_a .bg_btn{
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	background-color:#9b8c69;
	z-index:-2;
}
@media screen and (max-width:767px){
	.btn_dc_a a{
		width:100%;
		transition: none;
		color:#ffffff;
		transition: 0.3s ease-in-out;
	}
	.btn_dc_a a:hover{
		color:#ffffff;
	}
	.btn_dc_a a:hover:before{
		transform: translateX(-100%); 
	}
	.btn_dc_a a:hover:after{
		transform: translateX(100%);
	}
	.btn_dc_a a.hover{
		color:#9b8c69;
		transition: 0.3s ease-in-out;
	}
	.btn_dc_a a.hover:before{
		transform: translateX(-49%); 
		transition: 0.3s ease-in-out;
	}
	.btn_dc_a a.hover:after{
		transform: translateX(49%);
		transition: 0.3s ease-in-out;
	}
}
/*灰色→白*/
.btn_dc_b{
	border:1px solid #323232;
	width:300px;
}
.btn_dc_b a{
	overflow:hidden;
	display:block;
	position:relative;
	width:300px;
	padding:25px 0;
	color:#323232;
	text-align:center;
	background-color:transparent;
	transition: 0.3s ease-in-out;
}
.btn_dc_b a:before {
    content: '';
	position:absolute;
	right: -50px;
	top:0;
	bottom:0;
	left:0;
    border-right: 50px solid transparent;
    border-bottom: 70px solid #323232;
    transform: translateX(-100%);
	transition: 0.5s ease-in-out;
	box-sizing:border-box;
	z-index:-1;
}
.btn_dc_b a:after {
    content: '';
	position:absolute;
	left: -50px;
	top:0;
	bottom:0;
	right:0;
	bottom:0;
    border-left: 50px solid transparent;
    border-top:  70px solid #323232;
    transform: translateX(100%);
	transition: 0.5s ease-in-out;
	box-sizing:border-box;
	z-index:-1;
}
.btn_dc_b a:hover{
	color:#ffffff;
}
.btn_dc_b a:hover:before{
	transform: translateX(-49%); 
}
.btn_dc_b a:hover:after{
	transform: translateX(49%);
}
@media screen and (max-width:767px){
	.btn_dc_b a{
		width:100%;
		transition: none;
		color:#323232;
		transition: 0.3s ease-in-out;
	}
	.btn_dc_b a:hover{
		color:#ffffff;
	}
	.btn_dc_b a:hover:before{
		transform: translateX(-100%); 
	}
	.btn_dc_b a:hover:after{
		transform: translateX(100%);
	}
	.btn_dc_b a.hover{
		color:#ffffff;
		transition: 0.3s ease-in-out;
	}
	.btn_dc_b a.hover:before{
		transform: translateX(-49%); 
		transition: 0.3s ease-in-out;
	}
	.btn_dc_b a.hover:after{
		transform: translateX(49%);
		transition: 0.3s ease-in-out;
	}
}

/*下線アニメーション金色100%*/
ul.link_stroke li a{
	position:relative;
	display:block;
	padding-bottom:15px;
	width:100%;
	height:100%;
}
ul.link_stroke li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #9b8c69;
  height: 2px;
  transition: width .3s;
  -webkit-transition: width .3s;
}
ul.link_stroke li a:hover:after {
  width: 100%;
  transition: width .3s;
  -webkit-transition: width .3s;
}
@media screen and (max-width:767px){
}

/* .inquiry
---------------------------------------------------------- */
.inquiry{
	padding:30px 0 38px;
	border:1px solid #322914;
	margin-bottom:100px;
}
.inquiry h1{
	margin-bottom:25px;
	font-weight:700;
	font-size:158%;
	text-align:center;
}
.inquiry .tel{
	float:left;
	width:50%;
	border-right:1px solid #cabf9e;
}
.inquiry .tel dl{
	margin-left:75px;
}
.inquiry .tel dl dt{
	margin-bottom:13px;
	font-size:115%;
	font-weight:700;
}
.inquiry .tel dl dt:before{
	content:"";
	display:inline-block;
	position:relative;
	bottom:-3px;
	width:15px;
	height:18px;
	background:url(../img/index/ico_tel.png) no-repeat left bottom;
	background-size:contain;
}
.inquiry .tel dl dd{
	margin-bottom:9px;
	font-size:115%;
	font-weight:700;
}
.inquiry .tel dl dd span.reception_time{
	float:left;
	width:80px;
	padding:5px 10px;
	margin-right:10px;
	text-align:center;
	font-size:93%;
	color:#9b8c69;
	border:1px solid #9b8c69;
}
.inquiry .tel dl dd span.schedule{
	float:left;
	margin-top:5px;
}
.inquiry .mail{
	float:right;
	width:49%;
}
.inquiry .mail dl{
	margin-left:96px;
}
.inquiry .mail dl dt{
	padding-left:5px;
	margin-bottom:13px;
	font-size:115%;
	font-weight:700;
}
.inquiry .mail dl dt:before{
	content:"";
	display:inline-block;
	position:relative;
	bottom:-2px;
	width:16px;
	height:16px;
	margin-right:10px;
	background:url(../img/index/ico_mail.png) no-repeat left center;
	background-size:contain;
}
.inquiry .mail dl dd{
	margin-bottom:9px;
	font-size:115%;
	font-weight:700;
}
.inquiry .mail dl dd .btn_inquipy{
	border:1px solid #9b8c69;
	width:365px;
}
.inquiry .mail dl dd .btn_inquipy a{
	overflow:hidden;
	display:block;
	position:relative;
	width:365px;
	padding:25px 0;
	color:#ffffff;
	text-align:center;
	background-color:transparent;
	transition: 0.3s ease-in-out;
}
.inquiry .mail dl dd .btn_inquipy a:before {
    content: '';
	position:absolute;
	right: -50px;
	top:0;
	bottom:0;
	left:0;
    border-right: 50px solid transparent;
    border-bottom: 70px solid #ffffff;
    transform: translateX(-100%);
	transition: 0.5s ease-in-out;
	box-sizing:border-box;
	z-index:-1;
}
.inquiry .mail dl dd .btn_inquipy a:after {
    content: '';
	position:absolute;
	left: -50px;
	top:0;
	bottom:0;
	right:0;
	bottom:0;
    border-left: 50px solid transparent;
    border-top:  70px solid #ffffff;
    transform: translateX(100%);
	transition: 0.5s ease-in-out;
	box-sizing:border-box;
	z-index:-1;
}
.inquiry .mail dl dd .btn_inquipy a:hover{
	color:#9b8c69;
}
.inquiry .mail dl dd .btn_inquipy a:hover:before{
	transform: translateX(-49%); 
}
.inquiry .mail dl dd .btn_inquipy a:hover:after{
	transform: translateX(49%);
}
.inquiry .mail dl dd .btn_inquipy .bg_btn{
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	background-color:#9b8c69;
	z-index:-2;
}
@media screen and (max-width:767px){
	.inquiry{
		width:90%;
		box-sizing:border-box;
		padding:30px 15px;
		margin:0 auto;
		margin-bottom:30px;
	}
	.inquiry h1{
		margin-bottom:25px;
		font-weight:700;
		font-size:108%;
		text-align:center;
		line-height:1.6;
	}
	.inquiry .tel{
		float:none;
		width:100%;
		border-right:none;
	}
	.inquiry .tel dl{
		margin-left:25px;
	}
	.inquiry .tel dl dt{
		margin-bottom:13px;
		font-size:100%;
	}

	.inquiry .tel dl dd{
		margin-bottom:9px;
		font-size:86%;
	}
	.inquiry .tel dl dd img{
		width:90%;
	}
	.inquiry .tel dl dd span.reception_time{
		display:inline-block;
		width:22%;
		padding:5px 0;
		font-size:79%;
		margin-right:0;
	}
	.inquiry .tel dl dd span.schedule{
		display:block;
		float:right;
		width:75%;
		padding:0;
		margin-top:0;
		line-height:1.9;
	}
	.inquiry .tel dl dd span.schedule .slash{
		display:none;
	}
	.inquiry .mail{
		float:none;
		width:100%;
		padding-top:15px;
		border-top:1px solid #9b8c69;
	}
	.inquiry .mail dl{
		margin-left:0;
	}
	.inquiry .mail dl dt{
		font-size:100%;
	}
	.inquiry .mail dl dd{
		font-size:100%;
	}
	.inquiry .mail dl dd .btn_inquipy{
		width:95%;
		margin:0 auto;
	}
	.inquiry .mail dl dd .btn_inquipy a{
		width:100%;
		transition: none;
		color:#ffffff;
		transition: 0.3s ease-in-out;
	}
	.inquiry .mail dl dd .btn_inquipy a:hover{
		color:#ffffff;
	}
	.inquiry .mail dl dd .btn_inquipy a:hover:before{
		transform: translateX(-100%); 
	}
	.inquiry .mail dl dd .btn_inquipy a:hover:after{
		transform: translateX(100%);
	}
	.inquiry .mail dl dd .btn_inquipy a.hover{
		color:#9b8c69;
		transition: 0.3s ease-in-out;
	}
	.inquiry .mail dl dd .btn_inquipy a.hover:before{
		transform: translateX(-49%); 
		transition: 0.3s ease-in-out;
	}
	.inquiry .mail dl dd .btn_inquipy a.hover:after{
		transform: translateX(49%);
		transition: 0.3s ease-in-out;
	}
}

/* footer
---------------------------------------------------------- */
footer{}
footer .footer_inner{
	width:1080px;
	padding:0 10px;
	margin:0 auto;
}
footer .footer_home{
	min-width:1100px;
	width:100%;
	background-color:#424242;
	font-weight:100;
	font-size:93%;
}
footer .footer_home ul li{
	display:inline-block;
	vertical-align:middle;
}
footer .footer_home ul li.ico_home{
	padding:15px;
	background-color:#505050;
	-webkit-transition: all .3s;
	transition: all .3s;
}
footer .footer_home ul li.text_link{
	line-height:1.5;
	padding:15px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

footer .footer_home ul li.ico_home:hover,
footer .footer_home ul li.text_link:hover{
	background-color:#9b8c69;
}
footer .footer_home a{
	display:block;
	width:100%;
	height:15px;
	color:#ffffff;
}
footer .footer_link{
	font-size:86%;
	border-bottom:1px solid #e5e5e5;
}
footer .footer_link ul li{
	display:inline-block;
	padding:10px;
	margin:10px 20px 5px 0;
	background:url(../img/index/ico_footer_list.gif) no-repeat left 12px;
}
footer .footer_link ul li:first-child{
	margin-left:10px;
}
footer .footer_link ul li a{
	position:relative;
	display:block;
	padding-bottom:5px;
	width:100%;
	height:100%;
}
footer .footer_link ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #9b8c69;
  height: 2px;
  transition: width .3s;
  -webkit-transition: width .3s;
}
footer .footer_link ul li a:hover:after {
  width: 100%;
  transition: width .3s;
  -webkit-transition: width .3s;
}
footer .copy_box{
	font-size:79%;
	margin-bottom:25px;
}
footer .copy_box p{
	margin:20px 0;
	float:left;
}
footer .copy_box .copyright{
	float:right;
}
footer .copy_box ul{
	float:right;
	margin-top:10px;
	margin-right:30px;
}
footer .copy_box ul li{
	display:inline-block;
}
.btn_fb{
    display:inline-block;
    cursor:pointer;
    width:35px;
    height:35px;
	margin-right:15px;
    border-radius:50%;
    text-align: center;
	vertical-align: middle;
	background-color:rgba(220, 220, 220, 1);
    box-shadow: 0 0 0 0px rgba(220, 220, 220, 1);
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    -moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
}
.btn_fb.hover {
    background: rgba(42, 91, 159, 1);
    color: #702fa8;
    box-shadow: 0 0 0 4px rgba(42, 91, 159, 0.2);
}
.btn_fb.hover:before {
    -webkit-animation: toRightFromLeft 0.3s forwards;
    -moz-animation: toRightFromLeft 0.3s forwards;
    animation: toRightFromLeft 0.3s forwards;
}
.btn_fb img{
    width:10px;
	margin-top:8px;
}
.btn_tw{
    display:inline-block;
    cursor:pointer;
    width:35px;
    height:35px;
    border-radius:50%;
    text-align: center;
	vertical-align: middle;
	background-color:rgba(220, 220, 220, 1);
    box-shadow: 0 0 0 0px rgba(220, 220, 220, 1);
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    -moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
}
.btn_tw.hover {
    background: rgba(29, 161, 242, 1);
    color: #702fa8;
    box-shadow: 0 0 0 4px rgba(29, 161, 242, 0.2);
}
.btn_tw.hover:before {
    -webkit-animation: toRightFromLeft 0.3s forwards;
    -moz-animation: toRightFromLeft 0.3s forwards;
    animation: toRightFromLeft 0.3s forwards;
}
.btn_tw img{
    width:16px;
	margin-top:11px;
}
#pagetop{
	opacity:1;
}
#pagetop a{
	display:block;
	position:fixed;
	bottom:0;
	right:10px;
	width:60px;
	height:13px;
	padding:22px 0 20px;
	text-align:center;
	border-radius:6px 6px 0 0;
	background-color:#9b8c69;
	transition:opacity ease-in-out .5s;
	-webkit-transition:opacity ease-in-out .5s;
	opacity:1;
}
#pagetop a.hover{
	opacity:0.6;
}
#pagetop img{
	width:24px;
}
@media screen and (max-width:767px){
	footer .footer_inner{
		width:100%;
		padding:0;
		margin:0;
	}
	footer .footer_home{
		display:none;
	}
	footer .footer_link{
		font-size:100%;
		border-bottom:none;
	}
	footer .footer_link ul{
		border-top:1px solid #e5e5e5;
		border-bottom:none;
	}
	footer .footer_link ul li{
		display:block;
		padding:15px 30px;
		margin:0;
		background:url(../img/index/ico_footer_list.gif) no-repeat 20px center;
		border-bottom:1px solid #e5e5e5;
	}
	footer .footer_link ul li:first-child{
		margin-left:0;
	}
	footer .footer_link ul li a{
		padding-bottom:0;
	}
	footer .footer_link ul li a:after {
		transition: none;
		-webkit-transition: none;
	}
	footer .footer_link ul li a:hover:after {
		width: 0;
	}
	footer .copy_box{
		font-size:93%;
		box-sizing:border-box;
		padding:0 10px;
	}
	footer .copy_box p{
		margin:20px 0;
		float:none;
		line-height:1.6;
	}
	footer .copy_box ul{
		float:none;
		width:103px;
		margin:15px auto;
	}
	footer .copy_box ul li{
		display:inline-block;
	}
	.btn_fb{
		width:40px;
		height:40px;
		background-color: rgba(220, 220, 220, 1);
		box-shadow: 0 0 0 0 rgba(42, 91, 159, 0.2);
		transition: background 0.3s, box-shadow 0.3s;
		-webkit-transition: background 0.3s, box-shadow 0.3s;
	}
	.btn_fb:hover {
		background-color: rgba(220, 220, 220, 1);
		box-shadow: 0 0 0 0 rgba(42, 91, 159, 0.2);
	}
	.btn_fb.hover {
		background: rgba(42, 91, 159, 1);
		color: #702fa8;
		box-shadow: 0 0 0 4px rgba(42, 91, 159, 0.2);
	}
	.btn_fb img{
		width:12px;
		margin-top:8px;
	}
	.btn_tw{
		width:40px;
		height:40px;
		margin-right:0;
		background-color:rgba(220, 220, 220, 1);
		box-shadow: 0 0 0 0 rgba(29, 161, 242, 0.2);
		transition: background 0.3s, box-shadow 0.3s;
		-webkit-transition: background 0.3s, box-shadow 0.3s;
	}
	.btn_tw:hover {
		background-color:rgba(220, 220, 220, 1);
		box-shadow: 0 0 0 0 rgba(29, 161, 242, 0.2);
	}
	.btn_tw.hover {
		background: rgba(29, 161, 242, 1);
		color: #702fa8;
		box-shadow: 0 0 0 4px rgba(29, 161, 242, 0.2);
	}
	.btn_tw img{
		width:19px;
		margin-top:12px;
	}
	.footer_logo{
		width:100%;
		text-align:center
	}
	.footer_logo img{
		width:80%;
	}
	#pagetop a{
		display:block;
		position:static;
		right:0;
		width:100%;
		height:13px;
		border-radius:0;
	}
	#pagetop a:hover{
		opacity:1;
	}
}
/*ボタンフェードインアウトのアニメーション*/
.fadeOut{
	-webkit-animation-name:FOut;
	-webkit-animation-duration:.3s;
	-webkit-animation-timing-function:ease-in;
	-webkit-animation-iteration-count:1;
	visibility: hidden;
}
@-webkit-keyframes FOut {
	0%{opacity:1;visibility: visible;}
	100%{opacity:0;visibility: hidden;}
}
.fadeIn{
	-webkit-animation-name:FIn;
	-webkit-animation-duration:.3s;
	-webkit-animation-timing-function:ease-in;
	-webkit-animation-iteration-count:1;
	visibility: visible;
}
@-webkit-keyframes FIn {
	0%{opacity:0;}
	100%{opacity:1;}
}

