/***********************
* Responsive Breakpoints
* 1025px +          PC
* 768px - 1024px    Tablet - PC
* 0px - 767px       SmartPhone
************************/

@font-face {
	font-family: "bodyFont";
	src: url("fonts/NotoSerifJP-Regular.woff2") format("woff2");
	src: url("fonts/NotoSerifJP-Regular.woff") format("woff");
	font-display: swap;
}

@font-face {
	font-family: "kvFont";
	src: url("fonts/NotoSerifJP-Regular.woff2") format("woff2");
	src: url("fonts/NotoSerifJP-Regular.woff") format("woff");
	font-display: optional;
}
html {
	height: -webkit-fill-available;
}
body {
	font-family: "bodyFont", serif;
	min-height: 100vh;
}

/*********************
* common
***********************/
:root {
	--color-main: rgb(196, 13, 35);
	--color-sub: rgb(255, 244, 244);
	--color-sub2: rgb(126, 91, 69);
	--color-bg: rgb(250, 250, 250);
	--distance: 50px;
	--distance-s: 25px;
	--distance-l: 100px;
	--distance-xl: 150px;
	--radius: 10px;
	--radius-s: 5px;
	--radius-l: 20px;
	--radius-xl: 30px;
	--fnt-xs: 10px;
	--fnt-s: 12px;
	--fnt-l: 36px;
	--fnt-xl: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	:root {
		--distance: 35px;
		--distance-s: 20px;
		--distance-l: 65px;
		--distance-xl: 95px;
		--radius: 10px;
		--radius-s: 5px;
		--radius-l: 20px;
		--radius-xl: 30px;
		--fnt-xs: 9px;
		--fnt-s: 11px;
		--fnt-l: 28px;
		--fnt-xl: 36px;
	}
}
@media screen and (max-width: 767px) {
	:root {
		--distance: 25px;
		--distance-s: 10px;
		--distance-l: 50px;
		--distance-xl: 75px;
		--radius: 7px;
		--radius-s: 3px;
		--radius-l: 15px;
		--radius-xl: 25px;
		--fnt-xs: 9px;
		--fnt-s: 11px;
		--fnt-l: 21px;
		--fnt-xl: 29px;
	}
}

/* svg - logo */
img[src*=".svg"] {
	width: 100%;
	height: auto;
}

#masthead .site-info a img {
	width: 100%;
	max-height: 60px;
}

/* Decoration  Other */
.b {
	font-weight: 900;
}

/* youtube & Google Map */
.youtube,
.gmap {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.youtube iframe,
.gmap iframe {
	width: 100%;
	height: 100%;
}

/* Common */

/* Individual */

/*********************
* PC+
1025px +
***********************/
@media only screen and (min-width: 1025px) {
}

/*********************
* Tablet - PC
769px - 1024px
***********************/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
}

/*********************
* SmartPhone
0px - 768px
***********************/
@media only screen and (max-width: 767px) {
}
