  @charset "UTF-8";
/*
SIZE0を除きSIZE数値が小さいクラス内へSIZE数値が大きい物入れることは例外とする。
[ UTILITY ]:SIZE0     .u- 最小（単独）単位でのスタイル指定 親スタイルからの上書きは禁止
	.u-v- 表示制御
	.u-h- 非表示制御
	.u-fw- フォントウエイト制御
	.u-fs- フォントサイズ制御
	.u-tc- テキスト色制御
	.u-ta- テキスト揃え制御
	.u-bgc- 背景色制御
	.u-m- マージン制御
	.u-p- パディング制御
	.u-d-　display属性制御
	.u-bd-　ボーダー制御
	以降適宜追加
[ COMPONENT ]:SIZE1   .c- 小さなパーツの共通スタイル指定
[ LAYOUT ]:SIZE2      .l- ブロックサイズの共通スタイル指定（このスタイル配下でCOMPONENTの上書きは許容）
[ PROJECT ]:SIZE3     .p- 固有のスタイル指定（このスタイル配下でCOMPONENT、LAYOUTの上書きは許容）
[ JAVASCRIPT ]:SIZE0  .js- javascriptで制御の場合別途追加（子要素を細かく制御する場合は全てに適用する必要は無し）

ブレイクポイント制御の場合はクラス名最終に識別名称を付加（ハイフン2つ）
***--pc
***--tb
***--sp 等

上記プレフィック以外のクラス指定の場合コンフリクトに注意。
*/

/* ==================================================

[ CONFIG ]

*/
:root {

}

/* ==================================================

[ RESET ]

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-align: inherit;
	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%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
img {
	vertical-align: top;
	width: 100%;
	height: auto;
	pointer-events: none;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}

/* ==================================================

[ HTML ]

*/
html {
	/* 1rem = 10px */
	font-size: calc(10 / 1540 * 100vw);
}
@media screen and (max-width: 1540px) {
	html {
		/* 1rem = 10px */
		font-size: 62.5%;
	}
}
@media screen and (max-width: 1220px) {
	html {
		/* 幅1220px 1rem = 10px */
		font-size: calc(10 / 1220 * 100vw);
	}
}
@media screen and (max-width: 768px) {
	html {
		/* 幅375px 1rem = 10px */
		font-size: calc(10 / 375 * 100vw);
	}
	html.orientation-h {
		font-size: calc(10 / 600 * 100vw);
	}
}

/* ==================================================

[ BODY ]

*/
body {
	background-repeat: repeat;
	background-image: url(/recruit/internship/special/assets/img/bg.png);
	background-color: #fff;
	background-size: 40rem 40rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.062em;
	color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
		line-height: 1.7;
		letter-spacing: 0;
	}
}

/* ==================================================

[ MAIN ]

*/
main {
	position: relative;
	overflow: hidden;
}

/* ==================================================

[ UTILITY ] visible

*/
@media screen and (max-width: 768px) {
	.u-v--pc {
		display: none;
	}
	.u-h--sp {
		display: none;
	}
}
@media screen and (min-width: 769px) {
	.u-v--sp {
		display: none;
	}
	.u-h--pc {
		display: none;
	}
}

/* ==================================================

[ LAYOUT ] CONTAINER

*/
.l-container {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0 9.3rem;
	max-width: 136.6rem;
}
@media screen and (max-width: 768px) {
	.l-container {
		padding: 0 2rem;
		max-width: initial;
	}
}

