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

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	
	font-family: "M PLUS 1p",sans-serif;
	text-align:justify;
	word-break:break-all; 
	text-justify:inter-ideograph;
	text-justify:inter-character;
	word-wrap:break-word;
	overflow-wrap:break-word;
	letter-spacing: 0.02em;
	/*
	background-image: url("../images/backimage.png");
	background-repeat: no-repeat;
	background-size: 100%;
	background-attachment: fixed;
	*/
}
html{
	/*scroll-behavior: smooth;*/
}
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: 601px) {
	.pc-none3B{ display:none; }
	}
@media screen and (min-width: 480px) {
	.pc-none4{ display:none; }
	}
/* SP none */
@media screen and (max-width: 800px) {
	.sp-none{ display:none; }
	}
@media screen and (max-width: 600px) {
	.sp-none2{ display:none; }
	}


/* scroll button */
.scroll_down a {
  color: inherit; /* ← ここ */
  position: absolute;
  bottom: 60px;
  left: 50%;
  display: block;
  background-size: 14px auto;
  z-index: 2;
  text-decoration: none;
  transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-transition: all .5s ease-in 3s;
  transition: all .5s ease-in 3s;
}

/* 白黒切り替え用 */
.scroll_down_wh a {
  color: #ffffff;
}
.scroll_down_bk a {
  color: #666666;
}

.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 currentColor;  /* ← ポイントはココ */
  border-width: 0 0 2px 2px;
  animation: bounce 2s linear infinite;
}

.scroll_down a::after {
  position: absolute;
  width: 32px;
  height: 32px;
  content: "";
  border: 2px solid currentColor;  /* ← ココも */
  border-radius: 50%;
  top: calc(50% + 16px);
  left: calc(50% - 19px);
}

@keyframes bounce {
  0%, 20%, 50%, 70%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(-8px) rotate(-45deg);
  }
  60% {
    transform: translateY(-4px) rotate(-45deg);
  }
}
/* scroll button */



/* button line */
.button_line001 {
	
	font-family: "futura-pt", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: clamp(1px, 2vmin, 15px);
	
}

.button_line001 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
	width: 15vmin;
    max-width: 90px;
	
    padding: 1vmin 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);
}
.white a{
	color: #ffffff;
}
.white a:before {
  background: rgba(255,255,255,.3);
}
.white a:after {
	background: #ffffff;
}
@media screen and (max-width: 800px) {
	.button_line001 {font-size: clamp(10px, 2vmin, 15px);}
	.button_line001 a { width: 25vmin;}
}


/* 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-logo-title {
	font-family: serif;
	font-size: 1.5rem;
	color: #999999;
}

.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);
}






/* ****************************************************************************************************************** */
/* Lenis + address bar fix 
#container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: auto;
}

.section {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  text-align: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section01 { background: #0078ff; }
.section02 { background: #00b894; }
.section03 { background: #d63031; }
.section04 { background: #0078ff; }
.section05 { background: #00b894; }
.section06 { background: #d63031; }

.fv-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.fv-text p {
  font-size: 1.2rem;
}

.dummy p {
  margin: 20px 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
*/






/* ここから元　削除禁止 ************************************************************************************************* */
/* NEW FV contents ********************/
.top-wrapper{
	width: 100%;
	height: 100vh;
}
.top-wrapper-inner{
	display: block;
	position: relative;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.top-video-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	display: block;
}
.top-video-wrapper > video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
}

/* FV contents ********************/
/*
.section-wrapper {
	position: relative;
	background-color: #ffffff;
}
.bg-image-clip {
	position: absolute;
	top: -100vh;
	left: 0;
	width: 100%;
	height: 100vh;
	clip-path: inset(0);
}
.bg-video-wrapper{
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.bg-video-wrapper > video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}
*/


