@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&display=swap');
@import url('icons.css');
@import url('perfect-scrollbar.css');

/* ////////////////////////////////////////////////////////////
	File Name	common.css
*/
/*============================================================
	RESET
*/
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: transparent;
	background-image: none;
	background-position: 0 0;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
	height: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}
ul,
ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a,
button {
	cursor: pointer;
}
h1, h2, h3, h4, strong {
	font-weight: 400;
}
img {
	vertical-align: top;
	width: 100%;
}
input,
button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 0;
	border-radius: 0;
}
canvas {
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none !important;
}

/*============================================================
	HTML
*/
html,
body {
	height: 100%;
}
html {
	overflow-y: scroll;
}
body {
	background-color: #f0f0f0;
	font-family: "本明朝-M 新小がな", "HonMinSKok-M", serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 2.1;
	color: #000;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a {
	text-decoration: underline;
	color: #000;
}

/* SP */
@media screen and (max-width: 768px) {
	font-size: 14px;
	line-height: 2.1;
}

/*============================================================
	FONT
*/
.en {
	font-family: 'EB Garamond', serif;
}

/*============================================================
	VISIBLE
*/
.visible-sp {
	display: none !important;
}

/* SP */
@media screen and (max-width: 768px) {
	.visible-pc {
		display: none !important;
	}
	.visible-sp {
		display: block !important;
	}
}

/*============================================================
	SIZE
*/
#size-keeper {
	display: block;
	height: 0;
}

/* SP */
@media screen and (max-width: 768px) {
	#size-keeper {
		display: none;
	}
}

/*============================================================
	CONTAINER
*/
#container {
	position: relative;
	padding: 0 0 150px 0;
	min-height: 100%;
}
.body {
	overflow: hidden;
	position: relative;
	padding: 110px 0 100px 0;
}
.content {
	position: relative;
	margin: 0 auto;
	padding: 120px 100px 0 100px;
	max-width: 1500px;
}
a {
	transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
/* HOVER */
.os-other a:hover {
	opacity: 0.5;
}
.os-sp a:hover {
	opacity: 1;
}

/* TB */
@media screen and (max-width: 1024px) {
	.content {
		padding: 90px 50px 0 50px;
	}
}

/* SP */
@media screen and (max-width: 768px) {
	#container {
		padding: 0;
		min-height: 100px;
	}
	.body {
		padding: 66px 0 10px 0;
	}
	.content {
		padding: 60px 0 0 0;
	}
}

/*============================================================
	ヘッダー
*/
#header {
	position: fixed;
	z-index: 5901;
	top: 0;
	left: 0;
	padding: 20px;
}
#header a {
	position: relative;
	display: block;
	width: 300px;
	height: 56px;
	text-decoration: none;
	opacity: 1;
}
#header a span {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
	background: transparent url(../img/common/logo.svg) 50% 50% no-repeat;
	text-indent: -999em;
}
#header a span.white {
	display: none;
}

/* SP */
@media screen and (max-width: 768px) {
	#header {
		top: 0;
		left: 0;
		padding: 10px;
	}
	#header a {
		width: 210px;
		height: 46px;
	}
	#header a span {
		background-image: url(../img/common/logo-sp.svg);
	}
	#header a span.white {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: transparent url(../img/common/logo-w-sp.svg) 50% 50% no-repeat;
	}
}

/*============================================================
	グローバルナビゲーション
*/
#gnav {
	position: fixed;
	z-index: 5900;
	top: 16px;
	right: 100px;
	text-align: center;
}
#gnav a {
	text-decoration: none;
	opacity: 1;
}
#gnav nav ul {
	display: flex;
}
#gnav nav ul li {
}
#gnav nav ul li a {
	display: block;
	padding: 10px 10px 0 10px;
}
#gnav nav ul li a::after {
	content: '';
	display: block;
	margin: 8px auto 0 auto;
	width: 0;
	height: 2px;
	background-color: #00a09b;
}
#gnav nav ul li a span {
	display: block;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
#gnav nav ul li a span.en {
	font-size: 20px;
}
#gnav nav ul li a span.jp {
	font-size: 11px;
	color: #646464;
}

