@charset "UTF-8";
/** 2024 BOSO-Computer
* Global Reset CSS
*/

*,
*:BEFORE,
*:AFTER {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	/* Chrome/Safari/ほとんどのiOSブラウザ */
	-moz-box-sizing: border-box;
	/* Firefox */
	box-sizing: border-box;
	/* paddingとborderを要素のwidthとheightに含む */
}

html {
	font-size: 16px;
	/* 和文　Noto Sans JP
	   欧文　Josefin Sans */
	font-family: "Josefin Sans", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	width: 100%;
}

html {
	line-height: 1.5;
}

body {
	min-height: 100%;
	min-width: 100%;
}

div,
p,
dl,
dt,
dd,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
main,
article,
aside,
header,
footer,
section,
nav {
	display: block;
	word-break: break-all;
}

ul,
ol {
	list-style: none;
}

img {
	vertical-align: middle;
	max-width: 100%;
}


/***** 画面サイズ768px以上の指定 *****/
@media screen and (min-width:768px) {
	html {
		font-size: 16px;
	}
}

/***** 画面サイズ960px以上の指定 *****/
@media screen and (min-width:960px) {
	html {
		font-size: 16px;
	}
}