@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    font-family: -apple-system, BlinkMacSystemFont, Roboto,'Noto Sans JP','arial',YuGothic, "Yu Gothic Medium", "Yu Gothic",sans-serif;
    font-weight: normal;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.container {
    width: calc(100% - 4rem);
    margin: 0 auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol {
	padding-left: 20px;
	/*list-style-type: disc;*/
	list-style-position: outside;
}

a {
    text-decoration: none;
    color: #000;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    -o-transition: ease 0.3s;
    transition: ease 0.3s;
}

a:hover {
    -webkit-transition: ease 0.3s;
    -moz-transition: ease 0.3s;
    -o-transition: ease 0.3s;
    transition: ease 0.3s;
}

p {
    text-align: justify;
    line-break: strict;
    line-height: 2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section:nth-child(n+2){
    padding: 5rem 0;
}

address{
    margin-top: 1rem;
    font-family: 'Noto Sans JP',sans-serif;
    font-size: 1rem;
    font-style: normal;
    letter-spacing: 0.05rem;
}

.flex_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.textalignc{
    text-align: center;
}

.colorwhite{
    color: #fff;
}

.link_btn{
    position: relative;/*.link_btn::after*/
    display: block;
    width: 280px;
    height: auto;
    padding: 1rem;
    border: solid 1px #000;
    transition: all .3s;
}

.link_btn::after{
    position: absolute;
    top: 50%;
    right: 1rem;
    content: '';
    margin: auto 0;
    width: 1.875rem;
    height: 3.5px;
    background-image: url(../images/linkbtn_img.png);
    background-position: center;
    background-size: contain;
}

.link_btn:hover{
    background-color: rgba(0,0,0,0.2);
    transition: all .3s;
}

.linkbtn_white{
    border-color: #fff;
    color: #fff;
}

.linkbtn_white::after{
    background-image: url(../images/linkbtn_img_white.png);
}

.mb_br{
    display: none;
}

.flow_img{
    margin: 5rem auto;
    width: 70%;
    height: auto;
}

/* ===========================================
	header
============================================== */
.h_logo,
.f_logo{
    transition: all .3s;
}

.h_logo:hover,
.f_logo:hover{
    opacity: 0.6;
    transition: all .3s;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 9999;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header a{
    color: #fff;
}

.header.fixed{
    background-color: #fff;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.1);
       -moz-box-shadow: 0 0 3px rgba(0,0,0,0.1);
            box-shadow: 0 0 3px rgba(0,0,0,0.1);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.header.fixed .g_nav > ul > li a,
.header.fixed .h_logo > a,
.header.fixed .g_nav li::before{
    color: #000;
}

.header.fixed .h_logo > a{
    background-image: url(../images/logo_normal.png);
}

.header .flex_box{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
}

.h_logo{
    width: 15.625rem;
    height: 2.93rem;
    margin: 0.75rem 0.75rem 0.75rem 2rem;
}

.h_logo a{
    background-image: url(../images/logo_white.png);
    background-position: center;
    background-size: contain;
}

.g_nav > ul > li a{
    padding: 2rem;
    font-size: 0.93rem;
}

.g_nav > ul > li a:hover,
.g_nav > ul > li.current a{
    background: linear-gradient(to bottom,#126612 5%,rgba(255,255,255,0) 5%);
    font-weight: bold;
    transform: all .3s;
}

.g_nav li{
    position: relative;
}

.g_nav li + li::before{
    content: '／';
    color: #fff;
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ===========================================
	menu-trigger
============================================== */
.bar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    width: 55px;
    height: 55px;
}

.menu-trigger {
    display: inline-block;
    width: 36px;
    height: 20px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 18.5px;
    right: -9.45px;
    margin: auto 0;
    z-index: 100;
    position: relative;
}

.menu-trigger span {
    display: inline-block;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    right: 0x;
    width: 100%;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.menu-trigger.active span {
    background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(9.5px) rotate(-29deg);
}

.menu-trigger span:nth-of-type(2) {
    top: 50%;
    bottom: 50%;
    margin: auto 0;
}

.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}

.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}

.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-9.6px) rotate(29deg);
}

.header.fixed .menu-trigger span{
    background-color: #000;
}

/* ===========================================
	sp_menu
============================================== */
.sp_menu {
    position: fixed;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100vh;
    padding-top: 70px !important;
    background: linear-gradient(-45deg,#d5dd00,#30ad37);
}

.sp_menu.open{
    display: block;
}

.gnav__menu__item a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.3rem;
    text-decoration: none;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-bottom: solid 1px #fff;
}

.gnav__menu__item a:hover {
    background: rgba(0,0,0,0.1);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.gnav__menu__item a > span{
    font-family: 'Noto Sans JP',sans-serif;
    margin-left: 1rem;
    font-size: 0.8rem;
    /*font-weight: bold;*/
    opacity: 0.5;
    font-style: italic;
}

.sp_contact h2{
    margin: 2rem 0;
    text-align: center;
    color: #fff;
}

.btn{
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.sp_tel,.sp_mail_form{
    width: 49%;
    border: solid 2px #fff;
    text-align: center;
}

.sp_tel a,
.sp_mail_form a{
    padding: 1.3rem;
    font-size: 1.5rem;
    color: #fff;
}

/* ===========================================
	loading
============================================== */
.loader{
    position: fixed;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(-45deg,#d5dd00,#30ad37);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===========================================
	news
============================================== */

.news dt{
    float: left;
    position: relative;
    width: 9.375rem;
    height: auto;
}

.news dt::after{
    content: '';
    position: absolute;
    width: 5.625rem;
    height: 1px;
    background-color: #36af35;
    top: 50%;
    bottom: 50%;
    left: 9.375rem;
    margin: auto;
}

.news dd{
    width: 100%;
    padding-left: 17rem;
    border-bottom: solid 1px #e4e4e4;
}

.news dd > a:hover{
    text-decoration: underline;
}

.news dt,
.news dd{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.news dd:first-of-type{
    border-top: solid 1px #e4e4e4;
}
.new-posts_cat .cat {
	color:#36af35;
	font-size: 0.875rem;
	display: inline;
}
.new-posts_cat .cat+.cat:before {
	content: ",";
	color: #aaa;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

@media screen and (max-width:960px) {
	.news dt::after{
		top: 90%;
	}
}
/* ===========================================
	footer
============================================== */
.footer{
    position: relative;/*#page_top*/
    background-color: #f0f0f0;
}
.footer_contents_wrap{
    padding: 6.25rem 0;
}

.footer_contents_wrap > .flex_item{
    width: 50%;
}

.f_logo{
    width: 23.125rem;
}

.contact_area{
    justify-content: space-between;
    align-items: center;
}

.f_tel{
    padding-right: 1rem;
}

.f_fax{
    position: relative;/*.f_fax::before*/
    padding-left: 1rem;
}

.f_fax::before{
    position: absolute;
    left: -0.5rem;
    bottom: 0;
    content: '／';
    color: #000;
    font-size: 1rem;
}

.f_tel,
.f_fax{
    font-size: 1.5rem;
}

.f_tel span,
.f_fax span{
    font-size: 1rem;
    margin-right: 1rem;
}

.f_link{
    margin-top: 2rem;
    font-size: 0.875rem;
}

.f_link .flex_box{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.f_link ul li{
    position: relative;/*.f_link ul li + li::before*/
}

.f_link ul li + li::before{
    position: absolute;
    left: -0.5rem;
    bottom: 0;
    content: '／';
    color: #000;
    font-size: 1rem;
}

.f_link ul li a{
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
    padding: 0 1.85rem;
}

.f_link ul li:first-of-type a{
    padding-left: 0;
}

.f_link ul li:last-of-type a{
    padding-right: 0;
}

.f_link ul li a:hover{
    text-decoration: underline;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -o-transition: ease .3s;
    transition: ease .3s;
}
/* ===========================================
	copy
============================================== */
.copy{
    font-family: 'Noto Sans JP',sans-serif;
    padding: 0.75em 0;
    text-align: center;
    margin: 0 auto;
    color: #000;
    font-size: 0.8rem;
}

/* ===========================================
	page top
============================================== */
#page_top {
    position: absolute;
    top: -2.5rem;
    right: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 3.125rem;
    height: auto;
}

/* ===========================================
	responsive
============================================== */

@media screen and (min-width:1530px) {
    .container{
        width: 1500px;
        padding: 0;
    }
}

@media screen and (max-width:1530px) {
    .contact_area{
        justify-content: center;
    }
    
    .telfax_area{
        display: block;
        margin-right: 1rem;
    }
    
    .f_fax{
        margin-top: 0.25rem;
        padding-left: 0;
    }
    
    .f_fax::before{
        display: none;
    }
    
    .f_link ul li a{
        padding: 0 1.4vw;
    }
    
}

@media screen and (max-width:1080px) {
    .contact_area{
        flex-direction: column;
    }
    
    .telfax_area{
        display: flex;
        margin-right: 0;
        margin-bottom: 1.2rem;
        justify-content: center;
    }
    
    .f_fax{
        margin-top: 0;
        padding-left: 1rem;
    }
    
    .f_fax::before{
        display: block;
    }
}

@media screen and (max-width:960px) {
    html,
    body {
        font-size: 14px;
    }
    
    .container{
        width: calc(100% - 2.5rem);
    }
    
    .header{
        height: 55px;
    }
    
    .h_logo{
        width: 12rem;
        margin: 0.5rem 0.75rem 0.75rem 1rem;
    }
    
    .g_nav{
        display: none;
    }
    
    .bar{
        display: block;
    }
    
    .news{
        display: block;
    }
    
    .news dt{
        padding-top: 1rem;
		padding-bottom: 0;
    }
    
    .news dt:first-of-type{
        border-top: solid 1px #e4e4e4;
    }
    
    .news dd{
        padding-top: 0;
        padding-left: 0;
		padding-bottom: 1rem;
    }
    
    .news dd:first-of-type{
        border-top: none;
    }
    
    .news dt,
    .news dd{
        width: 100%;
        
    }
    
    .footer_contents_wrap{
        flex-direction: column;
        justify-content: center;
    }
    
    .footer_contents_wrap > .flex_item{
        width: 100%;
    }
    
    .f_logo{
        margin: 0 auto;
    }
    
    address{
        text-align: center;
        margin-bottom: 3.75rem;
    }
    
    .f_link{
        margin-top: 3.75rem;
    }
}

@media screen and (max-width:768px){
    p{
        line-height: 1.785;
    }
    
    section:nth-child(n+2){
        padding: 3.5rem 0;
    }
    
    .f_link ul li a{
        padding: 0 0.8rem;
    }
    
    .flow_img{
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    .gnav__menu__item a{
        font-size: 1rem;
    }
    
    .sp_tel a,
    .sp_mail_form a{
        font-size: 1.1rem;
    }
    
    .gnav__menu__item a,
    .sp_tel a,
    .sp_mail_form a{
        padding: 1rem;
    }
    
    .sp_contact h2{
        margin: 1rem 0;
        font-size: 1rem;
    }
    
    .link_btn{
        width: 100%;
    }
    
    .mb_br{
        display: block;
    }
    
    .contact_area .flex_item{
        width: 100%;
    }
    
    .f_tel,
    .f_fax{
        font-size: calc(100vw / 22);
    }
    
    .f_fax::before,
    .f_tel span,
    .f_fax span{
        font-size: calc(100vw / 30);
    }
    
    .f_tel span,
    .f_fax span{
        margin-right: calc(100vw / 40);
    }
}

@media screen and (max-width:360px) {
    .f_logo{
        width: 100%;
    }
    
    address{
        font-size: 0.85rem;
    }
}