@charset "utf-8";
/* CSS Document */
.loopSlide {
    display: flex;
    width: 200vw;
    height: 200px;
    overflow: hidden;
	margin-bottom: 100px;
	}

.loopSlide img:first-child {
    animation: slide1 60s -30s linear infinite;
}

.loopSlide img:last-child {
    animation: slide2 60s linear infinite;
}
@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.rotate-anime {
  animation: rotate-anime 3s linear infinite;
}
@keyframes rotate-anime {
  0%  {transform: rotate(0);}
  100%  {transform: rotate(360deg);}
}

/*円形に回る*/
.sample-1 {
 position: relative;
    width: 10%;
    padding-top: 90%;
    margin: 0 auto;
}
.sample-1:after {
 content: '';
 display: block;
 width: 85%;
 padding-top: 85%;
 border: solid 2px #000;
 border-radius: 50%;
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%,-50%);
 z-index: 1;
}
.rotate {
 width: 100%;
 height: 100%;
 position: absolute;
 left: 50%;
 top: 50%;
 transform: translate(-50%,-50%);
 z-index: 2;
}
.rotate .rotate-ctn{
 position: relative;
 width: 100%;
 height: 100%;
 animation: 100s linear big-circle infinite; /* 大枠を回転させているアニメーション */
}
.rotate .box {
 position: absolute;
 width: 100px;
 height: 50%;
 transform-origin: 50% 100%;
}
/* 各コンテンツの文字を上向きにする */
.rotate .box.box-1 { left: 50%; transform: translate(-50%, 0);}
.rotate .box.box-2 { left: 50%; transform: translate(-50%, 0) rotate(45deg);}
.rotate .box.box-3 { left: 50%; transform: translate(-50%, 0) rotate(90deg);}
.rotate .box.box-4 { left: 50%; transform: translate(-50%, 0) rotate(135deg);}
.rotate .box.box-5 { left: 50%; transform: translate(-50%, 0) rotate(180deg);}
.rotate .box.box-6 { left: 50%; transform: translate(-50%, 0) rotate(225deg);}
.rotate .box.box-7 { left: 50%; transform: translate(-50%, 0) rotate(270deg);}
.rotate .box.box-8 { left: 50%; transform: translate(-50%, 0) rotate(315deg);}
.rotate .box .parts {
 position: relative;
 width: 80%;
}
/* 各コンテンツを回転させるアニメーション */
.rotate .box.box-1 .parts { animation: 100.0s linear circle1 infinite;}
.rotate .box.box-2 .parts { animation: 100.0s linear circle2 infinite;}
.rotate .box.box-3 .parts { animation: 100.0s linear circle3 infinite;}
.rotate .box.box-4 .parts { animation: 100.0s linear circle4 infinite;}
.rotate .box.box-5 .parts { animation: 100.0s linear circle5 infinite;}
.rotate .box.box-6 .parts { animation: 100.0s linear circle6 infinite;}
.rotate .box.box-7 .parts { animation: 100.0s linear circle7 infinite;}
.rotate .box.box-8 .parts { animation: 100.0s linear circle8 infinite;}

/* keyframesは下に記述 */

@keyframes big-circle {
 0% { transform: rotate(0deg);}
 100% { transform:rotate(360deg);}
}
@keyframes circle1 {
 0% { transform: rotate(0deg);}
 100% { transform: rotate(-360deg);}
}
@keyframes circle2 {
 0% { transform: rotate(315deg);}
 100% { transform: rotate(-45deg);}
}
@keyframes circle3 {
 0% { transform: rotate(270deg);}
 100% { transform: rotate(-90deg);}
}
@keyframes circle4 {
 0% { transform: rotate(225deg);}
 100% { transform: rotate(-135deg);}
}
@keyframes circle5 {
 0% { transform: rotate(180deg);}
 100% { transform: rotate(-180deg);}
}
@keyframes circle6 {
 0% { transform: rotate(135deg);}
 100% { transform: rotate(-225deg);}
}
@keyframes circle7 {
 0% { transform: rotate(90deg);}
 100% { transform: rotate(-270deg);}
}
@keyframes circle8 {
 0% { transform: rotate(45deg);}
 100% { transform: rotate(-315deg);}
}

/*矢印上下*/
.animated {
  animation: move-y .5s infinite alternate ease-in-out;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}

