@charset "utf-8";

/*--------------------------------------------------------------------------------------------------

   page

--------------------------------------------------------------------------------------------------*/


/*------------------------------------------------------------------------------------------------
  index
--------------------------------------------------------------------------------------------------*/
#topani {
 width: 100vw;
 height: 100vh;
 transition: all 1s;
 position: fixed;
 top: 0;
 left: 0;
 z-index: 99999;
 display: flex;
 background-color: #FFF;
}

.topaniloaded {
  opacity: 0;
  visibility: hidden;
}

#topani .inner {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.img-wrap {
  overflow: hidden;
  position: relative;
		display: inline-block;
}

.img-wrap::before {
  animation: img-wrap 3s linear forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
		animation-delay: 2s;
}

/*#topani .inner img {
 opacity: 0;
 animation: opacity 2s ease-in forwards;
 animation-delay: 1s;
}*/

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0.2;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

#slide {
	position: relative;
}

.topslide,
.topslide2 {
	margin: 0;
	padding: 0;
	list-style: none;
}

.topslide img.main,
.topslide2 img.main {
	width: 100vw;
}

.topslide li,
.topslide2 li {
	position: relative;
}

.topslide li div,
.topslide2 li div {
	position: absolute;
	left: 10px;
	bottom: 80px;
}

.topslide li div img,
.topslide2 li div img {
	width: auto;
}

.topslide li:nth-child(1) div {
	left: 10px;
	bottom: unset;
	top: 80px;
}

.topslide li:nth-child(2) div {
	left: unset;
	right: 10px;
	bottom: 80px;
}

.slick-dots {
	bottom: 10px;
}

.slick-dots li button:before {
	font-size: 14px;
	color: #FFF;
	opacity: 1;
}

.slick-dots li.slick-active button:before {
	color: #84C44D;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

#slide .text {
	position: absolute;
	left: 80px;
	bottom: 80px;
}

#indexAbout {
	position: relative;
	width: 1200px;
	margin: 0 auto 100px;
	padding: 100px 0 0;
}

#indexAbout:before {
	position: absolute;
	content: "";
	width: 1200px;
	height: 90px;
	top: 10px;
	left: 0;
	background: url(../image/animation.gif) no-repeat 0 0;
}


#indexAbout .cont {
	display: flex;
	width: 1000px;
	margin: 0 auto;
	/*justify-content: space-between;*/
	padding: 40px 70px 40px 40px;
	background-color: #84C44D;
	border-radius: 40px;
}

#indexAbout .cont .photo {
	margin-left: -100px;
	margin-right: 40px;
}

#indexAbout .cont .text {
	/*width: 54%;*/
	color: #FFF;
}

#indexAbout .cont .text h2 {
	position: relative;
	margin: 0 0 34px;
	padding: 10px 0 24px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.06em;
	z-index: 10;
	background: url(../image/about_back.png) no-repeat 0 100%;
}

#indexAbout .cont .text h2:before {
	position: absolute;
	content: "About us";
	font-size: 70px;
	font-weight: 900;
	color: #53B846;
	top: -30px;
	left: 0;
	z-index: -1;
	letter-spacing: 0;
}

#indexAbout .cont .text dt {
	margin: 0 0 24px;
	font-size: 36px;
	font-weight: 500;
}

#indexAbout .cont .text dd {
	font-size: 18px;
	line-height: 2;
	margin-bottom: 50px;
}

#indexNews {
	background-color: #FFF9EB;
}

#indexNews .cont {
	width: 1200px;
	margin: 0 auto 100px;
	padding: 42px 0 80px;
}

#indexNews .cont h2 {
	position: relative;
	margin: 0 0 56px;
	padding: 10px 0 24px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.06em;
	z-index: 10;
	color: #54B846;
	text-align: center;
	background: url(../image/news_back.png) no-repeat center 100%;
}

