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

:root {
	--main-color:#00379b;
	--light-color:#e7f0f7;
}

html {
	
	height: 100%;
	font-size:62.5%;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;		
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size:1.6rem;
	line-height:normal;
	color:#333;	
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
header {
	background-color: #fff;
	height: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position:-webkit-sticky;
  	position: sticky;
  	top: 0;
	z-index: 2
}
main {
	flex: 1
}

footer {
	background: var(--light-color);
	padding: 10px
}

.inner {
	max-width:1000px;
	width:100%;
	margin-left: auto;
	margin-right: auto
}
@media screen and (max-width:1000px){
	.inner {
		width:90%
	}
}

/* ---------------------------- header
*/
header h1 {
	color: var(--main-color);
	font-size: 2rem;
	margin-left: 20px;
}
header h1 small {font-size: 70%; font-weight: normal;}

.head__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	padding:0 10px;
	background: var(--main-color);
	color:#fff;
	width: 100px;
	transition: .2s all ease
}
.head__btn:hover {
	opacity: 0.8;
	color:#fff;
}
@media screen and (max-width:639px){
	header h1 {
		margin-left: 10px;
	}
	.head__btn {
		width: auto;
		font-size: 3.5vw
	}
}

/* ---------------------------- main visual
*/
.mv__wrap {text-align: center; margin-bottom: 80px;}
.swiper {
}
.swiper-wrapper {
}
.swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.swiper-slide img {
	width: 100%;
	height: auto
}
@media screen and (max-width:639px){
	.mv__wrap {text-align: center; margin-bottom: 40px}
}

/* ---------------------------- button
*/
.btn {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color);
	color:#fff;
	border-radius: 24px;
	min-height: 60px;
	font-size: 2rem;
	font-weight: 700;
	border:1px solid  var(--main-color);
	transition: .3s all ease;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.btn:hover {
	color: var(--main-color);
	border:1px solid  var(--main-color);
	background-color: #fff
}

img {max-width: 100%; height: auto}

h2 {margin-bottom: 20px; color: var(--main-color)}
p {line-height: 1.7}
hr {border:none}
b {font-weight: 700;}

.shw {display: none}
.hyd {display: block}
@media screen and (max-width:639px){
	.shw {display: block}
	.hyd {display: none}
}

.kei_dot {
  padding: 0 0 20px;
  background-image:
  repeating-linear-gradient(90deg, var(--main-color) 0px, var(--main-color) 10px, rgba(0 0 0 / 0) 10px, rgba(0 0 0 / 0) 20px);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: center bottom;
}

/* ---------------------------- about
*/
.about__wrap {
	padding-bottom: 40px
}
.read__copy {
	color:var(--main-color);
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 40px
}

.about__box {
	display: flex;
	flex-flow: row;
	justify-content: space-between
}
.about__txt {
	width: calc(100% - 32%)
}
.about__img {
	width:30%;
	position: relative;
}
.about__img img {border-radius: 8px; position: absolute}
.about__img img.img_01 {
	width:180px;
	top: 0;
  	right: 0;
}
.about__img img.img_02 {
	width:140px;
	top: 60%;
  	left: 0;
}
@media screen and (max-width:639px){
	.read__copy {
		font-size: 7.4vw
	}
	.about__box {
		flex-flow: column
	}
	.about__txt {width:100%; margin-bottom: 20px
	}
	.about__img {width:100%; height: 260px;
		
	}
	.about__img img.img_01 {
		width:60vw
	}
	.about__img img.img_02 {
		width:45vw
	}
}

/* ---------------------------- works
*/
.works__wrap {
	padding: 80px 0;
/*	background-color: var(--light-color);*/
	display: flex;
	flex-flow: row;
	justify-content: space-between
}
.works__box {
	width:45%;
}
.works__box img {
	border-radius: 12px;
}
@media screen and (max-width:639px){
	.works__wrap {
		padding: 60px 0;
		display: block;
	}
	.works__box {
		width: 100%;
	}
	.works__box:nth-of-type(1){
		margin-bottom: 60px
	}
}