/* HOVER */
.os-other #gnav nav ul li a span {
	transition: color 0.3s ease;
}
.os-other #gnav nav ul li a:hover span {
	color: #00a09b !important;
}

/* カレント */
.page-statement #gnav nav ul li.nav-statement a::after,
.page-about #gnav nav ul li.nav-about a::after,
.page-researchers #gnav nav ul li.nav-researchers a::after,
.page-policy #gnav nav ul li.nav-policy a::after,
.page-message #gnav nav ul li.nav-message a::after,
.page-activity #gnav nav ul li.nav-activity a::after {
	width: 50px;
}
@media screen and (max-width: 1060px) {
	#gnav {
		display: none !important;
	}
}

/*============================================================
	メガメニュー展開ボタン
*/
#megamenu-opener {
	position: fixed;
	z-index: 5000;
	top: 20px;
	right: 20px;
}
#megamenu-opener a {
	display: block;
	position: relative;
	width: 60px;
	height: 60px;
	background-color: #00a09b;
	color: #fff;
	text-decoration: none;
	opacity: 1;
}
#megamenu-opener a i {
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	margin: 15px 0 0 -11px;
	width: 22px;
	height: 1px;
	background-color: #fff;
}
#megamenu-opener a i:nth-child(2) {
	top: 8px;
}
#megamenu-opener a i:nth-child(3) {
	top: 16px;
}
#megamenu-opener span {
	display: block;
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 10px;
	background: transparent url(../img/common/text-menu.svg) 50% 50% no-repeat;
	background-size: contain;
}

/* SP */
@media screen and (max-width: 768px) {
	#megamenu-opener {
		top: 10px;
		right: 10px;
	}
	#megamenu-opener a {
		width: 46px;
		height: 46px;
	}
	#megamenu-opener a i {
		margin: 12px 0 0 -9px;
		width: 18px;
	}
	#megamenu-opener a i:nth-child(2) {
		top: 6px;
	}
	#megamenu-opener a i:nth-child(3) {
		top: 12px;
	}
	#megamenu-opener span {
		bottom: 8px;
		height: 7px;
	}
}

