html{
    font-size: 625%;
}
body{
	background: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: .16rem;
    font-weight: 500;
	letter-spacing: 0.06em;
    background-image: url(../images/body_back.jpg);
    background-position: center;
    background-repeat-y: repeat;
}
.sp_only{
    display: none;
}
.centering{
    margin: 0 auto;
    max-width: 1060px;
}
/*ヘッダー*/
header{
    padding: 10px 30px 10px;
    width: 100%;
    position: fixed;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: 1s;
    background: #FFF;
}
header h1{
    margin-top: 15px;
    flex: 0 1 auto;
    width: 240px;
}
header h1 img{
    width: 100%;
    vertical-align: middle;
}
.header_right{
    flex: 0 1 auto;
    width: 74%;
}
.header_tel{
    margin-bottom: 35px;
    text-align: right;
    font-size: .14rem;
    letter-spacing: .01rem;
}
.header_tel a{
    margin-left: 10px;
    text-decoration: none;
    color: #177a3b;
    font-size: .22rem;
}
.header_tel img{
    margin-right: 5px;
    width: 20px;
    vertical-align: middle;
}
.header_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
}
.header_nav li{
    flex: 0 1 auto;
    width: fit-content;
}
.header_nav a{
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
    text-align: center;
    font-size: .15rem;
    letter-spacing: .01rem;
}
.header_nav span{
    display: block;
    font-size: .12rem;
    text-align: center;
}
.header_nav img{
    margin-right: 5px;
    width: 16px;
    vertical-align: middle;
}
.hamburger_btn{
    display: none;
}
header.fixed{
background: rgba(255,255,255,0.97);
}
.mm-panels>.mm-panel,.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
    background: #FFF;
	font-weight: bold;
}

/*フッター*/
.link_container{
    margin: 110px auto 90px;
    max-width: 822px;
    display: flex;
    justify-content: space-between;
}
.link_container a{
    padding: 23px 10px;
    flex: 0 1 auto;
    width: 42%;
    color: #fff;
    background-color: #000;
    text-decoration: none;
    font-size: .19rem;
    letter-spacing: .01rem;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
}
.link_container a img{
    margin-right: 10px;
    width: 21px;
    vertical-align: middle;
}
.footer_container{
    margin: 0 auto;
    padding: 35px 80px 35px;
    display: flex;
    justify-content: space-between;
    max-width: 1160px;
	border-top: 2px solid #000;
}
.footer_left{
    flex: 0 1 auto;
    width: 60%;
    font-size: .14rem;
}
.footer_top{
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.footer_top>img{
    flex: 0 1 auto;
    width: 35%;
}
.footer_top a {
    flex: 0 1 auto;
    width: 55%;
    font-size: .3rem;
    color: #000;
    text-decoration: none;
    margin-top: 6px;
}
.footer_top a img {
    margin-top: -5px;
    margin-right: 10px;
    width: 25px;
    vertical-align: middle;
}
.footer_left address{
    margin-top: 10px;
}
.footer_left address a{
    margin-left: 10px;
    color: #000;
}
.footer_nav{
    flex: 0 1 auto;
    width: 39%;
    display: flex;
    justify-content: space-between;
}
.footer_nav ul{
    padding: 5px 5px 5px 15px;
    border-left: solid 2px #000;
    flex: 0 1 auto;
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.footer_nav li{
    margin-bottom: 8px;
}
.footer_nav a{
    padding-left: 15px;
    color: #000;
    text-decoration: none;
    font-size: .15rem;
    position: relative;
    display: inline-block;
}
.footer_nav a:before {
  content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
  transform: rotate(45deg);
}
.footer_nav a span{
    display: block;
    font-size: .12rem;
    text-align: center;
}
footer small{
    padding: 5px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: .1rem;
    display: inline-block;
    width: 100%;
}
/*inview*/
.fadein,
.fadein_slow{
    opacity:0;
}
.fadeup{
    opacity:0;
    transform: translateY(.15rem);
}
.fadein_on{
    transition: all 1.2s ease-in;
    opacity: 1 !important;
}
.fadein_slow_on{
    transition: all 1.8s ease-in;
    opacity: 1 !important;
}
.fadeinLR{
    opacity:0;
    transform: translateX(-50px);
    transition: all 1.2s linear;
}
.fadeinRL{
    opacity:0;
    transform: translateX(50px);
    transition: all 1.2s linear;
}
.fadein_reset{
    transform: translate(0);
    opacity: 1 !important;
}
.fadeup_on{
    transition: all 1.2s ease-in;
    transform: translateY(0);
    opacity: 1 !important;
}


@media(max-width: 1040px){
    
}

@media(min-width: 768px) and (max-width: 1060px){
	header{
		padding: 25px 30px 20px;
		position:relative;
	}
	header h1{
		position: absolute;
		top: 0;
		left: 20px;
		width: 180px;
	}
	.header_right{
		width: 100%;
	}
	.header_tel{
		margin-bottom: 25px;
	}
	.link_container{
		width: calc(100% - 60px);
	}
	.footer_container{
		padding: 35px 30px;
	}
	.footer_left{
		width: 52%;
	}
	.footer_nav{
		width: 47%;
	}
	.footer_nav ul{
		width: 50%;
	}
	.footer_top a{
		font-size: .23rem;
	}
}
/*スマホ*/
@media(max-width: 767px){
	html{
    	font-size: 560%;
	}
    .sp_only{
        display: block;
    }
    .pc_only{
        display: none;
    }
    header{
        padding: 11px;
    }
    header h1{
		width: 180px;
        margin-top: 0;
    }
    .header_right{
        width: 50px;
    }
    .header_tel,
    .header_nav{
        display: none;
    }
    .hamburger_btn{
        flex: 0 1 auto;
        width: 15px;
        display: block;
        position: relative;
        cursor: pointer;
        width: 50px;
        height:50px;
    }
    .hamburger_btn span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #000;
        width: 45%;
    }
    .hamburger_btn span:nth-of-type(1) {
        top:15px; 
    }
    .hamburger_btn span:nth-of-type(2) {
      top:23px;
    }
    .hamburger_btn span:nth-of-type(3) {
      top:31px;
    }
    header h1{
        width: 200px;
    }
    .link_container{
        margin: 130px auto 50px;
        width: calc(100% - 40px);
        flex-direction: column;
    }
    .link_container a{
        margin-bottom: 20px;
        width: 100%;
    }
	main {
    	padding-top: 73px;
	}
    .footer_container{
    	padding: 24px 20px 30px;
    }
    .footer_left{
        width: 100%;
    }
    .footer_top{
        flex-direction: column;
    }
    .footer_top>img{
        margin: 0 auto;
        width: 100%;
        max-width: 238px;
    }
    .footer_top a{
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    .footer_left p,
    .footer_left address{
        text-align: center;
    }
    .header_right{
        justify-content: flex-end;
    }
    .footer_nav{
        display: none;
    }
}