@charset "utf-8";
:root {
	--c-primary: #212a37;
	--c-light: #f0f1f6;
	--c-l-gray: #ccc;
	--c-gray: #888888;
	--c-dk: #1d1d1d;
	--c-white: #fff;
	--c-text: #202f55;
	--c-gradient: linear-gradient(
		45deg,
		rgba(32, 47, 85, 1) 0%,
		rgba(34, 52, 92, 1) 14%,
		rgba(35, 56, 99, 1) 29%,
		rgba(37, 61, 106, 1) 43%,
		rgba(38, 66, 113, 1) 57%,
		rgba(40, 71, 120, 1) 71%,
		rgba(41, 76, 127, 1) 85%,
		rgba(42, 82, 134, 1) 100%
	);
	--c-gradient-flip: linear-gradient(
		-135deg,
		rgba(32, 47, 85, 1) 0%,
		rgba(34, 52, 92, 1) 14%,
		rgba(35, 56, 99, 1) 29%,
		rgba(37, 61, 106, 1) 43%,
		rgba(38, 66, 113, 1) 57%,
		rgba(40, 71, 120, 1) 71%,
		rgba(41, 76, 127, 1) 85%,
		rgba(42, 82, 134, 1) 100%
	);
	--c-gradient-tb: linear-gradient(
		180deg,
		rgba(32, 47, 85, 1) 0%,
		rgba(34, 52, 92, 1) 14%,
		rgba(35, 56, 99, 1) 29%,
		rgba(37, 61, 106, 1) 43%,
		rgba(38, 66, 113, 1) 57%,
		rgba(40, 71, 120, 1) 71%,
		rgba(41, 76, 127, 1) 85%,
		rgba(42, 82, 134, 1) 100%
	);
	--c-bg: #f5f5f5;
	--font-base: "Noto Sans JP", sans-serif;
	--font-montserrat: "Montserrat", sans-serif;
	--font-all: "Montserrat", "Noto Sans JP", sans-serif;
	--transition-base: all ease-in-out 0.33s;
	--transition-img: all ease-in-out 0.4s;
}

/* --- reset --- */
*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	font-size: 16px;
	line-height: 1.6;
	tab-size: 4;
	color: var(--c-text);
	font-family: var(--font-base);
	font-feature-settings: normal;
	font-variation-settings: normal;
	letter-spacing: 0.05em;
	font-weight: var(--fw-medium);
	scroll-behavior: smooth;
	background-color: var(--c-bg);
}