/* ==================================================

[ LAYOUT ] HEADER

*/
.l-header {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	font-family: "Inter", sans-serif;
}
.l-header .wrap {
	display: flex;
	justify-content: space-between;
	padding: 3rem 4rem 0 4rem;
}
.l-header .wrap .head {
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1.2;
}
.l-header .wrap .head .logo {
	margin-right: 3rem;
	width: 14rem;
}
.l-header .wrap nav {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 1.5rem;
}
.l-header .wrap .nav-content {
	display: flex;
}
.l-header .wrap .nav-content li {
	margin-right: 3rem;
	text-shadow: 0 0 8px rgba(23,118,185,0.95);
}
.l-header .wrap .nav-content li.is a {
display: flex;
	align-items: center;
}
.l-header .wrap .nav-content li.is a::after {
	content: '';
	display: block;
	margin-left: 0.8rem;
	width: 1rem;
	height: 1rem;
	background-image: url(/recruit/internship/special/assets/img/icon-blank.svg);
	background-size: contain;
}
.l-header .wrap .nav-entry {
	position: relative;
	display: flex;
	height: 5rem;
	background-image: linear-gradient(90deg, rgba(42,209,196,1) 0%, rgba(0,177,136,1) 100%);
}
.l-header .wrap .nav-entry::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(-90deg, rgba(42,209,196,1) 0%, rgba(0,177,136,1) 100%);
	opacity: 0;
}
.l-header .wrap .nav-entry span {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 2rem;
	font-weight: 700;
}
.l-header .wrap .nav-entry i {
	position: relative;
	display: block;
	width: 5rem;
	background-color: rgba(13,154,154,1);
	background-position: center;
	background-image: url(/recruit/internship/special/assets/img/icon-blank.svg);
	background-size: 1rem 1rem;
}
.l-header .megamenu-opener {
	display: none;
	position: absolute;
	top: 3rem;
	right: 3rem;
	width: 5rem;
	height: 5rem;
	background-image: linear-gradient(90deg, rgb(61 165 210) 0%, rgb(56 179 202) 100%);
}
.l-header .megamenu-opener i {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	margin-left: -1.5rem;
	width: 3rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all 0.3s ease;
}
.l-header .megamenu-opener i:nth-child(1) {
	margin-top: -1.1rem;
}
.l-header .megamenu-opener i:nth-child(2) {
	margin-top: -0.1rem;
}
.l-header .megamenu-opener i:nth-child(3) {
	margin-top: 0.9rem;
}
.l-header .megamenu-opener[aria-expanded="true"] i:nth-child(1) {
	margin-top: -0.1rem;
	transform: rotate(45deg);
}
.l-header .megamenu-opener[aria-expanded="true"] i:nth-child(2) {
	opacity: 0;
}
.l-header .megamenu-opener[aria-expanded="true"] i:nth-child(3) {
	margin-top: -0.1rem;
	transform: rotate(-45deg);
}

@media (any-hover: hover) {
	.l-header .wrap .nav-content li a {
		transition: opacity 0.3s ease;
	}
	.l-header .wrap .nav-content li a:hover {
		opacity: 0.5;
	}
	.l-header .wrap .nav-entry::before {
		transition: opacity 0.3s ease;
	}
	.l-header .wrap .nav-entry:hover::before {
		opacity: 1;
	}
	.l-header .wrap .nav-entry i {
		transition: background-color 0.3s ease;
	}
	.l-header .wrap .nav-entry:hover i {
		background-color: rgba(13,154,154,0.4);
	}
	.l-header .megamenu-opener {
		transition: opacity 0.3s ease;
	}
	.l-header .megamenu-opener:hover {
		opacity: 0.5;
	}
}

@media screen and (max-width: 1220px) {
	.l-header .wrap {
		padding-right: 11rem;
	}
	.l-header .wrap .nav-content {
		display: none;
	}
	.l-header .megamenu-opener {
		display: block;
	}
}

@media screen and (max-width: 768px) {
	.l-header .wrap {
		padding: 1.2rem 0 0 1rem;
	}
	.l-header .wrap .head {
		display: block;
		font-size: 1rem;
	}
	.l-header .wrap .head .logo {
		margin-right: 0;
		width: 13rem;
	}
	.l-header .wrap .head .site-name {
		margin-top: 0.2rem;
		padding-left: 0.5rem;
		letter-spacing: 0.1em;
		transform-origin: 0 0;
		transform: scale(0.9);
	}
	.l-header .wrap .head .site-name br {
		display: none;
	}
	.l-header .wrap .nav-entry {
		position: absolute;
		top: 2.2rem;
		right: 7rem;
		height: 3.6rem;
		font-size: 1.1rem;
	}
	.l-header .wrap .nav-entry span {
		padding: 0 1.2em;
		font-weight: 700;
	}
	.l-header .wrap .nav-entry i {
		width: 3.6rem;
	}
	.l-header .megamenu-opener {
		top: 2.2rem;
		right: 1.6rem;
		width: 3.6rem;
		height: 3.6rem;
		background-image: linear-gradient(90deg, rgb(61 165 210) 0%, rgb(56 179 202) 100%);
	}
	.l-header .megamenu-opener i {
		margin-left: -1.0rem;
		width: 2.0rem;
		height: 0.2rem;
	}
	.l-header .megamenu-opener i:nth-child(1) {
		margin-top: -0.7rem;
	}
	.l-header .megamenu-opener i:nth-child(2) {
		margin-top: -0.1rem;
	}
	.l-header .megamenu-opener i:nth-child(3) {
		margin-top: 0.5rem;
	}
}