/*横から出てくる*/
.slideConts {
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.slideContsL {
  transform: translate(-800px, 0);
}
.slideContsR {
  transform: translate(800px, 0);
}
.slideContsL.show {
  transform: translate(-50px, 0) !important;
}
.slideContsR.show {
  transform: translate(0, 0) !important;
}

.top-box img{
	animation-name: fadein;
    animation-duration: 3s;
}
@keyframes fadein{
		from{
		opacity: 0;
    transform: translatey(20px);
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}

.scroll-up {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* マウスオーバー時の背景色 */
.chenge{
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

.chenge:hover {
    background-color: #ed8a3a;
	color: #fff;
    }

.target {
			transition: .5s ;
			transform: rotateY( 0deg ) ;
		}

header li:hover .target {
			transform: rotateY( 360deg ) ;
		}

header li:hover .target {
			transform: rotateY( 360deg ) ;
		}

footer .copy-r li:hover .target {
			transform: rotateY( 360deg ) ;
		}

footer .copy-r li:hover .target {
			transform: rotateY( 360deg ) ;
		}

.ec-link a:hover .target {
			transform: rotateY( 360deg ) ;
		}

.ec-link a:hover .target {
			transform: rotateY( 360deg ) ;
		}

.moimg1 {
    overflow: hidden;
}

.thumbnail {
    display: inline-block;
}

/*立体的なボタンが下に押し込まれたようなエフェクト*/
.btn-ani {
  display: inline-block;
  transition: .3s;
}
.btn-ani:hover {
  transform: translateY(5px);
  box-shadow: 0 0 0 #333;
}

.delayed-image {
	/* じわっと画像が表示される */
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
 
/* じわっと画像が表示される ---------　一度追加していたら不要*/
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*基本設定*/
.en{
	font-family: henriette, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.base_inner {
    width: 980px;
    padding: 0;
    margin: 0 auto;
}

.row {
    flex-direction: row-reverse;
}

.sp-on{
		display: none;
	}


html {
    font-size: 62.5%;
	overflow-x: hidden;
}

p{
	letter-spacing: 0.3rem;
    line-height: 2.5;
	font-family: kozuka-gothic-pr6n, sans-serif;
    font-style: normal;
	font-size: 16px;
}

h2 , h3{
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo";
}

img{
	width: 100%;
}

body {
    width: 100%;
    height: 100%;
    min-width: 1020px;
    color: #000;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    word-wrap: break-word;
    overflow-wrap: break-word;
	overflow-x: hidden;
}

li{
	 list-style: none;
}

.sma{
    display: none;
}

.sp-br{
		display: none;
	}

.pc-br{
	display: block;
}

/*
.base_inner {
    width: 1080px;
    padding: 0;
    margin: 0 auto;
}
*/

/*画像ズーム*/
.moimg1 {
	overflow: hidden;
	border-radius: 50px;
}

.moimg2 {
	overflow: hidden;
}

.moimg1 img , .moimg2 img{
	display: block;
	transition: 0.5s;
}
.moimg1 img:hover , .moimg2 img:hover{
	transform: scale(1.1, 1.1);
}

.zoom-in{
	display: block;
	transition: 0.5s;
}

.zoom-in:hover {
	transform: scale(1.1,1.1);
}

/*top*/
.bx-wrapper {
    box-shadow: none!important;
    border: 5px solid transparent!important;
    background: none!important;
	width: 70%!important;
	position: absolute!important;
	top: 100px;
	left: 25%;
}

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto{
	bottom: 30px!important;
	left: 300px;
}

.bx-wrapper .bx-pager.bx-default-pager a{
	width: 15px!important;
    height: 15px!important;
	border-radius: 20px!important;
}

.bx-wrapper .bx-controls-direction a{
	display: none;
}

.bx-viewport{
	border-radius: 50px!important;
}

#top .top-img{
	margin-top: auto;
}

/*
#top .top-title{
	width: 30%;
	height: 300px;
}

#top .top-title::before{
	content: '';
    width: 100%;
    height: 300px;
    position: absolute;
    z-index: 1000;
    left: 20px;
    border: 1px solid #fff;
    top: -17px;
}

#top .top-area h3{
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0 auto;
    text-align: inherit;
	margin-top: -175px;
    letter-spacing: 10px;
	z-index: 99999;
    position: relative;
}

#top .top-border{
	top: -30px;
}
*/

#top .top-box{
	position: absolute;
    width: 26%;
    left: 50px;
    top: 400px;
}

#top .top-area h3{
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: inherit;
    letter-spacing: 10px;
	z-index: 99999;
    position: absolute;
    font-size: 38px;
    font-weight: bold;
    top: 300px;
    left: 65px;
}

#top .about-area{
	margin-top: 20%;
}

#top .about-box{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

#top .about-box li:nth-child(2) {
    width: 50%;
}

#top .about-box li:nth-child(1) {
    width: 40%;
    margin: 0 50px;
}

#top .about-area h2{
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 38px;
    font-weight: bold;
	margin: 0 auto;
	padding-bottom: 50px;
}

#top .about-area h2 span {
    display: block;
    font-size: 24px;
    color: #ed8a3a;
	font-weight: 100;
}

#top .about-area p{
	margin-top: 50px;
    font-size: 16px;
}

.link-btn{
	margin-right: 0;
    margin-left: auto;
}

.about-box .link-btn{
	    width: 25%;
}

.contents-area li .link-btn {
	    width: 40%;
}

.news-area .link-btn{
	margin-top: 20px;
	    width: 20%;
}

.it-contact .link-btn{
	    width: 32%;
}

#top .member-area{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-around;
	margin-bottom: 100px;
}

#top .member-area li{
	width: 13%;
	text-align: center;
    position: relative;
	margin-bottom: 70px;
}

#top .member-area li img{
	display: block;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    width: 100%;
	padding: 0 10px;
}

#top .contents-area{
	position: relative;
	margin-bottom: 500px;
}

#top .contents-bg img{
	border-radius: 0 200px 0 0;
}

.position{
	position: absolute;
    bottom: -250px;
	z-index: 10000;
}

#top .contents-area ul{
	display: flex;
    width: 700px;
    background: #f7f7f7;
    padding: 50px;
}

#top .contents-area ul::before{
	background: #ffefae;
	content: '';
	background-size: 100% auto;
    width: 720px;
    position: absolute;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 20px;
}

#top .contents-area li:nth-child(1){
	margin-left: 50px;
}

#top .contents-area li:nth-child(2){
	margin-top: 30px;
    width: 70%;
    padding-left: 50px;
	font-family: kozuka-gothic-pr6n, sans-serif;
	letter-spacing: 0.3rem;
    line-height: 2.5;
    font-size: 16px;
}

#top .contents-area h3 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 38px;
    font-weight: bold;
}

#top .contents-area h3 span {
    display: block;
    font-size: 24px;
    color: #ed8a3a;
}

