@charset "utf-8";

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

		basic layout

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

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-feature-settings: "palt";
	line-height: 1.8;
	letter-spacing: 0.1em;
}

body * {
	box-sizing: border-box;
}

.en {
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.1em;
}

/*
body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.85;
}

.serif {
	font-family: 'Noto Serif JP', serif;
}
*/

img {
	max-width: 100%;
	vertical-align: top;
	image-rendering: -webkit-optimize-contrast;		/* for chrome */
}

a {
	border: none;
	text-decoration: none;
	transition: all .3s;
}

a:hover {
	/*filter: brightness(110%);*/
}

a.pc_not_tel {
	pointer-events: none;
	cursor: default;
}

em {
	font-style: normal;
	font-weight: bold;
}

p#page_top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 100;
}

.pc_none {
	display: none;
}

.sp_none {
	display: inline;
}

img.sp {
	display: none;
}

.marker {
	background-image: linear-gradient(#ffcffb, #ffcffb);
	background-size: 0 50%;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: 1.5s;
}

.marker.active {
	background-size: 100% 50%;/
}


/*---------- if IE ----------*/
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, main ,footer {
		display: block;
	}
	
	*::-ms-backdrop, a:hover {
		opacity: 0.8;
	}
}


@media screen and (max-width: 768px){
	.sp_none {
		display: none;
	}
	
	.pc_none {
		display: inline;
	}
	
	img {
		max-width: 100%;
		width: auto;
	}
	
	img.pc {
		display: none;
	}
	
	img.sp {
		display: inline;
	}
	
	a.pc_not_tel {
		pointer-events: auto;
		cursor: pointer;
	}
	
	p#page_top {
		width: 50px;
		right: 10px;
		bottom: 10px;
	}
}



/*------------------ clearfix layout ---------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
/*
*:after {
	content: "";
	display:block;
	clear:both;
}
*/



/*------------------ fadein layout ---------------------*/
.fadein {
	opacity : 0;
	transform: translateY(100px);
	transition: all 0.7s;
}



/*------------------ arrow down layout ---------------------*/
.dummy_object::after {
	content: "";
	border-style: solid;
	border-width: 20px 20px 0 20px;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	left: calc(50% - 10px);
	bottom: -40px;
}



/*------------------ flex layout ---------------------*/
.flex_space-between {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
}

.flex_center {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}



/*------------------ set variable ---------------------*/
:root {
	--color_orange: #e45a24;
	--color_lightgray: #f9f9f9;
	--site_skew: skewY(-5deg);
}

/*
hoge {
	color: var(--color_blue);
}
*/





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

		header layout

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

header {
	margin: 0 0 120px;
	background: linear-gradient(25deg, #e45a24 6%,#ea861e 95%);
	position: relative;
	color: #fff;
	z-index: 10;
	overflow: hidden;
}

header::after {
	content: "";
	width: 100%;
	height: 180px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: -180px;
	z-index: -1;
	transform: var(--site_skew);
	transform-origin: bottom left;
}

#recruit_top header {
	background: var(--color_orange);
	overflow: visible;
}

#interview header {
	margin: 0 0 40px;
}

#recruit_top header::after {
	content: "";
	width: 100%;
	height: 180px;
	background-color: var(--color_orange);
	position: absolute;
	left: 0;
	bottom: -180px;
	z-index: -1;
	transform: var(--site_skew);
	transform-origin: bottom left;
}

header .header_top {
	width: 100%;
	height: 70px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 1;
	transition: all 0.3s;
}

header.on .header_top {
	background-color: rgba(0,0,0,0.1);
}

header .logo {
	margin: 0 0 0 40px;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.0;
	letter-spacing: 0.1em;
}

header .logo a {
	color: #fff;
}

header .logo a:hover {
	color: #000;
}

header .logo a span {
	margin: 0 0 0 20px;
	display: inline-block;
	font-size: 18px;
	letter-spacing: 0.05em;
}

header p.entry {
	width: 165px;
	height: 100%;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10000;
}