#indexNews .cont h2:before {
	position: absolute;
	content: "News";
	font-size: 70px;
	font-weight: 900;
	color: #E7F3DC;
	top: -38px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: -1;
	letter-spacing: 0;
}

#indexNews .cont ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
}

#indexNews .cont ul li {
	margin: 0;
	padding: 0;
}

#indexMenu {
	width: 1200px;
	margin: 0 auto 90px;
}

#indexMenu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: space-between;
}

#indexMenu ul li {
	margin: 0;
	padding: 0 0 20px;
	border: 1px solid #CCC;
}

#indexMenu ul li a {
	display: block;
	position: relative;
	text-decoration: none;
	line-height: 1.5;
	text-align: center;
	font-size: 26px;
	font-weight: 600;
}

#indexMenu ul li.company a:before {
	position: absolute;
	content: "";
	background: url(../image/im_about.png) no-repeat 0 0;
	width: 70px;
	height: 100px;
	left: calc( 50% - 35px );
	top: 320px;
}

#indexMenu ul li.company a:hover:before {
	position: absolute;
	content: "";
	background: url(../image/im_about.png) no-repeat 0 -104px;
	width: 70px;
	height: 100px;
	left: calc( 50% - 35px );
	top: 320px;
}

#indexMenu ul li.business a:before {
	position: absolute;
	content: "";
	background: url(../image/im_business.png) no-repeat 0 9px;
	width: 50px;
	height: 101px;
	left: calc( 50% - 25px );
	top: 320px;
}

#indexMenu ul li.business a:hover:before {
	position: absolute;
	content: "";
	background: url(../image/im_business.png) no-repeat 0 -100px;
	width: 50px;
	height: 101px;
	left: calc( 50% - 25px );
	top: 320px;
}

#indexMenu ul li.results a:before {
	position: absolute;
	content: "";
	background: url(../image/im_results.gif) no-repeat 0 8px;
	width: 69px;
	height: 96px;
	left: calc( 50% - 34px );
	top: 320px;
}

#indexMenu ul li.results a:hover:before {
	position: absolute;
	content: "";
	background: url(../image/im_results.gif) no-repeat 0 -92px;
	width: 69px;
	height: 96px;
	left: calc( 50% - 34px );
	top: 320px;
}

#indexMenu ul li a span {
	display: block;
	margin: 54px 0 0;
	font-size: 20px;
	font-weight: 500;
	color: #000;
}

#indexMenu ul li a:hover {
	color: #54B846;
}

#indexRecruit {
	height: 400px;
	background: url(../image/recruit_cont_back.jpg) no-repeat 0 center;
}

#indexRecruit .cont {
	width: 1200px;
	margin: 0 auto;
	padding: 40px 0 0;
}

#indexRecruit .cont h2 {
	position: relative;
	margin: 40px 0 100px;
	padding: 10px 0 24px;
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 0.06em;
	z-index: 10;
	color: #FFF;
	text-align: center;
	background: url(../image/recruit_back.png) no-repeat 51% 100%;
}

#indexRecruit .cont h2:before {
	position: absolute;
	content: "Recruit";
	font-size: 70px;
	font-weight: 900;
	color: #54B846;
	top: -38px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: -1;
	letter-spacing: 0;
}

#indexMovie {
	position: relative;
	margin: 0 0 60px;
	padding: 80px 0;
}

/*#indexMovie:before {
	position: absolute;
	content: "";
	background-color: #E7F3DC;
	width: 60%;
	height: calc( 100% - 180px );
	left: 0;
	top: 160px;
	z-index: -1;
	border-radius: 0 40px 40px 0;
}
*/

#indexMovie .video {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

#indexCharme {
	margin: 0 0 80px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	position: relative;
}

#indexCharme img.photo {
	display: block;
	width: 100%;
	margin: 0 auto 16px;
}

