@charset "utf-8";

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

:root {
	--font-sans: "Noto Sans JP", serif;
	--font-serif: "Noto Serif JP", serif;
	--font-hind: "Hind Madurai", serif;
	--color-base: #f9f9f9;
	--color-main: #fff;
	--color-assort: #0f3382;
	--color-assort-light: #4678b4;
	--color-assort-dark: #212b46;
	--color-accent: #228496;
	--color-text: #121212;
	--color-text-gray: #B1B1B1;
	--color-white: #fff;
	--color-gray: #f3f3f3;
	--color-gray02: #dcdfe2;
	--color-gray-light: #f2f5f8;
	--color-gray-light02: #e4e9ef;
	--color-gray-light-very: #f5f6f8;
	--color-red: #d33030;
	--color-green: #94B727;
	--color-pink-light: #f1b6b6;
	--color-yellow: #f8e7aa;
	--color-yellow-light: #fff9cc;
	--color-water: #9bdcf0;
	--color-gray-dark: #AFAFAF;
	--color-gray-dark-very: #89898c;
	--color-black: #1b1b1b;
	--max-width: 1300px;
	--letter-spacing: .05rem;
	--letter-spacing-large: .1rem;
}

body {
	font-size: min(3.73vw, 16px);
	line-height: 2;
	letter-spacing: var(--letter-spacing);
	font-family: var(--font-sans);
	color: var(--color-text);
	font-weight: 400;
	width: 100%;
	overflow-x: hidden;
	background-color: var(--color-base);
}

@media screen and (max-width: 767px) {
	body {
		line-height: 1.6;
	}
}

/*================================
-ヘッダー
=================================*/

.common-header {
	width: 100%;
	z-index: 50;
	background-color: rgba(255, 255, 255, 0.95);
	color: #000000;
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	padding: 0 min(4.26vw, 20px);
	position: fixed;
	top: 0;
	left: 0;
	border-bottom: .5px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
	.common-header {
		height: 120px;
	}
}

@media (max-width: 767px) {
	.common-header {
		height: 64px;
	}
}

/*================================
-ヘッダーロゴ
=================================*/

.common-header-logo,
.common-header-logo-seminar {
	max-width: 400px;
	display: flex;
	align-items: center;
	width: 100%;

	a {
		width: 100%;
		height: auto;
		display: block;
	}

	.image {
		width: 100%;
		height: auto;

		>img {
			width: 100%;
			height: auto;
			display: block;
		}
	}
}

.common-header-logo {
	margin-left: 140px;
}

@media screen and (min-width: 768px) {
	.common-header-logo {
		margin-left: 140px;
		max-width: 600px;
	}
}

@media (max-width: 767px) {
	.common-header-logo {
		margin-left: calc(64px - min(4.26vw, 20px) + min(2.13vw, 8px));

		.image {
			max-width: 76vw;
			width: 100%;
			height: auto;
			display: block;
		}
	}
}

@media (min-width: 768px) {
	.common-header-logo-seminar {
		width: 40vw;
	}
}

@media (max-width: 767px) {
	.common-header-logo-seminar {
		width: 50vw;
	}
}

/*================================
-ハンバーガーメニュー
=================================*/

.common-header-hamburger-menu-button {
	position: fixed;
	top: 0;
	left: 0;
	cursor: pointer;
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 70;

	&::before {
		position: fixed;
		content: "";
		left: 0;
		top: 0;
		background-color: var(--color-assort);
		width: 120px;
		height: 120px;
		z-index: 40;
	}

	&::after {
		content: "Menu";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 24px;
		color: var(--color-main);
		z-index: 50;
		font-size: min(3.2vw, 14px);
		font-family: var(--font-sans);
		pointer-events: none;
	}

	span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		background-color: var(--color-main);
		width: 65px;
		height: 1px;
		transform: translate(-50%, -50%);
		left: 50%;
		z-index: 80;

		&:nth-of-type(1) {
			top: calc(50% - 20px);
		}

		&:nth-of-type(2) {
			top: calc(50% - 8px);
		}

		&:nth-of-type(3) {
			top: calc(50% + 4px);
		}
	}
}

@media (max-width: 767px) {
	.common-header-hamburger-menu-button {
		width: 64px;
		height: 64px;

		&::before {
			width: 64px;
			height: 64px;
		}

		&::after {
			bottom: 5px;
		}

		span {
			width: 40px;

			&:nth-of-type(1) {
				top: calc(50% - 13px);
			}

			&:nth-of-type(2) {
				top: calc(50% - 5px);
			}

			&:nth-of-type(3) {
				top: calc(50% + 3px);
			}
		}
	}
}

.common-header-hamburger-menu-button.active {
	&::after {
		content: "Close";
	}

	span {
		width: 35%;

		&:nth-of-type(1) {
			top: calc(50% - 12px);
			left: calc(50% - 21px);
			transform: translateY(6px) rotate(-45deg);
		}

		&:nth-of-type(2) {
			opacity: 0;
		}

		&:nth-of-type(3) {
			top: calc(50% + 1px);
			left: calc(50% - 21px);
			transform: translateY(-6px) rotate(45deg);
		}
	}
}