#top .news-area .news-list{
  list-style: none outside;
  margin: 0;
	width: 67%;
}

#top .news-area .news-list .news-item a{
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
}
#top .news-area .news-list .news-item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #666;
  padding: 0 20px 0 0;
	font-family: kozuka-gothic-pr6n, sans-serif;
}
#top .news-area .news-list .news-item .title{
  margin: 0;
  width: 100%;
	font-family: kozuka-gothic-pr6n, sans-serif;
	border-bottom: 2px solid #fff;
    padding-bottom: 20px;
}
#top .news-area .news-list .news-item a:hover .title{
  color: #999;
}

#top .news-area {
	background: #f9f9f9;
    border-radius: 200px 0 0 0;
    display: flex;
    padding: 80px 100px;
	width: 95%;
    margin-left: auto;
    margin-right: 0;
	margin-bottom: 150px;
}

#top .news-area h3{
	font-size: 38px;
    font-weight: bold;
	width: 30%;
}

#top .news-area h3 span{
	font-size: 24px;
    color: #ed8a3a;
    font-weight: 100;
	display: block;
}

@media screen and (max-width: 767px){
#top .news-area .news-list .news-item a{
  flex-wrap: wrap;
}
#top .news-area .news-list .news-item .date{
  min-width: 100px;
}
#top .news-area .news-list .news-item .title{
  margin-top: 0px;
}
}

#top .link-area {
	margin-bottom: 150px;
}

#top .link-area ul{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}

#top .link-area li{
	width: 31%;
    position: relative;
	margin-bottom: 50px;
}

#top .link-area li:nth-child(4){
	width: 100%;
}

#top .link-area li img{
	border-radius: 50px;
}

#top .link-area h3{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	color: #fff;
    font-size: 25px;
    text-align: center;
    text-shadow: -1px -1px 10px #fff;
}

#top .link-area h3 span{
	display: block;
    font-size: 20px;
    color: #ed8a3a;
}

#top .it-contact{
	margin-bottom: 150px;
}

#top .it-contact ul{
	display: flex;
	align-items: center;
}

#top .it-contact li:nth-child(1){
	width: 60%;
    z-index: 0;
    position: relative;
}

#top .it-contact li:nth-child(2){
	width: 40%;
	position: absolute;
    z-index: 100;
	background: #f7f7f7;
	padding: 100px 50px 100px 50px;
	left: 11%;
	min-width: 500px;
}

#top .it-contact li h2{
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ed8a3a;
	padding-bottom: 20px;
}

#top .copy-r{
	background: url("../img/footer-bg.png");
	background-size: 100% auto;
	background-repeat: no-repeat;
    width: 100%;
    padding: 30% 0 20px;
}

/*事業紹介*/
.top-area{
	position: relative;
	height: 700px;
}

header{
	width: 100%;
	position: absolute;
	display: flex;
	margin-top: 40px;
	justify-content: space-between;
	z-index: 9999;
	padding-right: 5%;
}

header .header-contents a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header .header-contents a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
	margin: 0 auto;
    right: 0;
  content: '';
  width: 70%;
  height: 2px;
  background: #ed8a3a;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
header .header-contents a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

header .header-contents{
	display: flex;
	justify-content: flex-end;
	margin: 0 20px;
}

header ul:nth-child(1){
	width: 10%;
    margin: 0 0 0 10%;
}

.top-img{
	width: 80%;
    position: absolute;
    z-index: -100;
    margin-top: 100px;
    right: 0;
}

.header-contents li{
	padding: 0 20px;
	font-weight: bold;
	font-size: 1.5rem;
}

.top-title{
	width: 450px;
    background: #ffefae;
    position: absolute;
    bottom: 0;
    padding: 8% 0;
	margin-left: 50px;
}

.top-border{
	position: absolute;
    border: 1px solid #fff;
    z-index: 1000;
    width: 100%;
    height: 300px;
    top: 30px;
    left: 30px;
}

.top-title h3{
	position: relative;
	text-align: center;
    font-weight: bold;
	font-size: 30px;
}

.top-title h3 span{
	display: block;
	font-size: 15px;
}

.top-title h3 span:before{
    content: '';
    position: absolute;
	bottom: -15px;
    display: inline-block;
    width: 50px;
    height: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ed8a3a;
    border-radius: 100px 100px;
}

.select-area , .about-area{
	margin-top: 100px;
}

.select-area ul{
	display: flex;
    justify-content: center;
    text-align: center;
    margin: 50px 0 150px 0;
    align-items: center;
    flex-wrap: wrap;
	color: #868484;
}

.select-area li {
    width: 30%;
    border: 1px solid #868484;
    margin: 10px;
    font-size: 14px;
    position: relative;
}

.select-area li:before {
    display: block;
    content: "";
    position: absolute;
    background: url(../img/link-arrow.png) no-repeat;
    background-size: contain;
    top: 50%;
    left: 20px;
    width: 10px;
    height: 8px;
    margin-top: -4px;
}

.select-area li a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px 0;
	font-family: kozuka-gothic-pr6n, sans-serif;
}

.select-area p{
	width: 80%;
    text-align: center;
    margin: 0 auto;
}

.concept-box{
	display: flex;
    align-items: center;
}

.concept-box li:nth-child(1){
	width: 50%;
}

.concept-box li:nth-child(2){
	width: 40%;
    margin: 0 50px;
}

.concept-box p{
	margin-left: 30px;
}

.detial-area{
	background: #f9f9f9;
    margin-top: -70px;
	padding-bottom: 150px;
}