#indexCharme .info {
	position: absolute;
	bottom: 20px;
	left: 50%;
	padding: 20px;
	transform:translateX(-50%);
	-webkit-transform: translateX(-50%);
 -ms-transform: translateX(-50%);
	background-color: rgba(255, 255, 255, .5);
	border-radius: 10px;
}

#indexCharme .info img {
	display: block;
	margin: 0 auto;
}




/*------------------------------------------------------------------------------------------------
  company
--------------------------------------------------------------------------------------------------*/
#secTitle.company {
	background: url(../image/company_back.png) #FFF9EB no-repeat 100% 0;
}

.rinen {
	display: flex;
	justify-content: space-between;
	margin: 0 calc(50% - 50vw) 80px;
	width: 100vw;
	padding: 60px calc(50vw - 50%);
	position: relative;
}

.rinen:before {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #E7F3DC;
	width: 70%;
 height: 100%;
	content: "";
	z-index: -1;
	border-radius: 0 20px 20px 0;
}

#second .rinen .text p {
    margin-bottom: 20px;
}

.rinen .text {
	width: 55%;
	margin-left: 20px;
}

.rinen .text .bb {
	font-size: 26px;
	font-weight: 600;
}

.rinen .photo {
	width: 50%;
	text-align: right;
}

.rinen .photo img {
	max-width: 100%;
}

.gaiyou {
	display: flex;
	justify-content: space-between;
}

.gaiyou .info {
	width: 50%;
}

.gaiyou .info table {
	width: 100%;
	line-height: 1.4;
	margin: 0 0 100px;
}

.gaiyou .info table th {
	padding: 20px;
	text-align: left;
	font-weight: 400;
	vertical-align: top;
	border-bottom: 1px dashed #CCCCCC
}

.gaiyou .info table td {
	padding: 20px;
	border-bottom: 1px dashed #CCCCCC
}

.enkaku {
	position: relative;
	margin: 0 calc(50% - 50vw) 80px;
	width: 100vw;
	padding: 0 calc(50vw - 50%);
}

.enkaku:before {
	position: absolute;
	width: 50%;
	height: 100%;
	background-color: #E7F3DC;
	content: "";
	z-index: -1;
	left: -380px;
	top: 0;
}

.enkaku dl {
	display: flex;
	flex-wrap: wrap;
}

.enkaku dl dt {
	width: 210px;
	padding: 16px 20px 16px 0;
	text-align: right;
}

.enkaku dl dd {
	width: calc( 100% - 250px );
	margin-left: 40px;
	padding: 16px 20px;
}


/*------------------------------------------------------------------------------------------------
  contact
--------------------------------------------------------------------------------------------------*/
#secTitle.contact {
	background: url(../image/contact_back.png) #FFF9EB no-repeat 100% 0;
}

.contactStep {
	display: flex;
	justify-content: center;
	margin: 0 0 40px;
	padding: 0;
	list-style: none;
}

.contactStep li {
	position: relative;
	border: 2px solid #54B846;
	margin: 0 20px;
	padding: 8px 20px;
	border-radius: 100vh;
	background-color: #FFF;
	font-weight: 500;
}

.contactStep li.now {
	background-color: #FFC;
}

.contactStep li:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 6px;
	background-color: #54B846;
	top: calc( 50% - 3px );
	left: 44px;
	z-index: -1;
}

.hs {
	color: #F00;
}

.contactStep li:last-child:before {
	display: none;
}

.contactTb {
	width: 90%;
	margin: 0 auto 40px;
}

.contactTb th {
	width: 320px;
	padding: 24px 16px;
	text-align: left;
	font-weight: 400;
	border-bottom: 1px solid #CCC;
}

.contactTb td {
	padding: 24px 16px;
	border-bottom: 1px solid #CCC;
}

.contactTb td input[type=text] {
	width: 400px;
	padding: 4px;
	font-size: 16px;
}

.contactTb td textarea {
	width: 100%;
	height: 160px;
	padding: 4px;
	font-size: 16px;
}

