  @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/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;
	}
}

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

[ UTILITY ] ENGLISH

*/
.u-en {
	font-family: "Inter", sans-serif;
}

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

[ UTILITY ] INVIEW

*/
.js-inview {
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}
.js-inview.u-inview {
	opacity: 1;
	transform: translateY(0);
}

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

[ COMPONENT ] HEADING

*/
.c-heading {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 5.2rem;
	line-height: 1;
}
.c-heading span {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -1px 0 0 -1px;
	width: 6.4rem;
	height: 6.4rem;
	border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
	.c-heading {
		font-size: 3.4rem;
	}
	.c-heading span {
		width: 4rem;
		height: 4rem;
	}
}

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

[ COMPONENT ] VERTICAL HEADING

*/
.c-vertical-heading {
	display: flex;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 3.3rem;
	line-height: 1;
}
.c-vertical-heading span {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -1px;
	width: 4rem;
	height: 4rem;
	border: 1px solid #fff;
}

@media screen and (max-width: 768px) {
	.c-vertical-heading {
		font-size: 2.4rem;
	}
	.c-vertical-heading span {
		width: 3rem;
		height: 3rem;
	}
}

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

[ COMPONENT ] HEAD ORNAMENT

*/
.c-head-ornament::after {
	content: '';
	display: block;
	margin: 4rem auto 0 auto;
	width: 5rem;
	height: 1rem;
	background-image: url(/recruit/internship/assets/img/ornament-head.svg);
	background-size: contain;
}

@media screen and (max-width: 768px) {
	.c-head-ornament::after {
		margin: 2rem auto 0 auto;
		width: 4rem;
		height: 0.8rem;
	}
}

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

