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


/******************************************************

PC設定 768px以上の場合に適用 

*******************************************************/

@import url("https://use.typekit.net/kwj2zxg.css");

/* 全体の設定 */
html {
	color: #000;
	}

body {
	width: 100%;
	min-width: 768px;
	font-family: YuGothic,'Yu Gothic',"meiryo","sans-serif","lucida grande","hiragino kaku gothic proN";
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	background-color: #FFF;
	}

a {
	text-decoration: none;
	color: #000;
	cursor: pointer;
	}

.header__link{
        position: relative;
}

p {
	color: #000;
	line-height: 1.8;
	}

img {
	border: none;
	}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}

.pc {
	display: block;
	}

.sp {
	display: none;
	}



/* header */
.header {
	width: 100%;
	height: 100px;
	z-index: 8900;
}

.header__logo {
	display: block;
	width: 200px;
	height: auto;
	position: fixed;
	top: 40px;
	left: 30px;
	transition: .3s;
}

.header__logo:hover {
	opacity: .7;
}




/* footer */
.footer {
	width: 100%;
	height: 60px;
}

.footer__txt {
	font-size: 12px;
	text-align: center;
	margin-top: 15px;
}


	
/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

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

/* 全体の設定 */
body {
	min-width: auto;
	max-width: 767px;
	}

.pc {
	display: none;
	}

.sp {
	display: block;
	}
	
	
	
/* header */
.header {
	height: 45px;
}

.header__logo {
	width: 130px;
	height: auto;
	top: 15px;
	left: 20px;
}

.header__link img,
.drawerNav__box > a > img{
        visibility: hidden
}

.header__link::before,
.drawerNav__box > a::before{
content:'';
display: block;
position: absolute;
width: 50px;
	height: 45px;
	top: 10px;
	left: 20px;
}

.drawerNav__box > a::before{
background: url('/img/common/logo-sp.svg')no-repeat center center;
background-size: cover;
}
/* footer */
.footer {
	height: 40px;
}

.footer__txt {
	margin-top: 0;
	height: 40px;
	line-height: 40px;
	
}

        
	
	



}