.contactPrivacy {
	width: 90%;
	margin: 0 auto 40px;
	padding: 20px;
	background-color: #FFF9EB;
}

.contactPrivacy dl {
	margin: 0 0 20px;
}

.contactPrivacy dt {
	font-weight: 500;
}

.contactPrivacy .check {
	text-align: center;
}

.contactPrivacy .check label {
	cursor: pointer;
}


/*------------------------------------------------------------------------------------------------
  business
--------------------------------------------------------------------------------------------------*/
#secTitle.business {
	background: url(../image/business_back.png) #FFF9EB no-repeat 100% 0;
}

.bs {
	display: flex;
}

.bs .cont {
	margin: 0 0 30px;
	width: 30%;
}

.bs .cont h3 {
	font-size: 20px;
	color: #009844;
	font-weight: 500;
	background-color: #EEFFF5;
	padding: 2px 8px;
}

.bs .cont:nth-child(3n-1) {
	margin: 0 5%;
}

.bs .cont img {
	max-width: 100%;
	height: auto;
}


/*------------------------------------------------------------------------------------------------
  recruit
--------------------------------------------------------------------------------------------------*/
#secTitle.recruit {
	background: url(../image/recruit__back.png) #FFF9EB no-repeat 100% 0;
}

.recLead {
	font-size: 20px;
	line-height: 1.6;
	text-align: center;
	letter-spacing: 0.02em;
	color: #009844;
}

.recLead span {
	display: block;
	font-size: 24px;
	font-weight: 500;
}

.recVoice {
	margin: 0 0 60px;
	display: flex;
	justify-content: space-between;
}

.recVoice .cont {
	width: 46%;
}

.recVoice .cont .lead {
 position: relative;
	margin: 0 0 20px !important;
	font-weight: 500;
 border-bottom: 3px solid #009844;
 border-left: 3px solid #009844;
 border-radius: 0 0 0 20px;
	padding: 8px 8px 8px 16px;
	font-size: 18px;
	background-color: #FFF9EB;
}

.recVoice .cont .lead:before {
 position: absolute;
 left: 50px;
 bottom: -21px;
 width: 0;
 height: 0;
 content: '';
 border-width: 21px 21px 0 0;
 border-style: solid;
 border-color: #009844 transparent transparent transparent;
}

.recVoice .cont .lead:after {
 position: absolute;
 left: 54px;
 bottom: -14px;
 width: 0;
 height: 0;
 content: '';
 border-width: 14px 14px 0 0;
 border-style: solid;
 border-color: #fff transparent transparent transparent;
}

.recVoice .cont .column {
	display: flex;
	line-height: 1.4;
}

.recVoice .cont .column .photo img {
	display: block;
	margin: 0 0 4px;
}

.recVoice .cont .column .text {
	margin-left: 30px;
	line-height: 1.6;
}

.bosyu {
	margin: 0 calc(50% - 50vw) 80px;
	width: 100vw;
	padding: 60px calc(50vw - 50%);
	position: relative;
}

.bosyu:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #F7FBF2;
	z-index: -1;
}

.bosyu table {
	width: 100%;
}

.bosyu table th {
	position: relative;
	width: 200px;
	padding: 20px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px dashed #CCC;
}

.bosyu table th:before {
	position: absolute;
	content: "";
	background-color: #009844;
	width: 20px;
	height: 2px;
	top: 32px;
	right: -10px;
}

.bosyu table td {
	padding: 20px 20px 20px 40px;
	border-bottom: 1px dashed #CCC;
	background-color: #FFF;
}

.bosyu table td ul {
	margin: 0 0 0 20px;
	padding: 0;
	line-height: 1.6;
}

.bosyu table td ul li {
	margin: 0 0 8px;
	padding: 0;
}

.btn1.rec a {
 margin: 0 auto;
}

.recruitTb {
	width: 90%;
	margin: 0 auto 60px;
}