.detial{
	padding: 150px 0;
}

.detial ul{
	display: flex;
	width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.detial li:nth-child(1){
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    background: #ffefae;
    padding: 80px 40px;
    font-size: 26px;
    font-weight: bold;
	letter-spacing: 7px;
}

.detial li:nth-child(2){
	width: 60%;
}

.detial p{
	width: 80%;
	padding-top: 50px;
    margin: 0 auto;
}

.flow-area{
	margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 50px;
    padding: 80px 100px;
	margin-bottom: 150px;
}

.flow-area h3 {
    font-size: 34px;
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
	font-weight: bold;
}

.flow-area h3:before{
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ed8a3a;
    border-radius: 100px 100px;
}

.flow-area p{
	    margin: 50px 0;
}

.tenpo-area {
	text-align: center;
}

.tenpo-area ul{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    margin: 80px 0;
}

.tenpo-area li{
	width: 28%;
	margin-bottom: 100px;
}

.tenpo-area li img{
	border-radius: 25px;
}

.tenpo-area h3 {
    font-size: 34px;
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
	font-weight: bold;
}

.tenpo-area h3:before{
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ed8a3a;
    border-radius: 100px 100px;
}

.tenpo-area h4{
	margin: 20px 0 10px;
    text-align: center;
    background: #ed8a3a;
    border-radius: 20px;
    padding: 10px 0;
    color: #fff;
}

.tenpo-area p{
	text-align: left;
    font-size: 15px;
    line-height: 2;
}

.ec-link li:nth-child(1){
	position: relative;
	width: 25%;
	margin: 0 auto;
    margin-top: -150px;
}

.ec-link li:nth-child(2){
	position: absolute;
	width: 15%;
    margin: 0 auto;
    left: 0;
    right: -500px;
    top: -100px;
}

#concept-area-2{
	margin-top: 200px;
}

#concept-area-2 .detial-area{
	padding-bottom: 0;
}

#footer{
	text-align: center;
	margin-top: 150px;
}

.copy-r{
	padding-bottom: 20px;
}

.footer-box h2{
	font-size: 34px;
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
    font-weight: bold;
}

.footer-box h2:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ed8a3a;
    border-radius: 100px 100px;
}

.footer-box h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 28px;
    text-align: center;
    text-shadow: -1px -1px 10px #000;
}

.footer-box h3 span {
    display: block;
    font-size: 20px;
    color: #ed8a3a;
}

.footer-box p{
	margin: 20px 0 100px;
}

.footer-box ul{
	width: 60%;
    margin: 0 auto;
    margin-bottom: 150px;
}

.copy-r li:nth-child(1){
	margin: 0 auto;
    width: 10%;
    margin-bottom: 50px;
}

/*加盟会社*/
.member-area{
	    margin-top: 100px;
}

.member-area h2{
	padding-left: 20px;
    border-left: solid 8px #ed8a3a;
    font-weight: bold;
	margin-bottom: 100px;
	font-size: 30px;
}

.member-box li{
	width: 31%;
	border-right: solid 1px;
    padding-right: 50px;
	margin-bottom: 100px;
	text-align: center;
}

.member-box li:nth-child(3n){
	border-right: none;
}

.logo-box img{
	margin-right: 10px;
  width: 150px;
  height: 150px;
  object-fit: contain;
	margin-bottom: 10px;
}

img:last-child {
  margin-right: 0;
}

.hp-box{
	background: #ed8a3a;
	color: #fff;
	text-align: center;
    border-radius: 50px;
    font-size: 15px;
    margin-top: 10px;
	display: flex;
	align-items: center;
}

.hp-box a:before{
	content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 15px;/*画像の幅*/
  height: 20px;/*画像の高さ*/
  background-image: url("../img/house.png");
  background-size: 100% auto;
  vertical-align: middle;
	background-repeat: no-repeat;
}

.hp-box a{
	width: 100%;
    height: 100%;
    display: block;
    padding: 5px 0;
	font-family: kozuka-gothic-pr6n, sans-serif;
}

.member-box ul{
	display: flex;
	    flex-wrap: wrap;
    justify-content: space-between;
}

.logo-box{
	text-align: center;
    position: relative;
}

.member-area {
    margin-bottom: 100px;
}


/*news*/
.news-area {
    width: 60%;
    margin: 0 auto;
    padding-top: 100px;
}

.news-area h2 {
    padding-left: 20px;
    border-left: solid 8px #ed8a3a;
    font-weight: bold;
    margin-bottom: 100px;
    font-size: 30px;
}

.news-area .news-list {
    list-style: none outside;
    width: 80%;
}

.news-area .news-list .news-item a {
    flex-wrap: wrap;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #333;
}

.news-area .news-list .news-item .date {
    margin: 0;
    min-width: 120px;
    font-size: 16px;
    color: #666;
    padding: 0 20px 0 0;
    font-family: kozuka-gothic-pr6n, sans-serif;
}

.news-area .news-list .news-item .title {
    margin: 0;
    width: 100%;
    font-family: kozuka-gothic-pr6n, sans-serif;
    border-bottom: 1px solid #666;
    padding-bottom: 20px;
	margin-bottom: 50px;
}

.news-area .news-list .news-item a:hover .title{
  color: #999;
}


/*協力会社*/
.select-area h3{
	text-align: center;
    font-weight: bold;
    font-size: 30px;
    margin: 50px 0;
}

.alliance-title {
	color: #ed8a3a;
	font-size: 30px;
    font-weight: bold;
	display: flex;
    align-items: center;
	border-bottom: solid 1px #b3b3b3;
    padding-bottom: 15px;
}

