@charset "UTF-8";
/*=========================================================
#
# reset
# 01：カスタムプロパティ
# 02：リセット設定
# 03：基本設定
# 04：汎用クラス
#
=========================================================*/

/*=========================================================
 01：カスタムプロパティ
=========================================================*/
:root {
	/* Color */
	--color_primary: #cc0011;
	--color_text: #000000;
	--color_bg: #ffffff;
	--color_border: #dddddd;
	--color_footer_bg: #bebebe;
	--color_footer_text: #000000;
	--color_pill: #f7d3d8;

	/* Typography（font-sizeはpx指定） */
	--font_base: "Noto Sans JP", sans-serif;
	--font_size_base: 16px;
	--line_height_base: 1.7;

	/* Spacing */
	--sp_sm: 8px;
	--sp_md: 16px;
	--sp_lg: 24px;
	--sp_xl: 48px;

	/* Layout */
	--content: 1200px;
	--header_h: 100px;
	--header_h_sp: 60px;
}

/*=========================================================
 02：リセット設定
=========================================================*/
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

img {
	display: block;
	width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}
a:hover{
cursor:pointer;
opacity:0.7;
}
button {
	border: none;
	background: none;
	font: inherit;
	color: inherit;
	cursor: pointer;
}

dl, dd {
	margin: 0;
}

/*=========================================================
 03：基本設定
=========================================================*/
body {
	background:url("/wp-content/themes/hololive/assets/img/site_bg.webp") left top repeat;
	background-size:contain;
	font-size: var(--font_size_base);
	line-height: var(--line_height_base);
	color: var(--color_text);
	-webkit-font-smoothing: antialiased;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  position:relative;
}

/*=========================================================
 04：汎用クラス
=========================================================*/
.visually_hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