/* ==================================================

[ LAYOUT ] MEGAMENU

*/
.l-megamenu {
	position: fixed;
	top: 8.8rem;
	right: 3.2rem;
	transform: translateY(-2rem);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-megamenu[aria-hidden="true"] {
	display: none;
}
.l-megamenu.show {
	transform: translateY(0);
	opacity: 1;
}
.l-megamenu .outer {
	position: relative;
	padding: 2.4rem 0 1rem 0;
}
.l-megamenu .outer::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(145deg, rgba(21,150,217,1) 0%, rgba(10,187,195,1) 100%);
	clip-path: polygon(0% 1.5rem, 77% 1.5rem, 85% 0%, 93% 1.5rem, 100% 1.5rem, 100% 100%, 0% 100%);
}
.l-megamenu nav {
	position: relative;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.5;
}
.l-megamenu nav a {
	display: block;
	padding: 0.6rem 2rem;
}
.l-megamenu nav li.is a {
	display: flex;
	align-items: center;
}
.l-megamenu nav li.is a::after {
	content: '';
	display: block;
	margin-left: 0.8rem;
	width: 1rem;
	height: 1rem;
	background-image: url(/recruit/internship/special/assets/img/icon-blank.svg);
	background-size: contain;
}

@media (any-hover: hover) {
	.l-megamenu nav a {
		transition: opacity 0.3s ease;
	}
	.l-megamenu nav a:hover {
		opacity: 0.5;
	}
}

@media screen and (min-width: 1221px) {
	.l-megamenu {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.l-megamenu {
		top: 6.5rem;
		right: 1rem;
	}
	.l-megamenu .outer::before {
		clip-path: polygon(0% 1.5rem, 76% 1.5rem, 84% 0%, 92% 1.5rem, 100% 1.5rem, 100% 100%, 0% 100%);
	}
}

/* ==================================================

[ LAYOUT ] FOOTER

*/
.l-footer {
	position: relative;
	z-index: 100;
	padding-top: 12rem;
	background-repeat: repeat;
	background-image: url(/recruit/internship/special/assets/img/bg.png);
	background-color: #fff;
	background-size: 40rem 40rem;
}
.l-footer::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #0294cc;
	mix-blend-mode: multiply;
}
.l-footer .l-container {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding: 0 4rem 9rem 4rem;
	max-width: initial;
}
.l-footer nav {
	font-weight: 700;
	font-size: 1.4rem;
}
.l-footer nav ul {
	display: flex;
}
.l-footer nav ul li {
	display: flex;
	margin-left: 3.5rem;
}
.l-footer nav a {
	display: flex;
	align-items: center;
}
.l-footer nav a::after {
	content: '';
	display: block;
	margin-left: 0.8rem;
	width: 1rem;
	height: 1rem;
	background-image: url(/recruit/internship/special/assets/img/icon-blank.svg);
	background-size: contain;
}
.l-footer small {
	display: block;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
}
.l-footer .loop {
	height: 20rem;
	background-repeat: repeat-x;
	background-image: url(/recruit/internship/special/assets/img/loop-word.svg);
	background-size: 208rem 20rem;
	opacity: 0.5;
	animation: calc(208 / 100 * 40s) linear 0s infinite animFooterLoopPC;
}

@media (any-hover: hover) {
	.l-footer nav a {
		transition: opacity 0.3s ease;
	}
	.l-footer nav a:hover {
		opacity: 0.5;
	}
}