.alliance-title img{
	width: 5%;
    height: 30px;
    margin-right: 15px;
}

.alliance ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 50px;
}

.alliance ul p{
	letter-spacing: inherit;
}

.alliance .hp-box{
	width: 50%;
    margin-top: 20px;
}

.alliance li{
	width: 45%;
	padding-bottom: 100px;
}

.alliance h3{
	font-weight: bold;
    font-size: 25px;
	line-height: 1.3;
	padding-bottom: 20px;
}

.alliance h3 span{
	font-weight: 100;
    font-size: 15px;
    background: #ffefae;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px 0 0;
}

.item-box{
	margin-top: 10px;
}

/*こだわり*/
.about-message h2{
	width: 70%;
	padding-bottom: 50px;
}

.about-message{
	padding: 0 7%;
}

.about-message p{
	padding-bottom: 20px;
}

.about-detial{
	background: #f9f9f9;
    border-radius: 10%;
    padding: 100px;
	margin: 100px 0;
	position: relative;
}

.about-detial ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.about-detial li:nth-child(1){
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	font-size: 38px;
    font-weight: bold;
}

.about-detial li span{
	display: block;
	font-size: 24px;
    color: #ed8a3a;
}

.about-detial li:nth-child(2){
	width: 63%;
	position: relative;
}

.naka{
	position: absolute;
    width: 40%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 1000;
}

.about-detial .arrow{
	position: absolute;
    width: 10%;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: -20px;
}

#point{
	position: relative;
	margin-bottom: 200px;
}

#point h2{
	width: 30%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.point-bg{
	width: 120vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

#point .point-box{
	position: absolute;
	display: flex;
	top: 300px;
    justify-content: space-between;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
}

.point-box ul{
	width: 30%;
    background: rgba(255,255,255,0.85);
    padding: 4%;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
    box-shadow: -8px -9px 25px -10px #c1bebe;
}

.point-box li p{
	font-size: 14px;
}

.point-box li h3{
	font-size: 22px;
	color: #ed8a3a;
	font-weight: bold;
}

.point-box div{
	width: 70%;
	margin: 0 auto;
}

#addmition{
	background: #ffefae;
    padding: 150px 0;
    border-top-right-radius: 300px;
	margin-bottom: 200px;
}

#addmition h2{
	margin-bottom: 50px;
	width: 100%;
	padding: 0 7%;
}

#addmition ul{
	background: #fff;
    padding: 0% 10% 10% 10%;
    border-radius: 150px;
    margin-top: 100px;
}

#addmition h3 {
    font-size: 34px;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
	margin-top: 100px;
    font-weight: bold;
}

#addmition h3:before {
    content: '';
    position: absolute;
    bottom: -15px;
    display: inline-block;
    width: 60px;
    height: 7px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #ed8a3a;
    border-radius: 100px 100px;
}

#addmition li{
	text-align: center;
}

#addmition p{
	text-align: left;
	width: 100%;
    margin: 0 auto;
	padding: 0 7%;
}

#addmition span{
	display: flex;
	justify-content: center; /* 水平中心 */
	font-size: 15px;
}

#addmition span:before {
	border-top: 1px solid;
	content: "";
    width: 5em;
}

#addmition span:before {
  margin-left: 0em;
    margin-top: 22px;
    margin-right: 20px;
}

/*会社概要*/
.company-box {
    width: 80%;
    margin: 0 auto;
}

.company-flex dl {
    display: flex;
    margin-bottom: 20px;
    font-size: 16px;
    border-bottom: solid 1px #ed8a3a;
    padding-bottom: 20px;
    font-family: kozuka-gothic-pr6n, sans-serif;
    font-style: normal;
}

.company-flex dt {
    width: 40%;
    font-weight: inherit;
}

.company-flex dd {
    width: calc(100% - 220px);
}

.select-area h2 {
	padding-left: 20px;
    border-left: solid 8px #ed8a3a;
    font-weight: bold;
    margin-bottom: 100px;
    font-size: 30px;
}

/*contact　お問合せ*/
.contact-title p{
	width: 80%;
    text-align: center;
    margin: 0 auto;
}

.contact-title h3{
	text-align: center;
    font-weight: bold;
    font-size: 30px;
    margin: 50px 0;
}

.form-main {
	margin-top: 100px;
 }
  @media (max-width: 768px) {
    .form-main {
      padding: 0 2rem 5rem; } }

.contact-title {
  text-align: center; }
  .contact-title h1 {
    margin: 0;
    padding-top: 10rem; }

form {
  max-width: 680px;
  width: calc(100% - 10px);
  margin: 0 auto;
  font-size: 20px; }

.item {
  display: grid;
  align-items: center;
  padding-top: 30px; }

.sex {
  padding-top: 20px; }

.label {
  font-size: 16px;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: bold;
  width: 300px;
  padding-left: 10px;
  border-left: solid 5px #ed8a3a; }

.label-required {
  color: #385999;
  font-weight: bold;
  font-size: 16px; }

label{
	font-size: 16px;
	font-family: kozuka-gothic-pr6n, sans-serif;
}

input[type="text"], input[type="email"] {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px;
  width: 100%;
  margin-top: 1rem; }
  @media (max-width: 768px) {
    input[type="text"], input[type="email"] {
      width: auto; } }

select {
  appearance: none;
  cursor: pointer;
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  font-size: 15px; }

textarea {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 10px;
  height: 160px;
  width: auto;
  font-size: 15px;
  margin-top: 1rem; }

.btn {
  text-align: center;
  margin: 100px auto; }

.btn :hover {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .4s;
  transition: all .4s;
  background: #f7b126; }

button {
　font-size: 16px;
  font-family: kozuka-gothic-pr6n, sans-serif;
  background: #ed8a3a;
  border-radius: 30px;
  cursor: pointer;
  color: white;
  font-size: 17px;
  font-weight: bold;
  padding: 10px 60px;
	border-style: none;
}

#formWrap {
  width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 120%;
  font-size: 90%; }

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse; }