/* TOP movie CSS */
.bg-image-fixed {
	display: flex;
	/* position: fixed;*/
	top: 0;
	width: 100%;
	height: 100%;
	/* min-height: 700px;*/
	
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.bg-video-wrapper {
	height: 100%;
	position: absolute;
	inset: 0;
	overflow: hidden;

}.bg-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none; /* ← 超重要 */
}
/* text on video */
.fv-wrapper {
	margin: 0 auto;
	position: absolute;
	inset: 0;                 /* ← top/left/transformを捨てる */
	display: flex;
	flex-direction: column;
	justify-content: center;  /* 縦中央 */
	align-items: center;      /* 横中央 */
	width: 80%;
	max-width: 1000px;
	pointer-events: none;     /* 背景動画操作を邪魔しない */
}
.fv-inner {
	position: relative;
	width: 100%;
	height: auto;
	
	display: flex;
	flex-direction: column;
	padding: 20px;
	
	font-family: serif;
	color: #fff;

	/* font-size: clamp(32px, 6vw, 80px); */
	font-size: 7vmin;
	font-weight: 800;
	line-height: 1.2;
	text-shadow: 1px 1px 2px #000;
}
.fv-inner-upper {
  text-align: left;
	margin-bottom: 20vh;
}
.fv-inner-lower {
  text-align: right;
}

.fv-inner-outer {
	margin-top: 24px;
	width: 100%;
	font-family: serif;
	color: #fff;
	font-size: clamp(1px, 4vw, 35px);
	/* font-size: 4.0vmin; */
	line-height: 2;
	font-weight: 800;
	text-align: right;
	text-shadow: 1px 1px 2px #000;
}
@media screen and (max-width: 1150px) {
	.fv-inner-outer {font-size: 3.2vw;}
	}
@media screen and (max-width: 800px) {
	.fv-inner { font-size: 7vw; line-height: 1;}
	.fv-inner-upper { margin-bottom: 10vmin;}
	.fv-inner-outer {font-size: 4.5vw; text-align: center;}

}






/* About us ********************/

/* screen mask *****************/
.section-01-mask{
	position: relative;
	width: 100%;
	height: 95vh;
	min-height: 800px;
	
}


/* 縦 */
.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-01-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	background-image: url("../images/about-bg.jpg");
	background-size: cover;
	background-position: bottom;
	z-index: -2;
}
/*
.section-01-bg{
	position: absolute;
	top: 40%;
	right: 0;
	transform: translateX(-50%);
	transform: rotate( -90deg );
	
	width: 50vw;
	height: 10vw;
	
	font-family: "futura-pt", sans-serif;
	color: rgba(50,50,50,0.1);
	font-size: 10vw;
	line-height: 1.3;
	text-align: center;
	font-weight: 1000;
}
*/
.section-body {
	margin: 0 auto;
	position: relative;
	margin-top: 100vh; 
	width: 100%;
	max-width: 1000px;
	height: auto;
	box-sizing: border-box;
	padding: 30px;

}


/* Titles *******/
.section-title-container{
	width: auto;
	height: auto;
	border: solid #000000;
	border-width: 0px 0px 0px 5px;
	padding: 0px 10px 0px 10px;
	color: #000000;
}
.section-white{
	color: #ffffff;
	border: solid #ffffff;
	border-width: 0px 0px 0px 5px;
}
.section-title-container .white{
	color: #ffffff;
}
.section-title-upper{
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	font-style: normal;
	
	font-size: 1.8rem;
	font-size: clamp(20px, 3.2vmin, 30px);
	line-height: 1;
}
.section-title-lower h2{
	padding-top: 10px;
	padding-left: 20px;
	
	font-size: 1.3rem;
	font-size: clamp(15px, 2.3vmin, 30px);
	line-height: 1;
}


/* Section 2 parallax ************/
.section-02-mask{
	position: relative;
	width: 100%;
	height: 95vh;
	min-height: 700px;
}
@media screen and (max-width: 480px) {
	.section-02-mask{ height: 100%;}
}
.section-02-wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	height: auto;
	box-sizing: border-box;
	padding: 30px;
}
.section-02-wrapper::after {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index:-2;
	
	background-image: url("../images/white-bg.jpg");
	background-size: cover;
	background-position: center;
}
.section-02-contents {
	display: flex;
	justify-content: center;
	align-items: stretch; /* ← これが超重要 */
	
	box-sizing: border-box;
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 0 0 0 0;
	margin-top: 2vmin;
	margin-bottom: 2vmin;

	text-align: center;

}
.section-02-contents-inner {
	display: flex;
	flex-direction: column;
	height: auto;
	min-width: 0;
	
	box-sizing: border-box;
	margin: 0 auto;
	width: 50vmin;
	max-width: 45%;
	margin: 20px;

}