/*============================================================
	メガメニュー
*/
#megamenu {
	display: none;
	overflow: hidden;
	position: fixed;
	z-index: 6000;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #6e6e6e;
	color: #fff;
	opacity: 0;
	transition: opacity 0.4s linear 0s;
}
.megamenu-opened #megamenu {
	display: block;
}
.megamenu-show #megamenu {
	opacity: 1;
}
#megamenu a {
	text-decoration: none;
	color: #fff;
}
#megamenu h1 {
	position: fixed;
	top: 0;
	left: 0;
	padding: 20px;
}
#megamenu h1 a {
	display: block;
	width: 300px;
	height: 56px;
	background: transparent url(../img/common/logo-w.svg) 50% 50% no-repeat;
	opacity: 1;
}
#megamenu h1 a span {
	display: block;
	overflow: hidden;
	height: 0;
}
#megamenu .close {
	display: block;
	position: fixed;
	top: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #00a09b;
	opacity: 1;
}
#megamenu .close i {
	display: block;
	position: absolute;
	top: 8px;
	left: 50%;
	margin: 15px 0 0 -13px;
	width: 26px;
	height: 1px;
	background-color: #fff;
	transform-origin: 50% 50%;
	transform: rotate(45deg);
}
#megamenu .close i:nth-child(2) {
	transform: rotate(-45deg);
}
#megamenu .close span {
	display: block;
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	height: 10px;
	background: transparent url(../img/common/text-close.svg) 50% 50% no-repeat;
	background-size: contain;
}
#megamenu .ps__rail-y,
#megamenu .ps__rail-x {
	display: none !important;
}
#megamenu .scroll {
	height: 100%;
}
#megamenu .outer {
	display: table;
	width: 100%;
	height: 100%;
}
#megamenu .inner {
	display: table-cell;
	vertical-align: middle;
}
#megamenu .nav-wrap {
	max-width: 1116px;
	margin: 0 auto;
}
#megamenu nav.nav-content {
	padding: 20px 0 0 0;
	transform: translateY(20px);
	opacity: 0;
}
.megamenu-show #megamenu nav.nav-content {
	transition: transform 0.6s ease-out 0s, opacity 0.6s ease 0s;
	transform: translateY(0);
	opacity: 1;
}
.megamenu-hide #megamenu nav.nav-content {
	transform: translateY(0);
	opacity: 1;
}
#megamenu nav.nav-content ul {
	display: flex;
	flex-wrap: wrap;
}
#megamenu nav.nav-content ul li {
	display: flex;
	flex-basis: 186px;
	max-width: 186px;
	margin: 0 0 80px 0;
}
#megamenu nav.nav-content ul li a {
	display: block;
}
#megamenu nav.nav-content ul li a span {
	display: block;
	line-height: 1.6;
}
#megamenu nav.nav-content ul li a span.en {
	font-size: 33px;
}
#megamenu nav.nav-content ul li a span.en span.narrow {
	display: inline-block;
	transform: scale(0.9, 1);
	transform-origin: top left;
	margin-right: -0.5em;
}
#megamenu nav.nav-content ul li a span.en .icon-blank {
	position: relative;
	top: -3px;
	padding: 0 0 0 5px;
	font-size: 15px;
	line-height: 1.2;
}
#megamenu nav.nav-content ul li a span.jp {
	font-size: 14px;
}
#megamenu nav.nav-other {
	display: flex;
	align-items: center;
	margin: 10px 0 0 0;
	transform: translateY(20px);
	opacity: 0;
}
.megamenu-show #megamenu nav.nav-other {
	transition: transform 0.6s ease-out 0.4s, opacity 0.6s ease 0.4s;
	transform: translateY(0);
	opacity: 1;
}
.megamenu-hide #megamenu nav.nav-other {
	transform: translateY(0);
	opacity: 1;
}
#megamenu nav.nav-other ul {
	display: flex;
	margin: 0 0 0 -8px;
}
#megamenu nav.nav-other ul li {
	padding: 0 15px 0 0;
}
#megamenu nav.nav-other ul.sns {
	padding: 0 20px 0 0;
	font-size: 52px;
	line-height: 1;
}
#megamenu nav.nav-other ul.other {
	font-size: 14px;
	line-height: 1.5;
}
#megamenu .footer {
	position: absolute;
	bottom: 20px;
	left: 20px;
}
#megamenu .footer ul {
	font-size: 13px;
	line-height: 1.5;
}
#megamenu .footer ul li a i {
	position: relative;
	top: 2px;
	padding: 0 0 0 0.3em;
	font-size: 15px;
	line-height: 1;
}

/* HOVER */
.os-other #megamenu nav a:hover,
.os-other #megamenu .footer a:hover {
	opacity: 0.5;
}

/* TB */
@media screen and (max-width: 1176px) {
	#megamenu .nav-wrap {
		max-width: 930px;
	}
}
@media screen and (max-height: 560px) {
	#megamenu nav.nav-content ul li {
		margin: 0 0 30px 0;
	}
}
@media screen and (max-width: 990px) {
	#megamenu .nav-wrap {
		max-width: 558px;
	}
	#megamenu .nav-wrap {
		max-width: 728px;
	}
	#megamenu nav.nav-content ul li {
		margin: 0 0 50px 0;
		flex-basis: 182px;
		max-width: 182px;
	}
	#megamenu nav.nav-content ul li a span.en {
		font-size: 28px;
	}
	#megamenu nav.nav-other ul.sns {
		font-size: 46px;
	}
}
@media screen and (max-width: 990px) and (max-height: 580px) {
	#megamenu nav.nav-content ul li {
		flex-basis: 145px;
		max-width: 145px;
	}
	#megamenu nav.nav-content ul li a span.en {
		font-size: 25px;
	}
	#megamenu nav.nav-content ul li a span.jp {
		font-size: 12px;
	}
	#megamenu nav.nav-other ul.sns {
		font-size: 40px;
	}
}
@media screen and (max-width: 990px) and (max-height: 400px) {
	#megamenu nav.nav-content ul li {
		margin: 0 0 10px 0;
	}
}

