body {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    background-color: #fff;
    color: #4A4A4A;
	font-size: 62.5%;
}

/*リンク系*/
a {
    color: rgba(65,165,70,1.00);
    text-decoration: none;
    -webkit-transition: color 400ms, background-color 400ms;
    transition: color 400ms, background-color 400ms;
}
a:focus,a:hover {
  text-decoration: none;
  outline: none;
  color: rgba(0,0,0,1.0);
}
.effect{
    background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(65,165,70,1.00) 50%);
    background-position: 0 0;
    background-size: 200% auto;
    transition: .3s;
    color: rgba(65,165,70,1.00);
    font-weight: bold;
}
.effect:hover {
	background-position: -100% 0;
	color: #fff;
	text-decoration: none;
}
.btn-effect {
    vertical-align: middle;
/*    box-shadow: 0 0 1px rgba(0, 0, 0, 1.0);*/
    position: relative;
    display: inline-block;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition-property: color;
    -moz-transition-property: color;
    -ms-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-osx-font-smoothing: grayscale;
    color: rgba(255,255,255,1.00);
    background-color: rgba(65,165,70,1.00);
}
.btn-effect:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -ms-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.btn-effect:active,
.btn-effect:focus,
.btn-effect:hover {
    color: rgba(53,53,53,1.00)
}
.btn-effect:active:before,
.btn-effect:focus:before,
.btn-effect:hover:before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
/* ページトップへのリンク */
#page-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.7rem;
}
#page-top a {
	background-color: rgba(255,181,52,0.9);
	text-decoration: none;
	color: #323232;
	width: 4rem;
	padding-top: 1rem;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 1rem;
	text-align: center;
	display: block;
	border-radius: 5rem;
	-webkit-box-shadow: 0px 0px;
	box-shadow: 0px 0px;
}
#page-top a:hover {
	text-decoration: none;
	background-color: hsla(47,100%,95%,1.00);
	color: hsla(120,13%,25%,1.00);
	-webkit-box-shadow: 1px 1px 4px hsla(0,0%,20%,1.00);
	box-shadow: 1px 1px 4px hsla(0,0%,20%,1.00);
}
/* スムーススクロールの位置調整用 */
/*#info,#about,#materials,#map {
	margin-top:-60px;
	padding-top:60px;
}*/
/*#info{
	margin-top:-50px;
	padding-top:50px;	
}*/
/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #18d26e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    padding: 40px 0;
    height: 80px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
}
#header.header-scrolled {
	background-color: rgba(255,181,52,0.75);
	padding: 20px 0;
	height: 70px;
	transition: all 0.5s;
}
#header #logo {
  float: left;
}
#header #logo img {
  padding: 0;
  margin: 0;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}
.nav-menu li {
  position: relative;
  white-space: nowrap;
}
.nav-menu > li {
  float: left;
}

/* Nav Menu Container */

#nav-menu-container {
    float: right;
    margin: 0;
}

