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

header .logo {
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 36px;
}
header .logo ul {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
header .logo li:nth-child(1) {
    width: 22%;
    padding-top: 20px;
}
header .logo li:nth-child(2) {
    width: 30.2%;
}
header .logo li:nth-child(3) {
    width: 17%;
    padding-top: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 18px;
    line-height: 1.8rem;
}
header .logo li:nth-child(3) strong {
	font-family :"Oswald",  "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #00a53c;
    font-size: 28px;
    font-size: 2.8rem;
    line-height: 32px;
    line-height: 3.2rem;
}
header .logo li:nth-child(3) span {
    display: inline-block;
    width: 100%;
    text-align: center;
}
header .logo li:nth-child(3)::before {
    content: '▶︎';
    color: #00a53c;
    font-size: 10px;
    font-size: 1.0rem;
}
header .logo li:nth-child(4) {
    display: none;
}

header .nav {
    width: 100%;
    background-color: #eeeedd;
}
header .nav ul {
    width: 1000px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
}
header .nav li {
    width: calc(25% - 1px);
    border-left: 1px solid #000;
}
header .nav li:last-child {
    width: calc(25% - 2px);
    border-right: 1px solid #000;
}
header .nav li a {
    width: 100%;
    padding: 22px 0;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 22px;
    line-height: 2.2rem;
    font-weight: 500;
    background-color: #eeeedd;
}
header .nav li a:hover {
    background-color: #fcfcfc;
}

/*全てのリスト・リンク共通*/
.gNav-menu li {
    position: relative;
}
.gNav-menu li a {
    display: block;
}

/*子階層以降共通*/
.gNav-menu li ul {
    width: 100%;
    height: 0;
    overflow: hidden;
    display: -webkit-block;
    display: block;
}
.gNav-menu li:hover ul {
    overflow: visible;
}
.gNav-menu li:hover ul li {
    width: 100%;
    overflow: hidden;
    /*transition: .5s;*/
    z-index: 9999;
    border-left: none;
}
.gNav-menu li:hover ul li a {
    width: 92%;
    padding: 10px 4%;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2.0rem;
    font-weight: 300;
    letter-spacing: -0.05em;
}
.gNav-menu li:hover ul li:last-child {
    width: 100%;
    border-right: none;
}
.gNav-menu li:hover ul > li {
    overflow: visible;
}


@media only screen and (min-width:600px) and (max-width:768px) {
    header .logo {
        width: 100%;
        padding-bottom: 26px;
    }
    header .logo li:nth-child(1) {
        width: 20%;
        padding-top: 36px;
    }
    header .logo li:nth-child(2) {
        width: 28%;
        padding-top: 16px;
    }
    header .logo li:nth-child(3) {
        width: 28%;
        padding-top: 5px;
    }
    
    header .nav ul {
        width: 100%;
    }
}

@media screen and ( max-width:599px ) {
    header .logo {
        width: 100%;
        padding-bottom: 10px;
    }
    header .logo ul {
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    header .logo li:nth-child(1) {
        display: none;
    }
    header .logo li:nth-child(2) {
        width: 42%;
        margin-left: 4%;
        padding-top: 6px;
    }
    header .logo li:nth-child(3) {
        display: none;
    }
    
    header .nav {
        width: 100%;
        background-color: #eeeedd;
    }
    header .nav ul {
        width: 100%;
        margin-top: 0;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    header .nav li {
        width: 100%;
        border-top: 1px solid #000;
        border-left: none;
    }
    header .nav li:last-child {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #000;
    }
    header .nav li a {
        padding: 18px 0;
    }
    
    /*子階層以降共通*/
    .gNav-menu li ul {
        width: 100%;
        height: auto;
        overflow: visible;
        display: -webkit-block;
        display: block;
    }
    .gNav-menu li ul {
        overflow: visible;
        padding-bottom: 20px;
    }
    .gNav-menu li ul li {
        width: 100%;
        overflow: visible;
        /*transition: .5s;*/
        z-index: 999;
        border-top: none;
    }
    .gNav-menu li ul li:last-child {
        border-bottom: none;
    }
    .gNav-menu li ul li a {
        width: 92%;
        padding: 10px 4%;
        text-align: center;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 20px;
        line-height: 2.0rem;
        font-weight: 300;
        letter-spacing: -0.05em;
    }
    .gNav-menu li:hover ul li a {
        width: 92%;
        padding: 10px 4%;
        text-align: center;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 20px;
        line-height: 2.0rem;
        font-weight: 300;
        letter-spacing: -0.05em;
    }
}

#hamburger .btn-gNav{
	position: fixed;
	top: 0;
	right: 0;
	width: 56px;
	height: 56px;
	z-index: 999;
    background-color: #00a53c;
}
#hamburger .btn-gNav span{
	position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
	width: 62.5%;
	height: 2px;
	background: #fff;
	-webkit-transition: all 400ms;
	transition: all 400ms;
}
#hamburger .btn-gNav span:nth-child(1) {
	top:8px;
}
#hamburger .btn-gNav span:nth-child(2) {
	top:18px;
}
#hamburger .btn-gNav span:nth-child(3) {
	top:28px;
}
#hamburger .btn-gNav span:nth-child(4) {
    top: 36px;
	height: inherit;
    text-align: center;
	font-family :"NotoSansJP",  "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #fff;
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 300;
    background-color: transparent;
}
#hamburger .btn-gNav.open span:nth-child(1){
    top: 16px;
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
}
#hamburger .btn-gNav.open span:nth-child(2),#hamburger .btn-gNav.open span:nth-child(3){
    top: 16px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}
