@charset "UTF-8";
/* CSS Document */

/*BODY*/
body {
	background: #FFFAE0;
}

/*HEADER*/
#HEADER {
    width: 100%;
    height: 90px;
    position: fixed;
    background: #ccdb52;
    z-index: 2;
    -webkit-transition:.35s ease-in-out;
    -moz-transition:.35s ease-in-out;
    transition:.35s ease-in-out;    
}
.inner {
    padding: 10px 40px 20px;
    max-width: 1440px;
    margin: auto;
    position: relative;
    z-index: 1;
}
#LOGO {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.logo  {
    width: 190px;
}

#HEADER h1 {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    margin: 0 40px;
}

.open #global-nav {
    justify-content:space-between;
    -webkit-transition:.5s ease-in-out;
    -moz-transition:.5s ease-in-out;
    transition:.5s ease-in-out;    
}
#global-nav ul{
    width:250px;
    margin:0 auto;
    list-style:none;
    right:0;
    bottom:0;
    font-weight: bold;
    display: block;
    padding: 150px 0px
}
#global-nav li {
    text-align: center;
    margin: 20px 0px 0px;
    font-weight: bold;
    border-bottom: 2px dotted #fff;
    padding-bottom: 20px;
}
#global-nav ul li:last-child {
    border-bottom: none;
}
#global-nav a {
    color: #fff;
}
#global-nav a:hover {
    opacity: .7;
    -webkit-transition:.35s ease-in-out;
    -moz-transition:.35s ease-in-out;
    transition:.35s ease-in-out;        
}
#global-nav img {
	height: 120px;
}
#nav-toggle{
    display: block;
    position:absolute;
    top:30px;
    right:40px;
    width:54px;
    height:40px;
    cursor:pointer;
}
#nav-toggle div{
    position:relative;
}
#nav-toggle span{
    display:block;
    position:absolute;
    width:100%;
    border-radius: 10px;
    border-bottom:solid 5px #FFFFFF;
    -webkit-transition:.35s ease-in-out;
    -moz-transition:.35s ease-in-out;
    transition:.35s ease-in-out;
    z-index: 2;
}
    #LOGO {
        z-index: 2;
        position: relative;
    }
#nav-toggle span:nth-child(1) {
    top:0;
}
#nav-toggle span:nth-child(2) {
    top:12px;
}
#nav-toggle span:nth-child(3) {
    top:25px;
}
.open #nav-toggle span:nth-child(1){
    top:11px;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    transform:rotate(-45deg);
}
.open #nav-toggle span:nth-child(2),.open #nav-toggle span:nth-child(3){
    top:11px;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    transform:rotate(45deg);
}
.open nav{
    -moz-transform:translateY(710px);
    -webkit-transform:translateY(710px);
    transform:translateY(710px);
}
#global-nav{
    width:100%;
    position: relative;
    top: -820px;
    left: 0%;
    -webkit-transition:.5s ease-in-out;
    -moz-transition:.5s ease-in-out;
    transition:.5s ease-in-out;        
}
.open #global-nav {
    background-color:rgba(48,48,48,0.70);
    -webkit-transition:.5s ease-in-out;
    -moz-transition:.5s ease-in-out;
    transition:.5s ease-in-out;
    z-index: 0;        
    height: 103vh;
}
/*footer*/
footer {
    background: #cddc52;
    padding:4em 0;
}
.foot_inner {
    margin-top: 10px;
	max-width: 940px;
    margin: auto;
}
.foot_logo {
	text-align: center;
	width: 250px;
	margin: 0 auto;
}
.foot_logo img {
	width: 100%;
}
.foot_inner h1 {
	text-align: center;
	font-size: 24px;
    font-weight: bold;
    margin: 1em 0;
}

.foot_inner p {
    margin: 0.5em 0;
	text-align: center;
}

.foot_tel {
    font-size: 18px;
    font-weight: bold;
}
.foot_address {
    font-weight: bold;
}
address {
    color: #fff;
    text-align: center;
    margin: 3em 0px;
}
/*totop*/
#totop a {
    width: 60px;
    height: 60px;
    background: #ccdb52;
    color: #fff;
    text-align: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
}
#totop p {
    font-size: 14px;
    line-height: .5;
    margin-top: 4px;
}
#totop span::before {
    content: '\f106';
    font-family: FontAwesome;
    font-weight: normal;
    position: relative;
    font-size: 50px;
    color: #fff;
    line-height: .5;
}


/* *************  タブレット 以下 *************
*******************************************************************************/
@media only screen and (max-width:896px){
}


/* *************  スマホ以下 *************
*******************************************************************************/

@media only screen and (max-width:640px){
	
#HEADER {
    height: 80px; 
}
.inner {
    padding: 10px 20px 0px;
}

#LOGO {
    display: block;
}
.logo  {
    width: 90px;
}
#HEADER h1 {
    font-size: 16px;
    margin: 0 0px;
}
	
	
#nav-toggle{
    top:20px;
    right:20px;
}
#global-nav li {
    margin: 10px 0px 0px;
}

#global-nav img {
	height: 80px;
}
	
.foot_inner {
        max-width: 92%;
    }
	
	
	
}