[ 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.sp a {
display: flex;
	align-items: center;
}
.l-header .wrap .nav-content li.sp a::after {
	content: '';
	display: block;
	margin-left: 0.8rem;
	width: 1rem;
	height: 1rem;
	background-image: url(/recruit/internship/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/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.sp a {
	display: flex;
	align-items: center;
}
.l-megamenu nav li.sp a::after {
	content: '';
	display: block;
	margin-left: 0.8rem;
	width: 1rem;
	height: 1rem;
	background-image: url(/recruit/internship/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;
}
.l-footer .l-container {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	padding-bottom: 9rem;
}
.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/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/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 .l-container {
		display: block;
		padding-bottom: 4rem;
	}
	.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; }
}

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

[ LAYOUT ] BACKGROUND

*/
.l-bg {
	overflow: hidden;
	position: absolute;
	inset: 0;
	mix-blend-mode: multiply;
}
.l-bg div {
	height: 203.8rem;
	background-image: linear-gradient(to left top, #35e0cc, #428aeb);
}
.l-bg div:nth-child(even) {
	background-image: linear-gradient(to right top, #428aeb, #35e0cc);
}

@media screen and (max-width: 768px) {
	.l-bg div {
		height: 102rem;
	}
}

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

[ PROJECT ] MAIN

*/
.p-main {
	position: absolute;
	top: 0;
	left: 0;
	height: 100dvh;
	width: 100%;
}
.device-sp .p-main {
	height: calc(var(--h) * 1px);
}
.p-main .l-container {
	position: relative;
	z-index: 1;
	max-width: 156.6rem;
	height: 100%;
}
.p-main .outer {
	position: absolute;
	bottom: 6rem;
	left: 4rem;
	opacity: 0;
	transition: opacity 0.6s linear 1.2s;
}
.loaded .p-main .outer {
	opacity: 1;
}
.p-main h1 {
	margin-bottom: 4rem;
	width: 50.5rem;
}
.p-main h2 {
	width: 16.8rem;
}

@media screen and (max-width: 768px) {
	.p-main {
		position: static;
		height: auto !important;
		padding-top: max(14vh, 9rem);
	}
	.device-sp .p-main {
		padding-top: max(calc(var(--h) * 0.14 * 1px), 9rem);
	}
	.p-main .l-container {
		max-width: initial;
		height: auto;
	}
	.p-main .outer {
		position: static;
	}
	.p-main h1 {
		margin-bottom: 2rem;
		width: 36.5rem;
		width: calc(var(--scale-h) * 36.5rem);
	}
	.p-main h2 {
		width: 16.8rem;
		width: calc(var(--scale-h) * 16.8rem);
	}
	/**/
	.orientation-h .p-main {
		position: absolute;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100%;
	}
	.orientation-h .device-sp .p-main {
		height: calc(var(--h) * 1px);
	}
	.orientation-h .p-main h1 {
		width: 70vh;
	}
	.orientation-h .device-sp .p-main h1 {
		width: calc(var(--h) * 0.7 * 1px);
	}
	.orientation-h .p-main h2 {
		width: 35vh;
	}
	.orientation-h .device-sp .p-main h2 {
		width: calc(var(--h) * 0.35 * 1px);
	}
}

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

[ PROJECT ] KV

*/
.p-kv {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 12rem;
	min-height: 100dvh;
}
.device-sp .p-kv {
	min-height: calc(var(--h) * 1px);
}
.p-kv .cube {
	position: relative;
	top: 7rem;
	right: -25.6rem;
	width: 125rem;
	transform: translateY(2rem);
	opacity: 0;
	transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.8s linear;
}
.loaded .p-kv .cube {
	transform: translateY(0);
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.p-kv {
		display: block;
		margin-bottom: 5rem;
		min-height: initial !important;
	}
	.p-kv .cube {
		position: static;
		margin: 0 -16.2rem 0 -10rem;
		width: auto;
		transform: translateY(3rem);
	}
	/**/
	.orientation-h .p-kv {
		display: flex;
		align-items: center;
		padding-top: 4rem;
	}
	.orientation-h .p-kv .cube {
		margin: 0 -9rem 0 0;
		width: 74vw;
	}
}

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

[ PROJECT ] SCROLL

*/
.p-scroll {
	position: absolute;
	z-index: 10;
	top: 100dvh;
	right: 4rem;
	display: flex;
	align-items: center;
	margin-top: -5rem;
	font-family: "Inter", sans-serif;
	font-weight: 600;
	font-size: 1.3rem;
	line-height: 1.1;
	opacity: 0;
	transition: opacity 0.6s linear 1.2s;
	cursor: pointer;
}
.device-sp .p-scroll {
	top: calc(var(--h) * 1px);
}
.loaded .p-scroll {
	opacity: 1;
}
.p-scroll::after {
	content: '';
	display: block;
	margin-left: 0.5rem;
	width: 1.2rem;
	height: 1.2rem;
	background-image: url(/recruit/internship/assets/img/icon-arrow-scroll.svg);
	background-size: contain;
}

@media screen and (max-width: 768px) {
	.p-scroll {
		right: auto;
		left: 2rem;
		margin-top: -5rem;
		font-size: 1.1rem;
	}
	.orientation-h .p-scroll {
		right: 2rem;
		left: auto;
		margin-top: -3rem;
	}
}

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

[ PROJECT ] MESSAGE

*/
.p-message {
	position: relative;
	margin-bottom: 7rem;
}
.p-message .cube {
	position: absolute;
	top: 2rem;
	left: -19.5rem;
	width: 76rem;
}
.p-message .heading {
	position: absolute;
	top: 0;
	left: 100%;
	margin-left: -4rem;
}
.p-message .heading .c-vertical-heading {
	transform-origin: 0% 0%;
	transform: rotate(90deg);
}
.p-message .l-container {
	padding-left: 63rem;
}
.p-message .lead {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 2;
}
.p-message .lead > div {
	margin-bottom: 1.6em;
}
.p-message .lead .indent {
	text-indent: -0.5em;
}
.p-message .loop {
	position: relative;
	margin-top: 7rem;
	height: 20rem;
	background-repeat: repeat-x;
	background-image: url(/recruit/internship/assets/img/loop-word.svg);
	background-size: 208rem 20rem;
	opacity: 0.5;
	animation: calc(208 / 100 * 40s) linear 0s infinite animMessageLoopPC;
}

@media screen and (max-width: 768px) {
	.p-message {
		padding-top: 33rem;
		margin-bottom: 3rem;
	}
	.p-message .cube {
		top: -3rem;
		left: -12.9rem;
		width: 38rem;
	}
	.p-message .heading {
		margin-left: -2rem;
	}
	.p-message .l-container {
		padding-left: 2rem;
	}
	.p-message .lead {
		font-size: 1.5rem;
		line-height: 2.1;
	}
	.p-message .loop {
		margin-top: 5rem;
		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 animMessageLoopSP;
	}
}

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

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

[ PROJECT ] FEATURE

*/
.p-feature {
	position: relative;
	margin-bottom: 7rem;
}
.p-feature .cube {
	position: absolute;
	top: 2rem;
	right: -7rem;
	width: 38rem;
}
.p-feature .heading {
	position: absolute;
	top: -4rem;
	left: 4rem;
}
.p-feature .c-vertical-heading {
	transform-origin: 0% 100%;
	transform: rotate(90deg);
}
.p-feature .head {
	margin-bottom: 3rem;
}
.p-feature .head h2 {
	margin: 0 auto;
	width: 40rem;
}
.p-feature .lead {
	margin-bottom: 6rem;
	text-align: center;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 2;
}
.p-feature .list ol {
	display: flex;
	gap: 5rem;
}
.p-feature .list li {
	width: 100%;
}
.p-feature .list .block {
	position: relative;
	height: 31rem;
	background-image: linear-gradient(0deg, rgba(0,167,216,1) 0%, rgba(4,126,190,1) 100%);
}
.p-feature .list .block .number {
	position: absolute;
	top: -0.1em;
	right: 0;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 7.1rem;
	line-height: 1;
	opacity: 0.23;
}
.p-feature .list .block dl {
	display: flex;
	align-items: center;
	padding: 1.6rem 0 0 12%;
}
.p-feature .list .block dt {
	width: 6rem;
}
.p-feature .list .block dd {
	padding: 4rem 0 0 2rem;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.7;
}
.p-feature .list .block h3 {
	position: absolute;
	bottom: 0;
	left: 0;
}
.p-feature .list .block h3 img {
	width: auto;
	height: 8rem;
}

@media screen and (max-width: 768px) {
	.p-feature {
		margin-bottom: 5.6rem;
		padding-top: 9.5rem;
	}
	.p-feature .cube {
		top: -4rem;
		right: -3.3rem;
		width: 19.2rem;
	}
	.p-feature .heading {
		top: -3rem;
		left: 2rem;
	}
	.p-feature .head {
		margin-bottom: 2.5rem;
	}
	.p-feature .head h2 {
		width: 20rem;
	}
	.p-feature .lead {
		margin-bottom: 3.5rem;
		font-size: 1.4rem;
		line-height: 2.1;
	}
	.p-feature .list ol {
		display: block;
	}
	.p-feature .list li {
		margin-bottom: 1.2rem;
	}
	.p-feature .list .block {
		height: 26.4rem;
	}
	.p-feature .list .block h3 img {
		height: 6.4rem;
	}
	.orientation-h .p-feature .list .block {
		padding-right: 12%;
	}
	.orientation-h .p-feature .list .block br {
		display: none;
	}
}

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

[ PROJECT ] RECOMMEND

*/
.p-recommend {
	position: relative;
	margin-bottom: 8rem;
}
.p-recommend .outer {
	position: relative;
	padding: 4rem 0 8rem 0;
}
.p-recommend .outer::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #002a64;
	opacity: 0.25;
}
.p-recommend .head {
	position: relative;
	margin-bottom: 3rem;
}
.p-recommend .head h2 {
	margin: 0 auto;
	width: 26rem;
}
.p-recommend .items {
	position: relative;
	padding: 0 5rem;
}
.p-recommend .slider {
	margin: 0 auto;
	max-width: 97.2rem;
}
.p-recommend .item {
	padding: 0 1.6rem;
}
.p-recommend .item .frame {
	padding: 1.2rem;
	background-image: url(/recruit/internship/assets/img/recommend-frame01.png);
	background-size: 100% 100%;
}
.p-recommend .item.odd .frame {
	background-image: url(/recruit/internship/assets/img/recommend-frame02.png);
}
.p-recommend .item .base {
	display: flex;
	align-items: center;
	padding: 0 0 0 3.6rem;
	min-height: 16.6rem;
	background-color: #fff;
}
.p-recommend .item p {
	font-weight: 700;
	font-size: 2.1rem;
	line-height: 1.57;
	color: #38b2cc;
}
.p-recommend .item p em {
	background-image: linear-gradient(transparent 66%, #ffe553 66%, #ffe553 100%);
}
.p-recommend .slick-arrow {
	overflow: hidden;
	position: absolute;
	z-index: 10;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -3rem;
	width: 6rem;
	height: 6rem;
}
.p-recommend .slick-arrow::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 6px 5px 0;
	border-color: transparent #fff transparent transparent;
}
.p-recommend .slick-prev {
	left: -3rem;
	background-image: linear-gradient(270deg, #33dbd5 0%, #2676d3 100%);
}
.p-recommend .slick-next {
	right: -3rem;
	background-image: linear-gradient(90deg, #33dbd5 0%, #2676d3 100%);
}
.p-recommend .slick-prev::before {
	transform: rotate(0deg);
}
.p-recommend .slick-next::before {
	transform: rotate(180deg);
}
.p-recommend .slick-dots {
	position: absolute;
	bottom: -4.6rem;
	left: 0;
	display: flex;
	justify-content: center;
	width: 100%;
	line-height: 0;
}
.p-recommend .slick-dots li {
	padding: 0 0.4rem;
}
.p-recommend .slick-dots button {
	overflow: hidden;
	width: 3rem;
	height: 0.8rem;
	background-color: rgba(255,255,255,0.7);
	text-indent: -999em;
}
.p-recommend .slick-dots .slick-active button {
	background-image: linear-gradient(90deg, #33dbd5 0%, #2676d3 100%);
}

@media (any-hover: hover) {
	.p-recommend .slick-arrow {
		transition: opacity 0.3s ease;
	}
	.p-recommend .slick-arrow:hover {
		opacity: 0.6;
	}
}

@media screen and (max-width: 768px) {
	.p-recommend {
		margin-bottom: 8rem;
	}
	.p-recommend .l-container {
		padding: 0;
	}
	.p-recommend .outer {
		padding: 4rem 0 11rem 0;
	}
	.p-recommend .head {
		margin-bottom: 3.5rem;
	}
	.p-recommend .head h2 {
		width: 22rem;
	}
	.p-recommend .items {
		padding: 0;
	}
	.p-recommend .slider {
		margin: 0 -28rem;
		max-width: initial;
	}
	.p-recommend .item {
		padding: 0 0.7rem;
	}
	.p-recommend .item .base {
		padding: 0 0 0 5rem;
	}
	.p-recommend .item p {
		font-size: 2rem;
		line-height: 1.65;
	}
	.p-recommend .slick-arrow {
		top: 100%;
		margin-top: 3.2rem;
		width: 4.8rem;
		height: 4.8rem;
	}
	.p-recommend .slick-prev {
		left: 2rem;
	}
	.p-recommend .slick-next {
		right: 2rem;
	}
	.p-recommend .slick-dots {
		bottom: -6rem;
	}
	.p-recommend .slick-dots button {
		height: 0.6rem;
	}
}

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

[ PROJECT ] PICKUP

*/
.p-pickup {
	position: relative;
	margin-bottom: 12rem;
}
.p-pickup .bnr-special {
	display: block;
	position: relative;
	margin: 0 auto;
	width: 68.6rem;
	border: 0.3rem solid #fff;
}
.p-pickup .bnr-special .label {
	position: absolute;
	z-index: 1;
	top: -1.8rem;
	left: -3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0.2em;
	width: 7.5rem;
	height: 7.5rem;
	border: 0.3rem solid #fff;
	border-radius: 50%;
	background-image: linear-gradient(145deg, #00ed6d 0%, #3664ff 100%);
	text-align: center;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.1;
}
.p-pickup .bnr-special .base {
	overflow: hidden;
	position: relative;
	display: block;
	padding-top: 4rem;
	height: 26.6rem;
	text-align: center;
}
.p-pickup .bnr-special .base::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: url(/recruit/internship/assets/img/bnr-special-bg.jpg);
	background-size: cover;
}
.p-pickup .bnr-special .base > * {
	position: relative;
}
.p-pickup .bnr-special .title {
	display: block;
	margin: 0 auto;
	width: 44rem;
}
.p-pickup .bnr-special .text {
	display: block;
	margin-top: 1.8rem;
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
.p-pickup .bnr-special .bar {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 5rem;
	background-image: linear-gradient(90deg, #00cebe 0%, #004dfa 100%);
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
}
.p-pickup .bnr-special .bar i {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 100%;
	background-color: rgba(13,83,154,0.4);
}
.p-pickup .bnr-special .bar i::after {
	content: '';
	display: block;
	width: 1rem;
	height: 1rem;
	background-image: url(/recruit/internship/assets/img/icon-blank.svg);
	background-size: contain;
}

@media (any-hover: hover) {
	.p-pickup .bnr-special .base::before {
		transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
	}
	.p-pickup .bnr-special:hover .base::before {
		transform: scale(1.1);
	}
}

@media screen and (max-width: 768px) {
	.p-pickup {
		margin-bottom: 15rem;
		padding: 0 2rem;
	}
	.p-pickup .bnr-special {
		width: auto;
		background-image: url(/recruit/internship/assets/img/bnr-special-bg-sp.jpg);
	}
	.p-pickup .bnr-special .label {
		top: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.p-pickup .bnr-special .base {
		padding-top: 6.6rem;
		height: 34.6rem;
	}
	.p-pickup .bnr-special .title {
		width: 28rem;
	}
	.p-pickup .bnr-special .text {
		margin-top: 3rem;
		font-size: 1.2rem;
		line-height: 2;
		letter-spacing: 0.06em;
	}
}

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

[ PROJECT ] PROGRAM

*/
.p-program {
	position: relative;
	margin-bottom: 12rem;
}
.p-program .loop {
	position: absolute;
	top: -4.4rem;
	left: 0;
	width: 100%;
	height: 15rem;
	background-repeat: repeat-x;
	background-image: url(/recruit/internship/assets/img/program-loop.svg);
	background-size: 246.6rem 15rem;
	opacity: 0.35;
	animation: calc(246.6 / 100 * 40s) linear 0s infinite animProgramLoopPC;
}
.p-program .cube {
	position: absolute;
	top: -33rem;
	left: -31.3rem;
	width: 44rem;
}
.p-program .head {
	margin-bottom: 6rem;
}
.p-program .tabs-course {
	position: relative;
	z-index: 1;
}
.p-program .tabs-course ul {
	display: flex;
	gap: 1rem;
	height: 11rem;
	text-align: center;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.3;
}
.p-program .tabs-course li {
	display: flex;
	width: 100%;
	height: 100%;
}
.p-program .tabs-course button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 8.8rem;
	background-image: linear-gradient(125deg, rgba(25,128,193,1) 0%, rgba(47,185,247,1) 100%);
	transition: all 0.4s ease;
}
.p-program .tabs-course button::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(125deg, rgba(20,201,255,1) 0%, rgba(0,208,160,1) 100%);
	opacity: 0;
}
.p-program .tabs-course button em {
	display: block;
	position: relative;
	opacity: 0.7;
}
.p-program .tabs-course button[aria-expanded="true"] {
	height: 100%;
	pointer-events: none;
}
.p-program .tabs-course button[aria-expanded="true"]::before {
	opacity: 1;
}
.p-program .tabs-course button[aria-expanded="true"] em {
	opacity: 1;
}
.p-program .tabs-course-top li {
	align-items: flex-end;
}
.p-program .tabs-course-top button::before {
	bottom: -2.5rem;
	clip-path: polygon(0% 0%, 100% 0%, 100% 11rem, 62% 11rem, 50% 100%, 38% 11rem, 0% 11rem);
}
.p-program .tabs-course-bottom button::before {
	top: -2.5rem;
	clip-path: polygon(0% 2.5rem, 38% 2.5rem, 50% 0%, 62% 2.5rem, 100% 2.5rem, 100% 100%, 0% 100%);
}
.p-program .content {
	position: relative;
	padding: 4.5rem;
}
.p-program .content .outer {
	position: relative;
	overflow: hidden;
	transition: height 0.4s ease;
}
.p-program .content::before,
.p-program .content .outer::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #002a64;
	opacity: 0.25;
}
.p-program .content-item {
	position: absolute;
	top: 0;
	left: 0;
	padding: 4.5rem 0;
	width: 100%;
}
.p-program .content-item.show {
	position: relative;
}
.p-program .content-item.no-tabs-days {
	padding: 0;
}
.p-program .content-item[aria-hidden="true"] {
	display: none;
}
.p-program .tabs-days {
	position: relative;
	margin: 0 4.5rem;
	padding: 1.6rem;
	font-weight: 700;
	font-size: 2.4rem;
}
.p-program .tabs-days::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #0d539a;
	opacity: 0.9;
}
.p-program .tabs-days ul {
	position: relative;
	display: flex;
	gap: 2rem;
}
.p-program .tabs-days li {
	width: 100%;
}
.p-program .tabs-days button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 5rem;
	background-color: #002a64;
}
.p-program .tabs-days button[aria-expanded="true"] {
	background-image: linear-gradient(125deg, rgba(20,201,255,1) 0%, rgba(0,208,160,1) 100%);
	pointer-events: none;
}
.p-program .tabs-days button em {
	font-family: "Inter", sans-serif;
}
.p-program .tabs-days button em span {
	font-size: 1.6rem;
}
.p-program .detail {
	position: relative;
	overflow: hidden;
	transition: height 0.4s ease;
}
.p-program .detail-item {
	position: absolute;
	top: 0;
	left: 0;
	padding: 4.5rem;
	width: 100%;
}
.p-program .detail-item.show {
	position: relative;
}
.p-program .detail-item[aria-hidden="true"] {
	display: none;
}
.p-program .detail .main {
	margin-bottom: 7rem;
	text-align: center;
}
.p-program .detail .main .days {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
}
.p-program .detail .main .days em {
	padding: 0.2em 0.6em 0.3em 0.6em;
	background-color: #01c2c3;
}
.p-program .detail .main .days em span {
	font-size: 1.6rem;
}
.p-program .detail .main .title {
	margin-bottom: 2rem;
	font-weight: 700;
	font-size: 3.4rem;
	line-height: 1.5;
}
.p-program .detail .main .title span{
	font-size: 1.4rem;
}
.p-program .detail .main .title::after {
	content: '';
	display: block;
	margin: 2.5rem auto 0 auto;
	width: 5rem;
	height: 1rem;
	background-image: url(/recruit/internship/assets/img/program-ornament-title.svg);
	background-size: contain;
}
.p-program .detail .main .lead {
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.8;
}
.p-program .detail .sections {
}
.p-program .detail .sections .item {
	position: relative;
	margin-bottom: 5rem;
	padding: 5rem;
	border-top: 1px solid #05cfb6;
	border-bottom: 1px solid #05cfb6;
	font-weight: 500;
}
.p-program .detail .sections .item::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #002a64;
	opacity: 0.25;
}
.p-program .detail .sections .item [class^="item-"] {
	position: relative;
	margin: 0 auto;
	max-width: 74rem;
}
.p-program .detail .sections .item h3 {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	width: 100%;
	text-align: center;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.1;
	transform: translateY(-50%);
}
.p-program .detail .sections .item h3 em {
	padding: 0.3em 1em 0.4em 1em;
	min-width: 14rem;
	background-image: linear-gradient(125deg, #14c9ff 0%, #00d0a0 100%);
}
.p-program .detail .sections .item-target {
	text-align: center;
}
.p-program .detail .sections .item-target h4 {
	margin-bottom: 1em;
	font-weight: 700;
	font-size: 2rem;
}
.p-program .detail .sections .item-outline .row {
	display: table;
	width: 100%;
}
.p-program .detail .sections .item-outline .row dl {
	display: table-row;
}
.p-program .detail .sections .item-outline .row dt {
	display: table-cell;
	vertical-align: top;
	padding: 2rem 0;
	width: 25%;
	font-weight: 700;
	color: #51d4d0;
}
.p-program .detail .sections .item-outline .row dd {
	display: table-cell;
	vertical-align: top;
	padding: 2rem 0;
}
.p-program .detail .sections .item-outline ol {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -2rem;
	counter-reset: listnum;
}
.p-program .detail .sections .item-outline ol li {
	position: relative;
	flex-basis: 50%;
	margin-bottom: 2rem;
	padding-left: 3.5rem;
}
.p-program .detail .sections .item-outline ol li::before {
	counter-increment: listnum;
	content: counter(listnum);
	position: absolute;
	top: 0.3em;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	background-color: #51d4d0;
	border-radius: 50%;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 1.4;
	line-height: 1;
}
.p-program .detail .sections .item-detail {
	font-size: 1.6rem;
	line-height: 2.5;
}
.p-program .detail .sections .item-flow ol {
	text-align: center;
	font-weight: 700;
	font-size: 2rem;
}
.p-program .detail .sections .item-flow ol li::after {
	content: '';
	display: block;
	height: 5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(/recruit/internship/assets/img/program-flow-arrow.svg);
	background-size: 4rem 1.5rem;
}
.p-program .detail .sections .item-flow ol li:last-child::after {
	content: none;
}
.p-program .detail .entry {
	padding: 1rem 0 3rem 0;
}
.p-program .detail .entry a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 14rem;
	background-image: linear-gradient(90deg, rgba(17,230,238,1) 0%, rgba(18,146,255,1) 50%, rgba(28,95,245,1) 100%);
	font-family: "Inter", sans-serif;
	font-weight: 900;
	font-size: 5.6rem;
	line-height: 1;
	box-shadow: 0 1.2rem 3.2rem rgba(46,122,178,0.25);
}
.p-program .detail .entry a::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(-90deg, rgba(17,230,238,1) 0%, rgba(18,146,255,1) 50%, rgba(28,95,245,1) 100%);
	opacity: 0;
}
.p-program .detail .entry a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15rem;
	display: block;
	margin-top: -1rem;
	width: 2rem;
	height: 2rem;
	background-image: url(/recruit/internship/assets/img/icon-blank.svg);
	background-size: contain;
}
.p-program .detail .entry a em {
	position: relative;
	display: block;
}

@media (any-hover: hover) {
	.p-program .tabs-course button em {
		transition: opacity 0.3s ease;
	}
	.p-program .tabs-course button:hover em {
		opacity: 1;
	}
	.p-program .tabs-days button {
		transition: color 0.3s ease;
	}
	.p-program .tabs-days button:hover {
		color: #04cfb2;
	}
	.p-program .detail .entry a::before {
		transition: opacity 0.3s ease;
	}
	.p-program .detail .entry a:hover::before {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.p-program {
		margin-bottom: 7rem;
	}
	.p-program .l-container {
		padding: 0;
	}
	.p-program .loop {
		top: -1.8rem;
		height: calc(7 / 15 * 15rem);
		background-size: calc(7 / 15 * 246.6rem) calc(7 / 15 * 15rem);
		animation: calc(115.08 / 100 * 60s) linear 0s infinite animProgramLoopSP;
	}
	.p-program .cube {
		top: -16rem;
		left: -15.8rem;
		width: 22.2rem;
	}
	.p-program .head {
		margin-bottom: 5rem;
	}
	.p-program .tabs-course ul {
		gap: 0;
		font-size: 1.5rem;
		line-height: 1.4;
	}
	.p-program .tabs-course button {
		height: 10rem;
	}
	.p-program .tabs-course-top button::before {
		bottom: -1rem;
		clip-path: polygon(0% 0%, 100% 0%, 100% 11rem, 62% 11rem, 50% 100%, 38% 11rem, 0% 11rem);
	}
	.p-program .tabs-course-bottom button::before {
		top: -1rem;
		clip-path: polygon(0% 1rem, 38% 1rem, 50% 0%, 62% 1rem, 100% 1rem, 100% 100%, 0% 100%);
	}
	.p-program .content {
		padding: 1rem;
	}
	.p-program .content-item {
		padding: 1rem 0;
	}
	.p-program .tabs-days {
		margin: 0 1rem;
		padding: 0.5rem;
		font-size: 1.4rem;
	}
	.p-program .tabs-days ul {
		justify-content: center;
		flex-wrap: wrap;
		gap: 0;
	}
	.p-program .tabs-days li {
		flex-basis: 50%;
		padding: 0.5rem;
		width: auto;
	}
	.p-program .tabs-days button {
		height: 4.8rem;
	}
	.p-program .tabs-days button em span {
		font-size: 1rem;
	}
	.p-program .detail-item {
		padding: 1rem 1.5rem;
	}
	.p-program .detail .main {
		margin-bottom: 5rem;
		padding-top: 3rem;
	}
	.p-program .detail .main .days {
		margin-bottom: 2rem;
		font-size: 1.8rem;
	}
	.p-program .detail .main .days em span {
		font-size: 1.4rem;
	}
	.p-program .detail .main .title {
		margin-bottom: 2.5rem;
		font-size: 2.2rem;
		line-height: 1.7;
	}
	.p-program .detail .main .title span {
		font-size: 1.12rem;
	}
	.p-program .detail .main .title::after {
		margin: 2.5rem auto 0 auto;
		width: 4rem;
		height: 0.8rem;
	}
	.p-program .detail .main .lead {
		text-align: left;
		font-size: 1.4rem;
		line-height: 2.2;
	}
	.p-program .detail .sections .item {
		margin-bottom: 4rem;
		padding: 4rem 2rem 3rem 2rem;
	}
	.p-program .detail .sections .item [class^="item-"] {
		max-width: initial;
	}
	.p-program .detail .sections .item h3 {
		font-size: 1.8rem;
	}
	.p-program .detail .sections .item h3 em {
		min-width: 12.8rem;
	}
	.p-program .detail .sections .item-target p {
		text-align: left;
	}
	.p-program .detail .sections .item-outline .row {
		display: block;
	}
	.p-program .detail .sections .item-outline .row dl {
		display: block;
		margin-bottom: 2rem;
	}
	.p-program .detail .sections .item-outline .row dl:last-child {
		margin-bottom: 0;
	}
	.p-program .detail .sections .item-outline .row dt {
		display: block;
		padding: 0 0 0.2rem 0;
		width: auto;
		font-size: 1.6rem;
	}
	.p-program .detail .sections .item-outline .row dd {
		display: block;
		padding: 0;
		font-size: 1.5rem;
		line-height: 2.1;
	}
	.p-program .detail .sections .item-outline ol {
		display: block;
		margin-bottom: 0;
		padding-top: 0.5rem;
	}
	.p-program .detail .sections .item-outline ol li {
		margin-bottom: 0.5rem;
		padding-left: 3.5rem;
	}
	.p-program .detail .sections .item-detail {
		font-size: 1.5rem;
		line-height: 2.1;
	}
	.p-program .detail .sections .item-flow ol {
		font-size: 2rem;
	}
	.p-program .detail .entry {
		padding: 0 0 3rem 0;
	}
	.p-program .detail .entry a {
		height: 12rem;
		font-size: 3.2rem;
	}
	.p-program .detail .entry a::after {
		right: 2rem;
	}
}

/* ANIMATION */
@keyframes animProgramLoopPC {
	0%   { background-position: 0rem 0; }
	100% { background-position: 246.6rem 0; }
}
@keyframes animProgramLoopSP {
	0%   { background-position: 0rem 0; }
	100% { background-position: calc(7 / 15 * 246.6rem) 0; }
}

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

[ PROJECT ] PHOTO

*/
.p-photo {
	position: relative;
	margin-bottom: 12rem;
}
.p-photo .inner {
	display: flex;
	width: calc(62 * 12 * 1rem);
	animation: 90s linear 0s infinite animPhotoLoopPC;
}
.p-photo .inner > div {
	padding: 0 2.4rem;
	flex-basis: 62rem;
}
.p-photo .inner img {
	transform: translate3d(0,0,0);
	backface-visibility: hidden;
}

@media screen and (max-width: 768px) {
	.p-photo .inner {
		width: calc(34.4 * 12 * 1rem);
		animation: 60s linear 0s infinite animPhotoLoopSP;
	}
	.p-photo .inner > div {
		padding: 0 1.2rem;
		flex-basis: 34.4rem;
	}
}

/* ANIMATION */
@keyframes animPhotoLoopPC {
	0%   { transform: translateX(0); }
	100% { transform: translateX(calc(52 * 4 * -1rem)); }
}
@keyframes animPhotoLoopSP {
	0%   { transform: translateX(0); }
	100% { transform: translateX(calc(28.4 * 4 * -1rem)); }
}

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

[ PROJECT ] FLOW

*/
.p-flow {
	position: relative;
	margin-bottom: 12rem;
}
.p-flow .cube {
	position: absolute;
	top: -12rem;
	right: -26rem;
	width: 52rem;
}
.p-flow .head {
	margin-bottom: 6rem;
}
.p-flow .steps li::after {
	content: '';
	display: block;
	height: 7rem;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(/recruit/internship/assets/img/flow-arrow.svg);
	background-size: 6.8rem 2.5rem;
}
.p-flow .steps li:last-child::after {
	content: none;
}
.p-flow .steps .block {
	position: relative;
	display: flex;
	min-height: 14rem;
}
.p-flow .steps .block::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #002a64;
	opacity: 0.25;
}
.p-flow .steps .block .number {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14rem;
	background-image: linear-gradient(125deg, rgba(0,208,160,1) 0%, rgba(20,201,255,1) 100%);
	text-align: center;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	line-height: 1.1;
}
.p-flow .steps .block .number dt {
	font-size: 2.1rem;
}
.p-flow .steps .block .number dd {
	font-size: 5rem;
}
.p-flow .steps .block .detail {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	padding: 0 5rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2.4;
}
.p-flow .steps .block .detail a {
	text-decoration: underline;
	color: #1defc6;
}

@media (any-hover: hover) {
	.p-flow .steps .block .detail a {
		transition: opacity 0.3s ease;
	}
	.p-flow .steps .block .detail a:hover {
		opacity: 0.5;
	}
}

@media screen and (max-width: 768px) {
	.p-flow {
		margin-bottom: 12rem;
	}
	.p-flow .cube {
		top: -12rem;
		right: -12.6rem;
		width: 25.4rem;
	}
	.p-flow .head {
		margin-bottom: 3rem;
	}
	.p-flow .c-heading {
		margin: 0 auto;
		max-width: 22rem;
	}
	.p-flow .steps li::after {
		height: 5rem;
	}
	.p-flow .steps .block {
		display: block;
		min-height: initial;
	}
	.p-flow .steps .block .number {
		width: auto;
	}
	.p-flow .steps .block .number dl {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 5.6rem;
	}
	.p-flow .steps .block .number dt {
		margin-right: 0.5rem;
		font-size: 1.4rem;
	}
	.p-flow .steps .block .number dd {
		font-size: 3.5rem;
	}
	.p-flow .steps .block .detail {
		display: block;
		padding: 3rem 2rem 3.5rem 2rem;
		font-size: 1.6rem;
		line-height: 2;
	}
	.p-flow .steps .block .detail br {
		display: none;
	}
}

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

[ PROJECT ] FAQ

*/
.p-faq {
	position: relative;
	margin-bottom: 14rem;
}
.p-faq .cube {
	position: absolute;
	top: -9rem;
	left: -19rem;
	width: 38rem;
}
.p-faq .head {
	margin-bottom: 4rem;
}
.p-faq .list {
	color: #3193c6;
}
.p-faq .list > ul > li {
	margin-bottom: 2.4rem;
}
.p-faq .list > ul > li:last-child {
	margin-bottom: 0;
}
.p-faq .list .block {
	background-color: #fff;
}
.p-faq .list button {
	align-items: normal;
	position: relative;
	display: flex;
	padding-right: 10rem;
	width: 100%;
	min-height: 11.6rem;
	cursor: pointer;
}
.p-faq .list button span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14rem;
	background-image: linear-gradient(125deg, rgba(7,204,159,1) 0%, rgba(0,98,213,1) 100%);
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 4.7rem;
	line-height: 1.1;
	color: #fff;
}
.p-faq .list button em {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 0 0 0 4rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
}
.p-faq .list button i {
	position: absolute;
	top: 50%;
	right: 4rem;
	width: 3.8rem;
	height: 2.6rem;
	transform: translateY(-50%);
}
.p-faq .list button i::before,
.p-faq .list button i::after {
	content: '';
	display: block;
	position: absolute;
	background-color: #038bc0;
}
.p-faq .list button i::before {
	top: 50%;
	left: 0;
	width: 100%;
	height: 0.3rem;
	transform: translateY(-50%);
}
.p-faq .list button i::after {
	top: 0;
	left: 50%;
	width: 0.3rem;
	height: 100%;
	transform: translateX(-50%);
}
.p-faq .list button[aria-expanded="true"] i::after {
	content: none;
}
.p-faq .answer {
	overflow: hidden;
	height: 0;
	transition: height 0.4s ease;
}
.p-faq .answer .inner {
	display: flex;
	padding: 4rem 0;
}
.p-faq .answer .label {
	padding-top: 0.1em;
	width: 14rem;
	text-align: center;
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 4.7rem;
	line-height: 1.1;
}
.p-faq .answer .detail {
	flex: 1;
	padding: 0 4rem;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 2.5;
}
.p-faq .answer .detail a {
	text-decoration: underline;
	color: #38b2cc;
}
.p-faq .answer .detail h3 {
	margin: 1.5em 0 0.5em 0;
	padding-bottom: 0.4em;
	border-bottom: 1px solid #8acfe5;
	font-weight: 700;
}

