@charset "utf-8";
/*
	Description: initial setting
	Version: 1.0
	Author: idealgrow
*/
/*
===== CONTENTS ===========================================

	1: BASE LAYOUT

==========================================================
*/
/*
===== 1: BASE LAYOUT =====================================
*/
header {
  padding: 20px;
}
header #logo img {
  height: 100px;
  margin: 0 auto;
  position: relative;
}
header #logo{
	text-align: center;
}
header #logo a{
	display: inline-block;
}
header #navToggle {
  position: absolute;
  right: 30px;
  top: 50px;
  width: 28px;
  height: 28px;
  padding-top: 10px;
  z-index: 110;
}
header #navToggle span {
  background: #b69c63;
  height: 2px;
  display: block;
  position: relative;
  transition: all 0.2s;
}
header #navToggle span:before {
  content: "";
  background: #b69c63;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: -8px;
  transition: all 0.2s;
}
header #navToggle span:after {
  content: "";
  background: #b69c63;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: all 0.2s;
}
header #navToggle.active span {
  background: none;
}
header #navToggle.active span:before {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
}
header #navToggle.active span:after {
  transform: rotate(-45deg) translateY(50%);
  bottom: 50%;
}
nav {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 110px 30px 30px 30px;
  z-index: 100;
}
nav:before {
  content: "";
  background: url("../img/shared/logo_nav.svg")left center no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 34px;
  position: absolute;
  left: 30px;
  top: 40px;
}
nav ul li {
  margin-bottom: 10px;
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: dotted 1px #ddd;
}
nav ul li span {
  font-size: 16px;
  font-family: garamond-premier-pro, serif;
  font-weight: 400;
  font-style: normal;
  color: #b69c63;
  margin-left: 10px;
}
#floatTel {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #b69c63;
  z-index: 90;
}
#floatTel ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
#floatTel a {
  display: block;
  color: #fff;
  font-size: 24px;
  font-family: garamond-premier-pro, serif;
  font-weight: 700;
  font-style: normal;
}
#floatTel a:before {
  content: "";
  background: url("../img/shared/ico_tel.svg")center center no-repeat;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 5px 0;
}
#floatTel ul li:nth-of-type(2) p:first-of-type {
  display: none;
}
#floatTel ul li:nth-of-type(2) p:last-of-type {
  background: #fff;
  color: #b69c63;
  padding: 0 10px;
  margin-left: 10px;
}
#floatTel ul li:nth-of-type(2) p:last-of-type br {
  display: none;
}
footer {
  background: #b69c63;
  padding: 40px 0 44px 0;
}
footer #footLogo img {
  height: 40px;
  margin: 0 auto 20px auto;
}
footer #footNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
footer #footNav li {
  text-align: center;
  margin: 5px 10px;
}
footer #footNav li a {
  color: #fff;
  display: block;
  padding: 5px;
}
footer .tel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .tel li {
  width: 100%;
  text-align: center;
}
footer .tel li a {
  display: block;
  color: #fff;
  font-size: 34px;
  font-family: garamond-premier-pro, serif;
  font-weight: 700;
  font-style: normal;
}
footer .tel li a:before {
  content: "";
  background: url("../img/shared/ico_tel.svg")center center no-repeat;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 5px 0;
}
footer .tel li:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .tel li:nth-of-type(2) p:first-of-type {
  color: #fff;
  text-align: right;
  line-height: 1.4;
  margin-right: 10px;
}
footer .tel li:nth-of-type(2) p:last-of-type {
  background: #fff;
  color: #b69c63;
  line-height: 1.2;
  padding: 2px 5px;
}
footer .address {
  color: #fff;
  padding: 20px;
  text-align: center;
}
footer .address span {
  display: block;
}
footer #copy {
  background: #9a7f44;
  padding: 10px;
}
footer #copy ul {
  display: flex;
  justify-content: center;
}
footer #copy ul li {
  margin: 0 10px;
}
footer #copy ul li a {
  color: #fff;
  font-size: 14px;
}
footer #copy p {
  text-align: center;
  color: #fff;
}
#breadCrumbs {
	padding: 5px 20px;
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	margin-bottom: 20px;
}
#breadCrumbs ol {
	display: table;
	padding-right: 15px;
}
#breadCrumbs ol li {
	font-size: 14px;
	display: table-cell;
	white-space: nowrap;
	vertical-align: middle;
	position: relative;
}
#breadCrumbs ol li a{
	display: block;
	color: #000;
	background: url("../img/shared/ico_arrow.svg") right center no-repeat;
	background-size: auto 40%;
	padding-right: 18px;
	margin-right: 14px;
}
#breadCrumbs ol li:last-child {
	padding-right: 0;
}
@media screen and (min-width: 1099px) {
  header {
    padding: 0;
    width: 1100px;
    margin: 0 auto;
    position: relative;
    text-align: center;
  }
  header #logo img {
    height: 158px;
    width: 211px;
    margin: 20px auto 0 auto;
  }
  header #logo a {
    height: 158px;
    width: 211px;
    display: block;
    position: relative;
    z-index: 150;
	  margin: 0 auto;
  }
  header #navToggle {
    display: none;
  }
  nav {
    display: block;
    position: absolute;
    top: auto;
    background: none;
    width: 100%;
    height: auto;
    padding: 0;
    bottom: 0;
  }
  nav:before {
    display: none;
  }
  nav ul {
    display: flex;
  }
  nav ul li:first-of-type {
    display: none;
  }
  nav ul li {
    margin-bottom: 0;
    font-size: 18px;
    padding-bottom: 0;
    border-bottom: none;
    width: 128px;
    text-align: center;
    margin-right: 20px;
  }
  nav ul li:nth-of-type(5) {
    width: 216px;
    margin-left: 271px;
  }
  nav ul li:nth-of-type(6) {
    width: 188px;
    margin-right: 0;
  }
  nav ul li a {
    display: block;
  }
  nav ul li span {
    font-size: 14px;
    display: block;
    margin-left: 0;
    color: #000;
    line-height: 40px;
    position: relative;
    transition: all 0.2s;
  }
  nav ul li span:after {
    content: "";
    background: #c3c3c3;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 38px;
    transition: all 0.2s;
  }
  nav ul li span:before {
    content: "";
    background: #c3c3c3;
    width: 20px;
    height: 1px;
    position: absolute;
    right: -20px;
    bottom: 38px;
  }
  nav ul li:nth-of-type(4) span:before, nav ul li:nth-of-type(6) span:before {
    display: none;
  }
  nav ul li a:hover, nav ul li a:hover span, nav ul li.active a, nav ul li.active a span {
    color: #775306;
  }
  nav ul li:hover span, nav ul li.active span {
    letter-spacing: 2px;
  }
  nav ul li:hover span:after, nav ul li.active span:after {
    background: #897960;
  }
  #floatTel {
    position: absolute;
    left: auto;
    bottom: auto;
    width: 400px;
    right: 0;
    top: -20px;
  }
  #floatTel ul {
    padding: 5px;
  }
  #floatTel ul li:first-of-type {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
  }
  #floatTel ul li:first-of-type:after {
    content: "";
    width: 1px;
    background: #c4b187;
    height: 80%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #floatTel ul li:nth-of-type(2) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #floatTel ul li:nth-of-type(2) p:first-of-type {
    display: block;
    text-align: right;
    color: #fff;
    line-height: 1;
    font-size: 14px;
  }
  #floatTel ul li:nth-of-type(2) p:last-of-type {
    background: #fff;
    color: #b69c63;
    padding: 5px 10px;
    margin-left: 10px;
    line-height: 1;
    font-size: 14px;
  }
  #floatTel ul li:nth-of-type(2) p:last-of-type br {
    display: block;
  }
  footer {
    padding: 40px 0 0 0;
  }
  footer #footIn {
    width: 1100px;
    margin: 0 auto;
    display: flex;
  }
  footer #footLogo img {
    height: 46px;
    margin: 0 0 10px 0;
  }
  footer #footTop {
    width: 620px;
  }
  footer #footNav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0;
  }
  footer #footNav li {
    text-align: center;
    margin: 0 5px 0 0;
    padding-right: 5px;
    position: relative;
  }
  footer #footNav li:after {
    content: "";
    background: #ceb680;
    width: 1px;
    height: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  footer #footNav li:last-of-type {
    margin: 0;
    padding-right: 0;
  }
  footer #footNav li:last-of-type:after {
    display: none;
  }
  footer #footNav li a:hover {
    opacity: 0.4;
  }
  footer #footBot {
    width: 480px;
  }
  footer .tel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .tel li {
    width: 240px;
    position: relative;
  }
  footer .tel li:after {
    content: "";
    background: #ceb680;
    width: 1px;
    height: 60%;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
  }
  footer .tel li:last-of-type:after {
    display: none;
  }
  footer .tel li:last-of-type {
    justify-content: flex-end;
  }
  footer .address {
    color: #fff;
    padding: 0;
    text-align: right;
  }
  footer .address span {
    display: inline-block;
  }
  footer .address br {
    display: none;
  }
  footer #copy {
    margin-top: 40px;
  }
  footer #copyIn {
    width: 1100px;
    margin: 0 auto;
    display: flex;
  }
  footer #copy ul {
    width: 80%;
    justify-content: flex-start;
  }
  footer #copy ul li {
    margin: 0 20px 0 0;
  }
  footer #copy p {
    text-align: right;
    width: 20%;
  }
#breadCrumbs {
	position: absolute;
	right: 0;
	top: 0;
	padding: 5px 0;
	margin-bottom: 0;
}
#breadCrumbs ol {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding-right: 0;
	padding-left: 200px;
}
#breadCrumbs ol li {
	font-size: 16px;
	white-space: normal;
}
	main{
	min-height: calc(100vh - 462px);
	}
}