@charset "utf-8";
/*
	Description: initial setting
	Version: 1.0
	Author: idealgrow
*/
/*
===== CONTENTS ===========================================

	1: BASE LAYOUT

==========================================================
*/
/*
===== 1: BASE LAYOUT =====================================
*/
header {
  height: 60px;
  border-bottom: solid 1px #cacaca;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
header #headLogo {
  padding: 15px;
  height: 58px;
  width: auto;
}
header #headLogo img {
  height: 100%;
  width: auto;
}
header #toggleNav {
  position: absolute;
  right: 15px;
  top: 25px;
  width: 20px;
  height: 10px;
}
header #toggleNav:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  height: 1px;
  background: #000;
  transition: all 0.2s ease-in;
  pointer-events: none;
}
header #toggleNav:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: all 0.2s ease-in;
  pointer-events: none;
}
header #toggleNav.active:before {
  transform: rotate(45deg);
  top: 4px;
  pointer-events: none;
}
header #toggleNav.active:after {
  transform: rotate(-45deg);
  bottom: 5px;
  pointer-events: none;
}
nav {
  display: none;
}
nav ul {
  position: absolute;
  padding: 20px;
  width: 100%;
  background: #fff;
  top: 61px;
  right: 0;
  height: calc(100vh - 61px);
  z-index: 100;
}
nav ul li {
  padding: 15px 0;
  text-align: center;
	font-family: century-old-style-std,YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
nav ul li span {
  border-bottom: solid 1px #cacaca;
  padding: 0 10px 5px 10px;
}
#headTel {
  display: none;
}
main{
	padding-top: 60px;
}
.pagetop {
  background: rgba(153, 133, 122, 0.8);
  width: 40px;
  height: 40px;
	position: fixed;
  z-index: 60;
	right: 10px;
}
.pagetop img {
  width: 60%;
  height: auto;
  position: relative;
  left: 50%;
  top: 12px;
  display: block;
  transform: translateX(-50%);
}
footer{
	background: #99857a;
	padding:40px 0 0 0;
}
footer #footLogo img{
	height: 40px;
	width: auto;
	margin: 0 auto 20px auto;
}
footer address{
	padding: 0 20px;
	font-family: century-old-style-std,YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-style: normal;
	color: #fff;
	margin-bottom: 20px;
	font-size: 14px;
	text-align: center;
}
footer address span{
	display: block;
}
footer #footNav{
	display: flex;
	flex-wrap: wrap;
	border-top: solid 1px #c1ada3;
}
footer #footNav li{
	width: 50%;
	border-bottom: solid 1px #c1ada3;
}
footer #footNav li:nth-of-type(odd){
	border-right: solid 1px #c1ada3;
}
footer #footNav li a{
	color: #f0e3dc;
	padding: 10px;
	font-size: 14px;
	display: block;
}
footer #footNav li a:before{
	width: 0;
height: 0;
border-style: solid;
border-width: 3px 0 3px 4px;
border-color: transparent transparent transparent #f0e3dc;
	display: inline-block;
	content: "";
	margin-right: 10px;
	margin-bottom: 3px;
}
#footContact{
	margin: 40px 0;
	font-family: century-old-style-std,YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
#footContact p{
	text-align: center;
	color: #fff;
	font-weight: bold;
}
#footContact p span{
	background: #fff;
	color: #9f2e28;
	padding: 0 10px;
	margin-right: 10px;
}
#footContact ul{
	display: flex;
	padding: 0 20px;
	color: #fff;
}
#footContact ul li:first-of-type{
	font-size: 16px;
	margin-right: 10px;
}
#footContact ul li:first-of-type a{
	font-size: 34px;
	color: #fff;
}
#footContact ul li:last-of-type{
	display: flex;
	line-height: 1.2;
	align-items: center;
}
#footContact ul li:last-of-type span{
	border: solid 1px #fff;
	padding: 5px;
	margin-right: 5px;
}
#footContact .contact{
	padding: 10px 20px 0 20px;
}
#footContact .contact a{
	background: #fff;
	display: block;
	padding: 10px;
	color: #4c2b18;
	position: relative;
}
#footContact .contact a:after{
	content: "";
	background: url("../img/shared/btn_arrow_br.svg")center center no-repeat;
	width: 15px;
	height: 15px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
footer #copy{
	background: #fff;
	padding: 20px;
}
footer #copy p{
	font-family: century-old-style-std,YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	text-align: center;
}
footer #copy ul{
	display: flex;
	height: 30px;
	margin: 20px auto 0 auto;
	width: 80%;
 }
