@charset "utf-8";


@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
@font-face {
    font-family: 'Koruri Regular';
    src: url('../fonts/Koruri-Regular-sub.eot');
    src: url('../fonts/Koruri-Regular-sub.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Koruri-Regular-sub.woff') format('woff'),
    url('../fonts/Koruri-Regular-sub.ttf') format('truetype');
}

@font-face {
    font-family: 'Koruri Bold';
    src: url('../fonts/Koruri-Bold-sub.eot');
    src: url('../fonts/Koruri-Bold-sub.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Koruri-Bold-sub.woff') format('woff'),
    url('../fonts/Koruri-Bold-sub.ttf') format('truetype');
}


/* common 
---------------------------------------------------------------------- */
*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    background-color: #fff;
    color: #4b4b4b;
    font-family: 'Koruri Bold', "游ゴシック", YuGothic,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
    font-size: 13px;
    -webkit-text-size-adjust: 100%;
    position: relative;
    animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

a{
    color: #565656;
    text-decoration: none;
    -webkit-transition: .5s;
    transition: .5s;
    opacity: 1;
}

a:hover{
    opacity: .5;
}

h1,
h2,
h3,
h4{
    font-weight: normal;
}

input, button, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input, button, textarea, select {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* on-modal
---------------------------------------------------------------------- */
html.on-modal{
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}


/* img
---------------------------------------------------------------------- */
img.img_sp{
    display: none;
}


/* loading
---------------------------------------------------------------------- */
.loading{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1000;
}


/* wrapper 
---------------------------------------------------------------------- */
#wrapper{
    overflow: hidden;
    position: relative;
}


/* header
---------------------------------------------------------------------- */
#g_header{
    background: url(../images/bg_header.jpg) center top no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.h_wrap{
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    max-width: 680px;
    width: 100%;
}

#g_header > div h1{
    padding: 20px 0;
    text-align: center;
}

#g_header > div h1 img{
    width: 100%;
    max-width: 600px;
    height: auto;
}


/* global_nav
---------------------------------------------------------------------- */
#global_nav{}

.global_nav_cont{
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    height: 100%;
    width: 100%;
    top: -100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling:touch;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
}

#global_nav.open .global_nav_cont{
    top: 0%;
}

.global_nav_cont > ul{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 40px 60px;
    white-space: nowrap;
}

.global_nav_cont li{
    color: #248b00;
    font-size: 20px;
    padding: 10px 0;
    text-align: center;
}

.global_nav_cont li:after{
    content: " ";
    height: 1px;
    display: block;
    background: #7cb962;
    width: 130px;
    margin: 20px auto 0;
}


.global_nav_cont li a{
    color: #248b00;
    display: block;
}

.global_nav_cont .nav_title{
    padding: 10px 0;
}

.global_nav_cont .nav_list li{
    font-size: 14px;
}

.global_nav_button_close{
    cursor: pointer;
    position: fixed;
    top: 30px;
    right: 60px;
    z-index: 999;
    display: none;
}

#global_nav.open .global_nav_button_close{
    display: block;
}

.global_nav_button_close img{
    width: 60px;
    height: 60px;
}


/* global_nav_button
---------------------------------------------------------------------- */
.global_nav_button{
    cursor: pointer;
    display: block;
    position: fixed;
    top: 30px;
    right: 60px;
    z-index: 998;
}

.global_nav_button a{
    background: url(../images/nav_btn.png) center top no-repeat;
    background-size: 60px;
    /*-webkit-border-radius: 50%;*/
    /*border-radius: 50%;*/
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    opacity: 1;
}
/*

.global_nav_button a:before,
.global_nav_button a:after,
.global_nav_button a span{
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 2px;
    width: 30px;
    background: #91AF5D;
    transition: all 400ms ease;
    -webkit-transition: all 400ms ease;
}

.global_nav_button a:before{
    top: 16px;
}

.global_nav_button a span{
    top: 27px;
}

.global_nav_button a:after{
    bottom: 16px;
}

#global_nav.open .global_nav_button a:before{
    top: 28px;
}

#global_nav.open .global_nav_button a:after{
    top: 18px;
}

#global_nav.open .global_nav_button a span{
    opacity: 0;
}

#global_nav.open .global_nav_button a:before{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

#global_nav.open .global_nav_button a:after{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

#global_nav.open .global_nav_button a,
#global_nav.scroll .global_nav_button a{
    border-color: #999;
}

#global_nav.open .global_nav_button a:before,
#global_nav.open .global_nav_button a:after,
#global_nav.open .global_nav_button a span,
#global_nav.scroll .global_nav_button a:before,
#global_nav.scroll .global_nav_button a:after,
#global_nav.scroll .global_nav_button a span{
    background: #999;
}
*/


/* search form
---------------------------------------------------------------------- */
.search_form{
    width: 100%;
    height: 36px;
    background: #fff;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.3) inset;
    box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.3) inset;
    position: relative;
    margin: auto;
}

.search-text{
    height: 36px;
}

.search-text input[type="text"] {
    color: #9b9b9b;
    font-size: 16px;
    line-height: 36px;
    padding: 0 36px 0 10px;
    width: 100%;
}