@media screen and (max-width: 768px) {
	.l-footer {
		padding-top: 7rem;
	}
	.l-footer .l-container {
		display: block;
		padding: 0 2rem 4rem 2rem;
	}
	.l-footer nav {
		font-weight: 700;
		font-size: 1.4rem;
	}
	.l-footer nav ul {
		display: block;
	}
	.l-footer nav ul li {
		margin: 0 0 1.5rem 0;
	}
	.l-footer nav a::after {
		margin-left: 0.8rem;
	}
	.l-footer small {
		padding-top: 5rem;
		font-size: 1.1rem;
	}
	.l-footer .loop {
		height: calc(11.2 / 20 * 20rem);
		background-size: calc(11.2 / 20 * 208rem) calc(11.2 / 20 * 20rem);
		animation: calc(116.48 / 100 * 60s) linear 0s infinite animFooterLoopSP;
	}
}

/* ANIMATION */
@keyframes animFooterLoopPC {
	0%   { background-position: 0rem 0; }
	100% { background-position: 208rem 0; }
}
@keyframes animFooterLoopSP {
	0%   { background-position: 0rem 0; }
	100% { background-position: calc(11.2 / 20 * 208rem) 0; }
}

/* ==================================================

[ PROJECT ] MAIN

*/
.p-main {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 10rem;
	height: 100vh;
}
.device-sp .p-main {
	height: calc(var(--h) * 1px);
}
.p-main::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(105deg, #0071e2 0%, #41e8b4 70%, #1250b2 100%);
	mix-blend-mode: multiply;
}
.p-main .bg {
	position: absolute;
	inset: 0;
	background-repeat: repeat;
	background-image: url(/recruit/internship/special/assets/img/bg.png);
	background-color: #fff;
	background-size: 40rem 40rem;
	opacity: 0;
	transition: opacity 0.8s linear;
}
.loaded .p-main .bg {
	opacity: 1;
}
.p-main .bg::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(105deg, #0071e2 0%, #41e8b4 70%, #1250b2 100%);
	mix-blend-mode: multiply;
}
.p-main .bg > div {
	mix-blend-mode: luminosity;
}
.p-main .bg .loop {
	position: relative;
}
.p-main .bg .loop img {
	display: block;
	transform: translate3d(0,0,0);
	backface-visibility: hidden;
}
.os-ios .p-main .bg .loop img {
	transform: none;
	backface-visibility: initial;
}
.p-main .bg-pc {
	display: flex;
	position: absolute;
	top: -10rem;
	bottom: -10rem;
	transform: rotate(15deg);
}
.p-main .bg-pc .loop {
	display: flex;
	flex-direction: column;
}
.p-main .bg-pc .loop > div {
	flex-shrink: 0;
	padding-bottom: 1.8rem;
	height: 23.6rem;
}
.p-main .bg-pc .loop > div img {
	width: auto;
	height: 100%;
}
.p-main .bg-pc.bg-left {
	align-items: flex-end;
	right: 50%;
	margin-right: 38rem;
}
.p-main .bg-pc.bg-left .loop {
	align-items: flex-end;
	animation: 60s linear 0s infinite animMainLoopLeft;
}
.os-ios .p-main .bg-pc.bg-left .loop {
	animation-name: animMainLoopLeftSP;
}
.p-main .bg-pc.bg-right {
	align-items: flex-start;
	left: 50%;
	margin-left: 38rem;
}
.p-main .bg-pc.bg-right .loop {
	align-items: flex-start;
	animation: 60s linear 0s infinite animMainLoopRight;
}
.os-ios .p-main .bg-pc.bg-right .loop {
	animation-name: animMainLoopRightSP;
}
.p-main .bg-sp {
	display: none;
	position: absolute;
	left: -10rem;
	right: -10rem;
	transform: rotate(-15deg);
}
.p-main .bg-sp .loop {
	display: flex;
}
.p-main .bg-sp .loop > div {
	padding-right: 1rem;
	width: 23.1rem;
	flex-shrink: 0;
}
.p-main .bg-sp.bg-top {
	top: -1rem;
}
.p-main .bg-sp.bg-top .loop {
	animation: 60s linear 0s infinite animMainLoopTop;
}
.os-ios .p-main .bg-sp.bg-top .loop {
	animation-name: animMainLoopTopSP;
}
.p-main .bg-sp.bg-bottom {
	bottom: -3rem;
}
.p-main .bg-sp.bg-bottom .loop {
	justify-content: flex-end;
	animation: 60s linear 0s infinite animMainLoopBottom;
}
.os-ios .p-main .bg-sp.bg-bottom .loop {
	animation-name: animMainLoopBottomSP;
}
.p-main .wrap {
	position: relative;
	width: 100%;
	opacity: 0;
	transition: opacity 0.8s linear 1s;
}
.loaded .p-main .wrap {
	opacity: 1;
}
.p-main h1 {
	margin: 0 auto;
	max-width: 42.8rem;
}
.p-main .lead {
	margin-top: 5rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 2.28;
}
.p-main .scroll {
	display: none;
	position: relative;
	margin: 0 auto;
	width: 10rem;
}
.p-main .scroll .base {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	animation: 30s linear 0s infinite animScrollLoop;
}
.p-main .scroll .arrow {
	position: relative;
}

