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

:root {
	--blk: 65, 65, 65;
	--wht: 255, 255, 255;
	--orn: 232, 144, 30;
	--grn: 40, 130, 65;
	--dark-grn: 15, 96, 72;
	--yel: 235, 250, 174;

	--benefits: 44, 198, 129;

	--title: "Jost", sans-serif;
}

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

.ipd {
	font-size: 10px;
}

.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(--dark-grn), 0.8);
	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;
}