@media (max-width: 767px) {
	.common-header-hamburger-menu-button.active {
		span {
			&:nth-of-type(1) {
				top: calc(50% - 10px);
				left: calc(50% - 10px);
			}

			&:nth-of-type(3) {
				top: calc(50% + 3px);
				left: calc(50% - 10px);
			}
		}
	}
}

.common-header-hamburger-contents {
	position: fixed;
	z-index: 60;
	top: 0;
	left: min(-80vw, -480px);
	width: min(80vw, 480px);
	height: 100svh;
	background: var(--color-assort);
	transition: ease .4s;
	overflow-y: auto;
}

@media (max-width: 767px) {
	.common-header-hamburger-contents {
		transition: ease .3s;
	}
}

.common-header-hamburger-contents.panelactive {
	left: 0;
}

.common-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.2);
	z-index: 50;
	display: none;
}

.common-overlay.active {
	display: block;
}

body.fixed {
	overflow: hidden;
}

/*================================
-ハンバーガーコンテンツ
=================================*/

.common-header-hamburger-contents-item {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;

	.link {
		color: #fff;
		font-size: min(3.73vw, 16px);
		line-height: 1.4;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		padding: 0 min(4.26vw, 32px);
		border-bottom: .5px solid rgba(0, 0, 0, 0.2);

		>span {
			position: relative;
			padding-left: min(4.5vw, 20px);

			&::before {
				content: "〉";
				position: absolute;
				left: 0;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1;
			}
		}
	}

	.home {
		border-top: .5px solid rgba(0, 0, 0, 0.2);

		>span {
			&::before {
				content: "";
				position: absolute;
				background: url("../img/common/icon-home-wt.svg") no-repeat center center / 100%;
				width: 14px;
				height: 14px;
				left: -4px;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1;
			}
		}
	}
}

@media (min-width: 768px) {
	.common-header-hamburger-contents-item {
		margin-top: 160px;

		.link {
			height: 56px;
		}
	}
}

@media (max-width: 767px) {
	.common-header-hamburger-contents-item {
		margin-top: 80px;

		.link {
			height: 48px;
		}
	}
}

.common-header-hamburger-map-button {
	margin: 40px auto 0;

	.link {
		width: 100%;
		max-width: 240px;
		background-color: var(--color-main);
	}
}

/*================================
-メインコンテンツ
=================================*/

.common-main {
	background: url("../../src/img/common/common-background.webp") no-repeat right top / 100% fixed var(--color-main);
}

@media (max-width: 768px) {
	.common-main {
		background: url("../../src/img/common/common-background.webp") no-repeat right top / 400% fixed var(--color-main);
	}
}

/*================================
-日時表
=================================*/

/* 日時 */
.common-schedule-table {
	width: 100%;
	margin: 40px auto;
	padding: 48px;
	border: .5px solid var(--color-gray-dark);
	background-color: var(--color-main);

	table {
		border-collapse: collapse;
		margin-bottom: 40px;
	}

	th,
	td {
		border-collapse: collapse;
		border-spacing: 0;
		font-size: min(4vw, 18px);
		font-weight: 500;
		line-height: 1.4;
		vertical-align: middle;
		padding: 8px 0;

		p {
			margin-bottom: 0 !important;
		}
	}

	th {
		background-color: initial;
		color: var(--color-text);

		p {
			padding-left: 16px;
			border-left: 2px solid var(--color-gray-dark);
		}
	}
}

/*================================
-講演者情報
=================================*/

.common-seminar-headline {
	background-color: var(--color-assort);
	font-weight: 400;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 1.4;
	color: var(--color-main);
	font-size: min(4.26vw, 18px);
	overflow: hidden;
	position: relative;
	height: 56px;
	margin-bottom: 24px;
	padding: 0 min(4.26vw, 16px);
}

.common-seminar-box {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;

	p {
		margin-bottom: 0 !important;
	}
}