/* Nav Meu Styling */
.nav-menu a {
	/*  padding: 0 5px 5px 5px;*/
	text-decoration: none;
	display: inline-block;
	color: #fff;
	font-size: 1.1rem;
	outline: none;
}
.nav-menu li > a:hover{
	color: rgba(50,50,50,1.00);
}
.nav-menu > .menu-active a {
    color: rgba(50,50,50,1.00);
}
.nav-menu a > span {
    margin-right: 0.6rem;
    font-size: 0.8rem;
    margin-left: 0.2rem;
}
.nav-menu ul {
  margin: 4px 0 0 0;
/*  padding: 10px;*/
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}
.nav-menu ul li {
  transition: 0.3s;
}
.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
/*  font-size: 13px;*/
  text-transform: none;
}
.nav-menu ul li > a:hover {
  color: rgba(65,165,70,1.00);
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}
#mobile-nav-toggle i {
  color: #fff;
}
/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(255,181,52,0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}
#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#mobile-nav ul li {
  position: relative;
}
#mobile-nav ul li a {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}
#mobile-nav ul li span {
    margin-right: 1rem;	
}
#mobile-nav ul li a:hover {
  color: rgba(50,50,50,1.00);
}
#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
    color: rgba(50,50,50,1.00);
}
#mobile-nav ul .menu-item-active {
    color: rgba(50,50,50,1.00);
}
#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}
body.mobile-nav-active #mobile-nav {
  left: 0;
}
body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}
#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#intro .carousel-item::before {
  content: '';
  background-color: rgba(0,0,0, 0.2);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#intro .carousel-background img {
  max-width: 100%;
}
#intro .carousel-content {
  text-align: center;
}
#intro p {
	width: 80%;
	margin: 0 auto 30px auto;
	color: #fff;
	font-size: 1.4rem;
	line-height: 2rem;
	text-shadow: 1px 1px 1px #323232;
	background-color: rgba(0,0,0,0.6);
	-webkit-box-shadow: 0px 0px 2rem 2rem rgba(0,0,0,0.5);
	box-shadow: 0px 0px 2rem 2rem rgba(0,0,0,0.6);
}
#intro img {
    margin: 1rem;
    padding: 1rem;
    background-color: rgba(0,0,0,0.3);
    -webkit-box-shadow: 0px 0px 2rem 2rem rgba(0,0,0,0.3);
    box-shadow: 0px 0px 2rem 2rem rgba(0,0,0,0.3);
}
#intro .carousel-fade {
    overflow: hidden;
}
#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}
#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}
#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}
#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}
#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
    background: none;
    font-size: 2rem;
}
#intro .carousel-indicators li {
  cursor: pointer;
}
#intro .btn-get-started {
    font-size: 1.2rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: 0.5s;
    margin: 1rem;
    color: #fff;
    background-color: rgba(65,165,70,1.00);
}
#intro .btn-get-started:hover {
    background: #fff;
    color: rgba(65,165,70,1.00)
}

/* visual CSS
-------------------------------------------------- */

.titleback {
    background-repeat: repeat;
    height: 100%;
    padding: 0;
    background-image: url("../img/parallax/slide_bg.png");
}
.title {
    background-repeat: no-repeat;/* 画像の繰り返しを指定  */
    background-position: center bottom; /* 画像の表示位置を指定  */
    background-size: cover;/* 画像のサイズを指定    */
    width: 100%;/* 横幅のサイズを指定    */
    height: 250px;/* 縦幅のサイズを指定    */
    margin-top: -25px;
    background-attachment: scroll;
    position: relative;
}

#visual .title h1{
    position: absolute;
    font-size: 2.5em;
    background-color: rgba(171,158,141,0.5);
    color: rgba(255,255,255,1.00);
    top: 180px;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
    left: calc(50% - 5.5rem);
    border: 4px double rgba(255,255,255,1.00);
    vertical-align: baseline;
}

#visual .title h1 > .fa-stack {
    font-size: 1rem;
    margin-right: 1rem;
    margin-left: -0.8rem;
    vertical-align: bottom;
}

.mailtitle {
    background-image: url("../img/parallax/index_bg.jpg");
}
.section-bg {
    background-color: rgba(171,158,141,0.1);
    padding-bottom: 5rem;
}
.sectiontitle {
    position: relative;
    padding: 3rem 2rem 1.5rem;
    margin-bottom: 3rem;
    font-size: 2rem;
    border-top: 5px outset rgba(53,53,53,0.1);
    text-align: center;
    line-height: 1rem;
    color: rgba(0,0,0,1.00);
}
.sectiontitle:after {
    position: absolute;
    content: '';
    top: 100%;
    left: calc(50% - 2rem);
    border: 2rem solid transparent;
    border-top: 1rem solid rgba(255,194,118,1.00);
    width: 0;
    height: 0;
}
.sectiontitle i,.indexsectiontitle i {
    color: rgba(65,165,70,0.5);	
}

.banner-title a {
    color: #FFF;
    text-decoration: none
}
/* orignal CSS
-------------------------------------------------- */
.black {
    background-color: #000000;	
}