header p.entry a {
	height: 100%;
	/*background-color: #000;*/
	background: linear-gradient(to right, #fff 0%, #fff 50%, #000 50%, #000 100%);
	background-size: 200% auto;
	background-position: right center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.0;
	letter-spacing: 0.1em;
}

header p.entry a:hover {
	background-position: left center;
	color: #000;
}



@media screen and (max-width: 768px){
	header {
		margin: -1px 0 8vh;
		top: 1px;
	}
	
	#recruit_top header {
		margin: 0 0 10vh;
	}
	
	header::after,
	#recruit_top header::after {
		height: 8vh;
		bottom: -8vh;
	}
	
	header .header_top {
		width: 100%;
		height: auto;
		padding: 1vh 5vw;
		box-sizing: border-box;
		display: block;
	}
	
	header .logo {
		margin: 0;
		position: relative;
		z-index: 10000;
		display: inline-block;
		font-size: 5vw;
	}
	
	header .logo a:hover {
		color: #fff;
	}
	
	header .logo a span {
		margin: 1vh 0 0;
		padding: 4px;
		background-color: #fff;
		display: block;
		text-align: center;
		color: var(--color_orange);
		font-size: 4vw;
		letter-spacing: 0.2em;
	}
	
	header p.entry {
		display: none;
	}
	/*
	header p.entry {
		width: calc(100% - 70px);
		height: 70px;
		position: fixed;
		left: 0;
		top: auto;
		bottom: 0;
		z-index: 1000;
	}
	
	header p.entry a {
		background: #000;
		background-size: 100% auto;
		font-size: 6vw;
	}
	
	header p.entry a:hover {
		color: #fff;
	}
	*/
}



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

		header nav layout

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

header .drawer_button,
.sp_float_btn .drawer_button {
	width: 70px;
	height: 70px;
	padding: 0;
	display: block;
	background: #4d4d4d;
	border: none;
	letter-spacing: 0.1em;
	cursor: pointer;
	position: fixed;
	right: 165px;
	top: 0;
	z-index: 1001;
	text-align: center;
	outline: none;
	/*
	border-radius: 5px;
	right: 5px;
	top: 5px;
	*/
}

header .drawer_button.active,
.sp_float_btn .drawer_button.active {
	background: #4d4d4d;
}


/* .drawer_bar */
header .drawer_bar,
.sp_float_btn .drawer_bar {
	display: block;
	width: 35px;
	height: 2px;
	margin: 8px auto;
	background: #fff;
	transition: all 0.2s;
	transform-origin: 50% 50%;
	position: relative;
}

header .drawer_button.active .drawer_bar,
.sp_float_btn .drawer_button.active .drawer_bar {
	background: #fff;
}

header .drawer_button.active .drawer_bar1,
.sp_float_btn .drawer_button.active .drawer_bar1 {
	top: 5px;
	transform: rotate(25deg);
}

header .drawer_button.active .drawer_bar2,
.sp_float_btn .drawer_button.active .drawer_bar2 {
	opacity: 0;
}

header .drawer_button.active .drawer_bar3,
.sp_float_btn .drawer_button.active .drawer_bar3 {
	top: -5px;
	transform: rotate(-25deg);
}


/* .drawer_text */
header .drawer_button .drawer_text,
.sp_float_btn .drawer_button .drawer_text {
	/*display: none;*/
	text-align: center;
	font-size: 14px;
	color: #fff;
	line-height: 1.0;
	letter-spacing: 0.1em;
}

header .drawer_button.active .drawer_text,
.sp_float_btn .drawer_button.active .drawer_text {
	display: none;
}

header .drawer_button .drawer_close,
.sp_float_btn .drawer_button .drawer_close {
	display: none;
}

header .drawer_button.active .drawer_close,
.sp_float_btn .drawer_button.active .drawer_close {
	display: block;
}


/* .drawer_nav_wrapper */
header .drawer_nav_wrapper {
	width: 100%;
	height: 100%;
	/*
	width: 100%;
	height: 100%;
	height: auto;
	*/
	margin: 0;
	padding: 0;
	
	box-sizing: border-box;
	display: block;
	
	transform: translateY(-110%);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	/*overflow-y: scroll;*/
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-y: contain;
}

header .drawer_nav_wrapper.open {
	transform: translate(0);
}


header .drawer_nav_wrapper .nav_bg {
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}


/* ul.drawer_nav */
header ul.drawer_nav {
	width: 540px;
	height: 100%;
	margin: 0 0 0 auto;
	padding: 0 80px;
	background: var(--color_orange);
	position: relative;
	z-index: 2;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	gap: 50px 0;
	/*transition: all 0.8s cubic-bezier(0.32, 0.1, 0, 1);*/
	transform: translate(110%);
}

header ul.drawer_nav li {
	width: 100%;
	margin: 0;
	line-height: 1.3;
	transform: translateX(100px);
	opacity: 0;
	/*clip-path: inset(0 0 0 100%);*/
}

