@charset "utf-8";
@import url('./reset.css');
body {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	min-width: 320px;
	min-height: 100vh;
	background-color: #fff;
	color: #000;
	font-family: 'Helvetica','Arial','Yu Gothic Medium','游ゴシック Medium', 'YuGothic','游ゴシック体','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',Meiryo,'メイリオ',sans-serif;
}
/*parts*/
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}
/* container */
#container {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	background-color: inherit;
}
#container::before,
#container::after {
	content:"";
	flex: 0 0 auto;
	display: block;
	padding-top: 130px;
	background-repeat: no-repeat;
}
#container::before {
	background-image: url('../img/general/bg1.png');
	background-position: left top;
}
#container::after {
	background-image: url('../img/general/bg2.png');
	background-position: right bottom;
}
#contents {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	background-color: inherit;
}
#contents .siteTitle {
	padding: 50px 0;
}
#contents .siteAdd {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding-bottom: 30px;
}
#contents .siteNot {
	padding-bottom: 20px;
	font-size: 1.6rem;
}
