@charset "utf-8";

#alevel {
	display: flex;
	justify-content: center;
	margin-top: 50px;
	padding-bottom: 30px;
	background: rgba(150, 200, 250, 0.3);
	border: 1px solid #fff;
	border-radius: 5px;
}

@media (width <= 767px) {
	#alevel {
		padding-bottom: 10px;
	}
}

@media (hover: hover) and (pointer: fine) {
	#alevel {
		transition: var(--transition);
	}
	
	#alevel:hover {
		background: rgba(150, 200, 250, 0.5);

	}
}
	
/*------------------------------------------------------------------------------------------------ ▼ general --*/

@media (width <= 400px) {
	body:not(.en) .introduction {
		margin: 0 -15px;
		letter-spacing: 0.005em;
	}
	
	body.en .introduction {
		line-height: 1.5em;
	}
}

/*----------------------------------------------------------------------> ▼ .voice <----------*/

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

.voice a {
	display: block;
	cursor: pointer;
}

.thumbnail {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--border_radius);
	overflow: hidden;
}

.message {
	display: flex;
	align-items: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 10px 20px;
	background: linear-gradient(to right, rgba(30, 30, 100, 0.9), rgba(30, 30, 100, 0.25));
	font-weight: bold;
	color: #fff;
}

.en .message {
	padding: 10px 15px;
}

.profile {
	position: relative;
	margin-top: 15px;
	padding-left: 15px;
	border-left: 5px solid var(--blue);
}

body:not(.en) .name {
	font-weight: bold;
}

.en .name {
	font-family: Helvetica-M;
	letter-spacing: 0.05em;
}

body:not(.en) div.voice a:nth-of-type(2) .name {
	letter-spacing: -0.1em;
}

.kana {
	font-family: Montserrat, sans-serif;
	color: var(--blue);
}

.department {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 10px;
	border: 1px solid var(--blue);
	border-radius: 3px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0;
	color: var(--blue);
}

.en .department {
	letter-spacing: 0.05em;
}

@media (1025px <= width) {
	.en .message {
		min-height: 63px;
	}
}

@media (769px <= width) {
	.voice a {
		width: calc((100% - 50px) / 2);
	}
	
	.voice a:nth-child(even) {
		margin-left: 50px;
	}
	
	.voice a:nth-child(n+3) {
		margin-top: 50px;
	}
	
	.name {
		font-size: 24px;
	}
}

@media (width <= 768px) {
	.department {
		font-size: 12px;
	}
	
	.en .message {
		line-height: 1.5em;
	}
	
	.en .name {
		line-height: 1em;
		margin-bottom: 5px;
	}
	
	.en .department {
		position: static;
		padding: 0;
		border: 0;
		line-height: 1em;
	}
}

@media (501px <= width <= 768px) {
	.voice a {
		width: calc((100% - 15px) / 2);
	}
	
	.voice a:nth-child(even) {
		margin-left: 15px;
	}
	
	.voice a:nth-child(n+3) {
		margin-top: 30px;
	}
	
	body.en .thumbnail {
		aspect-ratio: 4 / 3;
	}
	
	.name {
		font-size: 20px;
	}
}

@media (width <= 500px) {
	.voice a {
		width: 100%;
	}
	
	.voice a:nth-child(n+2) {
		margin-top: 30px;
	}
	
	.thumbnail {
		aspect-ratio: 16 / 10;
	}
	
	.en .thumbnail {
		aspect-ratio: 4 / 3;
	}
	
	.en .message {
		font-size: 13px;
		line-height: ;
	}
	
	.name {
		font-size: 16px;
	}
}

@media (width <= 360px) {
	.thumbnail {
		aspect-ratio: 4 / 3;
	}
}

/*----------------------------------------------------------------------> ▼ .voice .focus <----------*/

.focus {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(30, 30, 100, 0.95);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.focus.active {
	opacity: 1;
	visibility: visible;
}

.close {
	position: fixed;
	top: 15px;
	right: 15px;
	width: 100px;
	height: 100px;
	border-radius: 5px;
	cursor: pointer;
	z-index: 1000;
}

.close::before, .close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 5px;
	background: #fff;
	border-radius: 3px;
}

.close::before {
	transform: rotate(45deg);
}

.close::after {
	transform: rotate(-45deg);
}

.focus * {
	color: #fff; 
}

