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


html {
    font-size: 62.5%;
    /*16px×62.5%=10px*/
}
body {
    color: #605549;
    font-family: 'Noto sans JP', 'Noto Serif JP', 'Stardos Stencil';
    font-size: 1.6rem;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
	

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



.header{
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: fixed;
	z-index: 999;
}
#logo{
	width: 316px;
	align-items: center;
	margin:10px 40px;
}
.header ul{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	list-style: none;
	margin-right: 72px;
}
.header ul li{
	font-size: 12px;
	width: 100px;
}
.header ul li a{
	text-decoration: none;
	color: #2a2a2a;
	font-family: 'Noto Sans JP', sans-serif;
}

.nav_item>a:hover {
	color: #aaa;
	transition: transform .5s;
	}

.nav_item {
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.nav_item::after {
	position: absolute;
	bottom:-26px ;
	left: 0;
	content: '';
	width: 60%;
	height: 6px;
	background: #0a29a6;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .6s;
	padding-right: 10px;


}
.nav_item:hover::after {
	transform: scale(1, 1);
}
.open{
	display: none;
}


.footer{
	background-color: #2a2a2a;
	height: 610px;
	display: flex;
}
.footer .footer_left{
	display: flex;
	flex-direction: column;
	padding: 140px 0 0 240px;
}
.mail{
	display: flex;
	margin-top: 46px;
}
.adress{
	color:#898989;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:400;
	font-size: 14px;
}
.adress:hover{
	color: #fff;
	transition: transform .6s;
}

.adress{
	margin-top: 46px;
}
.mail_adress{
	padding-left: 10px;
	color:#898989;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:400;
	font-size: 14px;
}
.mail_adress:hover{
	color: #fff;
	transition: transform .6s;
}
.sns{
	display: flex;
	margin-top: 46px;
	width: 238px;
	list-style: none;
}
.twitter{
	padding-left: 30px;
}
.footer .footer_right{
	display: flex;
	flex-direction: column;
	padding: 100px 0 0 370px;
}
.footer_right ul li{
	font-size: 24px;
	list-style: none;
}
.footer_right ul li a{
	font-family: 'Noto Sans JP', sans-serif;
	text-decoration: none;
	color: #898989;	
	line-height: 4;
}
.footer_right ul li a:hover{
	color: #fff;

}

.footer_bottom{
	margin-top: 36px;
	text-align: center;
}
.small{
	margin: 36px 0 14px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight:400;
	font-size: 14px;
	color: #2a2a2a;
}


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

.footer .footer_right{
	padding: 100px 0 0 150px;
}
	
	
	
}



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


body {
	width: fit-content;
	}
	
.nav_group{
	display: none;
}
#logo{
	width: 158px;
	align-items: center;
	margin:10px 40px;
}
.hero_image img {
	margin-top: 60px;}	
.header{	
	height: 80px;}
.open{
	margin: 18px 40px;
	width: 54px;
}	

.footer .footer_right{
	padding: 100px 0 0 100px;
}	
	
}


