@charset "UTF-8";
/* CSS Document */

/* ------------------------------ SP ------------------------------ */

.pc-only { display: none; }

/* 基本 */
body {
	width: calc(750vw / 7.5);
	font-family: Roboto, sans-serif;
	font-size: calc(25vw / 7.5);
	line-height: calc(34vw / 25);
	text-align: left;
	letter-spacing: 0.015em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	vertical-align: top;
	color: #000;
	background: #FFF;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	overflow: hidden; /* はみ出た部分に横スクロールさせない */
}

a         { transition: all 0.35s ease }
a:link    { color: #000; text-decoration: none; }
a:visited { color: #000; text-decoration: none; }
a:active  { color: #000; text-decoration: none; }
a:hover   { color: #000; text-decoration: none; opacity: 1.00; }

/* 汎用 */
.wrapper {
	position: relative;
}
p {
	text-align: justify;
	text-justify: inter-ideograph;
}
hr {
	height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}
i {
	margin-left: 0.65em;
}

/* ページトップへスクロール */
.pagetop {
	display: none;
	position: fixed;
	right: calc(30vw / 7.5);
	bottom: calc(27vw / 7.5);
	width: calc(75vw / 7.5);
	height: calc(75vw / 7.5);
	opacity: 1.0;
	z-index: 9;
}
.pagetop a:hover {
	opacity: 0.65;
}