@media (any-hover: hover) {
	.p-faq .list button em {
		transition: opacity 0.3s ease;
	}
	.p-faq .list button:hover em {
		opacity: 0.5;
	}
	.p-faq .answer .detail a {
		transition: opacity 0.3s ease;
	}
	.p-faq .answer .detail a:hover {
		opacity: 0.5;
	}
}

@media screen and (max-width: 768px) {
	.p-faq {
		margin-bottom: 6rem;
	}
	.p-faq .cube {
		top: -9rem;
		left: -9.5rem;
		width: 19rem;
	}
	.p-faq .head {
		margin-bottom: 3rem;
	}
	.p-faq .list > ul > li {
		margin-bottom: 2rem;
	}
	.p-faq .list button {
		padding-right: 5.8rem;
		min-height: 8.8rem;
	}
	.p-faq .list button span {
		width: 4.6rem;
		font-size: 2.4rem;
	}
	.p-faq .list button em {
		padding: 1em 0 1em 1.5rem;
		font-size: 1.6rem;
	}
	.p-faq .list button i {
		right: 1.5rem;
		width: 2.8rem;
		height: 1.6rem;
	}
	.p-faq .list button i::before {
		height: 0.2rem;
	}
	.p-faq .list button i::after {
		width: 0.2rem;
	}
	.p-faq .answer .inner {
		padding: 2rem 0 3rem 0;
	}
	.p-faq .answer .label {
		padding-top: 0.5rem;
		width: 4.6rem;
		font-size: 2.4rem;
	}
	.p-faq .answer .detail {
		padding: 0 1.5rem;
		font-size: 1.5rem;
		line-height: 2;
	}
}

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