@media screen and (max-width: 768px) {
	.p-main {
		padding-bottom: 0;
		padding-top: 8rem;
	}
	.p-main::before,
	.p-main .bg::before {
		background-image: linear-gradient(105deg, #0e85c9 0%, #3edeaf 85%, #2fadad 140%);
	}
	.p-main .bg-pc {
		display: none;
	}
	.p-main .bg-pc .loop > div {
		padding-bottom: 1rem;
		height: 12rem;
	}
	.p-main .bg-pc.bg-left {
		right: auto;
		left: -3rem;
		margin: 0;
	}
	.p-main .bg-pc.bg-right {
		left: auto;
		right: -3rem;
		margin: 0;
	}
	.p-main .bg-pc.bg-left .loop {
		animation: 60s linear 0s infinite animMainLoopLeftH;
	}
	.os-ios .p-main .bg-pc.bg-left .loop {
		animation-name: animMainLoopLeftSPH;
	}
	.p-main .bg-pc.bg-right .loop {
		animation: 60s linear 0s infinite animMainLoopRightH;
	}
	.os-ios .p-main .bg-pc.bg-right .loop {
		animation-name: animMainLoopRightSPH;
	}
	.p-main .bg-sp {
		display: block;
	}
	.p-main h1 {
		max-width: calc(var(--scale-h) * 31rem);
	}
	.p-main .lead {
		margin-top: calc(var(--scale-h) * 2.5rem);
		font-size: calc(var(--scale-h) * 1.4rem);
	}
	.p-main .scroll {
		display: block;
		margin-top: calc(var(--scale-h) * 3rem);
		width: calc(var(--scale-h) * 10rem);
	}
	.orientation-h .p-main .bg-pc {
		display: flex;
	}
	.orientation-h .p-main .bg-sp {
		display: none;
	}
	.orientation-h .p-main {
		padding-top: min(10vh, 8rem);
	}
	.orientation-h .device-sp .p-main {
		padding-top: min(calc(var(--h) * 0.1 * 1px), 8rem);
	}
	.orientation-h .p-main h1 {
		max-width: min(60vh, 31rem);
	}
	.orientation-h .device-sp .p-main h1 {
		max-width: min(calc(var(--h) * 0.6 * 1px), 31rem);
	}
	.orientation-h .lead br {
		display: none;
	}
	.orientation-h .p-main .scroll {
		width: min(20vh, 10rem);
	}
	.orientation-h .device-sp .p-main .scroll {
		width: min(calc(var(--h) * 0.2 * 1px), 10rem);
	}
}

/* ANIMATION */
@keyframes animMainLoopLeft {
	0%   { transform: translate3d(0,0,0); }
	100% { transform: translate3d(0,calc(23.6 * 5 * 1rem),0); }
}
@keyframes animMainLoopRight {
	0%   { transform: translateY(0); }
	100% { transform: translateY(calc(-23.6 * 5 * 1rem)); }
}
@keyframes animMainLoopTop {
	0%   { transform: translate3d(0,0,0); }
	100% { transform: translate3d(calc(-23.1 * 5 * 1rem),0,0); }
}
@keyframes animMainLoopBottom {
	0%   { transform: translate3d(0,0,0); }
	100% { transform: translate3d(calc(23.1 * 5 * 1rem),0,0); }
}

@keyframes animMainLoopLeftSP {
	0%   { top: 0; }
	100% { top: calc(23.6 * 5 * 1rem); }
}
@keyframes animMainLoopRightSP {
	0%   { bottom: 0; }
	100% { bottom: calc(23.6 * 5 * 1rem); }
}
@keyframes animMainLoopTopSP {
	0%   { left: 0; }
	100% { left: calc(-23.1 * 5 * 1rem); }
}
@keyframes animMainLoopBottomSP {
	0%   { right: 0; }
	100% { right: calc(-23.1 * 5 * 1rem); }
}

@keyframes animMainLoopLeftH {
	0%   { transform: translate3d(0,0,0); }
	100% { transform: translate3d(0,calc(12 * 5 * 1rem),0); }
}
@keyframes animMainLoopRightH {
	0%   { transform: translateY(0); }
	100% { transform: translateY(calc(-12* 5 * 1rem)); }
}
@keyframes animMainLoopLeftSPH {
	0%   { top: 0; }
	100% { top: calc(12 * 5 * 1rem); }
}
@keyframes animMainLoopRightSPH {
	0%   { bottom: 0; }
	100% { bottom: calc(12 * 5 * 1rem); }
}

/* ==================================================

[ PROJECT ] SCROLL

*/
.p-scroll {
	position: fixed;
	z-index: 10;
	bottom: 3.5rem;
	left: 50%;
	margin-left: -5rem;
	width: 10rem;
	opacity: 0;
	transition: opacity 0.8s linear 1s;
}
.loaded .p-scroll {
	opacity: 1;
}
.p-scroll .base {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	animation: 30s linear 0s infinite animScrollLoop;
}
.p-scroll .arrow {
	position: relative;
}

/* ANIMATION */
@keyframes animScrollLoop {
	0%   { transform: rotate(0); }
	100% { transform: rotate(-360deg); }
}

@media screen and (max-width: 768px) {
	.p-scroll {
		display: none;
	}
}

/* ==================================================

[ PROJECT ] CONTENT

*/
.p-content {
	position: relative;
}
.p-content::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(to left top, #2bc9aa, #005cd9);
}
.p-content .wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.p-content .box {
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 2rem;
	flex-basis: 50%;
	height: 56.8rem;
}
.p-content .box button {
	display: block;
	position: absolute;
	z-index: 1;
	inset: 0;
}
.p-content .thumb {
	position: absolute;
	inset: 0;
}
.p-content .thumb img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.p-content .card {
	position: relative;
	flex-basis: 100%;
	padding: 2.5rem;
	line-height: 1.5;
	color: #fff;
}
.p-content .card::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(145deg, #29d5ad 0%, #3071c9 100%);
	border-radius: 0.8rem;
	opacity: 0.95;
}
.p-content .card .episode {
	position: relative;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 0.8rem;
}
.p-content .card .episode span {
	position: relative;
	font-size: 1.2rem;
	font-family: "Inter", sans-serif;
}
.p-content .card h2 {
	position: relative;
	min-height: 4rem;
	font-weight: 700;
	font-size: 2.0rem;
}
.p-content .card .person {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.p-content .card .person dl {
	font-weight: 500;
	font-size: 1.1rem;
}
.p-content .card .person dt {
	margin-bottom: 0.5rem;
}
.p-content .card .person .name {
	padding-right: 2rem;
	font-weight: 700;
}
.p-content .card .person .name em {
	font-size: 1.6rem;
}
.p-content .card .person .portrait span {
	overflow: hidden;
	display: block;
	width: 5.6rem;
	border-radius: 50%;
}

@media (any-hover: hover) {
	.p-content .thumb {
		transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
	}
	.p-content .box:hover .thumb {
		transform: scale(1.1);
	}
}

@media screen and (max-width: 768px) {
	.p-content::before {
		content: none;
	}
	.p-content .wrap {
		display: block;
	}
	.p-content .box {
		padding: 1.6rem;
		width: 100%;
		height: 54rem;
	}
	.p-content .card {
		padding: 2rem 1.6rem;
		line-height: 1.5;
	}
	.p-content .card .episode {
		position: relative;
		font-size: 1rem;
		font-weight: 600;
		line-height: 1.5;
		margin-bottom: 0.8rem;
	}
	.p-content .card .episode span {
		position: relative;
		font-size: 1.1rem;
		font-family: "Inter", sans-serif;
	}
	.p-content .card h2 {
		min-height: 4.2rem;
		font-size: 1.65rem;
	}
	.p-content .card .person dl {
		font-size: 1rem;
	}
	.p-content .card .person dt {
		margin-bottom: 1rem;
	}
	.p-content .card .person .portrait span {
		width: 4.8rem;
	}
}

/* ==================================================

[ PROJECT ] EPISODE

*/
.p-episode {
	display: none;
	position: fixed;
	z-index: 9990;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-repeat: repeat;
	background-image: url(/recruit/internship/special/assets/img/bg.png);
	background-color: #fff;
	background-size: 40rem 40rem;
}
.p-episode[aria-hidden="false"] {
	display: block;
}
.p-episode .header {
	position: fixed;
	z-index: 9991;
	top: 0;
	left: 0;
	padding-top: 2rem;
	width: 100%;
}
.p-episode .header h2 {
	margin: 0 auto;
	width: 14rem;
}
.p-episode .header .closer {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 9rem;
	height: 9rem;
	background-image: linear-gradient(90deg, #2ad1c4 0%, #00b188 100%);
}
.p-episode .header .closer i {
	position: relative;
	display: block;
	width: 3.6rem;
	height: 3.6rem;
	transform: rotate(45deg);
}
.p-episode .header .closer i::before,
.p-episode .header .closer i::after {
	content: '';
	display: block;
	position: absolute;
	background-color: #fff;
}
.p-episode .header .closer i::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
}
.p-episode .header .closer i::after {
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
}
.p-episode section {
	display: none;
	width: 100%;
	height: 100%;
}
.p-episode section[aria-hidden="false"] {
	display: block;
}
.p-episode .kv {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 50%;
}
.p-episode .kv img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.p-episode .scoll {
	position: relative;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}
.p-episode .wrapper {
	overflow: hidden;
	position: relative;
	padding: 5rem 4rem 6rem 4rem;
	width: 50%;
}
.p-episode .wrapper > * {
	position: relative;
}
.p-episode .scoll::before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to left top, #41e8b4, #0071e2);
	mix-blend-mode: multiply;
}
.p-episode .head .episode {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.5;
}
.p-episode .head .episode span {
	font-size: 1.5rem;
	font-family: "Inter", sans-serif;
}
.p-episode .head h2 {
	display: flex;
	align-items: center;
	min-height: 14rem;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.5;
}
.p-episode .person {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	line-height: 1.5;
}
.p-episode .person::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -0.5rem;
	width: 5rem;
	height: 1rem;
	background-image: url(/recruit/internship/special/assets/img/episode-ornament.svg);
	background-size: contain;
}
.p-episode .person dl {
	margin-right: 2rem;
	font-weight: 500;
	font-size: 1.1rem;
}
.p-episode .person dt {
	margin-bottom: 0.5rem;
}
.p-episode .person .name {
	padding-right: 2rem;
	font-weight: 700;
}
.p-episode .person .name em {
	font-size: 1.6rem;
}
.p-episode .person .portrait span {
	overflow: hidden;
	display: block;
	width: 5.6rem;
	border-radius: 50%;
}
.p-episode .detail h3 {
	margin: 5rem 0 4rem 0;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.6;
}
.p-episode .detail .lead {
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 2.28;
}
.p-episode .detail .note {
	margin-top: 3rem;
	font-size: 1.2rem;
	line-height: 2;
}
.p-episode .detail .note li {
	position: relative;
	margin-bottom: 1.2rem;
	padding-left: 3.5em;
}
.p-episode .detail .note li:last-child {
	margin-bottom: 0;
}
.p-episode .detail .note li i {
	position: absolute;
	top: 0;
	left: 0;
	text-indent: -0.5em;
}
.p-episode .offtime {
	position: relative;
	margin-top: 4rem;
	padding: 2rem;
}
.p-episode .offtime .outer {
	position: relative;
	padding: 2rem;
}
.p-episode .offtime::before,
.p-episode .offtime .outer::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #002a64;
	opacity: 0.25;
}
.p-episode .offtime .inner {
	position: relative;
}
.p-episode .offtime h3 {
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.6;
}
.p-episode .offtime .row {
	display: flex;
}
.p-episode .offtime .lead {
	flex: 1;
	padding-right: 2.4rem;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.8;
}
.p-episode .offtime .caption {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px dashed #fff;
	text-align: right;
	font-size: 1.1rem;
	line-height: 1.5;
}
.p-episode .offtime .image {
	flex-basis: 18rem;
	margin-top: 0.3rem;
}