.recruitTb th {
	width: 200px;
	padding: 24px 16px;
	text-align: left;
	font-weight: 400;
	border-bottom: 1px solid #CCC;
	background-color: #F3F2F1;
}

.recruitTb td {
	padding: 24px 16px;
	border-bottom: 1px solid #CCC;
}

.recruitTb td input[type=text] {
	width: 400px;
	padding: 4px;
	font-size: 16px;
}

.recruitTb td input.s[type=text] {
	width: 160px;
	margin-bottom: 4px;
}

.recruitTb td input.ss[type=text] {
	width: 80px;
}

.recruitTb td input.l[type=text] {
	width: 80%;
	margin-bottom: 4px;
}

.recruitTb td textarea {
	width: 100%;
	height: 160px;
	padding: 4px;
	font-size: 16px;
}

.entrySec {
	font-weight: 500;
	background-color: #EEE;
	padding: 6px;
}

.textNo {
	display: block;
}

/*------------------------------------------------------------------------------------------------
  privacy
--------------------------------------------------------------------------------------------------*/
#secTitle.privacy {
	background: url(../image/company_back.png) #FFF9EB no-repeat 100% 0;
}

.privacyOl {
	margin: 0 40px 0 20px;
	list-style-type: none;
	counter-reset: item;
}

.privacyOl li {
	margin: 0 0 40px;
	text-indent: -1.3em;
 padding-left: 1.3em;
}

.privacyOl li span {
	font-size: 18px;
}

.privacyOl li:before {
 counter-increment: item;
 content: counter(item)'.';
	font-size: 18px;
}

.privacyOl li ol {
	margin: 10px 0 0 -20px;
	list-style-type: none;
	counter-reset: item;
}

.privacyOl li ol li {
	margin: 0 0 10px;
}

.privacyOl li dl {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 0 20px;
}

.privacyOl li dl dt {
	width: 60px;
}

.privacyOl li dl dd {
	width: calc( 100% - 60px);
}




/*------------------------------------------------------------------------------------------------
  results
--------------------------------------------------------------------------------------------------*/
#secTitle.results {
	background: url(../image/results_back.png) #FFF9EB no-repeat 100% 0;
}

.no_scroll {
  overflow: hidden;
}

.resultsList {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 60px;
}


.resultsList .wrap {
	width: 30%;
	margin: 0 0 30px;
	box-shadow: 3px 3px 3px #EEE;
}

.resultsList .wrap:nth-child(3n-1) {
	margin: 0 5% 30px;
}

.resultsList .wrap img {
	max-width: 100%;
	height: auto;
	margin: 0 0 8px;
}

.resultsList .wrap p {
	font-size: 18px;
	font-weight: 500;
	margin: 0 !important;
	line-height: 1.4;
}

.modal-window img {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
}


/* 開くボタン */
.button-open {
  /*display: block;
  margin: 0 auto;
  width: 20rem;*/
  padding: 1em;
  cursor: pointer;
}

/* モーダルウィンドウ */
.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: auto;
  border-radius: 5px;
  z-index: 11;
  padding: 2rem;
		text-align: center;
}

/* 閉じるボタン */
.button-close {
  position: absolute;
  /*top: 50%;*/
  left: 50%;
  transform: translate(-50%, 0);
  width: 100px;
  padding: 1em;
  border-radius: 0;
		border: none;
  cursor: pointer;
		margin-top: 30px;
}

/* オーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
	font-size: 60px;
}

.slick-prev {
	left: -100px;
}

.slick-next {
	right: -55px;
}


@media all and (max-width: 1219px) {

/*------------------------------------------------------------------------------------------------
  index
--------------------------------------------------------------------------------------------------*/
#topani .l1 {
	width: 107px;
	height: auto;
}

#topani .l2 {
	width: 392px;
	height: auto;
}

#indexAbout {
	width: 96%;
	margin: 0 auto;
}