[ PROJECT ] ENTRY

*/
.p-entry {
	position: relative;
	margin-bottom: 14rem;
}
.p-entry h2 a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 20rem;
	background-image: linear-gradient(90deg, rgba(23,222,207,1) 0%, rgba(0,163,126,1) 100%);
	text-align: center;
	line-height: 1.1;
	box-shadow: 0 1.2rem 3.2rem rgba(20,142,155,0.25);
}
.p-entry h2 a::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-image: linear-gradient(-90deg, rgba(23,222,207,1) 0%, rgba(0,163,126,1) 100%);
	opacity: 0;
}
.p-entry h2 a > * {
	position: relative;
}
.p-entry h2 em {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 5.6rem;
	letter-spacing: 0.1em;
}
.p-entry h2 em::after {
	content: '';
	display: block;
	margin-left: 1.5rem;
	width: 2rem;
	height: 2rem;
	background-image: url(/recruit/internship/assets/img/icon-blank.svg);
	background-size: contain;
}
.p-entry h2 span {
	display: block;
	margin-top: 2rem;
	font-weight: 700;
	font-size: 1.6rem;
}

@media (any-hover: hover) {
	.p-entry h2 a::before {
		transition: opacity 0.3s ease;
	}
	.p-entry h2 a:hover::before {
		opacity: 1;
	}
}

