﻿@charset "utf-8";
@import url("reset.css");
@import url("default.css");

/* --------------------------------------------------------------------
		Font-size Adjustment.
			77% = 10px	|	123.1% = 16px	|	167% = 22px
			85% = 11px	|	131% =  17px	|	174% = 23px 
			93% = 12px	|	138.5% = 18px	|	182% = 24px 
			100% = 13px	|	146.5% = 19px	|	189% = 25px 
			108% = 14px	|	153.9% = 20px	|	197% = 26px 
			116% = 15px	|	161.6% = 21px	| 
-------------------------------------------------------------------- */
html {
	color: #333;
	background-color: #fff;
	background-image: url(../img/common/header-bg-01.svg);
	background-position: center 490px;
	background-repeat: no-repeat;
}
body {
	background-image: url(../img/common/body-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}
.header-wrap {
	overflow: hidden;
}
.header-arc {
	background-image: url(../img/index/top-bg-01.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 600px;
	border-bottom-right-radius: 2000px 300px;
	border-bottom-left-radius: 2000px 300px;
	margin-left: -200px;
	margin-right: -200px;
	padding-left: 200px;
	padding-right: 200px;
}
#logo2 {
	margin: 0 auto;
}
main {
	padding: 30px 30px 80px 30px;
	background-image: url(../img/common/footer-bg.png);
	background-position: bottom center;
	background-repeat: no-repeat;
}
#main1 {
	width: 100%;
	background-image: url(../img/common/main-top-bg.svg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto;
}
.niku {
	margin: 0 auto;
	padding: 10px;
	max-width: 600px;
	height: 40px;
	background-color: #67B934;
	border: 2px solid #4A972F;
	border-radius: 12px;
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	display: flex;
	flex-flow: wrap;
	justify-content: center;
	align-items: center;
}
.niku a {
	display: inline-block;
	position: relative;
	margin: -20px;
	padding: 20px;
}
.niku a:link,
.niku a:visited,
.niku a:active 
.niku a:hover {
	color: #fff;
	text-decoration: none;
}
footer {
	color: #fff;
	text-align:center;
	background-color: #6da923;
	padding: 30px 30px 50px 30px;
}
#footer-wrap {
	width: 100%;
}
#footer-left address {
	margin: 10px 0;
}
.phone {
	font-size: 1.9em;
	font-weight: bold;
}
#footer-menu {
	padding: 20px;
}
#footer-menu li {
	padding: 10px;
	list-style-type: none;
}
#footer-menu li a {
	color: #fff;
}

@media screen and (min-width:768px){
	#logo2 {
		margin-left: 30px;
	}
	.burger-nav ul {
		display: flex;
		justify-content: space-around;
	}
	.menu {
	  flex-direction: row;
	}
	footer {
		text-align:left;
	}
	#footer-wrap {
		display: flex;
		max-width: 980px;
		margin: 0 auto;
	}
	#footer-menu {
		display: flex;
		flex-wrap: wrap;
	}
}
#menu-wrap {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-top: 60px;
}
#menu-wrap >:first-child {
	margin-right: auto;
}
/* burger */
.burger-nav {
	min-width: 560px;
	margin: auto;
}
.burger-nav a {
  color: #333;
  text-decoration: none;
}
.burger-nav a:hover {
  color: #00f;
}
@media (max-width: 768px) {
  .burger-nav {
    display: block;
    color: #333;
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
  }
  .burger-nav.open {
    display: block;
  }
  .burger-nav.close {
    display: none;
  }
  .burger-nav a {
    display: block;
    color: #333;
  }
  .burger-icon {
    display: block;
    width: 25px;
    height: 18px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
  }
  .burger-icon::before {
		content:"";
		position: absolute;
		top: -20px;
		right: -20px;
		width: 65px;
		height: 60px;
		background-color: rgba(255, 255, 255, 1);
	}
  .burger-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all 0.4s;
  }
  .burger-icon span:nth-of-type(1) {
    top: 0;
  }
  .burger-icon span:nth-of-type(2) {
    top: 8px;
  }
  .burger-icon span:nth-of-type(3) {
    bottom: 0;
  }
  .burger-icon.is-burger-nav-open span {
    background-color: #333;
  }
  .burger-icon.is-burger-nav-open span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .burger-icon.is-burger-nav-open span:nth-of-type(2) {
    opacity: 0;
  }
  .burger-icon.is-burger-nav-open span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

/* start: clearfix -------------------------------- */
.clearfix:after {
	content: ".";
	font-size: 0.1em;
	line-height: 0;
	display: block;
	height: 0.1px;
	visibility: hidden;
	clear: both;
} 

.clearfix {
	display: inline-block;
}

/* Hides from Mac IE \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End Hide from Mac IE */
/* end: clearfix -------------------------------- */
/* start: Highlight -------------------------------- */
.Highlight a:hover img {
filter: alpha(opacity=75);
-moz-opacity:0.75;
opacity:0.75;
}
/* end: Highlight -------------------------------- */
/* start: Page-top -------------------------------- */
#Page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 77%;
}
#Page-top a {
	background: #444;
	text-decoration: none;
	color: #fff;
	width: 100px;
	padding: 15px 0;
	text-align: center;
	display: block;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#Page-top a:hover {
	text-decoration: none;
	background: #999;
}
/* end: Page-top -------------------------------- */

.menu {
	display: flex;
	flex-direction: column;
}
@media screen and (min-width:768px){
	.menu {
		flex-direction: row;
		text-align:left;
	}
	.menu a {
	  font-size: 2em;
	}
}
@media (max-width: 768px) {
	.menu {
		padding-top: 60px;
		max-width: 600px;
		font-size: 1.2em;
	}
}
.menu a {
  position: relative;
  display: inline-block;
  font-size: 1.3em;
  font-weight: normal;
  color: #333;
  transition: color 0.2s ease;
  padding: 3px 0;
  margin-bottom: 15px;
}
.menu a:hover {
  color: #000;
}
.menu a:hover::after, .menu a:hover::before {
  width: 100%;
  left: 0;
}
.menu a::after, .menu a::before {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  width: 0;
  right: 0;
  height: 3px;
}
.menu a::before {
  transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
  background: #aaa;
}
.menu a::after {
  transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  background: #6da923;
}
.button:visited {
	color: #393;
	text-decoration: none;
}