.search-btn {
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}

.search-btn input[type="submit"] {
    width: 36px;
    height: 36px;
    background: url(../images/img_search_ico.png) no-repeat center center;
    background-size: 23px;
    cursor: pointer;
}

.search-btn input[type="submit"]:hover {
    opacity: 0.5;
}


/* contents
---------------------------------------------------------------------- */
#inner_wrap{
    width: 100%;
    margin: auto;
}

section > h2{
    font-size: 32px;
    text-align: center;
    padding: 20px 0;
}

.cont_wrap{
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding: 60px 0;
}


/* cont_list
---------------------------------------------------------------------- */
/*.cont_list{
    padding: 20px 0;
}

.cont_list li{
    overflow: hidden;
    padding: 20px 0;
}

.cont_list li + li{
    border-top: 1px solid #999;
}

.cont_list li a{
    overflow: hidden;
    display: block;
}

.cont_list .list_img{
    float: left;
    width: 240px;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.cont_list .list_img img{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
}

.cont_list .date,
.cont_list .list_title,
.cont_list .list_entry{
    padding-left: 260px;
    padding-bottom: 10px;
}*/


/* post_nav
---------------------------------------------------------------------- */
.pager{
    text-align: center;
}

.page-numbers,
.wp-pagenavi > *{
    font-family: 'Koruri Regular';
    font-size: 20px;
    color: #51be40;
    padding: 0 5px;
    margin-bottom: -2px;
    display: inline-block;
}

.page-numbers.current,
.wp-pagenavi .current{
    font-family: 'Koruri Bold';
}

.pager .prev,
.wp-pagenavi .previouspostslink{
    background: url(../images/icon_pager_prev.png) left top no-repeat;
    background-size: 20px;
    content: " ";
    display: inline-block;
    height: 0;
    width: 20px;
    padding-top: 17px;
    padding-right: 20px;
    overflow: hidden;
}

.pager .next,
.wp-pagenavi .nextpostslink{
    background: url(../images/icon_pager_next.png) right top no-repeat;
    background-size: 20px;
    content: " ";
    display: inline-block;
    height: 0;
    width: 20px;
    padding-top: 17px;
    padding-left: 20px;
    overflow: hidden;
}


/* footer
---------------------------------------------------------------------- */
#g_footer{
    position: relative;
    text-align: center;
}

#g_link{
    padding: 60px 0;
}

#g_link ul{
    font-size: 0;
}

#g_link li{
    display: inline-block;
    width: 240px;
    padding: 10px;
}

#g_link li a{
    background: #fff;
    border: 3px solid #309d1f;
    color: #248b00;
    display: block;
    font-size: 18px;
    line-height: 45px;
    width: 100%;
}

#g_link li a:hover{
    background: #309d1f;
    color: #fff;
    font-weight: 700;
    opacity: 1;
}

.f_wrap{
    background: #fff;
    border-top: 1px solid #d9edff;
    padding: 40px 0;
}

.footer_rights{
    color: #248b00;
    font-size: 10px;
    text-align: center;
}


/* page_top
---------------------------------------------------------------------- */
#page_top a{
    color: #248b00;
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    bottom: 30px;
    right: 20px;
    text-align: right;
    z-index: 998;
}

#page_top a:after{
    background: url(../images/icon_page_top.png) center top no-repeat;
    background-size: 30px;
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    width: 30px;
    height: 30px;
}

#page_top span:before{
    position: absolute;
    top: 4px;
    right: -40px;
    content: " ";
    width: 16px;
    height: 16px;
    border-top: 5px solid #573b18;
    border-right: 5px solid #573b18;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#page_top span:after{
    position: absolute;
    top: -10px;
    right: -50px;
    content: " ";
    border: 2px solid #573b18;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}
























@media screen and (max-width: 640px){


/* img
---------------------------------------------------------------------- */
img.img_pc{
    display: none;
}

img.img_sp{
    display: block;
}


/* header
---------------------------------------------------------------------- */
.global_nav_cont > ul{
    padding: 80px 0;
}

.global_nav_cont li{
    padding: 10px 0 5px;
}

.global_nav_cont li:first-child{
    border-top: 1px solid #7cb962;    
}

.global_nav_cont li:after{
    width: 100%;
    margin: 10px auto 0;
}

.global_nav_button_close img{
    width: 40px;
    height: 40px;
}

.global_nav_button_close,
.global_nav_button{
    top: 30px;
    right: 5px;
    width: 40px;
    height: 40px;
}

.global_nav_button a{
    background-size: 40px;
    width: 40px;
    height: 40px;
}

.global_nav_cont .nav_title{
    font-size: 18px;
}


/* footer
---------------------------------------------------------------------- */
#g_link{
    padding: 40px 20px;
}

#g_link li{
    display: block;
    width: 100%;
}

.f_wrap{
    border-top: 1px solid #309d1f;
}

.footer_rights{
    padding: 20px 0;
}

/* page_top
---------------------------------------------------------------------- */
#page_top a{
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
}

}