@charset "UTF-8";
/*--------------------------------------------------------------
#loading-box
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#loading-box {
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: 9999;
		background: #232323;
		color: #fff;
		display: none;
	}
	
	#catchphrase {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 16px;
		font-weight: 700;
		line-height: 1.8;
		font-style: italic;
		text-align: center;
		width: 100%;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#loading-box {
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: 9999;
		background: #232323;
		color: #fff;
		display: none;
	}
	
	#catchphrase {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 1.83vw;
		font-weight: 700;
		line-height: 1.8;
		font-style: italic;
		text-align: left;
		width: auto;
	}

}

/*--------------------------------------------------------------
#main-screen
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#main-screen {
		position: relative;
		height: 100vh;
		height: calc(var(--custom, 1vh) * 100);
		height: 100dvh;
	}
	
	
	
	#screen-area {
		position: fixed;
		z-index: -1;
		top: 0;
		right: 0;
		left: 0;
		bottom:0;
		overflow: hidden;
		background: #232323;
	}
	
	#video {
		position: absolute;
		z-index: -1;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 177.77777778vh;
		height: 56.25vw;
		min-height: 100%;
		min-width: 100%;
	}
	
	#video-title {
		display: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		min-width: 85%;
		text-align: center;
		display: flex;            /* ←追加 */
		flex-direction: column;   /* ←縦並びに */
		align-items: center;      /* ←横方向の中央寄せ */
		justify-content: center;  /* ←縦方向の中央寄せ（必要に応じて） */
	}

	.title-en {
		font-family: "Exo 2", serif;
		color: #fff;
		font-size: 130px;
		font-weight: 600;
		font-style: italic;
		letter-spacing: -5px;
		line-height: 1;
	}
	
	.title-ja {
		color: #fff;
		font-size: 19px;
		font-weight: 700;
		font-style: italic;
		letter-spacing: 2px;
		margin-left: -25px;
	}

	.title-extra {
		font-family: "Exo 2", serif;
		color: #fff;
		font-size: 10px;
		font-weight: 500;
		font-style: italic;
		letter-spacing: 1px;
		margin-left: -30px;
	}
	
	.title-4 {
		display: none;
		position: absolute;
		right: 0;
		bottom: 0;
		width: 40px;
	}

	.scrolldown{
		position: absolute;
		left: 20px;
		bottom: 10px;
		height: 100px;
	}

	.scrolldown span{
		position: absolute;
		left: -10px;
		top: -50px;
		color: #eee;
		font-size: 15px;
		font-weight: 500;
		font-style: italic;
		writing-mode: vertical-rl;
		height: 100%;
	}

	.scrolldown::after{
		content: "";
		position: absolute;
		top: 0;
		width: 1px;
		height: 50px;
		background: #eee;
		animation: pathmove 1.4s ease-in-out infinite;
		opacity:0;
	}
}



/* Small than tablet */
@media (min-width: 768px) {
	


	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#main-screen {
		position: relative;
		height: 100vh;
		height: calc(var(--custom, 1vh) * 100);
	}
	
	#screen-area {
		position: fixed;
		z-index: -1;
		top: 0;
		right: 0;
		left: 0;
		bottom:0;
		overflow: hidden;
		background: #232323;
	}
	
	#video {
		position: absolute;
		z-index: -1;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 177.77777778vh;
		height: 56.25vw;
		min-height: 100%;
		min-width: 100%;
	}
	
	#video-title {
		display: none;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		min-width: auto;
		text-align: left;
	}

	.title-en {
		font-family: "Exo 2", serif;
		color: #fff;
		font-size: 21.96vw;
		font-weight: 600;
		font-style: italic;
		letter-spacing: -1.10vw;
		line-height: 1;
	}
	
	.title-ja {
		color: #fff;
		font-size: 3.5vw;
		font-weight: 700;
		font-style: italic;
		letter-spacing: 0.15vw;
		margin-left: 0;
	}

	.title-extra {
		font-family: "Exo 2", serif;
		color: #fff;
		font-size: 1.39vw;
		font-weight: 500;
		font-style: italic;
		letter-spacing: 0.07vw;
		margin-left: 0;
	}
	
	.title-4 {
		display: none;
		position: absolute;
		right: 1.46vw;
		bottom: 0;
		width: 7.32vw;
	}

	.scrolldown{
		position: absolute;
		left: 3%;
		bottom: 3%;
		height: 7.32vw;
	}

	.scrolldown span{
		position: absolute;
		left: -0.73vw;
		top: -3.66vw;
		color: #eee;
		font-size: 1.32vw;
		font-weight: 500;
		font-style: italic;
		writing-mode: vertical-rl;
		height: 100%;
	}

	.scrolldown::after{
		content: "";
		position: absolute;
		top: 0;
		width: 0.07vw;
		height: 3.66vw;
		background: #eee;
		animation: pathmove 1.4s ease-in-out infinite;
		opacity:0;
	}
}