#indexAbout:before {
	width: 100%;
	background-position: 100% 45px;
	background-size: 600px;
}

#indexAbout .cont {
	display: block;
	width: 100%;
	padding: 20px;
	margin: 0 0 40px;
}

#indexAbout .cont .photo {
	margin: 0 0 10px;
}

#indexAbout .cont .photo img {
	display: block;
	margin: 0 auto;
}

#indexAbout .cont .text {
	width: 100%;
}

#indexAbout .cont .text h2 {
	font-size: 22px;
	background: url(../image/about_back.png) no-repeat 100% 100%
}

#indexAbout .cont .text h2:before {
	font-size: 60px;
}

#indexAbout .cont .text dt {
	margin: 0;
	text-align: center;
	font-size: 30px;
}

#indexAbout .cont .text dd {
	margin-bottom: 0;
}

#indexNews .cont {
	width: 96%;
	margin: 0 auto 40px;
	padding: 42px 0;
}

#indexNews .cont h2 {
	font-size: 22px;
	margin: 0 0 20px;
}

#indexNews .cont h2:before {
	font-size: 60px;
}

#indexMenu {
	width: 80%;
	margin: 0 auto 40px;
}

#indexMenu ul {
	display: block;
}

#indexMenu ul li {
	display: block;
	margin: 0 auto 20px;
}

#indexMenu ul li a span {
	font-size: 18px;
}

#indexMenu ul li a {
	font-size: 22px;
}

#indexMenu ul li.company a:before {
	top: unset;
	bottom: 80px;
}

#indexMenu ul li.business a:before {
	top: unset;
	bottom: 80px;
}

#indexMenu ul li.results a:before {
	top: unset;
	bottom: 80px;
}

#indexRecruit {
	background-position: 50%;
}

#indexRecruit .cont {
	width: 100%;
}

#indexRecruit .cont h2 {
	font-size: 22px;
}

#indexRecruit .cont h2:before {
	font-size: 60px;
}

#indexMovie {
	margin: 0;
	padding: 40px 0;
}

/*------------------------------------------------------------------------------------------------
  company
--------------------------------------------------------------------------------------------------*/
#secTitle.company {
	background-size: 70%;
}

.rinen {
	flex-direction: column;
	padding-bottom: 20px;
}

.rinen:before {
	width: 100%;
}

.rinen .text {
	width: calc( 100% - 40px );
	order: 2;
	margin: 0 20px;
}

.rinen .photo {
	width: 100%;
	order: 1;
	text-align: center;
	margin: 0 0 20px;
}

.rinen .photo img {
	width: 90%;
}

.rinen .text .bb {
	text-align: center;
	font-size: 22px;
}

.gaiyou {
	display: block;
}

.gaiyou .info {
	width: 100%;
}

.gaiyou .info table {
	margin: 0 0 60px;
}

.gaiyou .gmap {
	width: 100%;
	margin: 0 0 60px;
}

.gaiyou .gmap iframe {
	width: 100%;
	height: 340px;
}

.enkaku:before {
	width: 55%;
}

.enkaku {
	margin-bottom: 0;
}


/*------------------------------------------------------------------------------------------------
  business
--------------------------------------------------------------------------------------------------*/
#secTitle.business {
	background-position: 100% 80%;
}

.bs {
	margin: 0 0 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.bs .cont {
	width: 48%;
	margin: 0;
}

#second .bs .cont p {
	margin: 0 0 20px;
}

.bs .cont:nth-child(3n-1) {
	margin: 0;
}

.bs .cont h3 {
	font-size: 18px;
}


/*------------------------------------------------------------------------------------------------
  results
--------------------------------------------------------------------------------------------------*/
#secTitle.results {
	background-size: 80%;
}

.resultsList {
	display: block;
}

.resultsList .wrap {
	width: 90%;
	margin: 0 auto 30px;
}