.fa {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

p {
    margin: 1rem;
    line-height: 1.6rem;
    letter-spacing: 0.1rem;
    font-size: 1.1rem;
}

.lead {
	margin: 2rem;
	font-size: 1.3rem;
	font-weight: normal;
	line-height: 1.8rem;
}
.container .lead {
	margin-left: 1rem;
	margin-right: 1rem;	
}

#info {
	background-color: rgba(255,255,255,1.00);
	padding-bottom: 2rem;
	padding-top: 2rem;
}

.twitter {
    margin-bottom: 2rem;
    max-width: 800px;
}

.parallax {
	background-attachment:fixed;
	background-position:center top;
	background-repeat:no-repeat;
	background-size:cover
}
.parallax {
    background-image: url("../img/parallax/index_bg.jpg");
    padding: 0rem;
}
.parallax .overlay {
	background:url("../img/parallax/slide_bg.png");
	padding:0 0 0px;
	margin-bottom:0px;
	margin-top:-20px
}
.table {
    font-size: 1.2rem;
}
.table ul{
	list-style-type: none;	
}
.table th{
    min-width: 7rem;
}

.red {
    color: rgba(223,37,37,1.00)
}


.img-small {
    margin: 0.5rem;
    max-width: 100px;
}

.menu {
	list-style-position: outside;
	font-weight: bold;
	letter-spacing: 0.1rem;
	border: 2px solid rgba(255,181,52,1.00);
	padding: 0 0.5rem;
	border-radius: 15px;
	font-size: 1.0rem;
}
.menu p{
	font-weight: bold;
	border-bottom: medium double rgba(255,181,52,1.00);
}
.menu li{
	line-height: 1.5;
	padding: 0.5rem 0 0.5rem 2rem;
	border-bottom: dashed 1px silver;
	list-style-type: none!important;
}
.menu li:last-of-type{
	border-bottom: none;
	margin-bottom: 1rem;
}

.mail label{
    font-weight: bold;
    font-size: 1.0rem;
/*    background-color: rgba(116,116,116,1.00);*/
    color: rgba(255,255,255,1.00);
    padding: 0.5rem;
    border-top-left-radius: 10px;
}
.mailinfo {
    padding: 1rem;
    background-color: rgba(223,88,90,0.3);
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: left;
    border-radius: 20px;
    color: rgba(0,0,0,1.00);
}
.xicon {
	width: 1em;
	height: 1em;
	vertical-align: -.125em;
	background-color: rgba(255,255,255,0.8);
}
.subtitle {
    margin-top: 1rem;
    font-weight: bold;
}
.googlemap {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
}
.googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.shopkeeper {
	border-radius: 50%;
	max-width: 250px	
}

/* footer */
.copyright {
	background-color: #65B741;
	padding: 2rem;
	text-align: center;
	color: #FFFFFF;
	font-size: 1.0rem;
}
.footer {
	background-color: #FFFAE8;
	color: #323232;
	margin-top: 5rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.footer img{
	margin-bottom: 1rem;
}
#mailform{
	margin-top: 4rem;
}
#mailform label{
	background-color: rgba(50,50,50,1.00)
}

.adress {
    font-size: 1.2rem;
    line-height: 2.3rem;
    text-align: center;
}
.adress .btn-outline-secondary {
	color: #65B741;
	border-color: #65B741;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (max-width: 575.98px) {
	#logo img{
	width: 80%;
	max-width: 200px;
	max-height: 60px;
	}
	#intro p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    width: 250px;
    height: 60px;
	}
	.introimg {
    width: 90%;
    height: auto;
	}
	.table {
		font-size: 1rem;
	}
	.access table {
		font-size: 1rem;
	}
	.sectiontitle {
		padding: 2rem 1rem 1.0rem;
		margin-bottom: 4rem;
		font-size: 1.5rem;
	}

	.indexsectiontitle {
		font-size: 1.2rem;
		margin: 1rem 0rem
	}
	.lead {
		font-size: 1.1rem;
		line-height: 1.5rem;
	}
}
	
@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
  #intro h2 {
    font-size: 28px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
}
@media (min-width: 992px) {

}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }

  #intro p {
    width: 60%;
  }

  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }

  #nav-menu-container {
    padding-right: 60px;
  }
}
