@charset "UTF-8";
/* CSS Document */

html {
 	/* -webkit-text-size-adjust: 100%; */
	height: 100%;
	margin: 0;
	padding: 0;
	
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	
	scroll-behavior: smooth;
}
body {
	width: 100%;
	margin: 0;
	padding: 0;
	
	font-family: "M PLUS 1p",sans-serif,"游ゴシック体";
	
	/*
	font-family: "futura-pt", sans-serif;
	font-weight: 400; 500; 600; 700; 800;
	font-style: normal;
	*/
	
	color: #333333;
	font-size: 16px;
	font-weight: 600;
	
	/*
	background-image: url("../images/backiage.png");
	background-repeat: no-repeat;
	background-size: 100%;
	background-attachment: fixed;
	*/
	
	margin: 0;
	padding: 0;
	
	text-align:justify;
	word-break:break-all; 
	text-justify:inter-ideograph;
	text-justify:inter-character;
	word-wrap:break-word;
	overflow-wrap:break-word;
}

#page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* wrapが伸びるように */
#wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@font-face{

}

h1,h2 {
	margin: 0;
	padding: 0;
}
img {
	display: block;
	vertical-align: bottom;
	margin: 0 auto;
}
svg {
	vertical-align: bottom;
	line-height: 1;
	overflow-x: hidden;
	overflow-y: hidden;
}
a:link{ color: #555555; }
a:visited { color: #555555; }
a:hover { color: #555555; }
a:active { color: #555555; }

a {
	text-decoration: none;
  	display: block;
  	transition: .3s;
  	-webkit-transform: scale(1);
  	transform: scale(1);
}
/*
a:hover {
  	-webkit-transform: scale(1.03);
 	transform: scale(1.03);
	opacity: 0.6;
	filter: alpha(opacity=60);
}
a {
  -webkit-transition: 0.3s ease-in-out;
     -moz-transition: 0.3s ease-in-out;
       -o-transition: 0.3s ease-in-out;
          transition: 0.3s ease-in-out;
}
*/
p { margin: 0;}

/* PC none */
@media screen and (min-width: 801px) {
	.pc-none{ display:none; }
	}
@media screen and (min-width: 1300px) {
	.pc-none2{ display:none; }
	}
@media screen and (min-width: 500px) {
	.pc-none3{ display:none; }
	}
@media screen and (min-width: 480px) {
	.pc-none4{ display:none; }
	}
/* SP none */
@media screen and (max-width: 800px) {
	.sp-none{ display:none; }
	}

.scroll_down a{
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}

/* scroll button */
.scroll_down a{
  color: #ffffff;
  position: absolute;
  bottom: 60px;
  left: 50%;
  display: block;
  background-size: 14px auto;
  z-index: 2;
  text-decoration: none; 
  transform: translate(-50%, -50%);
}
.scroll_down a:before {
  position: absolute;
  top: calc(50% + 24px);
  left: calc(50% - 8px);
  transform: rotate(-45deg);
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  border: 2px solid #ffffff;
  border-width: 0px 0 2px 2px;
  animation: bounce 2s linear infinite;
}
.scroll_down a:after {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 2px solid #ffffff;
  content: "";
  border-radius: 50%;
  top: calc(50% + 16px);
  left: calc(50% - 19px);
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  70%,
  80% {
    -webkit-transform: translateY(0)rotate(-45deg);
    -ms-transform: translateY(0)rotate(-45deg);
    transform: translateY(0)rotate(-45deg);
  }
  40% {
    -webkit-transform: translateY(-8px)rotate(-45deg);
    -ms-transform: translateY(-8px)rotate(-45deg);
    transform: translateY(-8px)rotate(-45deg);
  }
  60% {
    -webkit-transform: translateY(-4px)rotate(-45deg);
    -ms-transform: translateY(-4px)rotate(-45deg);
    transform: translateY(-4px)rotate(-45deg);
  }
}
/* scroll button */

/* button line */
.button_line001 {
	padding: 10px;
	font-family: "futura-pt", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 15px;
}
.button_line001 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 90px;
    padding: 10px 0px;
    color: #313131;
    transition: 0.3s ease-in-out;
}
.button_line001 a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,.1);
    transform: translateX(-50%);
}
.button_line001 a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.button_line001 a:hover {
    opacity: 0.7;
}
.button_line001 a:hover:after {
    transform: scale(1, 1);
}

/* move-up */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2.0s ease, transform 2.0s ease;
}
.fade-in.inview {
  opacity: 1;
  transform: translateY(0);
}

/********** navi**********/