.btn-gNav{
    display: none;
}

@media only screen and (min-width:769px) and (max-width:1025px) {
}

@media only screen and (min-width:600px) and (max-width:768px) {
}

@media screen and ( max-width:599px ) {
    .btn-gNav{
        display: block;
    }
    #gNav{
	    position: fixed;
	    top: 0;
	    right: -100%;
	    width: 100%;
	    height: 100%;
	    z-index: 50;
    }
    #gNav.open{
	    right: 0px;
    }
    #gNav .gNav-menu{
	    width: 100%;
	    height:100%;
	    display: flex;
    	flex-direction: column;
    	text-align: center;
    }
}



a.pdf {
    display: inline-block;
    margin-bottom: 10px;
    font-size:18px ;
    font-size: 1.8rem;
    line-height: 25px;
    line-height: 2.5rem;
    font-weight: 500;
    padding-left: 25px;
    background-image: url("../img/icon-pdf.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 18px;
}
a.pdf span {
    font-weight: 200;
}

#reserve {
    position: fixed;
    top: 58%;
    right: 0;
    z-index: 999;
}
/*#reserve li:first-child a {
    background-image: url("../img/icon-visit.png");
    background-position: left 6px top 8px;
    background-repeat: no-repeat;
    background-size: 40px;
    margin-bottom: 2px;
}
#reserve li:nth-child(2) a {
    background-image: url("../img/icon-video.png");
    background-position: left 10px top 16px;
    background-repeat: no-repeat;
    background-size: 30px;
}*/
#reserve li:last-child {
    display: none;
}
#reserve li a {
    display: inline-block;
    width: calc(100% - 65px);
    padding: 16px 10px 16px 55px;
    color: #fff;
    font-size: 15.5px;
    font-size: 1.55rem;
    line-height: 25px;
    line-height: 2.5rem;
    font-weight: 500;
    background-color: rgba(0,0,0,0.5);
}
#reserve li a:hover {
    text-decoration: underline;
}

@media only screen and (min-width:600px) and (max-width:768px) {
}

