* {
	box-sizing: border-box;
}

html {
	color: #f0f0d8;
	font-size: 0.875rem;
	line-height: 1.8;
	font-family: "a-otf-ud-shin-maru-go-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #006c90;
	scroll-behavior: smooth;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

.list {
	list-style: none;
}

.footer {
	background-color: #585048;

	& .footer__list {
		margin-left: 1.5em;
	}
}

a {
	color: #f0f0d8;
	text-decoration: none;
}

.full-width {
	position: absolute;
	left: 0;
	width: 100vw;
	max-width: 100vw;
}

.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 10px 15px;
	border-radius: 5px;
	opacity: 0;
	transition: opacity 0.5s ease;
	display: none;
	z-index: 999;
}

.back-to-top--visible {
	display: block;
	opacity: 1;
}

.back-to-top a {
	color: #fff;
	text-decoration: none;
}

.back-to-top a:hover {
	text-decoration: underline;
}

body {
	margin: 0;
}

section {
	position: relative;
	padding: clamp(7.5rem, 4.392rem + 13.26vw, 15rem) 4rem;
	font-size: clamp(1rem, 0.767rem + 0.99vw, 1.563rem);

	& h3 {
		text-align: center;
	}
}

section:not(:first-of-type) {
	margin-top: 210px;
}

section::after {
	position: absolute;
	bottom: -210px;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background-image: url("../img/genome.svg");
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: contain;
	z-index: -99;
}

section:last-of-type::after {
	background-image: none !important;
}

h2 {
	font-size: clamp(2.25rem, 1.732rem + 2.21vw, 3.5rem);
	line-height: 1.4;
	font-weight: 600;
}

h3 {
	font-weight: 400;
}

.profile {
	font-size: 16px;
	text-align: center;
	line-height: 1.4;
}

.main-inner {
	height: 100%;
	height: calc(100vh - var(--header-height, 0px));
}

.dropdown {
	position: relative;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 20px;
	left: 0;
	min-width: 160px;
	z-index: 100;
	list-style-type: none;
}

.dropdown-menu--active {
	display: block;
}

.dropdown-menu__item {
	padding: 8px 0;
}

.qa-inner {
	padding: clamp(3.75rem, 2.196rem + 6.63vw, 7.5rem) 4rem;
	font-size: clamp(1rem, 0.767rem + 0.99vw, 1.563rem);
}

.qa-attention {
	background-color: #f0f0d8;
	color: #006c90;
	padding: 20px;
	border-radius: 16px;
}

.notice-link {
	background-color: #f0f0d8;
	padding: 20px;
	color: #006c90;
	border-radius: 16px;
	display: block;

	& a:hover {
		opacity: 0.8;
	}
}

.br-sp {
	display: none;
}

.block {
	padding: 20px;
	border: solid 1px #f0f0d8;
	border-radius: 16px;
}

.flex {
	display: flex;
}

.flex-row {
	flex-direction: row;
}