/* 画像の枠 */
.img-wrap {
  display: block;
  overflow: hidden;   /* ← はみ出し防止 */
}

/* 画像 */
.img-wrap img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* ホバー時に画像だけ拡大 */
.img-wrap:hover img {
  transform: scale(1.03);
  opacity: 0.6;
}


.section-02-contents-text {
	flex: 1;          /* ← 高さを揃える核心 */
	display: flex;
	flex-direction: column;
	color: #333333;
	border: solid #000000;
	border-width: 0px 0px 0px 2px;
	padding: 0px 2vmin 0px 2vmin;
	margin-top: 10px;

	box-sizing: border-box;
height: auto;
}
.section-02-contents-inner-title {
	text-align: left;
	padding-top: 5px;
	font-size: clamp(1px, 2.5vmin, 16px);
	font-weight: 500;
}
.section-02-contents-inner-text {
	padding-top: 10px;
	text-align: justify;
	font-size: clamp(1px, 2vmin, 14px);
	height: auto;
	
}
@media screen and (max-width: 800px) {
	.section-02-contents { width: 100%; flex-direction: column;}
	.section-02-contents-inner { margin: 2px; width: 100%; max-width: 100%; margin-bottom: 20px;}
	.section-02-contents-inner-title { font-size: clamp(16px, 2.5vmin, 16px);}
	.section-02-contents-inner-text {line-height: 1.5; font-size: clamp(13px, 2vmin, 14px);}
	
	}
/* Section news ********************/
.section-news-mask{
	position: relative;
	width: 100%;
	height: 95vh;
	min-height: 700px;
}

.section-news {
	width: 100%;
	background-color: #eeeeee;
	height: 100%;
}
.section-news-inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	height: auto;
	box-sizing: border-box;
	padding: 30px;
}
/*=============== TOPIC ===============*/

.topics-contents {
	display: flex;
	justify-content: center;
	
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0 0 0 0;
	margin-top: 50px;
	margin-bottom: 50px;

	text-align: center;
}
.topics{
	width: 100%;
	height: auto;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
	font-family: "M PLUS 1p";
	font-size: 1rem;
	font-weight: 400;
	color: #333333;
	}

@media screen and (max-width:480px){
	.topics{ padding-bottom: 10px; }
 	 }

.topics_wrapper{
	width: auto;

	text-align: left;
	padding: 0px;
	display: inline-block;

	}
.topics_inner{
	width: auto;
	
	margin: 0 auto;
	box-sizing: border-box;
	text-align: left;
	display: inline-block;
	vertical-align: middle;
	
	font-family: "M PLUS 1p";
	font-size: 0.9rem;
	font-weight: 400;
	color: #333333;	

	}
.topics_date{
	width: 90px;
	min-width: 90px;
	height: 25px;

	text-align: left;
	vertical-align: top;
	padding: 2px 2px 2px 10px;
	display: inline-block;

	line-height: 1.7;
	}
.topics_date p{
	font-family: "M PLUS 1p", sans-serif;
}
.topics_text{
	max-width: 400px;
	height: 25px;

	text-align: left;
	vertical-align: top;
	padding: 2px 2px 2px 10px;
	display: inline-block;

	}
.topics_text p {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1;
	font-family: "M PLUS 1p", sans-serif;
}
.topics_text p { line-height: 1.3; margin: 0.2em 0px;}
@media screen and (max-width:600px){
	.topics_date{ padding: 2px 0px 2px 0px;}
	.topics_text{ max-width: 180px; padding: 2px 0px 2px 0px;}
 	 }