/* ---------------------------- recruit
*/
.recruit__wrap {
	padding: 80px 0;
	background-color: var(--light-color);
}

.recruit__box {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	padding: 20px;
	background: #fff;
	margin-bottom: 40px;
	border-radius: 12px;
}
.recruit__img {
	width:320px;
	position: relative;
}
.recruit__img::before {
	position: absolute;
	top:-1em;
	left: -1em;
	content: "整備士・鈑金\Aスタッフ募集";
		white-apace: pre;
	background-color:#fff;
	color: var(--main-color);
	border:1px solid  var(--main-color);
	border-radius: 50%;
	width: 6em;
	height: 6em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	padding: 10px;
	font-weight: 700;
	transform:rotate(-15deg); 
}

.recruit__img img {
	border-radius: 8px;
}
.recruit__txt {
	width: calc( 100% - 360px)
}
@media screen and (max-width:639px){
	.recruit__wrap {
	padding: 60px 0;
	}
	.recruit__box {
		display: block
	}
	.recruit__img {
		width: 100%;
		margin-bottom: 40px
	}
	.recruit__txt {
		width:100%;
	}
	.recruit__read {
		font-size: 4.2vw
	}
}

/* ---------------------------- company
*/
.com__wrap {
	padding: 80px 0;
/*	background-color: var(--light-color);*/
}
.com__box {
	display: flex;
	flex-flow: row;
	justify-content: space-between
}

.tab__wrap {
	width:45%;
}
.com__tab {width: 100%;}
.com__tab th {
	text-align: left;
	padding:10px 2em 10px 0;
	border-bottom: 2px solid #ccc;
	white-space: nowrap
}
.com__tab td {
	padding: 10px;
	border-bottom:1px dotted #ccc
}
.map__wrap {
	width:50%
}

@media screen and (max-width:639px){
.com__wrap {
	padding: 60px 0 40px;
/*	background-color: var(--light-color);*/
}	
	.com__box {
		display: block
	}
	.tab__wrap,
	.map__wrap {
		width:100%;
		margin-bottom: 60px
	}
	.map__wrap {
		height: 40vh
	}
	.com__tab th {
		padding:10px 1em 10px 0;
	}
}

/* marker */
.udl{
background-image:linear-gradient(90deg, #fd6, #fd6);
background-repeat: no-repeat;
background-position: bottom left;	
background-size: 0 30%;
transition: all 1s ease-in-out;
}

.udl.actives{
background-size: 100% 30%;
	font-weight: bold;
}


/* mv */
.swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 3.2rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}
.swiper-pagination-bullet {
  display: block;
  width: 3px;
  height: 4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
}
.swiper-pagination-bullet:not(:first-child) {
  margin-top: 0.8rem;
}
/*
.swiper-pagination-bullet-active {
  background-color: var(--color-theme);
}
*/
/*
.slide-media {
  height: 800px;
}
*/
/*
@media screen and (max-width: 1024px) {
.slide-media {
    height: max(70vh, 70vw);
  }
}
*/
.slide-media img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}
.slide-title {
  font-size: 4rem;
  font-weight: normal;
  line-height: 1.6;
  position: absolute;
  right: 8rem;
  bottom: 15%;
  margin-left: 16rem;
  text-align: right;
  color: #fff;
}
@media screen and (max-width: 599px) {
.slide-title {
    font-size: 2.8rem;
    right: 4rem;
    margin-left: 6rem;
  }
}
.swiper-slide[class*=-active] .slide-media img {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.swiper-slide[class*=-active] .slide-title {
  -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
          animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
            filter: blur(300px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
            filter: blur(300px);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

/* 2024-03-28 */
.bnr-recruit {
    display: flex;
    flex-flow: row;
    justify-content: center;
    margin: 20px 0;
}
.bnr-recruit li {
    margin: 0 5px;
}
@media screen and (max-width:599px){
    .bnr-recruit {
        display: block
    }
    .bnr-recruit li {
        text-align: center;
        margin-bottom: 10px
    }
}