@charset "UTF-8";
/* 全てに適用 */

/* 約半フォント */
@import url('https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css');
/* Noto Sans JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	/* カラー */
	--color-font: #595757;
	--color-main: #00afcc;
    --color-sub: #d2b950;
    --color-accent: #d0cdcb;
    --color-red: #ea5550;

	/* フォントウェイト */
	--weight-thin: 100;
	--weight-extralight: 200;
	--weight-light: 300;
	--weight-regular: 400;
	--weight-medium: 500;
	--weight-semibold: 600;
	--weight-bold: 700;
	--weight-extrabold: 800;
	--weight-black: 900;

	/* 背景 */
	--bg-pc: url(../images/base/bg.jpg);
	--bg-sp: url(../images/base/bg_sp.jpg);
}


html {
	font-size: 10px;
	overflow-x: hidden;
}

body {
	position: relative;
	width: 100%;
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	word-wrap: break-word;
	overflow-wrap: break-word;
	line-height: 1.5;
	color: var(--color-font);
}


.only-pc {
	display: block;
}
.only-sp {
	display: none;
}
@media all and (max-width: 767px) {
	.only-pc {
		display: none;
	}
	.only-sp {
		display: block;
	}
}

#content {
	padding-bottom: 50px;
	overflow: hidden;
	background-image:
	repeating-conic-gradient(
		#e0ca6e 0deg 90deg,
		#e6d68b 90deg 180deg,
		#e0ca6e 180deg 270deg,
		#e6d68b 270deg 360deg
	);
	background-size: 100px 100px;
	background-repeat: repeat;
	background-position: center;
	min-height: calc(100vh - 70px);/* 画面高さ - footer高さ */
}
.index #content{
	padding-bottom: 0;
}

@media all and (max-width: 767px) {
	#content {
		min-height: calc(100vh - 25px);
		background-size: 50px 50px;
	}
	.index main{
		min-height: calc(100vh - 25px);
	}
}

em {
	font-style: normal;
}