@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;
}

@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 / 4);}
}
.scroll-infinity__item>img {
	width: 100%;
	/*border-radius: 2vw;*/
}
/* スクロール */







/* Top Title *************************************************************************************************/
.top-titles{
	position: relative;
	margin-top: 50px;
}
.top-titles-inner{
	width: 80%;
	height: 50%;
	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: "futura-pt", sans-serif;
	color: rgba(0,0,0,1);
	font-size: 10vw;
	font-size:min(8vw,80px);
	line-height: 1;
	text-align: center;
	font-weight: 400;
	white-space: nowrap;
}

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



@media screen and (max-width: 480px) {

	}
/* 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: center;
	font-weight: 1000;
	white-space: nowrap;
}
.section-bg-mission{
	color: rgba(255,255,255,0.4);
}
.section-bg-vision{
	color: rgba(0,103,255,0.10);
}
.section-bg-message{
	color: rgba(150,150,150,0.1);
}
.section-bg-company{
	color: rgba(0,18,103,0.05);
	z-index: -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,165,0,0.1);
	background-image: url("../images/silver-bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.section-contents-mission-over::before{
	content: "";
  	position: absolute;
  	inset: 0;
 	background-color: rgba(255, 255, 255, 0.6); /* 白で薄く */
 	pointer-events: none;
}
.section-contents-vision {
	background-color: rgba(0,103,255,0.10);
	background-image: url("../images/blue-bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.section-contents-message {
	background-color: rgba(0,187,103,0.10);
	background-image: url("../images/white-bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.section-contents-company {
	background-color: rgba(0,18,103,0.10);
	
	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: 7vmin 0;
}
.section-contents-assy {
	width: 90%;
	height: auto;
	margin: 0 auto;

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

/********* main *********/
.section-contents-title-main {
	width: 30%;
	height: auto;
	margin: 0 auto;
	padding: 10px 0 10px 0;
	box-sizing: border-box;
	
	font-family: "futura-pt", sans-serif;
	text-align: justify;
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 800;
	text-align: center;
}
.section-contents-title-main-mission {	/* MISSION */
	color: rgba(255,165,0,1);
	border-bottom: 2px solid rgba(255,165,0,1);
}
.section-contents-title-main-vision {	/* VISION */
	color: rgba(0,103,255,1.00);
	border-bottom: 2px solid rgba(0,103,255,1);
}
.section-contents-title-main-message {	/* MESSAGE */
	color: rgba(0,187,103,1.00);
	border-bottom: 2px solid rgba(0,187,103,1);
}
.section-contents-title-main-company {	/* COMPANY */
	color: rgba(0,18,103,1.00);
	border-bottom: 2px solid rgba(0,18,103,1);
}

/********* sub *********/
.section-contents-title-sub {
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 10px 0 10px 0;
	box-sizing: border-box;

	color: rgba(255,165,0,1);
	text-align: justify;
	font-size: 1.2rem;
	line-height: 1;
	font-weight: 400;
	text-align: center;
}
.section-contents-title-sub-mission {	/* 私たちの使命 */
	color: rgba(255,165,0,1);
}
.section-contents-title-sub-vision {	/* わたしたちが目指す姿 */
	color: rgba(0,103,255,1.00);
}
.section-contents-title-sub-message {	/* 代表者挨拶 */
	color: rgba(0,187,103,1.00);
}
.section-contents-title-sub-company {	/* 会社 */
	color: rgba(0,18,103,1.00);
}
/********* text *********/
.section-contents-text {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 10px 0 10px 0;
	margin-top: 20px;
	box-sizing: border-box;

	color: rgba(100,100,100,1);
	text-align: justify;
	font-size: 1.1rem;
	line-height: 1.7;
	font-weight: 400;
	text-align: center;
}
.section-contents-text-vision {

	color: #555555;

}
.section-contents-text-message {
	font-size: 0.9rem;
	color: #333333;
	line-height: 2;

}
.company-wrapper{
	width: 100%;
	background-color: rgba(255,255,255,0.5);
	display: table;
	border-collapse:collapse;
	font-size: 0.8rem;
	color: #333333;
	text-align: left;
}
.company-left{
	width: 20%;
	padding: 10px 20px 10px 20px;
	border:solid #333333;
	border-width: 1px 1px 1px 1px;
	display: table-cell;
	vertical-align: middle;
}

.company-right{
	width: 60%;
	padding: 10px 20px 10px 20px;
	border:solid #333333;
	border-width: 1px 1px 1px 1px;
	display: table-cell;
}
.company-right-a{
	display: block;
	width: fit-content;
}
.company-right-a img{
	width: 15px;
	height: auto;
	display: inline-block;
	padding-left: 5px;
	padding-bottom: 3px;
	vertical-align: middle;
}
.company-right-a a:link{ color: #333333; }
.company-right-a a:visited { color: #333333; }
.company-right-a a:hover { opacity:0.5; }
.company-right-a a:active { color: #333333; }

.company-map{
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 10vw;
}

@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 { }
	.section-contents-assy {width: 100%;}
	.section-contents-text { font-size: 4vw;}
	.section-contents-text-message { font-size: 3vw;}
	}









/********** footer **********/
.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	
	box-sizing: border-box;
	
	width: 100%;
	height: auto;
	padding: 20px;
	
	background: #999999;
	background-color: rgba(50,50,50,0.9);
	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; }
 	 }