.focus .frame {
	margin-top: auto;
	margin-bottom: auto;
	height: fit-content;
	overflow: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.focus .frame::-webkit-scrollbar {
	display: none;
}

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

.focus .profile {
	margin: 0;
	padding: 0 0 0 30px;
	border: 0;
}

.focus .department {
	display: inline-block;
	position: static;
	margin-bottom: 15px;
	border: 0;
	background: #fff;
	color: var(--blue);
}

.focus .name {
	line-height: 1em;
	letter-spacing: 0.1em;
}

.en .focus .name {
	margin-bottom: 10px;
}

.focus .kana {
	letter-spacing: 0.25em;
}

.focus .message {
	position: static;
	margin-top: 15px;
	padding: 0;
	background: none;
	font-weight: normal;
}

.en .focus .message {
	display: none;
	font-family: Montserrat;
}

.focus dl {
	margin-top: 15px;
}

.focus dt {
	margin-bottom: 10px;
	padding-bottm: 3px;
	border-bottom: 1px solid #fff;
	font-weight: bold;
}

.focus dt {
	margin-bottom: 10px;
	padding-bottm: 3px;
	border-bottom: 1px solid #fff;
	font-weight: bold;
}


@media (769px <= width) {
	.focus dd {
		overflow-y: auto;
		max-height: 10em;
	}
}

@media (1367px <= width) {
	.focus .thumbnail {
		width: 45%;
	}
	
	.focus .department {
		font-size: 14px;
	}

	.focus .name {
		font-size: 36px;
	}
	
	.focus .kana {
		font-size: 16px;
	}
	
	.focus .message {
		font-size: 32px;
	}
}

@media (1025px <= width <= 1366px) {
	.focus .thumbnail {
		width: 40%;
	}

	.focus .department {
		font-size: 14px;
	}

	.focus .name {
		font-size: 30px;
	}
	
	.focus .kana {
		font-size: 14px;
	}
	
	.focus .message {
		font-size: 26px;
	}
}

@media (501px <= width <= 1024px) {
	.focus .thumbnail {
		width: 50%;
	}

	.focus .department {
		font-size: 14px;
	}

	.focus .name {
		font-size: 30px;
	}
	
	body:not(.en) #voice2_focus .name {
		font-size: 20px;
	}
	
	.focus .kana {
		font-size: 12px;
	}
	
	.focus .message {
		font-size: 18px;
	}
}
@media (width <= 768px) {
	.en .focus .department {
		padding: 0 10px;
		line-height: 1.5em;
	}
}

@media (width <= 500px) {
	.close {
		top: 5px;
		right: 10px;		
		width: 50px;
		height: 50px;
		padding: 0;
	}
	
	.focus .frame {
		height: auto;
		padding: 15px 15px 15px;
	}
	
	.focus .flex {
		flex-wrap: ;
	}
	
	.focus .thumbnail {
		aspect-ratio: 2 / 3;
		width: 50%;
	}
	
	.focus .profile {
		width: 50%;
		padding-left: 20px;
	}
	
	.focus .name {
		font-size: 24px;
		line-height: 1.5em;
	}
	
	body:not(.en) #voice2_focus .name {
		font-size: 19px;
	}
	
	body:not(.en) #voice4_focus .name {
		font-size: 22px;
	}

	.focus .kana {
		font-size: 10px;
	}
	
	.focus .message {
		display: none;
	}
}

@media (hover: hover) and (pointer: fine) {
	.close {
		transition: var(--transition);
	}
	
	.close:hover {
		background: rgba(255, 255, 255, 0.25);
	}
} 

/*----------------------------------------------------------------------> ▼ .require <----------*/

.require_select {
	display: flex;
	border: 1px solid var(--blue);
	border-radius: var(--border_radius);
	cursor: pointer;
}

.require_select div {
	width: 50%;
	line-height: 60px;
	font-weight: bold;
	text-align: center;
	color: var(--blue);
}

@media (769px <= width) {
	.require_select {
		margin-bottom: 30px;
	}
	
	.require_select div {
		font-size: 24px;
		letter-spacing: 2px;
	}
}

@media (width <= 768px) {
	.require_select {
		margin-bottom: 15px;
	}
	
	.require_select div {
		line-height: 50px;
		font-size: 16px;	
	}
}

@media (hover: hover) and (pointer: fine) {
	.require_select div {
		transition: var(--transition);
	}
	
	.require_select div:hover {
		background-color: var(--blue);
		color: #fff;
	}
} 

.require_select .active {
	background: var(--blue);
	color: #fff;
}


/*----------------------------------------------------------------------> ▼ .process <----------*/
.process {
	display: flex;
}

.process i {
	display: block;
	color: var(--blue);
}

.process h3 {
	color: var(--blue);
}

@media (min-width: 769px) {
	.process li {
		width: calc((100% - 60px) / 3);
	}
	
	.process li:nth-of-type(2) {
		margin: 0 30px;
	}
	
	.process img {
		margin-bottom: 30px;
	}
	
	.process h3 {
		margin-bottom: 15px;
	}
}

@media (max-width: 768px) {
	.process {
		flex-wrap: wrap;
	}

	.process li {
		display: flex;
		width: 100%;
		text-align: left;
	}
	
	.process li:nth-of-type(n+2) {
		margin-top: 20px;
	}
	
	.process img {
		width: 75px;
		height: 75px;
		margin-right: 25px;
	}
	
	.process div {
		width: calc(100% - 100px);
	}
	
	.process h3 {
		margin: -3px 0 5px;
	}
}

/*----------------------------------------------------------------------> ▼ .application <----------*/

.application h3, .application p {
	text-align: center;
}

.application h3 {
	margin: 20px 0 5px;
	color: var(--blue);
}

@media (min-width: 769px) {
	.application div h3 {
		font-size: 20px;
	}
}
	
@media (max-width: 768px) {
}

@media (max-width: 500px) {
	.application span p {
		width: 260px;
		margin: 0 calc((100% - 260px) / 2) 0;
		text-align: left;
	}
}