/* SP */
@media screen and (max-width: 768px) {
	#megamenu h1 {
		top: 0;
		left: 0;
		padding: 10px;
	}
	#megamenu h1 a {
		width: 210px;
		height: 46px;
		background-image: url(../img/common/logo-w-sp.svg);
		background-size: 200px 36px;
	}
	#megamenu .close {
		top: 10px;
		right: 10px;
		width: 46px;
		height: 46px;
	}
	#megamenu .close i {
		top: 6px;
		margin: 12px 0 0 -10px;
		width: 20px;
	}
	#megamenu .close span {
		bottom: 8px;
		height: 7px;
	}
	#megamenu .scroll {
		overflow-y: scroll;
	}
	#megamenu .outer {
		display: block;
		height: auto;
	}
	#megamenu .inner {
		display: block;
	}
	#megamenu .nav-wrap {
		max-width: 100%;
	}
	#megamenu nav {
		padding: 0;
		text-align: right;
	}
	#megamenu nav.nav-content {
		padding: 90px 30px 0 0;
	}
	#megamenu nav.nav-content ul {
		display: block;
	}
	#megamenu nav.nav-content ul li {
		justify-content: flex-end;
		max-width: 100%;
		margin: 0 0 20px 0;
	}
	#megamenu nav.nav-content ul li a span.en {
		position: relative;
		font-size: 28px;
	}
	#megamenu nav.nav-content ul li a span.en .icon-blank {
		position: absolute;
		top: 11px;
		left: 100%;
		padding: 0 0 0 3px;
	}
	#megamenu nav.nav-content ul li a span.en span.narrow {
		transform: scale(1, 1);
		margin-right: 0;
	}
	#megamenu nav.nav-content ul li a span.jp {
		font-size: 12px;
	}
	#megamenu nav.nav-other {
		display: block;
		margin: 0;
		padding: 0 30px 0 0;
	}
	#megamenu nav.nav-other ul {
		justify-content: flex-end;
		margin: 0 0 20px 0;
	}
	#megamenu nav.nav-other ul li {
		padding: 0 0 0 15px;
	}
	#megamenu nav.nav-other ul.sns {
		padding: 10px 0 0 20px;
		font-size: 48px;
	}
	#megamenu nav.nav-other ul.other {
		font-size: 14px;
		margin: 0 0 60px 0;
	}
	#megamenu nav.nav-other ul.other li {
		margin-right: -0.5em;
	}
	#megamenu .footer {
		position: static;
		padding: 30px 30px 50px 0;
	}
	#megamenu .footer ul {
		display: flex;
		justify-content: flex-end;
	}
	#megamenu .footer ul li a {
		display: block;
		position: relative;
	}
	#megamenu .footer ul li a i {
		position: absolute;
		top: 0;
		left: 100%;
		padding-left: 3px;
	}
}

/*============================================================
	フッター
*/
#footer {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px;
	width: 100%;
}
#footer a {
	text-decoration: none;
}
#footer .inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
#footer .inner:first-child {
	flex-direction: row-reverse;
	margin: 0 0 20px 0;
}
#footer .pagetop a {
	display: block;
	width: 52px;
	height: 52px;
	background: transparent url(../img/common/pagetop.svg) 50% 50% no-repeat;
	background-size: contain;
}
#footer ul a {
	opacity: 1;
}
#footer ul.sns {
	display: flex;
	margin: 0 0 0 -8px;
	font-size: 52px;
	line-height: 1;
}
#footer ul.sns li {
	padding: 0 15px 0 0;
}
#footer ul.menu {
	display: flex;
	font-size: 13px;
	line-height: 1.5;
}
#footer ul.menu li {
	padding: 0 25px 0 0;
}
#footer ul.menu li a i {
	position: relative;
	top: 2px;
	padding-left: 0.3em;
	font-size: 15px;
}
#footer small {
	display: block;
	font-size: 12px;
	line-height: 1.6;
}

/* HOVER */
.os-other #footer ul.sns a:hover,
.os-other #footer ul.menu a:hover {
	color: #00a09b;
}