@keyframes pathmove{
	0%{
		height: 0;
		top: 0;
		opacity: 0;
	}
	30%{
		height: 70px;
		opacity: 1;
	}
	100%{
		height: 0;
		top: 70px;
		opacity: 0;
	}
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

#video-title span {
  display: inline-block;
  opacity: 0;
  animation: popIn 0.8s cubic-bezier(0.2,1,0.2,1) forwards;
}



/*--------------------------------------------------------------
h2
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	h2 {
		padding-left: 5%;
		padding-right: 5%;
		font-size: 25px;
		font-weight: 600;
	}
	
	h2 i {
		font-size: 15px;
		font-weight: 600;
		font-family: "Exo 2", serif;
		font-style: italic;
		display: block;
	}
	
	h2 i.blue {
		color: #2AB4FF;
	}
	
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	h2 {
		padding-left: 5%;
		padding-right: 5%;
		font-size: 2.93vw;
		font-weight: 600;
	}
	
	h2 i {
		font-size: 1.46vw;
		font-weight: 600;
		font-family: "Exo 2", serif;
		font-style: italic;
		display: block;
	}
	
	h2 i.blue {
		color: #2AB4FF;
	}

}

/*--------------------------------------------------------------
#product-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#product-area {
		margin: 0;
		padding: 15px 0 0 0;
		background-color: #232323;
	}
	
	#product-area h2 {
		margin: 0;
		padding-bottom: 5px;
	}
	
	#product-area ul {
		margin: 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	#product-area ul li {
		margin: 0;
		padding: 0;
		width: 100%;
		position: relative;
		line-height: 0;
	}
	
	#product-area ul li dt {
		writing-mode: vertical-rl;
		font-size: 12px;
		line-height: 1;
		font-style: italic;
		font-weight: 500;
		position: absolute;
		top: 5%;
		left: 3%;
		color: #FFF;
	}
	
	#product-area ul li dd {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	#product-area ul li dd img {
		height: 16vw;
		width: auto;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#product-area {
		margin: 0;
		padding: 3.66vw 0 0 0;
		background-color: #232323;
	}
	
	#product-area h2 {
		margin: 0;
		padding-bottom: 0.366vw;
	}
	
	#product-area ul {
		margin: 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	
	#product-area ul li {
		margin: 0;
		padding: 0;
		width: 49.5%;
		position: relative;
		line-height: 0;
	}
	
	#product-area ul li dt {
		writing-mode: vertical-rl;
		font-size: 1.32vw;
		line-height: 1;
		font-style: italic;
		font-weight: 500;
		position: absolute;
		top: 5%;
		left: 3%;
		color: #FFF;
	}
	
	#product-area ul li dd {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		text-align: center;
	}
	
	#product-area ul li dd img {
		height: 7vw;
		width: auto;
	}

}

/*--------------------------------------------------------------
#record-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#record-area {
		margin: 0;
		padding: 15px 0 0 0;
		background: url("images/record_bg.jpg") top center no-repeat;
		-webkit-background-size: auto 70%;
		background-size: auto 70%;
		background-color: #232323;
	}
	
	#record-area h2 {
		padding-bottom: 30px;
	}
	
	#record-area ul {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		flex-wrap: wrap;
		padding-bottom: 0;
	}
	
	#record-area ul li {
		padding: 0 10%;
		width: 100%;
		box-sizing: border-box;
	}
	
	#record-area ul li:first-child {
		border-right: none;
		padding: 0 10% 30px 10%;
	}
	
	#record-area dt {
		font-size: 20px;
		font-weight: 600;
	}
	
	#record-area dt span {
		font-size: 90px;
		font-weight: 500;
		font-style: italic;
		font-family: "Exo 2", serif;
		line-height: 1;
	}
	
	#record-area dt.center {
		text-align: center;
		height: 80px;
	}
	
	#record-area dd {
		text-align: center;
		font-size: 13px;
		font-weight: 500;
		padding-top: 15px;
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#record-area {
		margin: 0;
		padding: 3.66vw 0 0 0;
		background: url("images/record_bg.jpg") top center no-repeat;
		-webkit-background-size: 98% auto;
		background-size: 98% auto;
		background-color: #232323;
	}
	
	#record-area h2 {
		padding-bottom: 5.12vw;
	}
	
	#record-area ul {
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		padding-bottom: 2.20vw;
	}
	
	#record-area ul li {
		padding: 0 5%;
		width: 43.47vw;
		box-sizing: border-box;
	}
	
	#record-area ul li:first-child {
		border-right: 1px solid #676767;
	}
	
	#record-area dt {
		font-size: 2.05vw;
		font-weight: 600;
	}
	
	#record-area dt span {
		font-size: 8.78vw;
		font-weight: 500;
		font-style: italic;
		font-family: "Exo 2", serif;
		line-height: 1;
	}
	
	#record-area dt.center {
		text-align: center;
		height: 8.78vw;
	}
	
	#record-area dd {
		text-align: center;
		font-size: 1.02vw;
		font-weight: 500;
		padding-top: 1.10vw;
	}

}

/*--------------------------------------------------------------
#slidetext-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#slidetext-area {
		margin: 0;
		padding: 0;
	}
	
	article{
		overflow: hidden;
	}
	
	.loop_wrap {
		display: flex;
		width: 100%;
		overflow: hidden;
		color: rgba(239,239,239,0.07);
		font-family: "Exo 2", serif;
	}
	
	.loop_wrap div {
		flex: 0 0 auto;
		white-space: nowrap;
		font-size: 100px;
		overflow: hidden;
		letter-spacing: -2px;
		font-weight: 600;
		font-style: italic;
		line-height: 1;
		padding: 0 60px 30px 0;
	}
	
	.loop_wrap div:nth-child(odd) {
		animation: loop 100s -50s linear infinite;
	}
	
	.loop_wrap div:nth-child(even) {
		animation: loop2 100s linear infinite;
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#slidetext-area {
		margin: 0;
		padding: 0 0 3.66vw 0;
	}
	
	article{
		overflow: hidden;
	}
	
	.loop_wrap {
		display: flex;
		width: 100%;
		overflow: hidden;
		color: rgba(239,239,239,0.07);
		font-family: "Exo 2", serif;
	}
	
	.loop_wrap div {
		flex: 0 0 auto;
		white-space: nowrap;
		font-size: 10.98vw;
		overflow: hidden;
		letter-spacing: -0.15vw;
		font-weight: 600;
		font-style: italic;
		line-height: 1;
		padding: 0 4.39vw 2.20vw 0;
	}
	
	.loop_wrap div:nth-child(odd) {
		animation: loop 100s -50s linear infinite;
	}
	
	.loop_wrap div:nth-child(even) {
		animation: loop2 100s linear infinite;
	}

}


@keyframes loop {
	0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }

@keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }


/*--------------------------------------------------------------
#news-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#news-area {
		margin: 0;
		padding: 15px 5%;
		background-color: #EFEFEF;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	
	#news-area div:first-child {
		margin: 0;
		padding: 0 0 5px 0;
		width: 100%;
		color: #232323;
		box-sizing: border-box;
	}
	
	#news-area div:first-child dl {
		
	}
	
	#news-area h2 {
		color: #232323;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
	}
	
	#news-area h2 i {
		color: #2AB4FF;
	}
	
	#news-area div:first-child dd {
		font-size: 15px;
		font-weight: 500;
		line-height: 1.8;
	}
	
	#news-area div:last-child {
		margin: 0;
		padding: 0;
		width: 100%;
		border-top: 1px solid #C7C7C7;
	}
	
	#news-area div:last-child li a {
		margin: 0;
		padding: 20px 0px;
		border-bottom: 1px solid #C7C7C7;
		display: block;
		transition: all 0.3s ease-out;
	}
	
	#news-area div:last-child li a:hover {
		border-bottom: 1px solid #2AB4FF;
	}
	
	#news-area div:last-child li a:hover dt {
		color: #2AB4FF;
	}
	
	#news-area div:last-child dt {
		font-size: 20px;
		font-weight: 500;
		padding-bottom: 10px;
		transition: all 0.3s ease-out;
	}
	
	#news-area div:last-child dt span {
		display: block;
		color: #2AB4FF;
		font-size: 13px;
		font-weight: 600;
		font-style: italic;
		font-family: "Exo 2", serif;
	}
	
	#news-area div:last-child dd {
		font-size: 14px;
		font-weight: 500;
		line-height: 1.6;
	}
	
	#news-area div:last-child .view-btn {
		padding: 30px 0 0 0;
		font-size: 18px;
		font-style: italic;
		font-weight: 500;
		font-family: "Exo 2", serif;
		border: none;
		text-align: right;
		width: 100%;
	}
	
	#news-area div:last-child .view-btn a {
		transition: all 0.3s ease-out;
	}
	
	#news-area div:last-child .view-btn a:hover {
		color: #2AB4FF;
	}
	
	#news-area div:last-child .material-symbols-outlined {
		margin: 0 0 0 8px;
		border: 1px solid #232323;
		padding: 3px;
		border-radius: 50px;
		vertical-align: -4px;
		font-size: 20px;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}
	
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#news-area {
		margin: 0;
		padding: 3.66vw 5% 2.56vw 5%;
		background-color: #EFEFEF;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	
	#news-area div:first-child {
		margin: 0;
		padding: 0 7% 0 0;
		position: sticky;
		width: 35%;
		color: #232323;
		box-sizing: border-box;
	}
	
	#news-area div:first-child dl {
		position: sticky;
		top: 0.73vw;
		left: 0;
	}
	
	#news-area h2 {
		color: #232323;
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 2.20vw;
	}
	
	#news-area div:first-child dd {
		font-size: 1.10vw;
		font-weight: 500;
		line-height: 1.8;
	}
	
	#news-area div:last-child {
		margin: 0;
		padding: 0;
		width: 65%;
		border-top: 1px solid #C7C7C7;
	}
	
	#news-area div:last-child li a {
		margin: 0;
		padding: 1.098vw;
		border-bottom: 1px solid #C7C7C7;
		display: block;
		transition: all 0.3s ease-out;
	}
	
	#news-area div:last-child li a:hover {
		border-bottom: 1px solid #2AB4FF;
	}
	
	#news-area div:last-child li a:hover dt {
		color: #2AB4FF;
	}
	
	#news-area div:last-child dt {
		font-size: 1.611vw;
		font-weight: 500;
		padding-bottom: 0.73vw;
		transition: all 0.3s ease-out;
	}
	
	#news-area div:last-child dt span {
		display: block;
		color: #2AB4FF;
		font-size: 0.95vw;
		font-weight: 600;
		font-style: italic;
		font-family: "Exo 2", serif;
	}
	
	#news-area div:last-child dd {
		font-size: 1.10vw;
		font-weight: 500;
		line-height: 1.8;
	}
	
	#news-area div:last-child .view-btn {
		padding: 2.20vw 0 0 0;
		font-size: 1.46vw;
		font-style: italic;
		font-weight: 500;
		font-family: "Exo 2", serif;
		border: none;
		text-align: right;
		width: 100%;
	}
	
	#news-area div:last-child .view-btn a {
		transition: all 0.3s ease-out;
	}
	
	#news-area div:last-child .view-btn a:hover {
		color: #2AB4FF;
	}
	
	#news-area div:last-child .material-symbols-outlined {
		margin: 0 0 0 0.59vw;
		border: 1px solid #232323;
		padding: 0.22vw;
		border-radius: 3.66vw;
		vertical-align: -0.29vw;
		font-size: 1.83vw;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}

}


/*--------------------------------------------------------------
#about-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#about-area {
		margin: 0;
		padding: 15px 0 50px 0;
		background: rgba(35,35,35,0.9);
		position: relative;
	}
	
	#about-area h3 {
		font-size: 20px;
		font-weight: 600;
		position: absolute;
		bottom: 20px;
		right: 5%;
		z-index: 1;
		width: 80%;
	}
	
	#about-area h3 i {
		margin: 0;
		padding: 20px 0 0 0;
		font-size: 15px;
		font-weight: 600;
		font-style: italic;
		color: #2AB4FF;
		line-height: 1;
		font-family: "Exo 2", serif;
		display: block;
	}
	
	
	.slider{
		display: none;
	}
	
	.slider li{
		background: #232323;
	}
	
	.slider img {
		width: 100%;
		height: auto;
		opacity: 0.6;
	}
	
	.slider .slick-slide {
		margin: 0 20px;
	}
	
	.slider.slick-initialized {
		display: block;
	}
	
	.slick-slider { transition: none; }
	
	
	#about-area .material-symbols-outlined {
		margin: 0 0 0 5px;
		padding: 3px;
		border-radius: 50px;
		vertical-align: -4px;
		font-size: 20px;
		position: absolute;
		bottom: 0;
		right: 0;
		background: #2AB4FF;
		color: #FFF;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#about-area {
		margin: 0;
		padding: 3.66vw 0;
		background: rgba(35,35,35,0.9);
		position: relative;
	}
	
	#about-area h3 {
		font-size: 2.19vw;
		font-weight: 600;
		position: absolute;
		bottom: 2.92vw;
		right: 5%;
		z-index: 1;
		width: auto;
	}
	
	#about-area h3 i {
		margin: 0;
		padding: 1.46vw 0 0 0;
		font-size: 1.46vw;
		font-weight: 600;
		font-style: italic;
		color: #2AB4FF;
		line-height: 1;
		font-family: "Exo 2", serif;
		display: block;
	}
	
	
	.slider{
		display: none;
	}
	
	.slider li{
		background: #232323;
	}
	
	.slider img {
		width: 100%;
		height: auto;
		opacity: 0.6;
	}
	
	.slider .slick-slide {
		margin: 0 1.46vw;
	}
	
	.slider.slick-initialized {
		display: block;
	}
	
	
	#about-area .material-symbols-outlined {
		margin: 0 0 0 0.59vw;
		padding: 0.22vw;
		border-radius: 3.66vw;
		vertical-align: -0.29vw;
		font-size: 2.05vw;
		background: #2AB4FF;
		color: #FFF;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}

}


/*--------------------------------------------------------------
#recruit-area
--------------------------------------------------------------*/

