@charset "utf-8";

.loading-pulse {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, yellow, var(--sub-color));
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}

.loading-pulse::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: linear-gradient(135deg, yellow, var(--sub-color));
  filter: blur(20px);
  opacity: 0.7;
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

#loading {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-color);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999999999;
}




/* -----------------
main-fv
-----------------------*/
#main-fv {
	background: url("../img/home/fv_bg.jpg") no-repeat center;
	background-size: cover;
    overflow: hidden;
}
#main-fv .inner {
	min-height: 900px;
	padding-top: 120px;
}
#main-fv .inner {
    height: 100vh;
}
.main-fv-catch {
    width: 50%;
}
.main-fv-pic {
    width: 50vw;
    position: absolute;
    left: 45%;
    top: 100px;
}
.main-fv-pic img {
	max-width: 140vw;
}

#home-news {
	display:flex;
	width: 100%;
	max-width: 800px;
    color: #fff;
    position: absolute;
    left: 20px;
    bottom: 50px;
}
#home-news .cmn-title {
	width: 230px;
	margin-bottom: 0;
	margin-top: -10px;
}
#home-news .cmn-title h2 {
    font-size: 70px;
}
.home-news-contents {
    display: flex;
    justify-content: space-between;
	width: calc(100% - 250px);
}
.home-news-contents .news__list {
    width: calc(100% - 140px);
}
.news__list a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.news__list .news-date {
	width: 70px;
}
.news__list .news-category {
	width: 80px;
	text-align: center;
}
.news__list .news-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: calc(100% - 170px);
}
.news-more {
    margin-left: auto;
}
.news-more a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border: solid 1px #fff;
    border-radius: 1000px;
}
.news-more a i.arrow-anime {
    margin-left: 5px;
}

.home-news-contents .news__list a {
	color: #fff;
}

@media (max-width: 815px) {

	#main-fv .inner {
		height: auto;
		min-height: 100%;
		padding: 15% 20px;
	}
	.main-fv-catch {
		width: 40%;
	}
	.main-fv-pic {
		top: 10%;
	}
}



/* -----------------
home-intro
-----------------------*/
#home-intro {
    padding-top: 30px;
}
#home-intro h2 {
    font-size: 132px;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px var(--base-color);
    line-height: 1;
	margin-bottom: 50px;
}
#home-intro h3 {
	font-size: 54px;
    text-align: center;
	margin-bottom: 30px;
}
#home-intro h3 span {
    display: inline-block;
    padding: 5px 20px;
    background: var(--sub-color);
}
.intro-features {
	
}
.intro-features__list {
	display: flex;
	justify-content: space-between;
}
.intro-features__list >li {
	width: 32%;
	background: url("../img/home/feature_bg.png") no-repeat center;
	background-size: cover;
	text-align: center;
	padding: 10px;
}
.intro-features__list >li h4 {
	font-size: 25px;
	color: var(--sub-color);
	line-height: 1;
}
.intro-features__list >li h4 span {
	font-size: 220%;
}
.intro-features__list >li p {
	color: #fff;
	font-size: 30px;
	font-weight: 500;
	margin-top: 10px;
}
.intro-features-text {
    font-size: 24px;
    text-align: center;
    margin-top: 50px;
}
.intro-features-catch {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-top: 70px;
}
.intro-features-catch span {
    padding: 5px 20px;
    background: var(--sub-color);
}


@media (max-width: 815px) {


	#home-intro h2 {
		font-size: 60px;
		margin-bottom: 30px;
	}
	#home-intro h3 {
		font-size: 24px;
	}
	.intro-features__list {
		display: block;
	}
	.intro-features__list >li {
		width: 100%;
		margin-bottom: 20px;
	}
	.intro-features__list >li h4 {
		font-size: 18px;
	}
	.intro-features__list >li p {
		font-size: 18px;
	}
    .intro-features-text {
		font-size: 18px;
		text-align: left;
	}
	.intro-features-catch {
		font-size: 20px;
		margin-top: 50px;
	}
	.intro-features-catch span {
		display: block;
	}

}





/* -----------------
home-interview
-----------------------*/
#home-interview {
	padding: 500px 0 200px;
	background: var(--sub-color);
}
#home-interview .inner {
    margin-top: -250px;
}
.home-interview-pic {
    width: 100%;
    height: 500px;
	overflow: hidden;
    text-align: right;
	background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.home-interview-pic img {
    max-width: 70%;
}


#home-interview-slide {
    padding-top: 20px;
    overflow: visible;
}
#home-interview-slide .swiper-slide a {
	color: var(--base-color);
}
.interview-comment {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: -20px;
    left: -20px;
	z-index: 1;
}
.interview-comment span {
	display: inline-block;
	font-size: 40px;
	font-weight: 500;
	padding: 5px;
	background: #fff;
}
.interview-comment span:nth-of-type(2) {
    margin-top: 2rem;
	margin-right :10px;
}
.interview-name {
	text-align: center;
	margin-top: 10px;
	font-size: 18px;
}
.interview-name span {
	font-size: 180%;
	font-weight: 500;
}