table.formTable td, table.formTable th {
  border: 1px solid #ccc;
  padding: 10px; }

table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left; }

p.error_messe {
  margin: 5px 0;
  color: red; }

/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width: 572px) {
  #formWrap {
    width: 95%;
    margin: 0 auto; }

  table.formTable th, table.formTable td {
    width: auto;
    display: block; }

  table.formTable th {
    margin-top: 5px;
    border-bottom: 0; }

  form input[type="submit"], form input[type="reset"], form input[type="button"] {
    display: block;
    width: 100%;
    height: 40px; } }

#news-page header{
	align-items: center;
}

#news-page .news-area {
    padding-top: 200px;
}

#news-page .title{
	font-weight: bold;
}

#news-page .back{
	width: 20%;
    margin-right: 0;
    margin-left: auto;
    padding-top: 100px;
}

/*求人紹介ページ*/
.recruit-title h2 {
	margin-top: 100px;
    padding-left: 20px;
    border-left: solid 8px #ed8a3a;
    margin-bottom: 100px;
    font-size: 30px;
	font-weight: bold;
}

.page-box{
	width: 28%;
	margin-bottom: 100px;
	margin-right: 50px;
}

.page-title{
	color: #fff;
    background: #ed8a3a;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    margin-bottom: 10px;
}

.page-detil{
	letter-spacing: inherit;
    line-height: 2;
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.page-detil span{
	font-weight: bold;
}

.recruit-link{
	width: 15%;
    margin-left: auto;
    margin-right: 0;
    padding-top: 10px;
}

.zoom-in {
    display: block;
    transition: 0.5s;
}

.itiran-box{
	display: flex;
    flex-wrap: wrap;
}

.page-intro{
	font-size:14px;
}

/*スマホ*/
@media screen and (max-width: 768px){
	/*ハンバーガーメニュー*/
	nav ul .link{
		width: 90%;
		margin: 0 auto;
		margin-bottom: 10px;
		border-bottom: none;
		margin-top: 20px;
	}
	
	.hamburger {
    position: fixed;
    right: 25px;
    top: 0;
    width: 75px;
    height: 60px;
	margin-top: 20px;
    cursor: pointer;
    z-index: 99999;
}
	
	.hamburger__line {
    position: absolute;
    width: 75px;
    height: 1px;
    right: 0;
    background-color: #000;
    transition: all 0.5s;
}
	
	.hamburger__line--1 {
    top: 16px;
    right: 9px;
}
	
	.hamburger__line--2 {
    top: 33px;
	right: 9px;
}
	
	.hamburger__line--3 {
    top: 48px;
	right: 9px;
}
	
	/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 31px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 31px;
}
	
	.sp-nav-logo{
		padding: 30px 0 20px;
		width: 75%;
		margin: 0 auto;
	}
	
	.sp-nav {
		text-align: initial;
    position: fixed;
    right: -100%;
    top: 0;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
		display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    justify-content: center !important;
}
	
	.insta-nav{
		width: 15%;
    margin: 0 auto;
    padding-top: 50px;
	padding-bottom: 100px;
	}
	
	
	/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
	width: 100%;
}
	.sp-nav ul {
    font-size: 1.8rem;
    margin-top: 100px;
	color: #000;
	font-family: kozuka-gothic-pr6n, sans-serif;
	-webkit-font-smoothing: antialiased;
		margin-bottom: 100px;
}
	
	.sp-nav li {
    width: 100%;
    display: flex;
    padding: 3rem 0rem;
	letter-spacing: 6px;
		justify-content: space-between;
    align-items: center;
}
	
	.sp-nav li img{
		width: 14%;
    height: 12%;
	}
	
	.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: rgba(0, 0, 0, 50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}
	
	/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
	
	nav{
		padding: 0;
    border-radius: 0;
    margin: 0;
	}
	
	p{
		line-height: 2.0;
	}
	
	.sp-logo{
	width: 23%;
    margin-top: 10%;
    margin-left: 10%;
    margin-bottom: 30px;
	position: absolute;
    top: 0;
}
.sp-top{
	position: relative;
	height: 400px;
}

.bx-wrapper{
	top: 0;
    left: auto;
	width: 100%!important;
}
	
	.bx-wrapper img{
		width: 600px!important;
		height: 350px!important;
	}
	
	#top .top-img{
		right: 100px;
	}
	
	#top .top-box {
    position: absolute;
    width: 26%;
    left: auto;
    top: -130px;
    right: 70px;
}
	#top .it-contact li:nth-child(2){
		width: 90%;
		min-width: auto;
		margin: 0 auto;
		left: 0;
		right: 0;
		top: 200px;
		padding: 50px;
	}
	
	.it-contact .link-btn{
		width: 70%;
		margin-top: 20px;
	}
	
	#top #footer{
		margin-top: 450px;
	}
	
	.footer-box h2 {
    font-size: 24px;
	}
	
	#top .copy-r {
    background: url(../img/sp-footer-bg.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 100%;
    padding: 34% 0 20px;
}
	
	.copy-r li:nth-child(1) {
    width: 20%;
	}
	
	#top .it-contact li:nth-child(1) {
    width: 100%;
	}
	
	html{
		width: 100%;
		overflow-x: hidden;
	}
	
	p{
		font-size: 14px;
	}
	
	.pc-on{
		display: none;
	}
	