.topics_wrapper a:link p { color: #888888; }
.topics_wrapper a:visited p { color: #888888; }
.topics_wrapper a:hover p { color: #444444; }
.topics_wrapper a:active p { color: #444444; }


/* Section Service ************/
.section-service-mask {
	position: relative;
	width: 100%;
	height: 100%;
}
.section-service {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	background-color: #ffffff;
	overflow: hidden;
	
}
.section-service-bg{
	writing-mode: vertical-lr;
	
	padding-top: 45px;
	font-family: "futura-pt", sans-serif;
	color: rgba(0,0,0,0.1);
	font-size: 25vW;
	font-size: min(25vw, 258px);
	line-height: 0.8;
	text-align: center;
	font-weight: 1000;
	white-space: nowrap;
}
.section-service-inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	height: auto;
	box-sizing: border-box;
	padding: 30px;

}
.section-service-inner-assy {
	display: flex;
}
.section-service-inner-left {
	width: 80%;

}
.section-service-inner-right {
	width: 20%;
	box-sizing: border-box;

}

.section-service-contents {
	width: 90%;
	height: auto;
	margin: 0 auto;
	padding: 20px 0 20px 0;
	margin-top: 50px;
	margin-bottom: 50px;
	
	text-align: left;
	line-height: 2;

}
.section-service-contents-con {
	/*background-image: url("../images/con-img.png");*/
	background-size: cover;
	background-position: center;
	background-color:rgba(255,255,255,0.6);
	background-blend-mode:lighten;
	padding: 30px;
}
.section-service-contents-off {
	/*background-image: url("../images/off-img.png");*/
	background-size: cover;
	background-position: center;
	/*background-color:rgba(0,0,0,0.1);*/
	background-blend-mode:lighten;
	padding: 30px;
}
.section-service-contents-par {
	/*background-image: url("../images/par-img.png");*/
	background-size: cover;
	background-position: center;
	/*background-color:rgba(255,255,255,0.6);*/
	background-blend-mode:lighten;
	padding: 30px;
}

.section-service-contents-wrapper {
	width: 100%;
	height: auto;
	box-sizing: border-box;
	
	display: flex;
	
	text-align: justify;
	font-size: 0.9rem;
	line-height: 1.3;
	font-weight: 400;
}
.section-service-contents-wrapper span {
	font-size: 1.2rem;
	font-weight: 800;
}
.section-service-contents-S {
	width: 40%;
	min-width: 200px;
	margin: 0 10px 0 10px;

	/* clip-path: circle(50% at 50% 50%); */
	
	display: flex;              /* フレックスボックスにする */
	justify-content: center;    /* 横方向の中央揃え */
	align-items: center;        /* 縦方向の中央揃え */

}

.section-service-contents-S a:hover {
  		-webkit-transform: scale(1.03);
 		transform: scale(1.03);
		opacity: 0.6;
		filter: alpha(opacity=60);
	}

.section-service-contents-L {
	width: 60%;
	height: auto;
	margin: 0 10px 0 10px;
	display: table;
	
}
.section-service-contents-L-inner {
	width: 100%;
	height: auto;
	display: table-cell;
	padding: 20px;
	line-height: 1.5;
	background-color: #ffffff;
	background-color: rgb(255,255,255,0.7);
}
.section-service-contents-L-change {
	order: 0;
}
.section-service-contents-L-title {
	padding-bottom: 20px;
	color:#001653;
	font-weight: 800;
}
@media screen and (max-width: 801px) {
	
	}
@media screen and (max-width: 700px) {
	.section-service-contents-wrapper { flex-flow: column;}
	.section-service-contents-S { width: 100%; margin: 0;}
	.section-service-contents-L { width: 100%; margin: 0; padding-top: 20px;}
	.section-service-contents-L-change { order: 1;}
	.section-service-contents-wrapper span { display: inline-block; width: 100%; text-align: center;}

	.section-service-inner-left { width: 100%;}
	.section-service-inner-right { width: 0; padding-right: 30px;}
	.section-service-bg {font-size: 0px;}
	}

/* 画像横から */
.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);			/* 正面で停止 */
}
/* 画像横から */

/* Section 3 ************/
.section-03-mask{
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 750px;
}
.section-03-wrapper {
	width: 100%;
	height: 100vh;
	min-height: 750px;
	box-sizing: border-box;

	background-image: url("../images/recruit-bg.jpg");
	background-size: cover;
	background-position: center;
	/*background-color:rgba(255,255,255,0.6);*/
	background-blend-mode:lighten;

}
.section06{
	width: 100%;
	height: 100vh;

	box-sizing: border-box;

	background-image: url("../images/recruit-bg.jpg");
	background-size: cover;
	background-position: center;
	/*background-color:rgba(255,255,255,0.6);*/
	background-blend-mode:lighten;	
}
.section-03-inner {
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	height: auto;
	box-sizing: border-box;
	padding: 1vmin;
}
.section-03-contents {
	width: 50%;
	height: auto;
	
	margin-left: auto;
	margin-left: 50px;
	
	padding: 1vmin 0 1vmin 0;
	margin-top: 3vmin;
	margin-bottom: 3vmin;
	
	text-align: left;
	line-height: 1.8;
	white-space: nowrap;
	font-size: clamp(14px, 2.0vmin, 24px);

}
.section-03-contents p {
	color: #ffffff;
	font-weight: 400;
}
.section-03-contents-title{
	max-width: 360px;
	text-align: center;
	font-size: 1.2em;
	line-height: 1.5;
	color: #14807F;
	color: #1DBFBD;
	padding: 1vmin;
	margin-bottom: 4vmin;
	border: solid #14807F;
	border-width: 1px 0px 1px 0px;

}

@media screen and (max-width: 480px) {
	.section-03-wrapper { background-position: center; background-color:rgba(0,0,0,0.6);}
	.section-03-contents { text-align: center; width: 100%; margin: 0 auto; margin-bottom: 3vmin;}
	.section-03-contents-title { margin: 0 auto; margin-top: 3vmin; margin-bottom: 4vmin; width: 80%;}
	}


/********** 背景テキスト **********/
.section-bg , .section-bg-footer{
	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: center;
	font-weight: 1000;
	white-space: nowrap;

}
.section-bg-footer{
	margin-bottom: 50px;
}
@media screen and (max-width: 800px) {
	.section-bg-footer{ margin-bottom: 90px;}
}
.section-bg-about{
	color: rgba(0,14,250,0.1);
}
.section-bg-group{
	color: rgba(200,200,200,0.30);
}
.section-bg-recruit{
	
	color: rgba(255,255,255,0.6);
	color: rgba(6,200,156,0.2);
	color: rgba(29,191,189,0.2);
}



/* section-contents ****** ****** ****** ****** ****** ****** *******/
.sec-con-assy {
	width: 100%;
	height: 100%;

	
	display: flex;
	
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
	/* overflow: hidden; */
	/*overflow: auto;	 コンテンツが多いページのためここ重要 */

}

        /*並び順*/
        /*
        align-self: flex-start：左寄せ（デフォルト）
        align-self: flex-end：右寄せ
        align-self: center： 中央寄せ
        justify-content: space-between;：残り余白の均等割り 
        space-around：左右余白 ＋ 均等割り

		justify-content: center;
        */
        
.sec-con-left {
	width: 80%;
	height: 90%;			/* ここ100%でパララックス */
	max-width: 900px;
	display: flex;
	flex-direction: column;
	text-align: justify;
	margin-top: 70px;

}
.sec-con-upper {			/* 各タイトルAssy */
	width: 100%;
	height: auto;
	padding-left: 10vw;
	box-sizing: border-box;

}
.sec-con-lower {
	width: 100%;
	height: auto;
	max-width: 800px;
	align-self: flex-end;
	padding-top: 3vmin;
}
.sec-con-right {
	width: 20%;
	height: 100%;
	margin-right: 3vmin;

}

.sec-con-center {
	width: 100%;
	min-height: 85%;

	max-width: 1200px;
	display: flex;
	flex-direction: column;
	text-align: justify;
	margin-top: 70px;

}
.sec-con-center-lower {
	width: 100%;
	height: auto;
	max-width: 800px;
	align-self: center;
	padding-top: 3vmin;
	box-sizing: border-box;

}

.colums-assy{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	width: 100%;
	padding-top: 2vmin;

}
.columns{
	width: 31%;
	display: flex;              /* 追加 */
	flex-direction: column;     /* 縦並び */
}
.colums-pic{

}
.colums-text{
	display: flex;
	flex-direction: column;
	flex-grow: 1;               /* ← テキスト部分を伸ばす */

}
.colums-text-body{
	flex-grow: 1;          /* ← テキストだけが伸びる */
}
.colums-button{
	margin-top: auto;           /* ← ボタンを下に固定 */
}

.columns img{
	width: 20vmin;
  	height: 20vmin;
	max-width: 200px;
	max-height: 200px;
	margin-bottom: 2vmin;
}
.columns p{
	color: #333333;
	font-size: clamp(13px, 1.5vmin, 14px);
	line-height: 1.5;
	padding-bottom: 2vmin;
}
.columns p span{
	font-size: 1.2em;
	padding-bottom: 2vmin;
	color:#001653;
	font-weight: 800;

}
@media screen and (max-width: 800px) {
	.colums-assy{ flex-direction: column;}
	.columns{ width: 100%; margin-bottom: 10vmin;}
	.colums-text{ width: 80%; margin: 0 auto;}
	.columns img{ width: 100%; height: auto; max-width: 100%; max-height: auto;}
}

.aboutus-text {
	width: 80%;
	height: auto;
	margin: 0 auto;
	margin: 0 auto;
	padding: 0 0 0 0;
	margin-top: 7vmin;
	margin-bottom: 2vmin;

}
.aboutus-text-title {
	margin: 0 auto;
	width: 80%;
	text-align: center;
	color: #360676;
	font-size: clamp(17px, 3.0vmin, 30px);
	padding: 1.5vmin;
	margin-bottom: 2vmin;
	border: solid #360676;
	border-width: 1px 0px 1px 0px;
}

.aboutus-text span{
	color: #F50004;
}
.aboutus-text-main{

	font-weight: 400;
	color: #333333;

	font-size: clamp(1px, 2.8vmin, 20px);
	text-align: center;
	line-height: 2;
}

@media screen and (max-width: 800px) {
	.sec-con-upper { padding-left: 1vw;}
	.sec-con-left { width: 90%;}
	.sec-con-center { width: 90%;}
	.aboutus-text { width: 100%;}
	.aboutus-text-title { width: 90%;}
	.aboutus-text-main{ margin-bottom: 3vmin; font-size: clamp(1px, 4.4vmin, 18px);}
	}
/********** Aboutus scrollをhomeに **********/
/* スクロール */
.scroll-assy {
	width: 100%;
	max-width: 300px;
	height: 100vh; /* 見える範囲 */
	overflow: hidden;

	z-index: -1;
  /* background-color: #000;*/
}

.scroll-infinity__wrap {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 10s linear infinite;
}

/* リスト縦並び */
.scroll-infinity__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* アイテム */
.scroll-infinity__item {
  padding: 1vw 0;
}

.scroll-infinity__item img {
  width: 100%;
  height: auto;
  display: block;
	border-radius: 20px;
}

/* アニメーション */
@keyframes scroll-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* リスト2つ分の半分だけ上にスクロール */
  }
}
/********** Aboutus scrollをhomeに **********/