@media screen and (max-width: 768px) {
	.p-entry {
		margin-bottom: 6rem;
	}
	.p-entry h2 a {
		display: block;
		padding: 2.5rem 0;
		height: auto;
	}
	.p-entry h2 em {
		display: block;
		position: relative;
		font-size: 3.2rem;
	}
	.p-entry h2 em::after {
		position: absolute;
		top: 50%;
		right: 2.2rem;
		margin-top: -0.9rem;
		width: 1.8rem;
		height: 1.8rem;
	}
	.p-entry h2 span {
		margin-top: 1.5rem;
		font-size: 1.2rem;
	}
}

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

[ PROJECT ] CONTACT

*/
.p-contact {
	position: relative;
	line-height: 1.1;
}
.p-contact .l-container {
	padding-bottom: 18rem;
}
.p-contact .frame {
	position: relative;
	padding: 4.5rem;
}
.p-contact .inner {
	position: relative;
	display: flex;
	align-items: center;
	padding: 5rem 6rem;
}
.p-contact .frame::before,
.p-contact .inner::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #002a64;
	opacity: 0.25;
}
.p-contact h2 {
	position: relative;
	width: 35%;
	font-weight: 600;
	font-size: 2.9rem;
}
.p-contact .detail {
	position: relative;
}
.p-contact .detail dl {
	margin-bottom: 4rem;
	font-weight: 700;
}
.p-contact .detail dt {
	margin-bottom: 3rem;
	font-size: 2.6rem;
}
.p-contact .detail dd {
	font-size: 1.8rem;
}
.p-contact .detail p {
	margin-bottom: 3rem;
	font-weight: 600;
	font-size: 2.4rem;
}
.p-contact .detail p:last-child {
	margin-bottom: 0;
}
.p-contact a {
	color: #1defc6;
}
.p-contact .cube {
	position: absolute;
	right: -31.6rem;
	bottom: -2.6rem;
	width: 57rem;
}

@media (any-hover: hover) {
	.p-contact a {
		transition: opacity 0.3s ease;
	}
	.p-contact a:hover {
		opacity: 0.5;
	}
}

@media screen and (max-width: 768px) {
	.p-contact .l-container {
		padding: 0 0 9rem 0;
	}
	.p-contact .frame {
		padding: 3rem 0;
	}
	.p-contact .inner {
		display: block;
		padding: 3rem 0 4rem 0;
		text-align: center;
	}
	.p-contact h2 {
		margin-bottom: 4rem;
		width: auto;
		font-size: 2.4rem;
	}
	.p-contact .detail dl {
		margin-bottom: 4rem;
	}
	.p-contact .detail dt {
		margin-bottom: 2.5rem;
		font-size: 2rem;
	}
	.p-contact .detail dd {
		font-size: 1.6rem;
	}
	.p-contact .detail p {
		margin-bottom: 3rem;
		font-size: 1.7rem;
	}
	.p-contact .cube {
		right: -16.2rem;
		bottom: -5rem;
		width: 29rem;
	}
}