body {
	margin: 0;
	line-height: inherit;
	position: relative;
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
	user-select: none;
}
label {
	user-select: none;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	background-color: transparent;
	background-image: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

th,
td {
	width: 41%;
	text-align: left;
	font-weight: inherit;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: var(--c-dark);
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: var(--c-dark);
}

button,
[role="button"] {
	cursor: pointer;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}
[x-cloak] {
	display: none !important;
}
.not-scroll {
	touch-action: none;
	overflow: hidden;
}
.no-scroll-bar::-webkit-scrollbar {
	display: none;
}
::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

br.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------------------------------------------------------------
common layout
---------------------------------------------------------------*/

.c-sec {
	width: 100%;
	position: relative;
	z-index: 0;
	padding-inline: 3.47222%;
}
.page-aboutus .c-sec {
	padding-inline: 7.63888%;
}

@media screen and (max-width: 999px) {
	.page-aboutus .c-sec {
		padding-inline: 20px;
	}
}

.sec-inner {
	width: 100%;
	max-width: 1830px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.cont-col {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.sec-cont-flex {
	width: 100%;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.btn-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}
.btn-box-right {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.btn-box-center {
	width: 100%;
	display: flex;
	justify-content: center;
}
.btn-box-between {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

/* ------------------------------------------------------------
image box
---------------------------------------------------------------*/
.img-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.img-box > * {
	width: 100%;
	height: 100%;
}
.img-box img {
	width: 100%;
}
.img-box.--contain img {
	object-fit: contain;
}
.img-box.--cover img {
	height: auto;
	object-fit: cover;
}

/* ------------------------------------------------------------
Button
---------------------------------------------------------------*/
.btn-more {
	display: flex;
	align-items: center;
	overflow: hidden;
	position: relative;
	gap: 10px;
}

.btn-more.--vertical {
	flex-flow: column;
}

.btn-more > i {
	width: 50px;
	height: 30px;
	position: relative;
	background: var(--c-gradient);
	border-radius: 999px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.btn-more.--wh > i {
	background: var(--c-white);
}
.btn-more.--lg > i {
	width: 80px;
	height: 40px;
}

.btn-more > span {
	font-size: 18px;
	font-weight: 500;
	color: var(--c-text);
}
.btn-more.--wh > span {
	color: var(--c-white);
}
.btn-more.--lg > span {
	font-size: 24px;
}

.btn-more > i::before,
.btn-more > i::after {
	content: "";
	position: absolute;
	width: 12px;
	height: auto;
	display: flex;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-right-wh.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform 0.4s 0.1s ease;
	z-index: 10;
	flex-shrink: 0;
}
.btn-more.--vertical > i::before,
.btn-more.--vertical > i::after {
	background-image: url("../images/common/icon-arrow-down-wh.svg");
}
.btn-more.--wh > i::before,
.btn-more.--wh > i::after {
	background-image: url("../images/common/icon-arrow-right.svg");
}
.btn-more.--wh.--vertical > i::before,
.btn-more.--wh.--vertical > i::after {
	background-image: url("../images/common/icon-arrow-down.svg");
}
.btn-more > i::before {
	transform: translateX(0px);
}
.btn-more.--vertical > i::before {
	transform: translateY(0px);
}

.btn-more > i::after {
	transform: translateX(-50px);
}
.btn-more.--lg > i::after {
	transform: translateX(-80px);
}
.btn-more.--vertical > i::after {
	transform: translateX(0px);
	transform: translateY(-50px);
}

/* btn hover */
.btn-more:hover > i::before {
	transform: translateX(50px);
}
.btn-more.--vertical:hover > i::before {
	transform: translateX(0px);
	transform: translateY(50px);
}
.btn-more.--lg:hover > i::before {
	transform: translateX(80px);
}
.btn-more:hover > i::after {
	transform: translateX(0px);
}
.btn-more.--vertical:hover > i::after {
	transform: translateY(0px);
}

@media screen and (max-width: 999px) {
	.btn-more > i {
		width: 40px;
		height: 20px;
	}
	.btn-more.--lg > i {
		width: 60px;
		height: 30px;
	}
	.btn-more > span {
		font-size: 14px;
	}
	.btn-more.--lg > span {
		font-size: 18px;
	}

	.btn-more:not(.--lg) > i::before,
	.btn-more:not(.--lg) > i::after {
		width: 8px;
	}
}

/* top button */
.btn-to-top {
	position: fixed;
	bottom: 30px;
	right: 0px;
	width: 60px;
	height: auto;
	aspect-ratio: 3 / 4;
	background: var(--c-gradient-flip);
	color: #fff;
	cursor: pointer;
	border-radius: 10px 0 0 10px;
	z-index: 9998;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	gap: 8px;
	transition: all ease-in-out 0.33s;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
}
.btn-to-top-txt {
	display: flex;
	flex-flow: column;
	align-items: center;
	font-size: 10px;
	flex-shrink: 0;
	line-height: 1;
	gap: 5px;
	font-weight: 600;
	letter-spacing: 0.05em;
}
.btn-to-top.active {
	opacity: 1;
	pointer-events: all;
}

.btn-to-top-arrow {
	width: 12px;
	height: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.btn-to-top-arrow {
	width: 12px;
	height: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.btn-to-top-arrow::before,
.btn-to-top-arrow::after {
	content: "";
	position: absolute;
	width: 12px;
	height: auto;
	display: flex;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-up-wh.svg");
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateY(0px);
	transition: transform 0.4s 0.1s ease;
	z-index: 10;
	flex-shrink: 0;
}
.btn-to-top-arrow::before {
	transform: translateY(0px);
}

.btn-to-top-arrow::after {
	transform: translateY(50px);
}

.btn-to-top:hover > .btn-to-top-arrow::before {
	transform: translateY(-50px);
}
.btn-to-top:hover > .btn-to-top-arrow::after {
	transform: translateY(0px);
}

.btn-to-top.is-not-fixed {
	position: absolute !important;
	bottom: auto;
	top: -40px;
}

/* ------------------------------------------------------------
Select
---------------------------------------------------------------*/
.select_wrapper {
	position: relative;
}

.select_wrapper::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 14px;
	height: auto;
	aspect-ratio: 7 / 4;
	z-index: 10;
	background-image: url("../images/common/icon-chevron-down.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

select {
	-webkit-appearance: none;
	appearance: none;
	width: 200px;
	height: 50px;
	border-radius: 5px;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	outline: none;
}
/* ------------------------------------------------------------
title heading
---------------------------------------------------------------*/
.ttb-flex {
	width: 100%;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.ttl-box {
	display: flex;
	gap: 20px;
	position: relative;
}
.ttl-box.ttb-column {
	flex-flow: column;
}
.ttl-box.ttb-center {
	align-items: center;
}
.ttl-box.ttb-baseline {
	align-items: baseline;
}
.ttl-box.ttb-primary {
	color: var(--c-primary);
}
.ttl-box.ttb-white {
	color: var(--c-white);
}
.ttl-box.ttb-slash {
	align-items: baseline;
	gap: 15px;
}

.ttl-box h1 {
	font-size: 60px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0;
}

.ttl-box h2 {
	font-size: 40px;
	line-height: 1;
	font-weight: 500;
}

.ttl-box h3 {
	font-size: 24px;
	line-height: 1;
	font-weight: 500;
}

.ttl-box > span {
	font-size: 16px;
	line-height: 1.5;
}
.ttl-box.ttb-slash > span {
	bottom: 5px;
	position: relative;
	padding-left: 30px;
	display: flex;
	align-items: center;
	font-weight: 500;
}
.ttl-box.ttb-slash.--sm > span {
	bottom: 2px;
	font-size: 14px;
}
.ttl-box.ttb-slash > span::before {
	content: "";
	width: 16px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-slash.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	flex-shrink: 0;
}
.ttl-box.ttb-slash.--sm > span::before {
	width: 14px;
}
.ttl-box.ttb-white.ttb-slash > span::before {
	background-image: url("../images/common/icon-slash-wh.svg");
}

@media screen and (max-width: 999px) {
	.ttl-box.ttb-slash {
		gap: 10px;
	}
	.ttl-box h1 {
		font-size: 36px;
	}

	.ttl-box h2 {
		font-size: 24px;
	}

	.ttl-box h3 {
		font-size: 18px;
	}

	.ttl-box > span {
		font-size: 13px;
	}
	.ttl-box.ttb-slash > span {
		padding-left: 20px;
		bottom: 2px;
	}
	.ttl-box.ttb-slash.--sm > span {
		font-size: 11px;
	}
	.ttl-box.ttb-slash > span::before {
		width: 10px;
	}
	.ttl-box.ttb-slash.--sm > span::before {
		width: 8px;
	}
}

@media screen and (max-width: 768px) {
	.ttl-box h1 {
		font-size: 20px;
	}
}
/* ------------------------------------------------------------
Font
---------------------------------------------------------------*/
.--en {
	font-family: var(--font-montserrat);
	letter-spacing: -0.05em;
}

/* ------------------------------------------------------------
Text
---------------------------------------------------------------*/

.c-txt {
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
	letter-spacing: 0;
}
.c-txt.--wh {
	color: var(--c-white);
}
.c-txt.--lg {
	font-size: 18px;
}
.c-txt.--center {
	text-align: center;
}

@media screen and (max-width: 999px) {
	.c-txt,
	.c-txt.--lg {
		font-size: 14px;
		font-weight: 400;
	}
}

/* ------------------------------------------------------------
animation
---------------------------------------------------------------*/
.anim-fade {
	opacity: 0;
	transition: all 0.8s ease;
}

.anim-fade.--order-1 {
	transition-delay: 0.2s;
}
.anim-fade.--order-2 {
	transition-delay: 0.4s;
}
.anim-fade.--order-3 {
	transition-delay: 0.6s;
}
.anim-fade.--order-4 {
	transition-delay: 0.8s;
}
.anim-fade.--order-5 {
	transition-delay: 1s;
}
.anim-fade.--order-6 {
	transition-delay: 1.2s;
}

.anim-fade.--up {
	transform: translateY(30px);
}
.anim-fade.--down {
	transform: translateY(-30px);
}
.anim-fade.--l2r {
	transform: translateX(-60px);
}
.anim-fade.--r2l {
	transform: translateX(60px);
}

.anim-fade.is-visible {
	opacity: 1;
}
.anim-fade.--up.is-visible,
.anim-fade.--down.is-visible,
.anim-fade.--l2r.is-visible,
.anim-fade.--r2l.is-visible {
	transform: translate(0, 0);
}

/* ------------------------------------------------------------
News Common
---------------------------------------------------------------*/
.c-card.is-hidden {
	display: none;
}
.news-grid-wrapper {
	width: 100%;
	overflow: hidden;
}
.news-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 25px;
}
.news-card {
	width: 100%;
	min-height: 250px;
	background: var(--c-white);
	padding: 20px;
	border-radius: 10px;
	justify-content: space-between;
	overflow: hidden;
}
.news-head {
	gap: 10px;
}
.news-date {
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
}
.news-ttl {
	width: 100%;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0;
}
.news-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.card-cat {
	position: relative;
	font-size: 13px;
	font-weight: 500;
	padding-left: 15px;
	display: flex;
	align-items: center;
	line-height: 1;
}
.card-cat::before {
	content: "";
	width: 10px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 999px;
	position: absolute;
	left: 0;
	top: 2px;
	background: var(--c-text);
	flex-shrink: 0;
}
.card-icon {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	overflow: hidden;
	position: relative;
}
.c-card .img-box > .card-icon {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 10;
}
.card-icon::before {
	content: "";
	height: auto;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
	z-index: 10;
}
.card-icon.--document::before {
	width: 18px;
	aspect-ratio: 18 / 22;
	background-image: url("../images/common/icon-document-wh.svg");
}
.card-icon.--arrow::before {
	width: 12px;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-right-wh.svg");
}
.card-icon.--window::before {
	width: 17px;
	aspect-ratio: 17 / 14;
	background-image: url("../images/common/icon-window-wh.svg");
}
.card-icon::after {
	content: "";
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--c-gradient);
	border-radius: 999px;
	overflow: hidden;
	position: relative;
	transition: var(--transition-base);
	z-index: 0;
}
.c-card:hover .card-icon::after {
	width: 50px;
}

@media screen and (max-width: 1140px) {
	.news-cont > .news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 999px) {
	.news-grid-wrapper {
		overflow-x: auto;
		overflow-y: hidden;
	}
	.news-grid-wrapper .news-grid {
		width: calc(330px * 3);
	}
	.news-grid-wrapper .news-card {
		min-width: 330px;
	}
	.card-icon {
		width: 40px;
	}
}
@media screen and (max-width: 768px) {
	.news-cont > .news-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* ------------------------------------------------------------
Program Common
---------------------------------------------------------------*/
.program-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 30px;
}
.program-card {
	width: 100%;
	min-height: 160px;
	max-height: 160px;
	background: var(--c-light);
	border-radius: 10px;
	justify-content: space-between;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
}
.program-card.--bg-wh {
	background: var(--c-white);
}
.program-card > figure {
	width: 36.64%;
	height: 100%;
	flex-shrink: 0;
	max-width: 240px;
	border-radius: 10px 0 0 10px;
}
.program-body {
	width: 100%;
	padding: 20px;
	gap: 25px;
	height: 100%;
	justify-content: space-between;
}
.program-ttl {
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.program-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
	.program-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
	}
}
@media screen and (max-width: 600px) {
	.program-card {
		min-height: 0;
		max-height: fit-content;
		justify-content: flex-start;
		flex-flow: column;
	}
	.program-card > figure {
		width: 100%;
		height: auto;
		max-width: none;
		aspect-ratio: 350 / 233;
		border-radius: 10px 10px 0 0;
	}
	.program-body {
		gap: 25px;
	}
	.program-ttl {
		font-size: 14px;
	}
}

/* ------------------------------------------------------------
Research Results Common
---------------------------------------------------------------*/
.results-grid-group {
	gap: 30px;
}
.results-grid-main {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--c-l-gray);
}
.results-grid {
	width: 100%;
	display: grid;
	gap: 20px;
}
.results-card {
	width: 100%;
	min-height: 200px;
	background: var(--c-white);
	padding: 20px;
	border-radius: 10px;
	justify-content: space-between;
	overflow: hidden;
}
.results-head {
	gap: 10px;
}
.results-date {
	width: 100%;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
}
.results-ttl {
	width: 100%;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0;
}
.results-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* .results-card {
	width: 100%;
	min-height: 140px;
	background: var(--c-white);
	justify-content: space-between;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	gap: 20px;
}
.results-card.--main {
	gap: 30px;
}
.results-card > .img-box {
	width: 37.8787%;
	height: 100%;
	flex-shrink: 0;
	max-width: 250px;
	border-radius: 10px;
}
.results-card.--main > .img-box {
	width: 66%;
	max-width: 885px;
}
.results-body {
	width: 100%;
	gap: 15px;
	height: 100%;
	justify-content: flex-start;
}
.results-ttl-box {
	gap: 10px;
}
.results-ttl {
	width: 100%;
	font-size: 18px;
	line-height: 1.8;
	font-weight: 600;
	letter-spacing: 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.results-card.--main .results-ttl {
	font-size: 32px;
	line-height: 1.5;
	display: block;
}
.results-sub-ttl {
	width: 100%;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 600;
	letter-spacing: 0;
}
.results-txt {
	width: 100%;
	font-size: 14px;
	line-height: 1.8;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--c-gray);
	margin-bottom: 15px;
}
.results-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
} */

/* @media screen and (max-width: 1180px) {
	.results-card.--main > .img-box {
		width: 50%;
	}
} */

@media screen and (max-width: 1140px) {
	.research-results- > .results-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 999px) {
	.results-head {
		gap: 5px;
	}
	.results-grid-group {
		gap: 20px;
	}
	.results-grid-main {
		justify-content: flex-start;
		align-items: flex-start;
		padding-bottom: 20px;
	}
	/* .results-card {
		min-height: 0;
		gap: 15px;
	}
	.results-card.--main {
		gap: 10px;
		flex-flow: column;
		justify-content: flex-start;
		align-items: center;
	}
	.results-card:not(.--main) > .img-box {
		max-width: 150px;
		aspect-ratio: 150 / 85;
		height: auto;
		border-radius: 5px;
	}
	.results-card.--main > .img-box {
		width: 100%;
		max-width: none;
	}
	.results-card:not(.--main) .img-box > .card-icon {
		width: 30px;
		bottom: 5px;
		right: 5px;
	}
	.results-body {
		gap: 10px;
		height: auto;
	}
	.results-ttl {
		font-size: 14px;
	}
	.results-card.--main .results-ttl {
		font-size: 20px;
	}
	.results-txt {
		margin-bottom: 10px;
	} */
}
@media screen and (max-width: 768px) {
	.results-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}
}

/* ------------------------------------------------------------
Person Common
---------------------------------------------------------------*/
.member-grid {
	width: 100%;
	display: grid;
	grid-auto-rows: 135px;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 30px;
}
.person-card {
	width: 100%;
	min-height: 135px;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.person-img {
	width: 135px;
	aspect-ratio: 1 / 1;
	max-width: 135px;
	flex-shrink: 0;
}
.person-info-body {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}
.name-box {
	gap: 5px;
}
.person-pos {
	width: 100%;
	color: var(--c-gray);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
}
.person-name {
	width: 100%;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0;
}
.person-major {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 2px;
	flex-wrap: wrap;
}
.major-item {
	flex-shrink: 0;
	font-size: 14px;
	color: var(--c-gray);
	line-height: 1;
}
.major-item:not(:first-of-type) {
	position: relative;
	padding-left: 13px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.major-item:not(:first-of-type)::before {
	content: "";
	width: 10px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-slash-gray.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 3px;
	flex-shrink: 0;
}

@media screen and (max-width: 1300px) {
	.member-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
@media screen and (max-width: 999px) {
	.person-card {
		min-height: 100px;
	}
	.person-img {
		width: 100px;
		max-width: 100px;
	}
	.person-info-body {
		padding: 5px 15px;
	}
	.name-box {
		gap: 0px;
	}
	.person-pos {
		font-size: 13px;
	}
	.major-item {
		font-size: 12px;
	}
	.major-item:not(:first-of-type)::before {
		width: 10px;
	}
}

@media screen and (max-width: 768px) {
	.member-grid {
		grid-template-columns: repeat(1, 1fr);
		grid-auto-rows: 100px;
	}
}
/* ------------------------------------------------------------
header
---------------------------------------------------------------*/

header {
	width: 100%;
	position: absolute;
	top: 10px;
	z-index: 9999;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition-base);
}

.header-contents-wrapper {
	display: flex;
	flex-flow: column;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	height: auto;
	transition: var(--transition-base);
	position: relative;
	z-index: 100;
	padding-top: 50px;
	padding-inline: 50px;
}
.header-contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	height: auto;
	transition: var(--transition-base);
	position: relative;
	z-index: 10;
}

.header-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 335px;
	aspect-ratio: 335 / 40;
	flex-shrink: 0;
	position: relative;
	z-index: 10;
	transition: var(--transition-base);
}
.header-logo:hover {
	opacity: 0.6;
}
.header-logo > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.header-nav-flex {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
}
.header-nav-flex > nav {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
}
.header-nav-flex > nav > a {
	font-size: 16px;
	color: var(--c-white);
	line-height: 1;
	font-weight: 500;
	transition: var(--transition-base);
}
.header-nav-flex > nav > a:hover {
	opacity: 0.6;
}
.header-nav-flex .lang {
	display: flex;
	gap: 10px;
}
.header-nav-flex .lang li:last-of-type {
	border-left: 1px solid #fff;
	padding-left: 10px;
}
.header-nav-flex .lang li span {
	color: #fff;
	opacity: .5;
}
.header-nav-flex .lang li a {
	font-weight: 600;
}
.header-nav-flex .lang li a span {
	opacity: 1;
}
.header-nav-flex .lang li a:link {
	color: #fff;
}
.btn-hb-menu {
	display: none;
}
.sp-menu {
	display: none;
}
.sp-lang {
	display: none;
}
.sp-lang a:link,
.sp-lang a:active,
.sp-lang a:visited {
	color: #fff;
	font-weight: bold;
}
@media screen and (max-width: 1200px) {
	.header-logo {
		width: 250px;
	}
	.header-nav-flex > nav {
		gap: 20px;
	}
	.header-nav-flex > nav > a {
		font-size: 14px;
	}
}
@media screen and (max-width: 999px) {
	header {
		position: fixed;
	}
	header::before {
		content: "";
		width: calc(100% - 20px);
		height: 100px;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		background: linear-gradient(0deg, transparent, rgb(0 0 0 / 21%));
		transition: var(--transition-base);
		opacity: 1;
		border-radius: 10px 10px 0 0;
		pointer-events: none;
	}
	header.nav-is-open::before {
		width: 100%;
		height: calc(100vh + 10px);
		top: -10px;
		background: #000;
		opacity: 0.75;
		border-radius: 0;
	}
	.header-contents-wrapper {
		gap: 45px;
		padding-top: 25px;
		padding-inline: 35px;
	}
	header.nav-is-open .header-contents-wrapper {
		padding-bottom: 50px;
	}
	.header-contents-wrapper::before {
		content: "";
		width: calc(100% - 20px);
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		background: var(--c-gradient-flip);
		transition: var(--transition-base);
		opacity: 0;
		border-radius: 10px;
		pointer-events: none;
	}
	header.nav-is-open .header-contents-wrapper::before {
		opacity: 1;
	}
	.header-logo {
		width: 184px;
	}
	.header-nav-flex {
		display: none;
	}
	.btn-hb-menu {
		display: flex;
		position: relative;
		width: 40px;
		height: auto;
		aspect-ratio: 1 / 1;
		flex-shrink: 0;
		padding: 0;
		border: none;
		background: transparent;
		cursor: pointer;
		background: var(--c-white);
		border-radius: 5px;
	}
	.hb-line {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 20px;
		height: 7px;
		background: transparent;
		transform: translate(-50%, -50%);
	}
	.hb-line::before,
	.hb-line::after {
		content: "";
		position: absolute;
		left: 0;
		width: 20px;
		height: 1px;
		background: var(--c-text);
		transition: var(--transition-base);
	}
	.hb-line::before {
		top: 0px;
	}
	.hb-line::after {
		bottom: 0px;
	}
	.btn-hb-menu.is-active .hb-line::before {
		top: 4px;
		transform: rotate(15deg);
	}
	.btn-hb-menu.is-active .hb-line::after {
		bottom: 2px;
		transform: rotate(-15deg);
	}
	header.nav-is-open .sp-menu {
		width: 100%;
		display: flex;
		height: 0;
		opacity: 0;
		pointer-events: none;
	}
	header.nav-is-open .sp-menu {
		position: relative;
		z-index: 10;
		height: auto;
		max-height: 430px;
		opacity: 1;
		pointer-events: all;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.sp-menu-cont {
		gap: 25px;
	}
	.sp-menu-ttl {
		gap: 10px !important;
	}
	.sp-menu-ttl > p {
		font-size: 20px;
		line-height: 1;
		font-weight: 500;
		flex-shrink: 0;
	}
	.sp-menu-ttl > span {
		bottom: 0 !important;
		padding-left: 20px !important;
		font-size: 12px !important;
	}
	.ttl-box.ttb-slash > span::before {
		width: 12px !important;
	}
	.sp-lang {
		display: block;
	}
}
/* ------------------------------------------------------------
footer
---------------------------------------------------------------*/
footer {
	width: 100%;
	height: auto;
	position: relative;
	padding-inline: 6.9444%;
	background: var(--c-primary);
	color: var(--c-white);
	z-index: 30;
	border-radius: 10px 10px 0 0;
}

.footer-contents {
	padding-block: 50px;
	gap: 50px;
	margin: 0 auto;
	max-width: 1720px;
	overflow: hidden;
	position: relative;
	z-index: 10;
}
.footer-flex {
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.footer-logo-group {
	width: auto;
	gap: 20px;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: auto;
	max-width: 335px;
	aspect-ratio: 335 / 40;
	flex-shrink: 0;
	transition: var(--transition-base);
}
.footer-logo:hover {
	opacity: 0.6;
}
.footer-logo > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-address {
	gap: 12px;
	line-height: 1;
	font-size: 14px;
}

.footer-tel-flex {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-tel-flex > a {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	transition: var(--transition-base);
}
.footer-tel-flex > a:hover {
	opacity: 0.6;
}
.footer-nav-flex {
	width: auto;
	display: flex;
	justify-content: flex-end;
}
.footer-nav-flex > nav {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
}
.footer-nav-flex > nav > a {
	font-size: 16px;
	line-height: 1;
	font-weight: 500;
	transition: var(--transition-base);
}
.footer-nav-flex > nav > a:hover {
	opacity: 0.6;
}

.footer-copy {
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	.footer-address {
		gap: 12px;
	}

	.footer-tel-flex {
		align-items: flex-start;
		flex-flow: column;
		gap: 12px;
	}
	.footer-nav-flex {
		max-width: 50%;
	}
	.footer-nav-flex > nav {
		gap: 15px;
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 768px) {
	footer {
		padding-inline: 40px;
	}

	.footer-logo-group {
		width: 100%;
		gap: 30px;
	}
	.footer-flex {
		justify-content: flex-start;
		flex-flow: column;
		align-items: flex-start;
		gap: 20px;
	}

	.footer-contents {
		padding-block: 50px 20px;
		gap: 30px;
	}
	.footer-nav-flex {
		width: 100%;
		max-width: none;
		justify-content: flex-start;
	}
	.footer-nav-flex > nav {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 12px;
	}

	.footer-copy {
		font-size: 12px;
	}
}