/* mobile */
@media (min-width: 300px) {
	
	#recruit-area {
		background: #232323;
	}
	
	#recruit-area a {
		padding: 15px 0 50px 0;
		display: block;
		color: #FFF;
		background: url("images/recruit_bg_sp.png") top center no-repeat;
		background-size: cover;
		width: 100%;
		aspect-ratio: 395 / 175;
		box-sizing: border-box;
		position: relative;
	}
	
	#recruit-area .in_recruit {
		font-size: 50px;
		font-weight: 700;
		font-style: italic;
		color: rgba(255,255,255,0.09);
		line-height: 1;
		font-family: "Exo 2", serif;
		position: absolute;
		right: 5%;
		bottom: -5px;
	}
	
	
	#recruit-area .material-symbols-outlined {
		position: absolute;
		z-index: 1;
		right: 5%;
		bottom: 2.92vw;
		padding: 3px;
		border-radius: 50px;
		vertical-align: -4px;
		font-size: 20px;
		border: 1px #FFF solid;
		color: #FFF;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}
}

/* Small than tablet */
@media (min-width: 768px) {
	
	
	
}


/* Larger than tablet */
@media (min-width: 992px) {
	
	#recruit-area {
		background: #232323;
	}
	
	#recruit-area a {
		padding: 3.66vw 0;
		display: block;
		color: #FFF;
		background: url("images/recruit_bg.png") top center no-repeat;
		background-size: cover;
		width: 100%;
		aspect-ratio: 1365 / 362;
		box-sizing: border-box;
		position: relative;
	}
	
	#recruit-area .in_recruit {
		font-size: 10.76vw;
		font-weight: 700;
		font-style: italic;
		color: rgba(255,255,255,0.09);
		line-height: 1;
		font-family: "Exo 2", serif;
		position: absolute;
		right: 5%;
		bottom: -1.098vw;
	}
	
	
	#recruit-area .material-symbols-outlined {
		position: absolute;
		z-index: 1;
		right: 5%;
		bottom: 2.92vw;
		padding: 0.22vw;
		border-radius: 3.66vw;
		vertical-align: -0.29vw;
		font-size: 2.05vw;
		border: 1px #FFF solid;
		color: #FFF;
		font-variation-settings:
			'FILL' 0,
			'wght' 200,
			'GRAD' 0,
			'opsz' 24
	}

}