.flex-column {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.justify-start {
	justify-content: flex-start;
}

.justify-center {
	justify-content: center;
}

.justify-end {
	justify-content: flex-end;
}

.justify-between {
	justify-content: space-between;
}

.justify-around {
	justify-content: space-around;
}

.align-start {
	align-items: flex-start;
}

.align-center {
	align-items: center;
}

.align-end {
	align-items: flex-end;
}

.align-stretch {
	align-items: stretch;
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-3 {
	flex: 3;
}

.self-start {
	align-self: flex-start;
}

.self-center {
	align-self: center;
}

.self-end {
	align-self: flex-end;
}

.gap-0 {
	gap: 0;
}

.gap-1 {
	gap: 0.25rem;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-3 {
	gap: 1rem;
}

.gap-4 {
	gap: 1.5rem;
}

.gap-5 {
	gap: 2rem;
}

.p-0 {
	padding: 0;
}

.p-1 {
	padding: 0.25rem;
}

.p-2 {
	padding: 0.5rem;
}

.p-3 {
	padding: 1rem;
}

.p-4 {
	padding: 2rem;
}

.p-5 {
	padding: 3rem;
}

.p-6 {
	padding: 4rem;
}

.p-7 {
	padding: 5rem;
}

.p-8 {
	padding: 6rem;
}

.p-9 {
	padding: 7rem;
}

.p-10 {
	padding: 8rem;
}

.m-0 {
	margin: 0;
}

.m-1 {
	margin: 0.25rem;
}

.m-2 {
	margin: 0.5rem;
}

.m-3 {
	margin: 1rem;
}

.m-4 {
	margin: 2rem;
}

.m-5 {
	margin: 3rem;
}

.m-6 {
	margin: 4rem;
}

.m-7 {
	margin: 5rem;
}

.m-8 {
	margin: 6rem;
}

.m-9 {
	margin: 7rem;
}

.m-10 {
	margin: 8rem;
}

.pt-0 {
	padding-top: 0;
}

.pt-1 {
	padding-top: 0.25rem;
}

.pt-2 {
	padding-top: 0.5rem;
}

.pt-3 {
	padding-top: 1rem;
}

.pt-4 {
	padding-top: 2rem;
}

.pb-5 {
	padding-bottom: 3rem;
}

.pb-6 {
	padding-bottom: 4rem;
}

.pb-7 {
	padding-bottom: 5rem;
}

.pb-8 {
	padding-bottom: 6rem;
}

.pb-9 {
	padding-bottom: 7rem;
}

.pb-10 {
	padding-bottom: 8rem;
}

.pl-0 {
	padding-left: 0;
}

.pl-1 {
	padding-left: 0.25rem;
}

.pl-2 {
	padding-left: 0.5rem;
}

.pl-3 {
	padding-left: 1rem;
}

.pl-4 {
	padding-left: 2rem;
}

.pr-0 {
	padding-right: 0;
}

.pr-1 {
	padding-right: 0.25rem;
}

.pr-2 {
	padding-right: 0.5rem;
}

.pr-3 {
	padding-right: 1rem;
}

.pr-4 {
	padding-right: 2rem;
}

.mt-0 {
	margin-top: 0;
}

.mt-1 {
	margin-top: 0.25rem;
}

.mt-2 {
	margin-top: 0.5rem;
}

.mt-3 {
	margin-top: 2rem;
}

.mt-4 {
	margin-top: 2rem;
}

.mb-0 {
	margin-bottom: 0;
}

.mb-1 {
	margin-bottom: 0.25rem;
}

.mb-2 {
	margin-bottom: 0.5rem;
}

.mb-3 {
	margin-bottom: 1rem;
}

.mb-4 {
	margin-bottom: 2rem;
}

.mb-5 {
	margin-bottom: 3rem;
}

.mb-6 {
	margin-bottom: 4rem;
}

.mb-7 {
	margin-bottom: 5rem;
}

.mb-8 {
	margin-bottom: 6rem;
}

.mb-9 {
	margin-bottom: 7rem;
}

.mb-10 {
	margin-bottom: 8rem;
}

.ml-0 {
	margin-left: 0;
}

.ml-1 {
	margin-left: 0.25rem;
}

.ml-2 {
	margin-left: 0.5rem;
}

.ml-3 {
	margin-left: 1rem;
}

.ml-4 {
	margin-left: 2rem;
}

.mr-0 {
	margin-right: 0;
}

.mr-1 {
	margin-right: 0.25rem;
}

.mr-2 {
	margin-right: 0.5rem;
}

.mr-3 {
	margin-right: 1rem;
}

.mr-4 {
	margin-right: 2rem;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}

.more-content {
	display: none;
}

.button {
	background-color: #f0f0d8;
	color: #006c90;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	display: block;
	margin: 0 auto;
	width: fit-content;
	font-size: clamp(1rem, 0.767rem + 0.99vw, 1.563rem);
}

.button:hover {
	opacity: 0.8;
}

.toggle-button {
	font-size: clamp(1rem, 0.767rem + 0.99vw, 1.563rem);
	background-color: #f0f0d8;
	color: #006c90;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
	display: block;
	margin: 0 auto;
}

.toggle-button:hover {
	opacity: 0.8;
}

.img-fluid {
	width: 100%;
	height: auto;
}

.img-half {
	width: 50%;
	height: auto;
}

.img-quarter {
	width: 25%;
	height: auto;
}

.img-cover {
	object-fit: cover;
}

.img-contain {
	object-fit: contain;
}

.img-circle {
	border-radius: 50%;
}

.img-rounded {
	border-radius: 0.25rem;
}

.img-shadow {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.w-0 {
	width: 0%;
}

.w-10 {
	width: 10%;
}

.w-20 {
	width: 20%;
}

.w-30 {
	width: 30%;
}

.w-40 {
	width: 40%;
}

.w-50 {
	width: 50%;
}

.w-60 {
	width: 60%;
}

.w-70 {
	width: 70%;
}

.w-80 {
	width: 80%;
}

.w-90 {
	width: 90%;
}

.w-100 {
	width: 100%;
}

.w-auto {
	width: auto;
}

.w-max {
	width: max-content;
}

.w-min {
	width: min-content;
}

.hidden {
	display: none;
}

.visivle {
	display: block;
}

nav .footer__list {
	display: block;
}

.summary p {
	margin: 0;
}

/* ==========================================================================
   テーブル
   ========================================================================== */

.table-scroll {
	overflow-x: auto;
	width: 100%;
	font-size: 1.5rem;
}

.data-table {
	border-collapse: separate;
	border-spacing: 10px;
	width: 100%;
}

.data-table th,
.data-table td {
	text-align: center;
	padding: 1rem;
	border-radius: 12px;
	background-color: #F0F0D8;
	color: #006C90;
	font-weight: normal;
	white-space: nowrap;
}

.data-table .main-title {
	background-color: #78AEB4;
	color: #8e3e90;
	font-weight: normal;
	font-size: 1.2rem;
}

.data-table thead th:not(.main-title) {
	background-color: #78AEB4;
	color: #006C90;
	font-weight: normal;
}

.data-table .row-label {
	background-color: #78AEB4;
	color: #006C90;
	font-weight: normal;
	text-align: left;
}

.indent {
	display: inline-block;
	width: 1em;
}

.question::before {
	content: "Q.";
	font-weight: bold;
	margin-right: 0.5em;
}

.row-label {
	width: 100px;
	white-space: nowrap;
}

caption {
	display: none;
}

/* ========================
   Container Base Style
======================== */
.container {
	width: 80rem;
	margin: 0 auto;
}

/* ========================
   Responsive: PC (min-width: 1280px)
======================== */
@media only screen and (min-width: 80rem) {
	.container {
		width: 80rem;
	}
}

/* ========================
   Responsive: Tablet (max-width: 820px)
======================== */
@media only screen and (max-width: 820px) {
	.container {
		width: 80%;
		padding: 0 2rem;
	}

	.flex-1 {
		width: 100%;
	}

	.br-sp {
		display: inline;
	}

	.flex-column-s {
		flex-direction: column !important;
	}

	.header-logo {
		padding-left: 4rem;
		padding-right: 4rem;
	}

	.footer {
		& .footer__list {
			list-style-type: disc;
			margin-left: 1.5em;
			padding-bottom: 8rem;
		}
	}

	.header {
		& nav {
			display: block;
		}

		& .header__list {
			list-style-type: none;
			position: fixed;
			bottom: 0;
			left: 0;
			z-index: 99;
			padding: 2rem;
			width: 100%;

			& .header__list-item {
				flex: 1;
				font-size: 0.9rem;
				text-align: center;
				padding-top: 0.8rem;
				position: relative;
			}

			& .header__list-item:nth-of-type(odd)::before {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				border-top: 6px solid #78aeb4;

				display: block;
			}

			& .header__list-item:nth-of-type(even)::before {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				border-top: 8px solid #f0f0d8;
				display: block;
			}
		}

		& .dropdown-menu {
			display: none;
		}
	}

	.pb-10 {
		padding-bottom: 0;
	}

	section {
		& h2 {
			text-align: center;
		}
	}

	.w-100-s {
		width: 100%;
		height: auto;
	}

	.back-to-top {
		bottom: 120px;
	}

	section::after {
		background-image: url("../img/genome-sp.svg");
	}

	.align-center-s {
		align-items: center;
	}

	.text-center-s {
		text-align: center;
	}

	.hidden-s {
		display: none;
	}

	.visible-s {
		display: block;
	}
}

/* ========================
   Responsive: Smartphone (max-width: 480px)
======================== */
@media only screen and (max-width: 480px) {
	.container {
		width: 100%;
		padding: 0;
	}

	.br-sp {
		display: inline;
	}

	.flex-column-s {
		flex-direction: column !important;
	}

	.header-logo {
		padding-left: 4rem;
		padding-right: 4rem;
	}

	.footer {
		& .footer__list {
			list-style-type: disc;
			margin-left: 1.5em;
			padding-bottom: 8rem;
		}
	}

	.header {
		& nav {
			display: block;
		}

		& .header__list {
			list-style-type: none;
			position: fixed;
			bottom: 0;
			z-index: 99;
			padding: 2rem;
			width: 100%;

			& .header__list-item {
				flex: 1;
				font-size: 0.9rem;
				text-align: center;
				padding-top: 0.8rem;
				position: relative;
			}

			& .header__list-item:nth-of-type(odd)::before {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				border-top: 6px solid #78aeb4;

				display: block;
			}

			& .header__list-item:nth-of-type(even)::before {
				content: "";
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				border-top: 8px solid #f0f0d8;
				display: block;
			}
		}

		& .dropdown-menu {
			display: none;
		}
	}

	.pb-10 {
		padding-bottom: 0;
	}

	section {
		& h2 {
			text-align: center;
		}
	}

	.w-100-s {
		width: 100%;
		height: auto;
	}

	.back-to-top {
		bottom: 120px;
	}

	section::after {
		background-image: url("../img/genome-sp.svg");
	}

	.align-center-s {
		align-items: center;
	}

	.text-center-s {
		text-align: center;
	}

	.hidden-s {
		display: none;
	}

	.visible-s {
		display: block;
	}

	.sitemap {
		padding: clamp(7.5rem, 4.392rem + 13.26vw, 15rem) 4rem;
		font-size: clamp(1rem, 0.767rem + 0.99vw, 1.563rem);
	}
}