footer #copy ul li{
	width: 20%;
}
footer #copy ul li a{
	display: block;
}
footer #copy ul li img{
	height: 20px;
	width: auto;
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
  header {
    height: 140px;
    position: static;
  }
  #headerIn {
    width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  header #headLogo {
    position: absolute;
    left: 0;
    top: 17px;
    padding: 0;
    height: 50px;
  }
  header #toggleNav {
    display: none;
  }
  nav {
    display: block;
    width: 100%;
    border-top: solid 1px #cacaca;
    background: none;
    position: absolute;
    top: 86px;
  }
  nav ul {
    display: flex;
    position: static;
    padding: 0;
    width: 1100px;
    margin: 0 auto;
    background: none;
    height: 56px;
  }
  nav ul li {
    width: 14.2%;
    padding: 0;
    text-align: center;
    position: relative;
  }
  nav ul li a {
    display: block;
    padding: 15px 0;
  }
  nav ul li:before {
    content: "";
    background: #cacaca;
    width: 1px;
    height: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
  nav ul li:last-of-type:after {
    content: "";
    background: #cacaca;
    width: 1px;
    height: 50%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
  }
	nav ul li.stay span{
		color: #ab1c15;
	}
  nav ul li span {
    border-bottom: none;
  }
  #headTel {
    display: block;
    position: absolute;
    right: 0;
    top: 25px;
	font-family: century-old-style-std,YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  }
  #headTel ul#businessTime {
    display: flex;
  }
  #headTel ul#businessTime li:first-of-type {
    font-size: 18px;
    margin-right: 10px;
    line-height: 1.6;
  }
  #headTel ul#businessTime li:first-of-type span {
    font-size: 34px;
  }
  #headTel ul#businessTime li:last-of-type {
    color: #9f2e28;
    font-size: 12px;
    font-weight: bold;
  }
  #headTel ul#businessTime li:last-of-type span {
    background: #9f2e28;
    color: #fff;
    padding: 3px 5px;
    margin-right: 5px;
  }
  #headTel ul#businessTime li:last-of-type p {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
  }
  #headTel ul#businessTime li:last-of-type p span {
    background: none;
    color: #000;
    font-size: 16px;
    padding: 0;
  }
main{
	padding-top:0;
}
  .pagetop {
    width: 54px;
    height: 54px;
  }
  .pagetop img {
    left: 50%;
    top: 17px;
  }
	footer #footerIn{
		width: 1100px;
		margin: 0 auto;
		position: relative;
	}
	footer #footLogo{
		position: absolute;
		left: 0;
		top: 0;
	}
footer #footLogo img{
	height: 45px;
	width: auto;
	margin: 0;
}
footer address{
	padding: 0 0 0 360px;
	margin-bottom: 30px;
	font-size: 16px;
	text-align: left;
	line-height: 1.6;
}
footer address span{
	font-size: 14px;
}
footer #footNav{
	width: 700px;
	display: flex;
	flex-wrap: wrap;
	border-top:none;
	margin-bottom: 40px;
}
footer #footNav li{
	width: 24%;
	border-bottom: none;
}
	footer #footNav li:nth-of-type(3),footer #footNav li:nth-of-type(7){
		width: 28%;
	}
footer #footNav li:nth-of-type(odd){
	border-right: none;
}
footer #footNav li a{
	padding: 5px;
	color: #fff;
}
#footContact{
	position: absolute;
	right: 0;
	top: 0;
	margin: 0;
	font-family: century-old-style-std,YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
#footContact p{
	text-align: right;
}
#footContact ul{
	display: flex;
	padding: 0;
	color: #fff;
}
#footContact ul li:first-of-type{
	font-size:20px;
}
#footContact ul li:first-of-type a{
	font-size: 40px;
}
#footContact ul li:last-of-type span{
	line-height: 1.0;
}
#footContact .contact{
	padding: 0;
}
#footContact .contact a{
	text-align: center;
	font-size: 18px;
}
	footer a:hover{
		opacity: 0.6;
	}
	footer #copy #copyIn{
		width: 1100px;
		margin: 0 auto;
		display: flex;
		position: relative;
	}
footer #copy p{
	text-align: left;
}
footer #copy ul{
	position: absolute;
	right: 0;
	width: 190px;
	display: flex;
	height: 26px;
	margin: 3px 0 0 0;
 }
}