/* SP */
@media screen and (max-width: 768px) {
	#footer {
		position: static;
		padding: 30px;
	}
	#footer .inner {
		display: block;
	}
	#footer .pagetop a {
		margin: 0 auto;
	}
	#footer ul.sns {
		justify-content: center;
		margin: 20px 0 0 0;
	}
	#footer ul.sns li {
		padding: 0 6px;
	}
	#footer ul.menu {
		justify-content: center;
	}
	#footer ul.menu li {
		padding: 0 12px;
	}
	#footer small {
		margin: 30px 0 0 0;
		text-align: center;
	}
}

/*============================================================
	[汎用] エフェクト
*/
/* フェードイン */
.fx-fade {
	opacity: 0;
}
.fx-fade.active {
	transition: opacity 1s linear 0s;
	opacity: 1;
}
/* 下からフェードイン */
.fx-fade-bottom {
	opacity: 0;
	transform: translateY(30px);
}
.fx-fade-bottom.active {
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.8s linear 0s;
	opacity: 1;
	transform: translateY(0px);
}

/*============================================================
	[汎用] ボタン
*/
.btn {
	position: relative;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 160px;
	width: 100%;
	height: 46px;
	font-size: 15px;
	letter-spacing: 1px;
	text-decoration: none;
	opacity: 1 !important;
}
.btn.disable {
	opacity: 0.5 !important;
}
.btn span {
	position: relative;
}
.btn i.base {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.btn i.hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 100%;
	background-color: #00a09b;
	transition: right .4s;
}
.btn i.icon-blank {
	display: block;
	position: absolute;
	top: 3px;
	right: 3px;
	font-size: 16px;
	line-height: 1;
	color: #646464;
}
.btn-outline {
	color: #000;
}
.btn-outline i.base {
	border: 1px solid #8c8c8c;
}
.btn-white i.base {
	background-color: #fff;
}
.btn-white-outline {
	color: #fff;
}
.btn-white-outline i.base {
	border: 1px solid #fff;
}
.btn-white-outline i.icon-blank {
	color: #fff;
}

/* HOVER */
.os-other .btn i.base,
.os-other .btn i.icon,
.os-other .btn i.icon-blank,
.os-other .btn span {
	transition: color 0.4s ease 0s, border-color 0.4s ease 0s;
}
.os-other a.btn:hover i.icon,
.os-other a.btn:hover i.icon-blank,
.os-other a.btn:hover span,
.os-other .btn-hover:hover .btn,
.os-other .btn-hover:hover .btn i.icon,
.os-other .btn-hover:hover .btn i.icon-blank,
.os-other .btn-hover:hover .btn span {
	color: #fff !important;
}
.os-other a.btn:hover i.base,
.os-other .btn-hover:hover .btn i.base {
	border-color: #00a09b;
}
.os-other a.btn:hover .hover,
.os-other .btn-hover:hover .btn .hover {
	right: 0;
}

/*============================================================
	[汎用] メイン
*/
.unit-main {
	overflow: hidden;
	position: relative;
	height: 240px;
}
.unit-main .kv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.unit-main .headline {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0 10px 0;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 1.3;
	color: #fff;
}
.unit-main.none-kv .headline {
	color: #000;
}
.unit-main .headline .h1 {
	font-size: 70px;
	letter-spacing: 2px;
}
.unit-main .headline .h2 {
	font-size: 18px;
	letter-spacing: 3px;
}
.unit-main.none-kv .headline .h2 {
	color: #646464;
}