.home-interview-swiper-button {
    width: 220px;
    position: absolute;
    left: 20px;
    bottom: -80px;
}
.home-interview-swiper-button .swiper-button-next,
.home-interview-swiper-button .swiper-button-prev {
    width: 100px;
    height: 100px;
    border: solid 2px;
    border-radius: 1000px;
    color: var(--base-color);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.home-interview-swiper-button .swiper-button-next {
	right: 0;
}
.home-interview-swiper-button .swiper-button-prev {
	left: 0;
}
.home-interview-swiper-button .swiper-button-next:hover,
.home-interview-swiper-button .swiper-button-prev:hover {
    color: #fff;
    background: var(--base-color);
}

#home-interview .contents-wave {
    position: absolute;
    top: 0;
    left: 0;
}


@media (max-width: 815px) {

	#home-interview {
		padding: 300px 0 100px;
	}
	#home-interview .inner {
		margin-top: -150px;
	}
	.home-interview-pic {
		height: 150px;
	}

	.interview-comment {
		top: -20px;
		left: -10px;
	}
	.interview-comment span {
		font-size: 16px;
		margin: 0 -5px;
	}

	.home-interview-swiper-button {
		width: 130px;
	}
	.home-interview-swiper-button .swiper-button-next,
	.home-interview-swiper-button .swiper-button-prev {
		width: 60px;
		height: 60px;
	}
	.home-interview-swiper-button .swiper-button-next:hover,
	.home-interview-swiper-button .swiper-button-prev:hover {
		font-size: 30px;
	}
	#home-interview .cmn-viewmore {
		margin-top: 150px;
	}

}


/* -----------------
home-data
-----------------------*/
#home-data {
	color: #fff;
	background-color: var(--main-color);
	background-image: url("../img/home/data_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 1;
}
.home-data-img {
    filter: blur(100px);
    transform: scale(2);
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}
.home-data-img.animated {
    transform: scale(1);
    filter: blur(0);
}
.home-data-btm {
    display: flex;
    margin-top: 80px;
}
.home-data-btm .text {
    font-size: 20px;
    line-height: 2;
    margin-right: auto;
}
.home-data-btm .cmn-viewmore {
    text-align: right;
    margin-top: 0;
}

@media (max-width: 815px) {

	.home-data-btm {
		display: block;
		margin-top: 40px;
	}
	.home-data-btm .text {
		font-size: 16px;
	}
	.home-data-btm .cmn-viewmore {
		margin-top: 30px;
	}

}


/* -----------------
home-job
-----------------------*/
#home-job {
	background: #fff;
	z-index: 1;
}
.home-job-in {
    display: flex;
}
.home-job-in .cmn-title {
    width: 20%;
    height: 100%;
    margin: 0;
}
.home-job-in .swiper-container {
    width: 80%;
	max-height: 800px;
    padding-left: 15%;
}

