@charset "utf-8";
/* CSS Document */
html {
    visibility: hidden;
}

html.wf-active,
html.loading-delay {
    visibility: visible;
}

body {
	font-family: fot-tsukuardgothic-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #754C24;
}

a {
	color: #754C24;
}

p {
	font-size: 16px;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	max-width: 100%;
}

header {
	max-width: 1080px;
	margin: auto;
	padding: 15px 0;
	
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media screen and (max-width: 767px) {
	header {
		display: none;
	}
}

header .logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 320px;
}

header .logo h1 {
	font-weight: bold;
	font-size: 18px;
}

header ul {
	display: flex;
	justify-content: space-between;
	width: 620px;
}

header ul li{
	position: relative;
}

header ul li:hover > ul {
	display: inherit;
}

header ul li ul {
	position: absolute;
	top: 32px;
	left: 0;
	z-index: 4;
	display: none;
}

header ul li ul li {
	max-width: 320px;
	border-bottom: #F7CFA9 solid 1px;
	
}

header ul li ul li:last-of-type {
	border: none;
}

header ul li ul li a {
	background: #F48100;
	padding: 10px 15px;
	font-size: 16px;
	color: #FFF;
	width: 100%;
	display: block;
}

header ul li ul li a:hover {
	background: #f7dbad;
	color: #754c24;
}

header ul li a {
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}


.sidebar {
	width: 72px;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	background: #FFFAE5;
	text-align: center;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
}@media screen and (max-width: 767px) {
	.sidebar {
		display: none;
	}
}


.sidebar li {
	padding: 10px 0;
	display: block;
	align-items: center;
}

.sidebar li:first-of-type {
	padding-bottom: 20px;
	margin-bottom: 20px;
	/*background: url("../images/common/slash.png") no-repeat bottom center;*/
}

.sidebar li:last-of-type {
	display: none;
}

.pageup {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 3;
}

h3.title1 {
	text-align: center;
	line-height: 100%;
}

h3.title1 span {
	font-size: 18px;
	font-weight: bold;
	line-height: 100%;
	display: block;
	padding: 0;
	margin-bottom: 15px;
}

.center {
	text-align: center;
}

a.link1 {
	background: #754C24;
	color: #FFF;
	font-size: 15px;
	font-weight: bold;
	display: inline-block;
	padding: 10px 25px;
	line-height: 100%;
	margin-top: 20px;
	border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
}

a.link1:hover {
	background: #A57349;
}

footer {
	background: #E7E2DF;
	text-align: center;
	padding: 30px 0 30px;
}


footer .copain {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

footer .copain .address {
	text-align: left;
	line-height: 100%;
	margin-left: 40px;
}@media screen and (max-width: 767px) {
	footer .copain .address {
		margin-left: inherit;
		text-align: center;
	}
}

footer .copain .address img {
	margin: 0;
}

footer .copain .address p {
	margin-top: 10px;
}


footer .shisetsu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

footer .shisetsu .box {
	border: #754C24 dotted 1px;
	padding: 10px;
	margin: 20px 10px;
	width: 300px;
}@media screen and (max-width: 767px) {
	footer .shisetsu .box {
		margin: 10px auto;
	}
	footer .shisetsu .box:first-of-type {
		margin-top: 25px;
	}
}

footer .shisetsu .box h2 {
	font-size: 18px;
	font-weight: bold;
	white-space: nowrap;
	line-height: 140%;
}

footer .shisetsu .box p {
	text-align: left;
	line-height: 140%;
	margin-top: 10px;
}

footer .shisetsu .box p.ad {
	text-align: center;
}

footer .shisetsu .box p.tel {
	text-align: center;
	font-size: 16px;
	line-height: 140%;
}

footer .shisetsu .box p.tel a {
	font-size: 25px;
	font-weight: bold;
}



/* 画面外にいる状態 */
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 500ms;
	}

/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}

/* 2つ目の要素に200msのdelayをかける */
#effect2 > div .fadein:nth-of-type(2) {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
	}
/* 3つ目の要素に400msのdelayをかける */
#effect2 > div .fadein:nth-of-type(3) {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
	}


.w1080 {
	width: 1080px;
	margin: auto;
}@media screen and (max-width: 767px) {
	.w1080 {
		width: 100%;
	}
}
.w520 {
	width: 520px;
	margin: auto;
}@media screen and (max-width: 767px) {
	.w520 {
		width: 100%;
	}
}

/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(187, 111, 0, 0.9);
}


.header {
  background: #FFF;
  width: 100%;
  height: 52px;
	z-index: 100;
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
	z-index: 100;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid rgb(255, 255, 255);
  padding: 5px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
	white-space: nowrap;
}

.menu li ul li {
  border-top: 1px solid rgb(255, 255, 255);
  padding: 3px 0;
  margin: 0 0 0 20px;
  opacity: 0;
  transition: 0.5s;
	white-space: nowrap;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #333;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #333;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 4px;
  font-size: 20px;
}

.navtext a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.navtext a img {
	margin-right: 15px;
}

@media screen and (min-width: 768px) {
	.header {
		display: none;
	}
	.sp {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	header {
		display: none;
	}
	.pc {
		display: none;
	}
}