@media (any-hover: hover) {
	.p-episode .header .closer i {
		transition: opacity 0.3s ease;
	}
	.p-episode .header .closer:hover i {
		opacity: 0.5;
	}
}

/**/
.p-episode,
.p-episode .header,
.p-episode .kv,
.p-episode .scoll::before {
	opacity: 0;
	will-change: transform;
	transition: opacity 0.4s linear;
}
.p-episode.show,
.p-episode.show .header,
.p-episode.show .kv,
.p-episode.show .scoll::before {
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.p-episode::before {
		content: none;
	}
	.p-episode .header {
		padding-top: 1.2rem;
	}
	.p-episode .header h2 {
		width: 13rem;
	}
	.p-episode .header .closer {
		width: 8rem;
		height: 8rem;
	}
	.p-episode .kv {
		position: fixed;
		top: 0;
		right: 0;
		bottom: auto;
		left: 0;
		height: min(58rem, 100vh);
	}
	.p-episode .scoll {
		padding-top: min(58rem, 100vh);
	}
	.p-episode .scoll::before {
		content: none;
	}
	.p-episode .wrapper {
		position: relative;
		padding: 3rem 2rem 6rem 2rem;
		width: 100%;
		background-repeat: repeat;
		background-image: url(/recruit/internship/special/assets/img/bg.png);
		background-color: #fff;
		background-size: 40rem 40rem;
	}
	.p-episode .wrapper::before {
		content: '';
		display: block;
		position: absolute;
		inset: 0;
		background-image: linear-gradient(100deg, #006bd3 0%, #3ddaaa 100%);
		mix-blend-mode: multiply;
	}
	.p-episode .head .episode {
		font-size: 1.1rem;
	}
	.p-episode .head .episode span {
		font-size: 1.2rem;
	}
	.p-episode .head h2 {
		display: block;
		margin: 2rem 0 3rem 0;
		min-height: initial;
		font-size: 2.4rem;
	}
	.p-episode .person {
		justify-content: space-between;
		padding-top: 3rem;
	}
	.p-episode .person::before {
		top: 0;
		margin-top: 0;
	}
	.p-episode .person dl {
		margin-right: 1rem;
		font-size: 1rem;
	}
	.p-episode .person .portrait span {
		width: 4.8rem;
	}
	.p-episode .detail h3 {
		margin: 5rem 0 4rem 0;
	}
	.p-episode .detail h3 br {
		display: none;
	}
	.p-episode .detail .lead {
		font-size: 1.5rem;
		font-weight: 500;
		line-height: 2.1;
	}
	.p-episode .offtime {
		margin-top: 4rem;
		padding: 2rem;
	}
	.p-episode .offtime .outer {
		position: relative;
		padding: 2rem 2rem 3rem 2rem;
	}
	.p-episode .offtime h3 {
		margin-bottom: 1.5rem;
	}
	.p-episode .offtime .row {
		display: block;
	}
	.p-episode .offtime .lead {
		font-weight: 500;
		padding-right: 0;
	}
	.p-episode .offtime .caption {
		margin-top: 2rem;
		margin-bottom: 1.5rem;
		padding-top: 2rem;
		text-align: center;
	}
	.p-episode .offtime .image {
		margin: 0 auto;
		max-width: 20rem;
	}
}