#home-job-slide .swiper-slide {
    height: auto;
	margin-bottom: 50px;
}
#home-job-slide .swiper-slide a {
    display: block;
    color: var(--base-color);
}
.job-slide-in {
    display: flex;
    justify-content: space-between;
}
.job-slide-in .img {
	width: 60%;
}
.job-slide-in .info {
	width: 35%;
}
.job-slide-in .info .num {
	font-size: 120px;
    font-weight: 600;
	line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--base-color);
}
.job-slide-in .info h3 {
	display: inline-block;
	font-size: 28px;
	line-height: 1;
	padding: 5px 10px;
	margin-top: 10px;
	border: solid 1px;
}
.job-slide-in .info p {
	font-size: 20px;
	margin-top: 10px;
}
.job-slide-in .info .more-btn {
    color: var(--main-color);
    font-size: 35px;
    font-weight: 600;
    margin-top: 30px;
    text-align: right;
}
.job-slide-in .info .more-btn span {
    display: inline-block;
    padding: 5px 10px;
    line-height: 1;
    position: relative;
}
.job-slide-in .info .more-btn span i.arrow-anime {
    margin-left: 5px;
    vertical-align: 2px;
}
.job-slide-in .info .more-btn span:after {
	content: '';
	width: 50vw;
	height: 100%;
	background: var(--sub-color);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.home-job-swiper-button {
	width: 10%;
    position: absolute;
    left: 0;
    top: 0;
}
.home-job-swiper-button .swiper-button-next, 
.home-job-swiper-button .swiper-button-prev {
    position: relative;
	left: auto;
	right: auto;
    background: var(--sub-color);
    width: 100%;
    height: 0;
    padding-top: 100%;
    border-radius: 1000px;
	margin-top: auto;
	margin-bottom: 10px;
}
.home-job-swiper-button .swiper-button-prev:after,
.home-job-swiper-button .swiper-button-next:after  {
    font-size: 24px;
    font-weight: 600;
    color: var(--base-color);
	position: absolute;
	top: 38%;
}
.home-job-swiper-button .swiper-button-prev:after {
    transform: rotate(90deg);
}
.home-job-swiper-button .swiper-button-next:after {
    transform: rotate(90deg);
}


@media (max-width: 815px) {

	.home-job-in {
		display: block;
	}
	.home-job-in .cmn-title {
		width: 100%;
		height: 100%;
		margin: 0 0 50px;
	}

	.home-job-in .swiper-container {
		width: 100%;
		padding-left: 20%;
	}
	.job-slide-in {
		display: block;
	}
	.job-slide-in .img {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.job-slide-in .info {
		width: 100%;
	}
	.job-slide-in .info .num {
		font-size: 60px;
	}
	.job-slide-in .info h3 {
		font-size: 18px;
	}
	.job-slide-in .info p {
		font-size: 16px;
	}

	.home-job-swiper-button {
		width: 15%;
	}
	.home-job-swiper-button .swiper-button-prev:after,
	.home-job-swiper-button .swiper-button-next:after {
		top: 32%;
	}
	.job-slide-in .info .more-btn {
		font-size: 24px;
	}

}


/* -----------------
contents
-----------------------*/
/* JOB出すとき
#home-contents {
    margin-top: -500px;
    padding: 500px 0 200px;
    background: #e8e8e8;
    clip-path: polygon(0 0, 100% 500px, 500px 10000%);
    z-index: 1;
    overflow: hidden;
}
*/
#home-contents {
    background: #e8e8e8;
    z-index: 1;
    overflow: hidden;
}
.home-contents__list {
	display: flex;
	flex-wrap: wrap;
}
.home-contents__list >li {
    width: 45%;
    margin: 0 0 70px 10%;
    position: relative;
}
.home-contents__list >li:nth-child(2n+1) {
	margin-left: 0;
}
.home-contents__list a {
    display: block;
    color: var(--base-color);
    padding-left: 50px;
}
.home-contents__list h3 {
	color: #fff;
	font-size: 28px;
	padding: 5px 10px;
	background: var(--main-color);
	position: absolute;
	top: 15px;
	left: 0;
	z-index: 1;
}
.home-contents__list .img {
	margin-bottom: 20px;
}
.home-contents__list p {
	font-size: 20px;
	line-height: 1.8;
}
.home-contents__list .more-btn {
	color: var(--main-color);
	font-size: 31px;
	font-weight: 600;
	display: flex;
	justify-content: end;
	align-items: center;
	margin-top: 20px;
}
.home-contents__list .more-btn span {
    background: #fff;
    padding: 5px 10px;
    line-height: 1;
}
.home-contents__list .more-btn span i.arrow-anime {
	margin-left: 5px;
}
.home-contents__list a:hover .img img {
    transform: scale(1.1);
}

#home-contents .contents-wave {
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 815px) {

/* JOB出すとき
    #home-contents {
        margin-top: -350px;
        padding: 150px 0 50px;
        clip-path: polygon(0 0, 100% 150px, 150px 10000%);
    }
*/

	.home-contents__list >li {
		width: 48%;
		margin: 0 0 50px 4%;
	}
	.home-contents__list >li:nth-child(2n+1) {
		margin-left: 0;
	}
	.home-contents__list a {
		padding-left: 0;
	}
	.home-contents__list h3 {
		font-size: 12px;
		top: -15px;
		left: 0px;
	}
	.home-contents__list .img {
		margin-bottom: 15px;
	}
	.home-contents__list p {
		font-size: 14px;
	}
	.home-contents__list .more-btn {
		font-size: 18px;
	}
	.home-contents__list .more-btn span i.arrow-anime {
		vertical-align: -3px;
	}

}


/* -----------------
movie
-----------------------*/




@media (max-width: 815px) {


}



/* -----------------
home-news-sp sp用
-----------------------*/
@media (max-width: 815px) {

	#home-news-sp {
		background: #e8e8e8;
	}
	#home-news-sp .cmn-viewmore {
		margin-top: 50px;
	}
}




