/* ---------------------------------------------------
  :root
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	--blk: 35, 24, 21;
	--wht: 255, 255, 255;
	--ora: 247, 126, 0;
	--gre: 0, 168, 80;
}

/* ---------------------------------------------------
  IPPODO - reset
--------------------------------------------------- */
.ipd *,
.ipd *::before,
.ipd *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans JP", sans-serif !important;
	list-style: none;
}

.ipd {
	line-height: 1.8;
}

.ipd img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.ipd a {
	color: inherit;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

.ipd a:hover {
	text-decoration: none;
	opacity: 0.6;
}

.ipd table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: inherit;
}

.ipd caption,
.ipd th {
	text-align: left;
	font-size: inherit;
}

.ipd address,
.ipd b,
.ipd caption,
.ipd cite,
.ipd code,
.ipd dfn,
.ipd em,
.ipd i,
.ipd strong,
.ipd th,
.ipd var {
	font-style: normal;
	font-weight: normal;
}

.ipd img,
.ipd fieldset,
.ipd area {
	border: 0;
}

/* ---------------------------------------------------
  ページトップ
--------------------------------------------------- */
.pageTop a {
	background: rgba(var(--ora), 1);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1em;
	bottom: 1em;
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}