header ul.drawer_nav li a {
	width: auto;
	margin: 0;
	display: block;
	position: relative;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

header ul.drawer_nav li a::before {
	content: "";
	background-color: #fff;
	width: 106%;
	height: 106%;
	position: absolute;
	left: -3%;
	top: 0;
	transform: scale(0,1);
	transform-origin: right top;
	transition: transform 0.5s;
	z-index: -1;
}

header ul.drawer_nav li a:hover {
	color: var(--color_orange);
}

header ul.drawer_nav li a:hover::before {
	transform: scale(1,1);
	transform-origin: left top;
}

header ul.drawer_nav li a span {
	display: block;
	font-size: 32px;
	font-weight: 500;
}

header ul.drawer_nav li a:hover {
	text-decoration: none;
}


@media screen and (max-width: 768px){
	header .drawer_button,
	.sp_float_btn .drawer_button {
		width: 70px;
		height: 70px;
		top: auto;
		bottom: 0;
		right: 0;
	}
	
	header .drawer_button {
		display: none;
	}
	
	header .drawer_nav_wrapper .nav_bg {
		display: none;
	}
	
	/* ul.drawer_nav */
	header ul.drawer_nav {
		width: 100%;
		height: 100%;
		margin: 0 0 0 auto;
		padding: 0 5vw;
		background: var(--color_orange);
		display: flex;
		flex-flow: column wrap;
		justify-content: center;
		gap: 5vh 0;
		transition: all 0.4s;
		transform: translate(110%);
	}
	
	header ul.drawer_nav li a {
		font-size: 3.5vw;
	}
	
	header ul.drawer_nav li a::before {
		display: none;
	}
	
	header ul.drawer_nav li a:hover {
		color: #fff;
	}
	
	header ul.drawer_nav li a span {
		font-size: 7vw;
	}
}



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

		header .main_img layout

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

header .main_img {
	max-width: 1280px;
	margin: 0 auto;
	padding: 50px 30px;
	position: relative;
}

header .main_img .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .main_img .box:nth-of-type(2) {
	padding: 60px 0 0;
	align-items: flex-start;
}

header .main_img .box .main_title {
	/*
	width: 84.474%;
	max-width: 963px;
	*/
	width: 100%;
	max-width: 1140px;
}

header .main_img .box .main_title img {
	width: 100%;
}


header .main_img .box p.img_01 {
	width: 15.965%;
	max-width: 182px;
	margin: 0 -60px;
	text-align: right;
}

header .main_img .box p.img_01 img,
header .main_img .box p.img_02 img {
	width: 100%;
}


header .main_img .box p.img_02 {
	width: 55vw;
	margin: 0 calc(50% - 50vw);
	text-align: right;
}


header .main_img .box dl {
	width: 36%;
	margin: 0 0 0 auto;
}

header .main_img .box dl dt {
	margin: 0 0 40px;
	color: #000;
	font-size: 38px;
	font-weight: 900;
	line-height: 1.0;
}
@media (max-width:1130px){
	header .main_img .box dl dt {
		font-size: 3.0vw;
	}	
}

header .main_img .box dl dt .txt_cover {
	/*height: 56px;*/
	display: inline-block;
	position: relative;
	overflow: hidden;
}
header .main_img .box dl dt .txt_cover.txt-s {
	font-size: 30px;
}
@media (max-width:1130px){
	header .main_img .box dl dt .txt_cover.txt-s {
		font-size: 2.0vw;
	}	
}

header .main_img .box dl dt .txt_cover.mt2 {
	margin: 1rem 0 0;
}

header .main_img .box dl dt .txt_cover::before {
	content: "";
	width: 0%;
	height: 100%;
	background: #fff;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0;
}

header .main_img .box dl dt .anime_txt {
	/*height: 56px;*/
	padding: 7px 10px 9px;
	display: inline-block;
	position: relative;
	overflow: hidden;
	color: transparent;
	letter-spacing: 0.1em;
}

header .main_img .box dl dt .anime_txt::before {
	content: "";
	width: 0;
	height: 105%;
	background: #fff;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0;
}


@media screen and (max-width: 1280px){
	header .main_img .box p.img_01 {
		margin: 0 0 0 3vw;
	}
}


@media screen and (max-width: 768px){
	header .main_img {
		max-width: inherit;
		margin: 0 auto;
		padding: 70px 5vw 0;
		
	}
	
	header .main_img .box {
		display: block;
	}
	
	header .main_img .box:nth-of-type(2) {
		padding: 3vh 0 0;
		align-items: flex-start;
	}
	
	header .main_img .box .main_title {
		width: auto;
		max-width: inherit;
		margin: 0 -5vw;
		padding: 30px 0 10px;
	}
	
	
	header .main_img .box p.img_01 {
		width: auto;
		max-width: inherit;
		margin: 0 auto;
		text-align: center;
	}
	
	
	header .main_img .box p.img_02 {
		display: none;
	}
	
	
	header .main_img .box dl {
		width: auto;
		max-width: inherit;
		margin: 0 auto;
	}
	
	header .main_img .box dl dt {
		display: none;
	}
}



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

		header .page_title layout

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

header .page_title {
	max-width: 1140px;
	min-height: 400px;
	margin: 0 auto;
	padding: 50px 30px;
	display: flex;
	align-items: flex-end;
}

header .page_title h2 {
	margin: 0 0 40px;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.0;
	transform: var(--site_skew);
	letter-spacing: 0.1em;
}

header .page_title h2 span {
	margin: 0 0 15px;
	display: block;
	font-size: 106px;
	font-weight: 500;
}

header .page_title p {
	margin: 0 0 90px 40px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	transform: var(--site_skew);
}


@media screen and (max-width: 768px){
	header .page_title {
		max-width: inherit;
		min-height: inherit;
		padding: 13vh 5vw 0;
		flex-wrap: wrap;
	}
	
	header .page_title h2 {
		margin: 0 0 3vh;
		font-size: 4vw;
	}
	
	#job_list header .page_title h2,
	#project header .page_title h2,
	.entry header .page_title h2 {
		margin: 0 0 6vh;
	}
	
	header .page_title h2 span {
		margin: 0 0 1.5vh;
		font-size: 15vw;
	}
	
	#job_list header .page_title h2 span {
		font-size: 10vw;
	}
	
	#project header .page_title h2 span {
		font-size: 11vw;
	}
	
	.entry header .page_title h2 span {
		font-size: 14vw;
	}
	
	header .page_title p {
		width: 100%;
		margin: 0 0 5vh;
		flex-shrink: 0;
		font-size: 3.672vw;
	}
}





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

		#contents layout

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