@media screen and ( max-width:599px ) {
    a.pdf {
        background-position: left top 4px;
    }
    
    #reserve {
        width: 100%;
        position: fixed;
        /*top: calc(100% - 140px);*/
			  top: auto;
				bottom: -2px;
        right: 0;
        z-index: 999;
    }
    #reserve ul {
        width: 100%;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    /*#reserve li:first-child {
        width: calc(50% - 1px);
        border-right: 1px solid #fff;
    }
    #reserve li:nth-child(2) {
        width: 50%;
    }*/
    #reserve li:last-child {
        display: block;
        width: 100%;
        border-top: 1px solid #fff;
    }
    #reserve li a {
        display: inline-block;
        width: calc(100% - 65px);
        padding: 22.5px 10px 22.5px 55px;
        color: #fff;
        font-size: 15.5px;
        font-size: 1.55rem;
        line-height: 25px;
        line-height: 2.5rem;
        font-weight: 500;
        background-color: rgba(0,165,60,1);
    }
    /*#reserve li:first-child a {
        background-image: url("../img/icon-visit.png");
        background-position: left 6px top 12px;
        background-repeat: no-repeat;
        background-size: 44px;
        margin-bottom: 0;
    }
    #reserve li:nth-child(2) a {
        background-image: url("../img/icon-video.png");
        background-position: left 10px top 22px;
        background-repeat: no-repeat;
        background-size: 36px;
    }*/
    #reserve li:last-child a {
        display: inline-block;
        width: 100%;
        padding: 0;
        color: #fff;
        font-size: 11px;
        font-size: 1.1rem;
        line-height: 16px;
        line-height: 1.6rem;
        font-weight: 200;
        letter-spacing: -0.05em;
        background-color: rgba(0,165,60,1);
    }
    #reserve li:last-child table {
        width: 100%;
    }
    #reserve li:last-child td:first-child {
        width: calc(50% - 10px);
        padding: 10px 0 10px 10px;
        vertical-align: middle;
    }
    #reserve li:last-child td:last-child {
        width: calc(50% - 45px);
        padding: 14px 0 14px 45px;
        background-image: url("../img/icon-tel.png");
        background-position: left 10px top 50%;
        background-repeat: no-repeat;
        background-size: 30px;
        vertical-align: middle;
        font-size: 22px;
        font-size: 2.2rem;
        font-weight: 500;
    }
    #reserve li:last-child td strong {
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: 400;
    }
    #reserve li:last-child td span {
        padding-top: 10px;
    }
}



footer .access {
    width: 100%;
}
footer .access h1 {
    text-align: center;
    font-size:34px ;
    font-size: 3.4rem;
    line-height: 21px;
    line-height: 2.1rem;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 36px;
}
footer .access h1 span {
	font-family :"Gotham",  "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    color: #00a53c;
    font-size:15px ;
    font-size: 1.5rem;
    font-weight: 300;
}

footer .google-maps {
    position: relative;
    padding-top: 500px; 
    height: 0;
    overflow: hidden;
}
footer .google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.footer-link {
    width: 456px;
    margin: 60px auto 120px auto;
}
.footer-link ul {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.footer-link li {
    width: 47.36%;
}
.footer-link li a {
    display: inline-block;
    width: calc(81.5% - 2px);
    border: 1px solid #000;
}
.footer-link li:first-child a {
    padding: 18px 9.25%;
}
.footer-link li:last-child a {
    padding: 12px 9.25%;
}
.footer-link li a:hover {
	-moz-opacity:0.6;
	opacity:0.6;
	filter:alpha(opacity=60);
}

.top-link {
    display: block;
    width: 55px;
    height: 45px;
    text-align: center;
    margin: 0 5% 20px auto;
    padding-top: 10px;
    background-color: #c8c8c8;
    border-radius: 50%;
}
.top-link a {
    width: 100%;
    text-align: center;
    font-size: 9.5px;
    font-size: 0.95rem;
    line-height: 11px;
    line-height: 1.1rem;
}
.top-link a span {
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 14px;
    line-height: 1.4rem;
}

.copyright {
    text-align: center;
    width: 100%;
    padding: 32px 0;
    color: #fff;
    font-size: 10px;
    font-size: 1.0rem;
    background-color: #000;
}

@media only screen and (min-width:600px) and (max-width:768px) {
}

@media screen and ( max-width:599px ) {
    footer {
        padding-bottom: 68px;
    }
    footer .access h1 {
        font-size:30px ;
        font-size: 3.0rem;
        margin-top: 0;
    }
    footer .access h1 span {
        font-size:12px ;
        font-size: 1.2rem;
    }
    
    footer .google-maps {
        padding-top: 55vh;
    }
    
    .footer-link {
        width: 87.5%;
        margin: 40px auto 30px auto;
    }
    .footer-link li:first-child a {
        padding: 16px 9.25%;
    }
    
    .top-link {
        display: block;
        width: 55px;
        height: 45px;
        text-align: center;
        margin: 0 5% 20px auto;
        padding-top: 10px;
        background-color: #c8c8c8;
        border-radius: 50%;
    }
    .top-link_sp a {
        width: 100%;
        text-align: center;
        font-size: 9.5px;
        font-size: 0.95rem;
        line-height: 11px;
        line-height: 1.1rem;
    }
    .top-link_sp a span {
        color: #fff;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 14px;
        line-height: 1.4rem;
    }
}
