@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,700;1,700&display=swap');
@import url("https://use.typekit.net/ipo8shb.css");

html, body {
	margin: 0;
	overflow-x: hidden;
	padding: 0;
	max-width: 100%;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}
a {
	text-decoration: none;
	transition: ease .3s;
}
div {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5 {
	box-sizing: border-box;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
ul, ol, li, dl, dt, dd {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
ul li, ol li {
	list-style-type: none;
}
figure, figcaption, p {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
img {
	vertical-align: bottom;
	height: auto;
	max-width: 100%;
}

main, section, article {
	box-sizing: border-box;
	display: block;
}

/** box css **/
.flexBox {
	display: flex;
	flex-wrap: wrap;
}
.pos-rel {
	position: relative;
}
.pos-ab {
	position: absolute;
}

/** text-align **/
.ta-cent {
	text-align: center;
}

/** font **/
@font-face {
	font-family: 'TsunagiGothic';
	src: url('./assets/font/TsunagiGothic.woff') format("woff2"),
		url('./assets/font/TsunagiGothic.woff2') format('woff'),
		url('./assets/font/TsunagiGothic.ttf') format('truetype');
	font-weight: 900;
}
.tsunagi {
	font-family: 'TsunagiGothic', sans-serif;
	letter-spacing: 0;
}
.futura-exb {
	font-family: "futura-pt", sans-serif;
	font-weight: 800;
	font-style: normal;
}

@media screen and (min-width: 781px) {
	.sp_on {
		display: none;
	}
}
@media screen and (max-width: 1200px) {
	body {
		font-size: 1.3vw;
	}
}
@media screen and (max-width: 640px) {
	body {
		font-size: 3.4vw;
	}
	
	.pc_on {
		display: none;
	}
}