.navi-pc-links {
	height: 50px;
	display: flex;
	align-items: center;
	padding: 0 20px;

	color: #dddddd;
	font-size: 0.7rem;
	font-weight: 400;
}
.navi-pc-links a:link{ color: #dddddd; }
.navi-pc-links a:visited { color: #dddddd; }
.navi-pc-links a:hover { color: #ffffff; }
.navi-pc-links a:active { color: #ffffff; }

.navi-wrapper {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.navi {
	width: 100%;
	height: 50px;
	margin: 0 auto;  
	display: flex;
	align-items: center;
	
	position: fixed;
	top: 0;
	z-index: 100;
	background-color: rgba(50,50,50,0.9);
}

.navi-logo {
	height: 50px;
	display: flex;
	align-items: center;
	padding: 0 10px;
	
	font-family: serif;
	color: #999999;
}
.navi-logo h1{
	font-size: 1.5rem;
}
.navi-right {
	margin-right: auto;
	display: flex;
	align-items: center;
	/* gapでrecruitとaccessの間隔調整 */
	gap: 0; /* 必要に応じて10pxなどに変更可 */
	margin-right: 70px; /* 右側余白調整 */
}
.navi-right-pc {
	margin-right: 0px;
}

.navi-recruit, .navi-access {
	width: 100px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-weight: 400;
	font-size: 0.9rem;
}
.navi-recruit {
	background-color: #660000;
}
.navi-access {
	background-color: #000000;
}


/********** mail icon **********/
.dli-mail {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
	margin-right: 3px;
  line-height: 1;
  position: relative;
  width: 1.06667em;
  height: 0.8em;
  border: 0.1em solid currentColor;
  border-radius: 0.1em;
  box-sizing: content-box;
  overflow: hidden;
}
.dli-mail::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 0.75425em;
  height: 0.75425em;
  border: 0.1em solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 0.1em;
  box-sizing: content-box;
  transform: translate(-50%, -50%) rotate(-45deg) skew(10deg, 10deg);
}
/* ここまでヘッダー *****************************************************/





/* screen mask *****************/
.section-01-mask{
	position: relative;
	width: 100%;
	height: 100%;
}

/* 縦 */
.section-screen{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(255,255,255,0.6);
	transition: transform 1s ease-out;
    transform-origin: top;
	z-index: 2;
}
.section-screen.shrink {
    transform: scaleY(0);
  }

/* 横 */
.section-screen-W{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(255,255,255,1);
	transition: transform 1s ease-out;
    transform-origin: right;
	z-index: 2;
}
.section-screen-W.shrink {
    transform: scaleX(0);
  }
/* screen mask *****************/


/* 画像横から */
.section-service-contents-S {
	opacity: 0;
	transform: translateX(-200px) rotate(-25deg);	/* 左から+少し傾ける */
	transition: transform 0.8s ease, opacity 0.8s ease;
}
.section-service-contents-S.from-right {
	transform: translateX(200px) rotate(25deg);		/* 右から+逆に傾ける */
}
.section-service-contents-S.show {
	opacity: 1;
	transform: translateX(0) rotate(0deg);			/* 正面で停止 */
}
/* 画像横から */



/* スクロール */
@keyframes infinity-scroll-left {
	from {
	  transform: translateX(0);
	}
	  to {
	  transform: translateX(-100%);
	}
}
	@keyframes infinity-scroll-right {
	from {
	  transform: translateX(-100%);
	}
	  to {
	  transform: translateX(0%);
	}
	}

ul , li {
	padding: 0;
	margin: 0;
}
	
.sec21base{
	position: relative;
	width: 100%;
	margin-top: 6vw;
	margin-bottom: 3vw;
}
.scroll-assy{
	background-color: #000000;
}
.scroll-assy2{

}
.scroll-infinity__wrap {
	display: flex;
	overflow: hidden;
}
.scroll-infinity__list {
	display: flex;
	list-style: none;
	padding: 0;
}
.scroll-infinity__list--left {
	animation: infinity-scroll-left 10s infinite linear 0.0s both;
}
.scroll-infinity__list--right {
	animation: infinity-scroll-right 10s infinite linear 0.0s both;
}
.scroll-infinity__list--left-2 {
	animation: infinity-scroll-left 10s infinite linear 1.5s both;
}
.scroll-infinity__item {
	width: calc(100vw / 4.5);
	padding: 1vw;
}
@media screen and (max-width: 800px) {
	.scroll-infinity__item { width: calc(100vw / 2);}
}
.scroll-infinity__item>img {
	width: 100%;
	/*border-radius: 2vw;*/
}
/* スクロール */






.or{
	color: #F46200;
}
.light-or{
	color: #FF9046;
}
.bl{
	color: #336699;
}
.light-bl{
	color: #8EB4D9;
}
.re {
	color: #ff0000;
}
.br {
	color: #361200;
}
.light-br {
	color: #6F2500;
}
.in {
	text-indent: -1em;
	padding-left: 1em;
}
/* Top Title *************************************************************************************************/

.top-titles{
	position: relative;
}
.job-overcolor {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;

	/* まずベースの白半透明 */
	background-color: rgba(255, 255, 255, 0.6);

	/* その上に縦ストライプを重ねる */
	background-image: repeating-linear-gradient(
		90deg,                               /* 縦方向 */
		rgba(255, 255, 255, 0.3) 0,          /* ストライプ部分（さらに薄い白） */
		rgba(255, 255, 255, 0.3) 2px,        /* ストライプの太さ */
		rgba(255, 255, 255, 0) 2px,          /* 透明部分開始 */
		rgba(255, 255, 255, 0) 6px           /* ストライプの間隔 */
	);
}

.top-titles-inner{
	width: 80%;
	height: 100%;

	text-align: center;
	
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	
	box-sizing: content-box;
	
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items:center;

}
.top-titles-inner-up{
	width: 100%;
	height: auto;

}
.top-titles-inner-up h1{
	font-family: "M PLUS 1p";
	
	font-size:min(6vw,80px);
	line-height: 1;
	text-align: center;
	font-weight: 800;
	white-space: nowrap;
}

.top-titles-inner-low{
	width: 100%;
	height: auto;
	color: #555555;
	font-size:min(3vw,30px);
}



@media screen and (max-width: 480px) {
	.top-titles-inner-low{font-size: 1.2rem;}
	}
/* Top Title *************************************************************************************************/








/* section ******************************************/
.section-wrapper {
	position: relative;
	width: 100%;
	height: auto;
	
}

/********* back text *********/
.section-bg{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	
	overflow: hidden;
	
	font-family: "futura-pt", sans-serif;
	font-size: min(19vw, 300px);
	line-height: 1;
	text-align: left;
	font-weight: 1000;
	white-space: nowrap;
}
.section-bg-mission{
	color: rgba(180,180,180,0.1);
}

/********* background image *********/
.section-contents {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	background-color: #ffffff;
	overflow: hidden;
	
}
.section-contents-mission {
	background-color: rgba(255,255,255,1);
	background-image: url("");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	
}


.section-contents-inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	height: auto;
	box-sizing: border-box;
	padding: 30px;

}
.section-contents-assy {
	width: 90%;
	height: auto;
	margin: 0 auto;
	padding: 20px 0 20px 0;
	margin-top: 20px;
	margin-bottom: 50px;

	text-align: left;
	line-height: 2;

}


@media screen and (max-width: 900px) {
	.section-contents-title-main { font-size: 3vw;}
	}
@media screen and (max-width: 620px) {
	.section-contents-title-main { font-size: 3vw;}
	.section-contents { padding: 0 0 0 0;}
	
	}
@media screen and (max-width: 480px) {
	.section-contents-inner { padding: 0px;}
	.section-contents-assy {width: 100%;}
	.section-contents-text { font-size: 4vw;}
	.section-contents-text-message { font-size: 3vw;}
	}







/*=============== privacy ===============*/
.marketing-wrap{
	margin: 0 auto;
	width: 95%;
	max-width: 800px;
	text-align: justify;
	font-weight: 400;
	line-height: 1.7;
}
.marketing-read{
	font-weight: 800;
	font-size:clamp(18px, 3.5vw, 35px);
	text-align: center;
}

.marketing-text{
	font-weight: 400;
	font-size:clamp(16px, 2.0vw, 20px);
	text-align: center;
	padding-bottom: 20px;
}
@media screen and (max-width: 480px) {


}
.m50px {
	margin-top: 50px;
}
.privacy-title{
	margin-top: 30px;
	margin-bottom: 10px;
	font-weight: 800;
	
}

.privacy-table{
	width: 100%;
	display: flex;
	line-height: 1.5;
	border: solid 1px #cccccc;
	box-sizing: border-box;
	font-size: 0.9rem;
}
.privacy-table-left{
	width: 20%;
	display: flex;
	padding: 10px;
	background-color: #eeeeee;
	box-sizing: border-box;
}
.privacy-table-right{
	width: 80%;
	
	padding: 10px;
	box-sizing: border-box;
}
.privacy-table-right ul {
	padding-left: 1em;
}
.job-indent{
	text-indent: -1em;
	padding-left: 1em;
}
@media screen and (max-width: 480px) {
	.privacy-table{ flex-direction: column;}
	.privacy-table-left{ width: 100%;}
	.privacy-table-right{ width: 100%;}
}


.privacy-indent{
	text-indent: -1em;
	padding-left: 1em;
}



/* Titles *******/
.section-title-job-assy{

	margin: 0 auto;
	margin-top: 80px;
	width: 80%;
	max-width: 800px;
	padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
	.section-title-job-assy{ width: 90%;}
}
.section-title-container-job{
	width: auto;
	height: auto;
	border: solid #333333;
	border-width: 0px 0px 0px 5px;
	padding: 0px 10px 0px 10px;
}
.section-title-upper-job{
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	font-style: normal;
	
	color: #333333;
	font-size: 1.8rem;
	line-height: 1;
}
.section-title-lower-job h2{
	color: #333333;
	padding-top: 10px;
	padding-left: 20px;
	font-size: 1.3rem;
	line-height: 1.3;
}

/* icons *******/
.job-icons{
	background-color: #336699;
	margin-top: 20px;
	margin-bottom: 30px;
	padding: 20px 10px;
	color: #ffffff;
	border-radius: 20px;
}
.jobs-schedule-wrapper{
	width: 90%;
	margin: 0 auto;
	padding-bottom: 5vw;
}
.jobs-schedule-container{
	width: 100%;
	display: flex;

	justify-content: space-between;
}
.jobs-schedule-contents{
	width: 20vw;
	max-width: 200px;

	
	height: 20vw;
	max-height: 200px;
	
	display: flex;
	justify-content: center;
	align-items: center;
	
	background-color: gold;
	border: solid 3px #333333;
	border-radius: 20px;
}
.jobs-schedule-contents-inner{
	

}
.jobs-schedule-icon{
	width: 13vw;
	max-width: 120px;
	height: 13vw;
	max-height: 120px;
	margin: 0 auto;
	padding: 10px;

}
.jobs-schedule-text{
	text-align: center;
	font-size: clamp(9px, 1.8vw, 18px);
	color: #333333;
}

@media screen and (max-width: 480px) {
	.job-icons{border-radius: 0;}
	.jobs-schedule-wrapper{width: 100%;}
	.jobs-schedule-contents{ width:30%; height: auto; padding: 10px 0;}
}

/* flow *******/
.job-contents-title {
	padding-top: 50px;
	text-align: center;
	font-size:clamp(18px, 3.5vw, 35px);
	font-weight: 500;
}
.job-flow{
	display: flex;
	justify-content: space-between;

	margin-top: 20px;
	margin-bottom: 20px;
	padding-top:  20px;
	padding-bottom: 20px;
}
.job-flow-contents {
	text-align: center;
	flex: 1 1 0;
	max-width: 33%;
	line-height: 1.0;
}
.job-flow-contents span {
	font-size: 0.7rem;
}
.job-flow-contents p{
	padding: 10px 0 5px 0;
}
.circle-bg-1,
.circle-bg-2,
.circle-bg-3 {
  width: clamp(50px, 80%, 200px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  margin: 0 auto;

}
.circle-bg-1 {
	background: #e2e2e2 no-repeat center / 50% url("../images/jobs-icon/flow1.svg");
}
.circle-bg-2 {
	background: #e2e2e2 no-repeat center / 50% url("../images/jobs-icon/flow2.svg");
}
.circle-bg-3 {
	background: #e2e2e2 no-repeat center / 50% url("../images/jobs-icon/flow3.svg");
}
.job-flow-arrow {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 0 10px;
}
.job-flow-arrow-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 18vw;
	max-height: 190px;
	font-size: 2rem;
	font-weight: 800;
}



/* リンクボタン *******/
.job-button{
  margin: 0 auto;
  width: 80%;
  max-width: 400px;
  padding: 20px 0;

  color: #fff;              /* 白文字 */
  font-size: 2rem;
  text-align: center;
  background: #990000;         /* 通常は黒背景 */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.4s ease;
}

.job-button::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #ff0000;          /* ホバー時にスライドしてくる赤 */
  transition: left 0.4s ease;
  z-index: 0;
}

.job-button:hover::before{
  left: 0;
}

.job-button span{
  position: relative;
  z-index: 1; /* テキストを前面に */
}

@media screen and (max-width: 480px) {
  .job-button{ width: 100%; }
}



/********** footer **********/
.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	
	box-sizing: border-box;
	
	width: 100%;
	height: auto;
	padding: 20px;
	
	background: #999999;
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 400;
	}		
.footer-links{
	padding: 0 10px 0 10px;
}
.footer a:link{ color: #dddddd; }
.footer a:visited { color: #dddddd; }
.footer a:hover { color: #333333; }
.footer a:active { color: #333333; }
@media screen and (max-width:801px){
	.footer { flex-flow: column; }
	.footer-links{ text-align: center; }
 	 }