/* ANIM */
.unit-main .kv {
	opacity: 0;
	transform: scale(1.1);
	transition: opacity 1s linear 0s, transform 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.loaded .unit-main .kv {
	opacity: 1;
	transform: scale(1);
}
.unit-main .headline .h1 {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease 0.8s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.8s;
}
.unit-main.none-kv .headline .h1 {
	transition-delay: 0s, 0s;
}
.loaded .unit-main .headline .h1 {
	opacity: 1;
	transform: translateY(0px);
}
.unit-main .headline .h2 {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s ease 1s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}
.unit-main.none-kv .headline .h2 {
	transition-delay: 0.2s, 0.2s;
}
.loaded .unit-main .headline .h2 {
	opacity: 1;
	transform: translateY(0px);
}

/* SP */
@media screen and (max-width: 768px) {
	.unit-main {
		height: 150px;
	}
	.unit-main .headline .h1 {
		font-size: 40px;
		letter-spacing: 1px;
	}
	.unit-main .headline .h2 {
		font-size: 13px;
		letter-spacing: 2px;
	}
}

/*============================================================
	[汎用] 見出し
*/
.unit-headline {
	margin: 0 auto;
	padding: 0 50px 60px 50px;
	max-width: 1500px;
	line-height: 1.5;
}
.unit-headline .h1 {
	font-size: 45px;
}
.unit-headline .h2 {
	font-size: 16px;
	color: #646464;
}

/* ANIM */
.unit-headline .h1,
.unit-headline .h2 {
	opacity: 0;
	transform: translateX(30px);
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.8s linear 0s;
}
.loaded .unit-headline .h1,
.loaded .unit-headline .h2 {
	opacity: 1;
	transform: translateX(0px);
}

/* SP */
@media screen and (max-width: 768px) {
	.unit-headline {
		padding: 0 25px 40px 25px;
	}
	.unit-headline .h1 {
		font-size: 25px;
	}
	.unit-headline .h2 {
		font-size: 13px;
	}
}

/*============================================================
	[汎用] ページ送り
*/
.unit-pager {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 920px;
}
.unit-pager ul {
	display: flex;
	margin: 0 -25px;
}
.unit-pager ul li {
	padding: 0 25px;
}
.unit-pager ul li .btn {
	max-width: 100%;
	height: 80px;
	font-size: 14px;
}
.unit-pager ul li .btn .icon {
	position: absolute;
	top: 50%;
	margin-top: -8px;
	font-size: 17px;
	line-height: 1;
	color: #646464;
}
.unit-pager ul li.back {
	flex: 1;
}
.unit-pager ul li.prev,
.unit-pager ul li.next {
	flex-basis: 33.333%;
	max-width: 33.333%;
}
.unit-pager ul li.prev .btn .icon {
	left: 10px;
}
.unit-pager ul li.next .btn .icon {
	right: 10px;
}

/* SP */
@media screen and (max-width: 768px) {
	.unit-pager {
		padding: 0 25px;
	}
	.unit-pager ul {
		margin: 0 -6px;
	}
	.unit-pager ul li {
		padding: 0 6px;
	}
	.unit-pager ul li .btn {
		height: 60px;
		font-size: 13px;
	}
	.unit-pager ul li.prev,
	.unit-pager ul li.next {
		flex-basis: 20%;
		max-width: 20%;
	}
	.unit-pager ul li.prev span,
	.unit-pager ul li.next span {
		display: none;
	}
	.unit-pager ul li.prev .btn .icon,
	.unit-pager ul li.next .btn .icon {
		display: flex;
		justify-content: center;
		align-items: center;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin-top: 0;
	}
}

/*============================================================
	 [汎用] リスト
*/
.list-primary {
}
.list-primary > li {
	position: relative;
	padding: 0 0 0 1.3em;
	text-align: justify;
	text-justify: inter-ideograph;
}
.list-primary > li::before {
	content: '●';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	color: #00a09b;
}

/*============================================================
	 [汎用] 基本ブロック
*/
.article {
	display: table;
	margin: 0 0 100px 0;
	width: 100%;
	font-size: 15px;
	line-height: 2.4;
}
.article:last-child {
	margin: 0;
}
.article .head,
.article .detail {
	display: table-cell;
	vertical-align: top;
}
.article .head {
	position: relative;
	padding-top: 0.6em;
	width: 32.3%;
}
.article .head .line {
	display: block;
	width: 100%;
	height: 1px;
	background-color: #00a09b;
}
.article .head .h {
	padding: 30px 0 0 0;
	font-size: 24px;
	line-height: 1.7;
}
.article .detail {
	padding-left: 70px;
	letter-spacing: 0;
}
.article .detail .subhead {
	position: relative;
	margin: 35px 0 0 0;
	padding: 0 0 0 1.2em;
	text-indent: -1.2em;
	font-size: 22px;
	line-height: 1.7;
}
.article .detail .subhead:first-child {
	margin: 0;
}
.article .detail .subhead::before {
	content: '■';
	padding: 0 0.2em 0 0;
	color: #00a09b;
}
.article .detail p {
	margin: 30px 0;
	text-align: justify;
	text-justify: inter-ideograph;
}
.article .detail p:first-child {
	margin-top: 0;
}
.article .detail p:last-child {
	margin-bottom: 0;
}
.article .detail .subhead + p {
	margin-top: 15px;
}
.article .detail ol {
	margin: 10px 0;
}
.article .detail ol:first-child {
	margin-top: 0;
}
.article .detail ol:last-child {
	margin-bottom: 0;
}
.article .detail ol > li {
	position: relative;
	padding: 0 0 0 1.3em;
	text-align: justify;
	text-justify: inter-ideograph;
}
.article .detail ol > li i:first-child {
	position: absolute;
	top: 0;
	left: 0;
}
.article .detail .image01 {
	margin: 40px 0;
	max-width: 450px;
}
.article .detail .btn-wrap {
	margin: 50px 0 0 0;
}
.article .detail .btn-wrap .btn {
	max-width: 300px;
	height: 80px;
	font-size: 20px;
}

/* ANIM */
.article .head .line {
	width: 0%;
	transition: width 1s cubic-bezier(0.76, 0, 0.24, 1) 0s;
}
.article .head.active .line {
	width: 100%;
}
.article .head .h {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s ease 0s, transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.article .head.active .h {
	opacity: 1;
	transform: translateY(0px);
}

/* TB */
@media screen and (max-width: 1024px) {
	.article {
		display: block;
		margin: 0 0 100px 0;
	}
	.article .head,
	.article .detail {
		display: block;
	}
	.article .head {
		margin: 0 0 20px 0;
		padding: 0;
		width: 100%;
	}
	.article .head .h {
		padding: 1.5em 0 0 0;
	}
	.article .head .h br {
		display: none;
	}
	.article .detail {
		padding: 0;
	}
}

/* SP */
@media screen and (max-width: 768px) {
	.article {
		margin: 0 0 70px 0;
		padding: 0 25px;
		font-size: 14px;
		line-height: 2.1;
	}
	.article .head .h {
		font-size: 21px;
		line-height: 1.7;
	}
	.article .head .h br {
		display: block;
	}
	.article .detail .subhead {
		margin: 25px 0 0 0;
		padding: 0 0 0 1.2em;
		font-size: 17px;
		line-height: 1.7;
	}
	.article .detail .subhead:first-child {
		padding-top: 5px;
	}
	.article .detail p {
		margin: 25px 0;
	}
	.article .detail .subhead + p {
		margin-top: 10px;
	}
	.article .detail .image01 {
		margin: 30px 0;
	}
	.article .detail .btn-wrap {
		margin: 30px 0 0 0;
	}
	.article .detail .btn-wrap .btn {
		margin: 0 auto;
		max-width: 200px;
		height: 60px;
		font-size: 14px;
	}
}

/*============================================================
	 [汎用] モーダルビデオ
*/
.modal-video-overlay {
	display: none;
	position: fixed;
	z-index: 9998;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
}
.modal-video-window {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	padding: 50px 20px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.modal-video-window .outer {
	display: table;
	width: 100%;
	height: 100%;
}
.modal-video-window .inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	text-align: center;
}
.modal-video-window .base {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modal-video-window .block {
	position: relative;
	margin: 0 auto;
	width: 800px;
}
.modal-video-window .block .close {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -50px;
	right: -12px;
	width: 50px;
	height: 50px;
	font-size: 23px;
	text-decoration: none;
	color: #00a09b;
	opacity: 1;
}
.modal-video-window .block .player {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	background-color: #000;
}
.modal-video-window .block .player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	outline: 0;
}

.modal-video-overlay,
.modal-video-window {
	opacity: 0;
	transition: opacity 0.5s ease 0s;
}
.modal-video-opened .modal-video-overlay,
.modal-video-opened .modal-video-window {
	opacity: 1;
}

/* HOVER */
.os-other .modal-video-window .block .close:hover {
	color: #fff;
}

@media screen and (max-width: 840px) {
	.modal-video-window .block {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.modal-video-window {
		padding-left: 0;
		padding-right: 0;
	}
	.modal-video-window .block .close {
		right: 0;
	}
}