.common-seminar-box-image {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media screen and (max-width: 767px) {
	.common-seminar-box-image {
		grid-template-columns: repeat(1, 1fr);
		gap: 8px;
	}
}

.common-seminar-box-image-item {
	display: grid;
	grid-template-columns: min(25vw, 100px) 1fr;
	gap: min(4.26vw, 24px);

	.image {
		width: 100%;
		height: auto;
		display: block;

		>img {
			width: 100%;
			height: auto;
			display: block;
			background-color: var(--color-gray-dark);
		}
	}
}

.common-seminar-box-image-name {
	font-size: min(4.26vw, 16px);
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	justify-content: center;

	.small {
		margin-left: 8px;
		font-size: min(3.46vw, 13px);
		display: inline-block;
	}

	.affiliation {
		margin-top: 8px;
		font-size: min(3.46vw, 13px);
		display: block;
		display: flex;
		align-items: flex-start;
	}
}

/* @media screen and (min-width: 768px) {
	.common-seminar-box-image-name {
		.small {
			height: 40px;
		}
	}
} */

.common-seminar-box-theme {
	display: grid;
	gap: 0;
	border: .5px solid var(--color-gray-dark);
	background-color: rgba(255, 255, 255, 0.95);
}

@media screen and (min-width: 768px) {
	.common-seminar-box-theme {
		grid-template-columns: 0.8fr 1fr;
	}
}

@media screen and (max-width: 767px) {
	.common-seminar-box-theme {
		grid-template-columns: repeat(1, 1fr);
	}
}

.common-seminar-box-theme-title,
.common-seminar-box-theme-description {
	padding: 16px;
	font-size: min(3.73vw, 14px);
	line-height: 1.6;

	span {
		position: relative;
		z-index: 2;
	}
}

.common-seminar-box-theme-title {
	background-color: var(--color-gray-light);
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	font-weight: 500;


	&::before,
	&:after {
		content: "";
		position: absolute;
		z-index: 0;
		pointer-events: none;
	}

	&::before {
		width: 80px;
		height: 80px;
		background-color: var(--color-gray-dark);
		opacity: .1;
		left: 0;
		top: 0;
	}

	&::after {
		width: 120px;
		height: 120px;
		border: 1px solid var(--color-gray-dark);
		opacity: .2;
		left: 8px;
		top: 8px;
	}
}

@media screen and (max-width: 767px) {
	.common-seminar-box-theme-title {
		padding: 24px 4.26vw;
	}
}

.common-seminar-box-theme-description {
	position: relative;

	&::before {
		position: absolute;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		z-index: 1;
	}
}

@media screen and (min-width: 768px) {
	.common-seminar-box-theme-description {
		padding: 16px 16px 16px 32px;

		&::before {
			top: 50%;
			left: 0;
			transform: translateY(-50%);
			border-color: transparent transparent transparent var(--color-gray-light);
			border-width: 16px 0px 16px 8px;
		}
	}
}

@media screen and (max-width: 767px) {
	.common-seminar-box-theme-description {
		padding: 24px 4.26vw;

		&::before {
			left: 50%;
			top: 0;
			transform: translateX(-50%);
			border-color: var(--color-gray-light) transparent transparent transparent;
			border-width: 8px 12px 0px 12px;
		}
	}
}

/*================================
-フッター
=================================*/

.common-footer {
	width: 100%;
	height: auto;
	color: var(--color-main);
	padding-top: 80px;
	background: url("../../src/img/common/footer.webp") no-repeat top center / cover var(--color-gray-dark-very);
	position: relative;

	&::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: var(--color-black);
		opacity: .85;
		z-index: 1;
	}

	>.inner,
	>.inner02 {
		max-width: var(--max-width);
		margin: auto;
		padding: 0 min(4.26vw, 16px);
		position: relative;
		z-index: 10;
	}

	>.inner {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}

	>.inner02 {
		margin: 80px auto;
	}
}

@media (max-width: 1080px) {
	.common-footer {
		>.inner {
			max-width: 750px;
			margin: auto;
			grid-template-columns: repeat(1, 1fr);
			gap: 80px;
		}
	}
}

@media (max-width: 768px) {
	.common-footer {
		padding-top: 0;

		>.inner {
			padding: 0 4.26vw;
		}

		>.inner02 {
			border-top: .5px solid var(--color-main);
			margin: 40px 4.26vw;
			padding-top: 40px;
		}
	}
}

.common-footer-contents {
	position: relative;
	z-index: 10;

	&::before {
		content: "";
		position: absolute;
		z-index: 1;
		background-color: var(--color-main);
	}

	&:last-child {
		content: none;

		&::before {
			content: none;
		}
	}
}

@media (min-width: 1081px) {
	.common-footer-contents {
		display: flex;
		flex-direction: column;
		justify-content: space-between;

		&::before {
			right: -10px;
			top: 0;
			width: .5px;
			height: 100%;
		}
	}
}

@media (max-width: 1080px) {
	.common-footer-contents {
		&::before {
			left: 0;
			bottom: -40px;
			width: 100%;
			height: .5px;
		}
	}

	.common-footer-border-sp {
		&::before {
			content: none;
		}
	}
}

.common-footer-contents-item {
	position: relative;
	font-size: min(3.73vw, 15px);

	>.title {
		border: .5px solid var(--color-main);
		padding: 2px 12px;
		min-width: 140px;
		line-height: 1.4;
		text-align: center;
		font-weight: 700;
		margin-bottom: 12px;
		color: var(--color-main);
		display: inline-flex;
		justify-content: center;
	}
}

/* フッターメニュー */
.common-footer-menu {
	color: var(--color-main);
	display: flex;
	flex-direction: column;

	.link {
		display: inline-block;

		>span {
			font-size: min(3.73vw, 15px);
			position: relative;
			padding-left: min(4.5vw, 20px);

			&::before {
				content: "〉";
				position: absolute;
				left: 0;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1;
			}
		}
	}

	.home {
		>span {
			&::before {
				content: "";
				position: absolute;
				background: url("../img/common/icon-home-wt.svg") no-repeat center center / 100%;
				width: 14px;
				height: 14px;
				left: -4px;
				top: 50%;
				transform: translateY(-50%);
				z-index: 1;
			}
		}
	}
}