.sma{
        display: block;
    }
	
	.sp-on{
		display: block;
	}
	
	.sp-br{
		display: block;
	}
	
	.pc-br{
	display: none;
	}
	
	body {
    min-width: 320px!important;
    max-width: 100%!important;
	font-size: 15px;
    font-size: 1.5rem;
		overflow-x: hidden;
}
	
	.base_inner {
    width: 100% !important;
    padding: 0 20px !important;
}
	
	#top .about-box {
    display: block;
	}
	
	#top .about-box li:nth-child(1) {
    width: 90%;
    margin: auto;
}
	
	#top .about-area h2{
		writing-mode: initial;
		font-size: 24px;
		padding-bottom: 0;
	}
	
	#top .about-area p {
    margin-top: 10px;
    font-size: 14px;
}
	
	.about-box .link-btn {
    width: 45%;
}
	
	.contents-area li .link-btn {
    width: 55%;
}
	
	.news-area .link-btn {
    width: 50%;
}
	
	#top .about-box li:nth-child(2) {
    width: auto;
    margin-top: 20px;
}
	
	#top .link-area li {
    width: 48%;
    margin-bottom: 20px;
}
	
	#top .link-area li:nth-child(4) {
    width: 48%;
}
	
	#top .link-area li img {
    border-radius: 20px;
}
	
	#top .link-area h3{
		font-size: 17px;
	}
	
	#top .link-area h3 span{
		font-size: 14px;
	}
	
	#top .link-area {
    margin-bottom: 100px;
}
	
	.about-detial{
		margin: 80px 0;
		padding: 50px 10px;
		border-radius: 50px;
	}
	
	.about-detial ul {
    display: block;
	}
	
	.about-detial li:nth-child(1){
		font-size: 24px;
		writing-mode: inherit;
	}
	
	.rotate .box .parts {
    width: 65%;
}
	
	.about-detial li:nth-child(2) {
    width: auto;
}
	
	#top .news-area{
		padding: 50px 10px 50px 50px;
		width: 95%;
		display: block;
		border-radius: 100px 0 0 0;
		margin-bottom: 80px;
	}
	
	#top .news-area h3{
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
		font-size: 28px;
	}
	
	#top .news-area .news-list{
		width: 100%;
	}
	
	#top .news-area h3 span {
    font-size: 14px;
	}
	
	.news-item{
		margin-bottom: 20px;
	}
	
	#top .it-contact ul {
    display: block;
		position: relative;
	}
	
	.it-contact .base_inner{
		padding: 0!important;
	}
	
/*	アバウト*/
	.my-slider{
		background: url("../img/sp-bg-point.png");
		background-size: 100% auto;
	}
	
	.slick-dots {
		bottom: 40px!important;
	}
	
	.slick-dotted.slick-slider{
		z-index: 100!important;
	}
	
	.slick-dotted.slick-slider {
    margin-bottom: 100px!important;
}
	
	#point{
		margin-bottom: 0px;
	}
	
	.top-img {
    width: 100%;
	}
	
	.top-title{
		width: 70%;
		top: 250px;
		margin-left: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		padding: 8% 0 8%;
	}
	
	.top-border{
		top: 15px;
		left: 15px;
		height: 150px;
		z-index: 0;
	}
	
	.top-title h3{
		font-size: 24px;
	}
	
	.top-title h3 span {
    font-size: 14px;
}
	
	.top-title h3 span:before{
		bottom: -10px;
	}
	
	.page-sp-logo {
    width: 35%;
    margin-top: 6%;
    margin-left: 5%;
    margin-bottom: 30px;
    position: absolute;
    top: 0px;
}
	
	#about .top-area {
    height: 400px;
}
	
	.about-message h2 {
    width: 80%;
    padding-bottom: 20px;
}
	
	.about-message {
    padding: 0;
}
	
	.about-detial .arrow{
		width: 25%;
	}
	
	#point h2 {
    width: 55%;
    padding-bottom: 50px;
}
	
	#addmition{
		padding: 100px 0;
		border-top-right-radius: 150px;
		    margin-bottom: 100px;
	}
	
	#addmition h2 {
    margin-bottom: 20px;
		width: 130%;
		padding: 0;
}
	
	#addmition p {
		width: 100%;
		padding: 0;
	}
	
	#addmition ul {
    padding: 0% 5% 10% 5%;
    border-radius: 50px;
    margin-top: 50px;
}
	
	#addmition h3 {
    font-size: 24px;
	margin-bottom: 50px;
    margin-top: 50px;
	}
	
	#footer{
		margin-top:0; 
	}
	
	.moimg1 {
    border-radius: 20px;
}
	
	.footer-box ul {
    width: 90%;
    margin-bottom: 100px;
}
	
	.footer-box h3{
		font-size: 24px;
	}
	
	.footer-box h3 span{
		font-size: 14px;
	}
	