.resultsList .wrap:nth-child(3n-1) {
	margin: 0 auto 30px;
}

.modal-window {
	width: 90%;
}

.slick-prev:before, .slick-next:before {
	font-size: 40px;
}

.slick-prev {
	left: -45px;
}

.slick-next {
	right: -25px;
}

/*------------------------------------------------------------------------------------------------
  recruit
--------------------------------------------------------------------------------------------------*/

#secTitle.recruit {
	background-size: 80%;
	background-position: 100% 30%;
}

.recLead span {
	font-size: 23px;
}

.recVoice {
	display: block;
}

.recVoice .cont {
	width: 100%;
}

.recVoice .cont .column {
	display: block;
}

.recVoice .cont .column .photo {
	margin: 0 0 10px;
	text-align: center;
}

.recVoice .cont .column .photo img {
	display: block;
	margin: 0 auto 10px;
}

.recVoice .cont .column .text {
	margin: 0 10px !important;
}

.bosyu table th {
	display: block;
	width: 100%;
	padding: 10px 20px;
}

.bosyu table td {
	display: block;
	width: 100%;
	padding: 10px;
}

.bosyu table th:before {
	right: unset;
	left: -10px;
	top: 24px;
}

/*------------------------------------------------------------------------------------------------
  entry
--------------------------------------------------------------------------------------------------*/
.recruitTb {
	width: 96%;
}

.recruitTb th {
	width: 100%;
	display: block;
	padding: 10px;
}

.recruitTb td {
	width: 100%;
	display: block;
	padding: 20px 10px;
}

.recruitTb td input[type=text] {
	width: 100%;
}

.recruitTb td input.l[type=text] {
	width: 100%;
}

.recruitTb td input.ss[type=text] {
	width: 54px;
}

/*------------------------------------------------------------------------------------------------
  contact
--------------------------------------------------------------------------------------------------*/
#secTitle.contact {
	background-size: 300px;
	background-position: 100% 30%;
}

.contactStep {
	display: block;
}

.contactStep li {
	margin: 0 0 16px;
}

.contactStep li:before {
	width: 16px;
	height: 100%;
	left: calc( 50% - 8px );
}

.contactTb {
	width: 96%;
}

.contactTb th {
	width: 100%;
	display: block;
	padding: 10px;
	background-color: #F3F2F1;
}

.contactTb td {
	width: 100%;
	display: block;
	padding: 20px 10px;
}

.contactTb td input[type=text] {
	width: 100%;
}



}





@media all and (max-width: 950px) {

.enkaku:before {
	width: 55%;
	left: -240px;
}

#secTitle.results {
	background-position: 100% 15%;
}

#secTitle.recruit {
	background-position: 100% 20%;
}


}

@media all and (max-width: 750px) {

.enkaku:before {
	width: 55%;
	left: -140px;
}

.gaiyou .info table th {
	white-space: nowrap;
}

}

@media all and (max-width: 560px) {
#topani .l1 {
    width: 77px;
    height: auto;
}

#topani .l2 {
    width: 362px;
    height: auto;
}

.enkaku dl dt {
	width: 120px;
}

.enkaku dl dd {
	width: calc( 100% - 120px );
	margin-left: 0;
}

#indexAbout .cont .text dt {
    font-size: 26px;
}

}

@media all and (max-width: 480px) {

#topani .l1 {
	width: 60px;
	height: auto;
}

#topani .l2 {
	width: 200px;
	height: auto;
}

#indexAbout .cont .text dt {
	font-size: 18px;
}

.enkaku:before {
	width: 50%;
	left: -60px;
}

.rinen .text .bb {
	font-size: 20px;
}

.gaiyou .info table th {
	display: block;
	width: 100%;
	background-color: #F3F3F3;
}

.gaiyou .info table td {
	display: block;
	width: 100%;
}

#secTitle.contact {
	background-size: 240px;
	background-position: 100% 30%;
}


}