/********** 横スクロール（修正版） **********/
/* ==============================
   横スクロール 無限ループ
============================== */

/* 表示領域 */
.scroll-assy-x {
  width: 100%;
  overflow: hidden;
	padding: 5vmin 0;
}

/* 動かす本体 */
.scroll-infinity-x__wrap {
  display: flex;
  width: max-content; /* ★重要 */
  animation: scroll-horizontal 15s linear infinite;
}

/* 横並びリスト */
.scroll-infinity-x__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 1枚ずつの枠 */
.scroll-infinity-x__item {
  width: 25vmin;      /* 好きに調整 */
  flex-shrink: 0;
  padding: 0 1vmin;
}

/* 画像（トリミング完全回避） */
.scroll-infinity-x__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2vmin;
  object-fit: unset;
}

/* 左 → 右 */
@keyframes scroll-horizontal {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/********** 横スクロール（左 → 右） **********/


/********** TAB **********/
.custom-tabs {
  width: 100%;
	max-width: 800px;
  font-family: sans-serif;
	z-index: 1;
}

.custom-tab-buttons {
  display: flex;
}

.custom-tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
	
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: 800;
	
  transition: background-color 0.3s, opacity 0.3s;
  border-top-right-radius: 20px; /* 右上だけ丸く */
  opacity: 0.5; /* デフォルトは薄く */
}



.custom-tab-btn[data-tab="1"] {
  background-color: #a55b5b; /* くすんだ赤 */
}

.custom-tab-btn[data-tab="2"] {
  background-color: #5b7da5; /* くすんだ青 */
}

.custom-tab-btn.active {
  opacity: 1;
}

.custom-tab-content {
  display: none;
  padding: 0px 0;
  animation: fadeIn 0.4s ease;
  box-sizing: border-box;
}

.custom-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}



/********** footer **********/
.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	
	box-sizing: border-box;
	
	width: 100%;
	height: auto;
	padding: 20px;
	margin-bottom: 0;
	
	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; }
 	 }