/*	事業内容*/
	.flow-area p {
    margin: 20px 0;
}
	
	#top .link-area li:nth-child(4) h3{
		font-size: 15px;
	}
	
	#top .top-area{
		height: 300px;
		margin-top: 250px;
	}
	
	.top-area{
		height: 400px;
	}
	
	.select-area p {
    width: 100%;
		padding-bottom: 50px;
	}
	
	.select-area ul{
		margin: 0 0 80px 0;
	}
	
	.select-area li {
    width: 43%;
	}
	
	.concept-box {
    display: block;
	}
	
	.concept-box li:nth-child(1) {
    width: 100%;
}
	
	.concept-box li:nth-child(2) {
    width: 90%;
    margin: 0 auto;
}
	
	.concept-box p {
    margin-left: 0;
}
	
	.detial {
    padding: 100px 0 50px;
}
	
	.detial ul {
    display: block;
	width: auto;
	}

	.detial li:nth-child(1){
		writing-mode: inherit;
		padding: 20px 20px;
    font-size: 24px;
    text-align: center;
	}
	
	
	.detial li:nth-child(2) {
    width: auto;
    margin-top: 50px;
}
	
	.detial p {
    width: 100%;
	}
	
	.flow-area{
		    padding: 50px 20px;
    margin-bottom: 50px;
	}
	
	.flow-area h3 {
    font-size: 24px;
	}
	
	.tenpo-area h3 {
    font-size: 24px;
	}
	
	.tenpo-area ul{
		margin: 50px 0;
	}
	
	.tenpo-area li {
    width: 48%;
    margin-bottom: 50px;
}
	.tenpo-area li img {
    border-radius: 10px;
}
	
	.tenpo-area h4 {
    margin: 10px 0 10px;
	border-radius: 10px;
    padding: 5px 0;
	}
	
	.tenpo-area p{
		font-size: 12px;
	}
	
	.detial-area{
		margin-top: 0;
    padding-bottom: 60px;
	}
	
	.ec-link li:nth-child(1){
		width: 50%;
		margin-top: -80px;
	}
	
	.ec-link li:nth-child(2){
		width: 25%;
    left: auto;
    right: 30px;
    top: -50px;
	}
	
	#concept-area-2 {
    margin-top: 70px;
}
	
	#concept-area-2{
		margin-bottom: 50px;
	}
	
/*	協力会社*/
	.select-area h3{
		font-size: 24px;
		margin: 0 20px;
	}
	
	.select-area li {
    width: 100%;
}
	
	.alliance h2{
		font-size: 24px;
	}
	
	.alliance h2 img {
    width: 12%;
	}
	
	.alliance ul {
		margin-bottom: 50px;
	}
	
	.alliance li {
    padding-bottom: 70px;
}
	
	.alliance h3{
		font-size: 18px;
	}
	
	.alliance .hp-box {
    width: auto;
		font-size: 12px;
	}
	
/*	加盟店舗*/
	.member-area h2{
		margin-bottom: 50px;
    font-size: 24px;
	}
	
	.member-box li {
    width: 48%;
    border-right: none;
    padding-right: 0;
    margin-bottom: 50px;
}
	
/*	ニュース*/
	.news-area {
    width: 100%;
	    margin-bottom: 100px;
	}
	
	.news-area h2{
		margin-bottom: 50px;
    font-size: 24px;
	}
	
	.news-area .news-list{
		width: 100%;
	}
	
	.news-area .news-list .news-item .title{
		margin-bottom: 20px;
	}
	
/*	会社概要*/
	.select-area h2 {
    font-size: 24px;
		margin-bottom: 50px;
	}
	
	.company-flex dl{
    margin-bottom: 20px;
    padding-bottom: 20px;
	}
	
	.company-box {
    width: 100%;
		margin-bottom: 100px;
	}
	
	.company-flex dt {
    width: 70%;
    font-weight: bold;
}
	
	.company-flex dl:nth-child(7){
		display: block;
	}
	
	.company-flex dd {
    width: 100%;
}

#top .contents-bg img {
    border-radius: 0 80px 0 0;
}

.position {
    position: absolute;
    bottom: auto;
}

#top .contents-area ul {
    display: block;
    width: 100%;
    background: #f7f7f7;
    padding: 35px;
    margin: 0 auto;
    border: 14px solid #ffefae;
	height: 480px;
}
	
	#top .contents-area{
		margin-bottom: 600px;
	}

	.slideContsL.show {
    transform: translate(0px, 0) !important;
}
	
#top .contents-area ul::before {
    display: none;
}

#top .contents-area li:nth-child(1) {
    margin-left: auto;
}

#top .contents-area h3 {
    -ms-writing-mode: tb-rl;
    writing-mode: inherit;
    font-size: 28px;
    font-weight: bold;
}

#top .contents-area h3 span {
    display: block;
    font-size: 14px;
}

#top .contents-area li:nth-child(2) {
    margin-top: 20px;
    width: 100%;
    padding-left: 0;
	font-size: 14px;
}
	
	#top .member-area li {
    width: 31%;
}
	
	#top .member-area{
	margin-bottom: 20px;
}	
	
	#news-page .top-area{
		height: auto;
	}
	
	#news-page .news-area {
    padding-top: 150px;
}
	
	#news-page .back {
    width: 35%;
    padding-top: 20px;
}
	
	.loopSlide{
		height: auto;
		width: 3000px;
		margin-bottom: 80px;
	}
	
/*求人サイト紹介*/
	.recruit-title h2{
		margin-bottom: 50px;
		font-size: 24px;
	}
	
	.recruit-area{
		margin-bottom: 100px;
		margin-top: 100px;
	}
	
	.itiran-box {
    display: block;
	}
	
	.page-box {
    width: auto;
    margin-bottom: 50px;
	margin-right: 0;
}
	
	.recruit-link {
    width: 13%;
    padding-top: 20px;
}
	
}/*スマホ*/


/*デスクトップ*/
@media screen and (min-width:1500px){

	
}

@media (max-width: 520px) {
  body {
    top: 0 !important
  }
}

@media screen and (min-width: 1px) and (max-width: 1400px){
	
}