#contents {
	
}

#contents section .inner,
#contents div .inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
}


@media screen and (max-width: 768px){
	#contents section .inner,
	#contents div .inner {
		max-width: inherit;
		padding: 0 5vw;
	}
}





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

		footer layout

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

footer {
	padding: 80px 0 0;
	background: url("../img/footer_bg.png") left 55% top / 1238px auto no-repeat var(--color_orange);
	background-blend-mode: multiply;
	border-bottom: solid 8px #000;
}

#job_list footer,
#entry footer {
	background: var(--color_orange);
}

footer .inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
}

footer .inner h3 {
	margin: 0 0 70px;
	color: var(--color_orange);
	color: #fff;
	font-weight: 700;
	line-height: 1.3;
}

footer .inner h3 span {
	margin: 0 0 15px;
	display: block;
	font-size: 54px;
	font-weight: 500;
	letter-spacing: 0.1em;
}

footer .inner ul.list {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 20px;
}

footer .inner ul.list li {
	width: calc(100% / 4 - 20px);
}

footer .inner ul.list li a {
	height: 100px;
	padding: 0 20px;
	/*background-color: #fff;*/
	background: linear-gradient(to right, var(--color_orange) 0%, var(--color_orange) 50%, #fff 50%, #fff 100%);
	background-size: 204% auto;
	background-position: right center;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #000;
	font-weight: 500;
}

footer .inner ul.list li a span {
	display: block;
	color: var(--color_orange);
	font-size: 12px;
	transition: all .3s;
}

footer .inner ul.list li a:hover {
	background-position: left center;
	color: #fff;
	/*background-color: var(--color_orange);
	color: #fff;*/
}

footer .inner ul.list li a:hover span {
	color: #fff;
}


footer .inner .entry {
	margin: 60px 0 0;
	padding: 60px 20px 40px;
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

footer .inner .entry p {
	margin: 0 0 40px;
	text-align: center;
	font-size: 18px;
}

footer .inner .entry ul.btn {
	display: flex;
	justify-content: center;
	gap: 0 30px;
}

footer .inner .entry ul.btn li {
	width: 280px;
}

footer .inner .entry ul.btn li a {
	height: 70px;
	border-radius: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.2em;
}

footer .inner .entry ul.btn li:nth-child(1) a {
	/*background-color: #e40036;*/
	background: linear-gradient(to right, #fff 0%, #fff 50%, #e40036 50%, #e40036 100%);
	background-size: 200% auto;
	background-position: right center;
	border: solid 1px #e40036;
}

footer .inner .entry ul.btn li:nth-child(2) a {
	/*background-color: #000;*/
	background: linear-gradient(to right, #fff 0%, #fff 50%, #000 50%, #000 100%);
	background-size: 200% auto;
	background-position: right center;
	border: solid 1px #000;
}

footer .inner .entry ul.btn li a span {
	font-size: 26px;
	font-weight: 500;
}

footer .inner .entry ul.btn li:nth-child(1) a:hover {
	/*background-color: #fff;*/
	background-position: left center;
	color: #e40036;
}

footer .inner .entry ul.btn li:nth-child(2) a:hover {
	/*background-color: #fff;*/
	background-position: left center;
	color: #000;
}


footer p.copy {
	padding: 80px 0 30px;
	background-color: var(--color_orange);
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.1em;
}

footer p.copy a {
	color: #fff;
}

footer p.copy a:hover {
	color: #000;
}

footer p.copy a img{
	max-width: 200px;
}

@media screen and (max-width: 768px){
	footer {
		padding: 8vh 0 0;
		background: url("../img/footer_bg.png") left -10vw top 12vh / 120% auto no-repeat var(--color_orange);
		background-blend-mode: multiply;
		border-bottom: solid 1vh #000;
	}
	
	footer .inner {
		max-width: inherit;
		padding: 0 5vw;
	}
	
	footer .inner h3 {
		margin: 0 0 5vh;
		font-size: 3.2vw;
	}
	
	footer .inner h3 span {
		margin: 0 0 1vh;
		font-size: 9vw;
	}
	
	footer .inner ul.list {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-between;
		gap: 10px;
	}
	
	footer .inner ul.list li {
		width: calc(100% / 2 - 5px);
	}
	
	footer .inner ul.list li a {
		height: auto;
		padding: 3vw 1vw 3vw 2vw;
		background: #fff;
		background-size: 100% auto;
		font-size: 3.2vw;
		line-height: 1.5;
	}
	
	footer .inner ul.list li a span {
		font-size: 2.8vw;
	}
	
	footer .inner ul.list li a:hover {
		background: #fff;
		color: var(--color_orange);
	}
	
	footer .inner ul.list li a:hover span {
		color: #000;
	}
	
	
	footer .inner .entry {
		margin: 6vh 0 0;
		padding: 3vh 5vw 3vh;
	}
	
	footer .inner .entry p {
		margin: 0 0 4vh;
		text-align: left;
		font-size: 3.4vw;
	}
	
	footer .inner .entry ul.btn {
		flex-flow: column wrap;
		gap: 3vh 0;
	}
	
	footer .inner .entry ul.btn li {
		width: auto;
	}
	
	footer .inner .entry ul.btn li a {
		height: 9vh;
		border-radius: 9vh;
		font-size: 3.5vw;
	}
	
	footer .inner .entry ul.btn li:nth-child(1) a {
		background: #e40036;
		background-size: 100% auto;
	}
	
	footer .inner .entry ul.btn li:nth-child(2) a {
		background: #000;
		background-size: 100% auto;
	}
	
	footer .inner .entry ul.btn li a span {
		font-size: 6vw;
	}
	
	footer .inner .entry ul.btn li:nth-child(1) a:hover {
		background: #e40036;
		color: #fff;
	}
	
	footer .inner .entry ul.btn li:nth-child(2) a:hover {
		background: #000;
		color: #fff;
	}
	
	
	footer p.copy {
		padding: 6vh 0 90px;
		font-size: 6vw;
		font-weight: 500;
	}
}





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

		.sp_float_btn layout

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

.sp_float_btn {
	display: none;
}


@media screen and (max-width: 768px){
	.sp_float_btn {
		width: 100%;
		display: block;
		position: fixed;
		z-index: 1000;
		bottom: 0;
	}
	
	.sp_float_btn p.entry {
		width: calc(100% - 70px);
		height: 70px;
	}
	
	.sp_float_btn p.entry a {
		height: 100%;
		background: #000;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #fff;
		font-size: 6vw;
		font-weight: 400;
		line-height: 1.0;
		letter-spacing: 0.1em;
	}
}