@media screen and (min-width: 768px) {
	.common-footer-menu {
		.link {
			max-width: 240px;
		}
	}
}

@media screen and (max-width: 767px) {
	.common-footer-menu {
		width: calc(100% + calc(4.26vw * 2));
		margin-left: -4.26vw;
		background-color: var(--color-black);

		.link {
			padding-left: min(4.26vw, 16px);
			display: flex;
			height: 52px;
			justify-content: flex-start;
			align-items: center;
			border-bottom: .5px solid rgba(255, 255, 255, .2);
		}
	}
}

.common-footer-menu-indent {
	display: inline-flex;
	flex-direction: column;

	.link {
		padding-left: min(calc(4.26vw * 2), calc(16px * 1.5));
	}
}

/* コピーライト */
.common-footer-copyright {
	background-color: var(--color-black);
	color: var(--color-main);
	position: relative;
	z-index: 10;
}

/* @media screen and (max-width: 767px) {
	.common-footer-copyright {
		margin-bottom: 80px;
	}
} */

.common-footer-copyright-item {
	max-width: var(--max-width);
	margin: auto;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;

	.text {
		small {
			font-size: min(3.2vw, 14px);
		}
	}
}

@media (max-width: 767px) {
	.common-footer-copyright-item {
		padding: 20px 4.26vw;
		flex-direction: column;
		justify-content: center;
	}

	.text {
		margin-top: 16px;

		&:first-child,
		&:nth-of-type(2) {
			margin-top: 0;
		}
	}
}

.common-footer-address,
.common-footer-address02 {
	line-height: 1.4;

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

.common-footer-address-item,
.common-footer-address-item02 {

	>.tel,
	>.fax,
	>.hour {
		padding-left: 22px;
		position: relative;

		&::before {
			content: "";
			position: absolute;
			top: 50%;
			left: 0;
			transform: translateY(-50%);
			z-index: 1;
		}
	}

	>.tel {
		margin-right: 40px;

		&::before {
			background: url("../../src/img/common/icon-tel-wt.svg") no-repeat center center / 100%;
			width: 16px;
			height: 16px;
		}
	}

	>.fax {
		&::before {
			background: url("../../src/img/common/icon-fax-wt.svg") no-repeat center center / 100%;
			width: 16px;
			height: 16px;
		}
	}

	>.hour {
		&::before {
			background: url("../../src/img/common/icon-hour-wt.svg") no-repeat center center / 100%;
			width: 14px;
			height: 16px;
			top: 4px;
			transform: initial;
		}
	}
}

.common-footer-address-item {
	display: flex;
	margin-top: 16px;
}

.common-footer-address02 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*================================
-メニューの子メニュー
=================================*/

.common-header-menu-indent {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	background-color: var(--color-gray);

	.link {
		color: var(--color-assort-dark);
		font-weight: 400;
		font-size: min(3.73vw, 14px);
	}
}

@media screen and (min-width: 768px) {
	/* .common-header-menu-indent {
		.link:nth-of-type(odd) {
			border-right: .5px solid var(--color-gray-dark);
		}
	} */

	.common-header-menu-indent {
		grid-template-columns: repeat(1, 1fr);

		.link {
			padding-left: min(calc(4.26vw * 1.5), calc(32px * 1.5));
		}
	}
}

@media screen and (max-width: 767px) {
	.common-header-menu-indent {
		grid-template-columns: repeat(1, 1fr);

		.link {
			padding-left: min(calc(4.26vw * 2), calc(32px * 2));
		}
	}
}

/*================================
-英語案内
=================================*/

.common-header-en-information,
.common-page-en-information {
	line-height: 1.4;
	text-align: left !important;
	width: 100%;
	z-index: 1;

	.button {
		font-size: min(3.46vw, 14px);
		background-color: var(--color-assort);
		color: var(--color-main);
		display: block;
		width: 100%;
		display: flex;
		height: 40px;
		font-weight: 500;
		justify-content: center;
		align-items: center;
		padding: 0 16px;
		max-width: 400px;
		position: relative;
		padding-left: min(calc(4vw * 2), calc(16px * 2));
		user-select: none;
		cursor: pointer;

		&::before {
			content: "";
			background: url("../img/common/icon-global.svg") no-repeat center center / 100%;
			position: absolute;
			top: 50%;
			left: min(4.26vw, 12px);
			transform: translateY(-50%);
			width: min(4vw, 16px);
			height: min(4vw, 16px);
			z-index: 10;
		}
	}
}

@media screen and (min-width: 768px) {

	.common-header-en-information,
	.common-page-en-information {
		max-width: 200px;
	}
}

@media screen and (max-width: 767px) {

	.common-header-en-information,
	.common-page-en-information {
		button {
			font-weight: 600;
		}
	}

	.common-page-en-information {
		.button {
			&::before {
				left: min(23.3vw, 120px);
			}
		}
	}
}

.common-header-en-information {
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
	.common-header-en-information {
		display: none !important;
	}
}

@media screen and (min-width: 1025px) {

	.common-page-en-information {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.common-page-en-information {
		position: relative;
		margin: -16px auto 24px;
		background-color: var(--color-main);
	}
}

/*================================
-共通ボタン
=================================*/

.common-button,
.common-button-map {
	margin: auto;
	display: flex;
	justify-content: center;
	width: 100%;

	>.link {
		max-width: 240px;
		width: 100%;
		height: 56px;
		display: flex;
		background-color: var(--color-main);
		text-align: center;
		justify-content: center;
		align-items: center;
		position: relative;
		color: var(--color-text);
		transition: ease .3s;
		font-weight: 600;

		&::before {
			content: "";
			position: absolute;
			width: 40px;
			height: 4px;
			right: 12px;
			bottom: 8px;
			z-index: 1;
			user-select: none;
			transition: ease .3s;
		}
	}
}

.common-button {
	>.link {
		background-color: var(--color-assort);
		color: var(--color-main);

		&::before {
			background: url("../../src/img/common/common-button-arrow-wt.svg") no-repeat center center / 100%;
		}
	}
}

.common-button-map {

	>.link {

		>span {
			position: relative;
			padding-left: 28px;

			&::before {
				content: "";
				position: absolute;
				background: url("../../src/img/common/icon-map.svg") no-repeat center center / 100%;
				width: 20px;
				height: 20px;
				top: 50%;
				left: 0;
				transform: translateY(-50%);
				z-index: 1;
				pointer-events: none;
			}
		}
	}
}

@media (min-width: 768px) {

	.common-button,
	.common-button-map {
		>.link {
			&:hover {
				transition: ease .3s;

				&::before {
					transform: translateX(4px);
					transition: ease .3s;
				}
			}
		}
	}

	.common-button-map {
		>.link {
			&:hover {
				color: var(--color-assort);
			}
		}
	}
}

@media (max-width: 767px) {
	.common-button-map {
		>.link {
			&:active {
				transition: ease .3s;

				&::before {
					transform: translateX(4px);
					transition: ease .3s;
				}
			}
		}
	}

	.common-button-map {
		>.link {
			&:active {
				color: var(--color-assort);
			}
		}
	}
}

.common-header-button-map,
.common-footer-button-map {
	margin: 40px auto 0;
}

.common-header-button-map {
	.link {
		padding: 0;
	}
}

.common-button-banner {
	margin: auto;
	max-width: 300px;
	display: flex;
	justify-content: center;
	transition: ease .3s;

	.image {
		width: 100%;
		height: auto;

		>img {
			width: 100%;
			height: auto;
			display: block;
		}
	}
}

@media (min-width: 768px) {
	.common-button-banner {
		&:hover {
			opacity: .7;
			transition: ease .3s;
		}
	}
}

@media (max-width: 767px) {
	.common-button-banner {
		max-width: 240px;

		&:active {
			opacity: .7;
			transition: ease .3s;
		}
	}
}

.common-map-text-link {
	display: inline-block;
	position: relative;
	padding-right: min(10.6vw, 40px);

	&::before {
		content: "";
		position: absolute;
		background: url("../../src/img/common/icon-map.svg") no-repeat center center / 100%;
		width: 33px;
		height: 47px;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		z-index: 1;
		pointer-events: none;
	}
}

/*================================
-共通文字
=================================*/

/* 注釈 */
.common-text-att,
.common-text-att-small,
.common-text-list {
	position: relative;
	line-height: 1.6;

	&::before {
		content: "※";
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}
}

.common-text-list {
	&::before {
		content: "・";
	}
}

.common-text-att,
.common-text-list {
	font-size: min(4vw, 16px);
	padding-left: min(calc(4vw + 2px), calc(16px + 2px));
}

.common-text-att-small {
	font-size: min(3.46vw, 14px);
	padding-left: min(calc(3.46vw + 2px), calc(14px + 2px));
}

html[lang="en"] .common-text-att,
html[lang="en"] .common-text-att-small {
	&::before {
		content: "*";
	}
}

html[lang="en"] .common-text-att {
	padding-left: min(calc(4vw - 4px), calc(16px - 4px));
}

html[lang="en"] .common-text-att-small {
	padding-left: min(calc(3.46vw - 4px), calc(14px - 4px));
}

.common-text-small {
	position: relative;
	line-height: 1.6;
	font-size: min(3.46vw, 14px);
	display: inline-block;
}

/* 赤字 */
.common-text-note,
.common-text-note-title {
	color: var(--color-red) !important;
}

.common-text-note {
	font-weight: 400;
}

/* 中央揃え */
.common-text-center,
.common-text-center span {
	text-align: center;
}

/* 右揃え */
.common-text-right,
.common-text-right span {
	text-align: right;
}

/* SPのみ小文字にする */
@media screen and (max-width: 767px) {
	.common-text-small-sp {
		font-size: (3.46vw, 14px);
	}
}

/*================================
-余白指定
=================================*/

.common-mb0 {
	margin-bottom: 0 !important;
}

.common-mb8 {
	margin-bottom: 8px !important;
}

.common-mb16 {
	margin-bottom: 16px !important;
}

.common-mb24 {
	margin-bottom: 24px !important;
}

.common-mb32 {
	margin-bottom: 32px !important;
}

.common-mb40 {
	margin-bottom: 40px !important;
}

.common-mb56 {
	margin-bottom: 56px !important;
}

.common-mb80 {
	margin-bottom: 80px !important;
}

/*================================
-共通全文を開く
=================================*/

.common-readmore {
	position: relative;
	margin-bottom: 40px;

	input {
		display: none;
	}

	label {
		position: absolute;
		display: flex;
		flex-direction: column;
		align-items: center;
		z-index: 10;
		bottom: -10px;
		width: 100%;
		height: 40px;
		cursor: pointer;
		text-align: center;
		background: linear-gradient(to bottom, rgba(242, 245, 248, 0) 0%, rgba(242, 245, 248, 0.95) 90%);

		&::before {
			content: "";
			position: absolute;
			line-height: 1.4;
		}

		&::after {
			z-index: 2;
			position: absolute;
			bottom: -40px;
			content: "すべて開く +";
			color: var(--color-text);
			font-weight: 500;
		}

		&:lang(en) {
			&::after {
				content: 'Read More +';
			}
		}
	}

	.common-readmore-item,
	.common-readmore-item-long {
		overflow: hidden;
		height: 180px;
		transition: all 0.5s;
	}

	.common-readmore-item-long {
		height: 400px;
	}
}

/* 開いた時にグラデーションを消す */
.common-readmore input:checked+label {
	background: inherit;
}

/*閉じるボタン*/
.common-readmore input:checked+label:after {
	content: "閉じる -";
}

html[lang="en"] .common-readmore input:checked+label:after {
	content: "Close -";
}

.common-readmore input:checked+label:before {
	left: 50%;
	transform: translateX(-50%);
}

.common-readmore input:checked~.common-readmore-item,
.common-readmore input:checked~.common-readmore-item-long {
	height: auto;
	padding-bottom: 40px;
	transition: all 0.5s;
}

/*================================
-共通ホバー
=================================*/

@media screen and (min-width: 768px) {
	.common-hover-text {
		text-decoration: none;

		&:hover {
			text-decoration: underline;
		}
	}

	.common-hover-text-underline {
		text-decoration: underline;

		&:hover {
			text-decoration: none;
		}
	}

	.common-hover-image,
	.common-hover-button {
		transition: ease .3s;

		&:hover {
			transition: ease .3s;
			opacity: .7;
		}
	}
}

@media screen and (max-width: 767px) {
	.common-hover-text {
		text-decoration: none;

		&:active {
			text-decoration: underline;
		}
	}

	.common-hover-text-underline {
		text-decoration: underline;

		&:hover {
			text-decoration: none;
		}
	}

	.common-hover-image,
	.common-hover-button {
		transition: ease .3s;

		&:active {
			transition: ease .3s;
			opacity: .7;
		}
	}
}

/*================================
-ページトップ
=================================*/

.common-page-top {
	position: fixed;
	right: 16px;
	bottom: 64px;
	width: 48px;
	height: 48px;
	background-color: rgba(0, 0, 0, .7);
	z-index: 10;

	&::before {
		content: "〉";
		position: absolute;
		left: 50%;
		top: calc(50% - 4px);
		z-index: 1;
		font-weight: bold;
		transform: translate(-50%, -50%) rotate(-90deg);
		color: var(--color-main);
	}
}

@media screen and (max-width: 767px) {
	.common-page-top {
		/* bottom: 140px; */
		bottom: 40px;
	}
}

/*================================
-ボトムナビ
=================================*/

@media screen and (min-width: 768px) {
	.common-footer-navi {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.common-footer-navi {
		position: fixed;
		left: 0;
		bottom: 0;
		display: flex;
		flex-direction: column;
		z-index: 20;
		width: 100%;
		background-color: var(--color-assort);
	}

	.common-footer-navi-language {
		width: 100%;
		background-color: var(--color-black);

		.button {
			width: 100%;
			height: 40px;
			display: flex;
			justify-content: center;
			align-items: center;
			font-weight: 500;
			position: relative;
			padding-left: min(calc(4vw * 1.5), calc(16px * 1.5));
			color: var(--color-main);

			&::before {
				content: "";
				background: url("../img/common/icon-global.svg") no-repeat center center / 100%;
				position: absolute;
				top: 50%;
				left: min(28vw, 120px);
				transform: translateY(-50%);
				width: min(4vw, 16px);
				height: min(4vw, 16px);
				z-index: 10;
			}
		}
	}

	.common-footer-navi-item {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 0;

		a {
			display: flex;
			justify-content: center;
			height: 80px;
			align-items: flex-end;
			color: var(--color-main);
			background-color: var(--color-assort);
			text-align: center;
			border-right: .5px solid var(--color-assort-dark);
			line-height: 1.2;
			padding-bottom: 16px;

			&:last-child {
				border-right: 0;
			}

			>span {
				font-size: min(2.93vw, 11px);
				text-align: center;
				display: flex;
				justify-content: center;
				align-items: flex-start;

				.common-ja,
				.common-en {
					text-align: center;
				}
			}
		}

		.time,
		.join,
		.lecture,
		.pre {
			position: relative;

			&::before {
				content: "";
				position: absolute;
				top: 14px;
				left: 50%;
				transform: translateX(-50%);
				width: min(4vw, 16px);
				height: min(4vw, 16px);
				z-index: 10;
			}
		}

		.time {
			background-color: var(--color-assort-light);

			&::before {
				background: url("../img/common/icon-time.svg") no-repeat center center / 100%;
			}
		}

		.join {
			&::before {
				background: url("../img/common/icon-join.svg") no-repeat center center / 100%;
			}
		}

		.lecture {
			&::before {
				background: url("../img/common/icon-lecture.svg") no-repeat center center / 100%;
				top: 12px;
				width: min(2.66vw, 10px);
				height: min(4.8vw, 18px);
			}
		}

		.pre {
			&::before {
				background: url("../img/common/icon-pre.svg") no-repeat center center / 100%;
				width: min(3.2vw, 12px);
			}
		}
	}

	html[lang="en"] .common-footer-navi-item {

		.time,
		.lecture {
			padding-bottom: 20px;
		}
	}
}

/*================================
-アニメーション
=================================*/

.common-animation-fade-in,
.common-animation-fade-in-first {
	-webkit-animation-name: fade-in-anime;
	animation-name: fade-in-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

.common-animation-fade-in02 {
	-webkit-animation-name: fade-in-anime;
	animation-name: fade-in-anime;
	-webkit-animation-duration: 2.5s;
	animation-duration: 2.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}

@-webkit-keyframes fade-in-anime {
	from {
		opacity: 0.1;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade-in-anime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.common-animation-fade-up,
.common-animation-fade-up-first {
	-webkit-animation-name: fade-up-anime;
	animation-name: fade-up-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-up-anime {
	from {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fade-up-anime {
	from {
		opacity: 0;
		-webkit-transform: translateY(40px);
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.common-animation-fade-left,
.common-animation-fade-left-first {
	-webkit-animation-name: fade-left-anime;
	animation-name: fade-left-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-left-anime {
	from {
		opacity: 0;
		-webkit-transform: translateX(-40px);
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fade-left-anime {
	from {
		opacity: 0;
		-webkit-transform: translateX(-40px);
		transform: translateX(-40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.common-animation-fade-right,
.common-animation-fade-right-first {
	-webkit-animation-name: fade-right-anime;
	animation-name: fade-right-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-right-anime {
	from {
		opacity: 0;
		-webkit-transform: translateX(40px);
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fade-right-anime {
	from {
		opacity: 0;
		-webkit-transform: translateX(40px);
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.common-animation-fade-down,
.common-animation-fade-down-first {
	-webkit-animation-name: fade-down-anime;
	animation-name: fade-down-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-down-anime {
	from {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		transform: translateY(-40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fade-down-anime {
	from {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		transform: translateY(-40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

.common-animation-fade-right-up,
.common-animation-fade-right-up-first {
	-webkit-animation-name: fade-right-up-anime;
	animation-name: fade-right-up-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-right-up-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(40px, 0);
		transform: translate(40px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@keyframes fade-right-up-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(40px, 0);
		transform: translate(40px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@media screen and (max-width: 767px) {
	@-webkit-keyframes fade-right-up-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(0, 40px);
			transform: translate(0, 40px);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}

	@keyframes fade-right-up-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(0, 40px);
			transform: translate(0, 40px);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}
}

.common-animation-fade-up-right {
	-webkit-animation-name: fade-up-right-anime;
	animation-name: fade-up-right-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-up-right-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@keyframes fade-up-right-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@media screen and (max-width: 767px) {
	@-webkit-keyframes fade-up-right-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(40px, 0);
			transform: translate(40px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}

	@keyframes fade-up-right-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(40px, 0);
			transform: translate(40px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}
}

.common-animation-fade-left-up,
.common-animation-fade-left-up-first {
	-webkit-animation-name: fade-left-up-anime;
	animation-name: fade-left-up-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-left-up-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(-40px, 0);
		transform: translate(-40px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@keyframes fade-left-up-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(-40px, 0);
		transform: translate(-40px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@media screen and (max-width: 767px) {
	@-webkit-keyframes fade-left-up-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(0, 40px);
			transform: translate(0, 40px);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}

	@keyframes fade-left-up-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(0, 40px);
			transform: translate(0, 40px);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}
}

.common-animation-fade-up-left {
	-webkit-animation-name: fade-up-left-anime;
	animation-name: fade-up-left-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-up-left-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@keyframes fade-up-left-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(0, 40px);
		transform: translate(0, 40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@media screen and (max-width: 767px) {
	@-webkit-keyframes fade-up-left-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(-40px, 0);
			transform: translate(-40px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}

	@keyframes fade-up-left-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(-40px, 0);
			transform: translate(-40px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}
}

.common-animation-fade-right-left {
	-webkit-animation-name: fade-right-left-anime;
	animation-name: fade-right-left-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-right-left-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(40px, 0);
		transform: translate(40px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@keyframes fade-right-left-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(40px, 0);
		transform: translate(40px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@media screen and (max-width: 767px) {
	@-webkit-keyframes fade-right-left-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(-40px, 0);
			transform: translate(-40px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}

	@keyframes fade-right-left-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(-40px, 0);
			transform: translate(-40px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}
}

.common-animation-fade-left-right {
	-webkit-animation-name: fade-left-right-anime;
	animation-name: fade-left-right-anime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease;
	animation-timing-function: ease;
	opacity: 0;
}

@-webkit-keyframes fade-left-right-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(-40px, 0);
		transform: translate(-40px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@keyframes fade-left-right-anime {
	from {
		opacity: 0;
		-webkit-transform: translate(-40px, 0);
		transform: translate(-40px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate(0);
		transform: translate(0);
	}
}

@media screen and (max-width: 767px) {
	@-webkit-keyframes fade-left-right-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(40px, 0);
			transform: translate(40px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}

	@keyframes fade-left-right-anime {
		from {
			opacity: 0;
			-webkit-transform: translate(40px, 0);
			transform: translate(40px, 0);
		}

		to {
			opacity: 1;
			-webkit-transform: translate(0, 0);
			transform: translate(0, 0);
		}
	}
}

.common-animation-fade-in-trigger,
.common-animation-fade-in-first,
.common-animation-fade-up-trigger,
.common-animation-fade-up-first,
.common-animation-fade-left-trigger,
.common-animation-fade-left-first,
.common-animation-fade-right-trigger,
.common-animation-fade-right-first,
.common-animation-fade-down-trigger,
.common-animation-fade-down-first,
.common-animation-fade-left-up-first,
.common-animation-fade-left-up-trigger,
.common-animation-fade-right-up-first,
.common-animation-fade-right-up-trigger,
.common-animation-fade-up-left-trigger,
.common-animation-fade-up-right-trigger,
.common-animation-fade-right-left-trigger,
.common-animation-fade-left-right-trigger {
	opacity: 0;
}

.common-animation-fade-delay02s {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.common-animation-fade-delay02s {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.common-animation-fade-delay03s {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.common-animation-fade-delay04s {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.common-animation-fade-delay05s {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.common-animation-fade-delay06s {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.common-animation-fade-delay07s {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.common-animation-fade-delay08s {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.common-animation-fade-delay09s {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

.common-animation-fade-delay10s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.common-animation-fade-delay11s {
	-webkit-animation-delay: 1.1s;
	animation-delay: 1.1s;
}

.common-animation-fade-delay12s {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.common-animation-fade-delay13s {
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
}

.common-animation-fade-delay14s {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}

.common-animation-fade-delay15s {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

.common-animation-fade-delay16s {
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}

.common-animation-fade-delay17s {
	-webkit-animation-delay: 1.7s;
	animation-delay: 1.7s;
}

.common-animation-fade-delay18s {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}

.common-animation-fade-delay19s {
	-webkit-animation-delay: 1.9s;
	animation-delay: 1.9s;
}

.common-animation-fade-delay20s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.common-animation-fade-delay21s {
	-webkit-animation-delay: 2.1s;
	animation-delay: 2.1s;
}

.common-animation-fade-delay22s {
	-webkit-animation-delay: 2.2s;
	animation-delay: 2.2s;
}

.common-animation-fade-delay23s {
	-webkit-animation-delay: 2.3s;
	animation-delay: 2.3s;
}

.common-animation-fade-delay24s {
	-webkit-animation-delay: 2.4s;
	animation-delay: 2.4s;
}

.common-animation-fade-delay25s {
	-webkit-animation-delay: 2.5s;
	animation-delay: 2.5s;
}

.common-animation-fade-delay26s {
	-webkit-animation-delay: 2.6s;
	animation-delay: 2.6s;
}

.common-animation-fade-delay27s {
	-webkit-animation-delay: 2.7s;
	animation-delay: 2.7s;
}

.common-animation-fade-delay28s {
	-webkit-animation-delay: 2.8s;
	animation-delay: 2.8s;
}

.common-animation-fade-delay29s {
	-webkit-animation-delay: 2.9s;
	animation-delay: 2.9s;
}

.common-animation-fade-delay30s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

/*================================
-端末によって非表示
=================================*/

@media (min-width: 768px) {
	.common-pc {
		display: block;
	}

	.common-sp {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.common-pc {
		display: none !important;
	}

	.common-sp {
		display: block;
	}
}

/*================================
-言語によって非表示
=================================*/

.common-en,
.common-ja {
	display: none;
}

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

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

/*================================
-準備中
=================================*/
.common-button-comming-soon {
	user-select: none;
	pointer-events: none;
	cursor: pointer;

	&::before {
		opacity: .5;
	}

	span {
		pointer-events: none;
		opacity: .5;
	}

	img {
		pointer-events: none;
		opacity: .5;
	}
}