@charset "UTF-8";
/* @import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css); */


/** -----------------------------------------------
  共通
------------------------------------------------**/
html {
	scroll-behavior: smooth;
}

body {
	/*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #333;
	background-color:#fff;
	font-family:  "Open Sans", sans-serif, 'Noto Sans JP', sans-serif, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

img {
	max-width: 100%;
  }

a {
	text-decoration: none;
}

ul{
	padding-left:0;
  }
  
  li{
	list-style:none;
  }
    

#about, #jigyonaiyo, #member, #work, #wanted #faq {
	padding: 100px 0 110px 0;
	scroll-margin-top: 80px; /* スムーススクロール用追記 */
  }
  
.section-inner {
width: 100%;
max-width: 1000px;
margin: 0 auto;
}


/* 2/27追記ふわっと */
.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}
	.js-fade.inview {
		opacity: 1;
		visibility: visible;
		transform: translateY(0px);
	}

/* 選考フローのみ左からふわっと */
.js-fadeLeft {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-80px);
    transition: opacity 1s,visibility 1s, transform 1s;
}
	.js-fadeLeft.inview {
		opacity: 1;
		visibility: visible;
		transform: translateX(0px);
	}

/** -----------------------------------
    テキスト
-------------------------------------**/
h1.max {
	font-weight: 700;
	font-size: 48px;
	line-height: 2;
	letter-spacing: 0.05;
}

h2.large {
	font-weight: bold;
	font-size: 32px;
	line-height: 1.6;
	letter-spacing: 0.03em;
	margin-bottom: 30px;
  }
  
  h3.small {
	font-weight: bold;
	font-size: 24px;
	line-height: 1.6;
	letter-spacing: 0.03em;
  }
  
  h4.minimum {
	font-weight: bold;
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
  }

  
  p.medium {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.08em;
	font-weight: 600;
  }
  
  p.small {
	font-size: 13px;
	line-height: 1.75;
	letter-spacing: 0.03em;
  }
  

/** -----------------------------------
    ボタン
-------------------------------------**/
.button-small {
	display: block;
	width: 190px;
	height: 48px;
	color: #fff;
	background: linear-gradient(to bottom right, #f0bda9, #ef7373 50%); 
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 50px;
	text-align: center;
	border-radius: 5px;
	padding: 0 10px;
	position: relative;
	transition: background-color 0.8s ease;
  }

  /* ボタン右端の矢印 */
  .button-small::after {
	content: "＞";
	font-size: 10px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
  }

  .button-small:hover {
	background: linear-gradient(to bottom right, #ef7373, #e6375a 40%); 
	transform: scale(1.03);
	transition: 0.8s;
  }


  
  .button-large {
	display: block;
	width: 280px;
	height: 64px;
	background: #FFF;
	color: #e6375a;
	border: 1px solid #e6375a;
	font-size: 16px;
	letter-spacing: 0.05em;
	line-height: 64px;
	text-align: center;
	border-radius: 10px;
	padding: 0 10px;
	position: relative;
	margin: 70px auto 40px;
	transition: background-color 0.5s ease;
  }

  .button-large::after {
	content: "＞";
	font-size: 12px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
  }

  .button-large:hover {
	background: linear-gradient(to bottom right, #f0bda9, #ef7373); 
	color: #fff;
	border: none;
	transform: scale(1.03);
	transition: 0.5s;
  }


  .button-max {
	display: block;
	width: 600px;
	height: 160px;
	background: #FFF; 
	color: #333;
	font-size: 40px;
	letter-spacing: 0.08em;
	line-height: 40px;
	text-align: center;
	border-radius: 10px;
	padding: 64px;
	margin: 0 auto;
	position: relative;
	/* 追記 */
	overflow: hidden;
	transition: .4s;
	z-index: 2;
  }

  .button-max::after {
	background: #e6375a;
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .5s, transform 0s;
	transition-delay: 0s, .4s;
  }

  .button-max:hover {
	color: #FFF;
	letter-spacing: 0.15em;
  }

  .button-max:hover::after {
		opacity: 1;
		transform: translateY(-50%) scale(1.1);
		transition-delay: 0s;
		transition: opacity 1.3s, transform .8s ease-in-out;
  }



/** -----------------------------------
    見出し
-------------------------------------**/
  
  .title-img {
	text-align: center;
	margin-bottom: 40px;
  }

  .description {
	text-align: center;
	margin-bottom: 70px;
  }

  
  /** -----------------------------------
	  レイアウト
  -------------------------------------**/
  .col-2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 70px;
  }
  .col-2:nth-child(2n) {
	flex-direction: row-reverse;
  }

  .col-2 .item {
	width: calc((100% - 100px)/2);
  }


  
  .col-3 {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 70px;
  }

  .col-3 .item {
	width: calc((100% - 150px)/3);
  }
  
  
  /** -----------------------------------
	  ヘッダー
  -------------------------------------**/
  #header {
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	height: 80px;
	/* 以下レイアウト用 */
	background-color: #FFF;
	opacity: 80%;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
  }
  
  .header-wrap {
	display: flex;
	align-items: center;
  }

  .header-logo {
	width: 170px;
  }

  .header-text {
	color: #ee8a3c;
	margin-left: 20px;
	letter-spacing: 0.1em;
  }
  
  .gnav-pc-wrap {
	display: flex;
	align-items: center;
  }
  
  ul.gnav-pc {
	margin-right: 5px;
  }

  ul.gnav-pc li {
	display: inline;
	margin-right: 25px;
  }
  
  ul.gnav-pc li a {
	font-size: 14px;
	color: #333333;
	font-weight: 600;
	/* hover用追記 */
	padding-bottom: 5px;
	position: relative;
  }

  ul.gnav-pc li a::before {
	background: #ee8a3c;;
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: center top;
	transform: scale(0, 1);
	transition: transform 0.5s;
  }
  ul.gnav-pc li a:hover::before {
	transform-origin: center top;
	transform: scale(1, 1);
  }
  
  ul.gnav-pc li a:hover {
	color: #ee8a3c;
  }

  /* PCのときSPメニューは消す */
  #sp-menu-button {
    display: none;
  }

  .gnav-sp-wrap {
    display: none;
  }


  

  
  
/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/

.only-pc {
	display: block;
}

.only-sp {
	display: none;
}

/* ---メインビジュアル--- */
#mainvisual {
	width: 100vw;
	height: calc(110vh - 80px);
	background-image: url("../images/KV.png");
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
	position: relative;
	margin-top: 80px;
}

#mainvisual img {
	position: absolute;
	left: 124px;
	bottom: 124px;
}


/* --------------
about(私たちについて)
-------------- */
.about {
	position: relative;
}

#about .section-inner {
	margin-top: 40px;
	max-width: 100%;
}

#about .bg-shape01 {
	position: absolute;
    right: 0px;
    top: -30%;
	z-index: -6;
}

#about .bg-shape02 {
	position: absolute;
    left: 0;
    bottom: 20%;
	z-index: -6;
}

#about .bg-TSUTSUMU {
	position: absolute;
	right: 3%;
    top: 15%;
	z-index: -6;
}


.about-container {
	height: 100vh;
}

.img-about_us {
	position: absolute;
	left: 80px;
}

/* 右側テキスト */
.about-wrap-right {
	width: 500px;
	position: absolute;
    right: 180px;
}

.about-wrap-right img {
	display: flex;
	margin: 0 auto;
	width: 50%;
}


#about p.medium {
	margin-bottom: 10px;
}
#about p.medium:last-child {
	margin-bottom: 0;
}

/* 画像スライド */
.slider {
	margin-bottom: 100px;
}

.slider img {
	width: 100%;
	height: auto;
}


.slider .slick-slide {
	margin:0  20px;
}

/* --------------
事業内容
-------------- */
.jigyonaiyo {
	background-image: url("../images/jigyonaiyo_bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

#jigyonaiyo .jigyonaiyo_angel {
	position: absolute;
    right: 80px;
    top: 380px;
}
#jigyonaiyo .jigyonaiyo_hane {
	position: absolute;
    left: 120px;
    top: 1250px;
}



.col-2 .item img {
	width: 100%;
}

.col-2 .item img:nth-child(2n) {
	text-align: right;
}


.jigyonaiyo-textbox {
	padding: 50px 35px 35px 35px;
	border-radius: 20px;
	background-color: #fff;
	position: relative;
}

.jigyonaiyo-no {
	font-size: 72px;
	color: #f7d4ca;
	letter-spacing: 0.05em;
	position: absolute;
	top: -60px;
	left: 0;
}

span.marker {
	background: linear-gradient(transparent 55%, #f7d4ca 55%);
}


/* --------------
メンバー紹介
-------------- */
.member {
	background-image: url("../images/member_bg.png");
	background-color: #fdf4ed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

#member .member_angel {
	position: absolute;
    right: 200px;
    top: -80px;
}

.autoplay {
	max-width: 100%;
	margin: 0 auto;
}

.autoplay a {
	margin: 0 25px;
	transform: scale(0.95);
}

.autoplay a:hover {
	transform: scale(1);
	transition: 0.5s;
}



/* --------------
働く環境
-------------- */
.work {
	background-image: url("../images/work_bg.png");
	background-color: #fbede1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

#work .work_angel {
	position: absolute;
    left: 100px;
    top: 120px;
}
#work .work_hane {
	position: absolute;
    right: 120px;
    top: 1100px;
}


.workitem-img {
	width: 100%;
	margin-bottom: 24px;
	/* アニメーション用追記 */
		opacity: 0; /*表示前に透明にしておく */
		transform: translateY(20px); /*表示前の位置 */
		transition: 0.8s; /*移動にかける時間 */
		transition-delay: 0.1s; /*遅延をかける秒数 */
}

	/* アニメーション用 */
		.workitem-img.delay {
			transition-delay: 0.6s;
		} 
		.workitem-img.delay2{
			transition-delay: 1.2s;
		} 

		.workitem-img.show{
			opacity: 1;
			transform: translateY(0px);
		}



.workitem-text .minimum {
	text-align: center;
}

#work span.marker {
	display: inline-block;
	position: relative;
	z-index: 2;
}
		#work span.marker:before {
			content:'';
			position:absolute;
			background: #edb278;
			left:0;
			bottom:0;
			width:0;
			height:30%;
			z-index:-1;
			transition:1.8s;
		}

		#work span.marker.active:before {
			width: 100%;
		}






/* --------------
募集要項
-------------- */
.wanted {
	background-image: url("../images/wanted_bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding: 193px 0 330px;
}

#wanted .section-inner {
	max-width: 1100px;
}

.wanted-title {
	font-size: 150px;
	letter-spacing: 0.13em;
	line-height: 1em;
	color: #FFF;
	font-weight: 700;
	text-align: center;
}

.wanted-wrapper {
	padding: 70px 50px 144px;
	border-radius: 30px;
	background-color: #fff;
	margin-top: -24px;
}

.wanted-container {
	margin-bottom: 110px;
}

.pc-wanted-list {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
}

.pc-wanted-list img {
	width: 300px;
	margin: 15px;
}

.pc-wanted-list img:hover {
	transform: scale(1.05);
	transition: 0.5s;

}



/** -----------------------------------
    FAQ
-------------------------------------**/
.faq {
	position: relative;
}

.faq_shape01 {
	position: absolute;
    top: -400px;
	left: -20px;
	z-index: -6;
}
.faq_shape02 {
	position: absolute;
    right: 0px;
    top: 350px;
	z-index: -6;
}

#faq .section-inner {
	padding-top: 50px;
}

/* ここからアコーディオンメニュー */
.faq-container {
	border-radius: 5px;
	margin-bottom: 24px;
	background-color: #F5F5F6;
}

.faq-container a {
	color: #ef7373;
		/* hover用追記 */
		padding-bottom: 5px;
		position: relative;
	  }
	
	  .faq-container a::before {
		background: #ef7373;;
		content: '';
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		bottom: 0;
		margin: auto;
		transform-origin: center top;
		transform: scale(0, 1);
		transition: transform 0.5s;
	  }
	  .faq-container a:hover::before {
		transform-origin: center top;
		transform: scale(1, 1);
	  }
	


.faq-head, .faq-body {
	padding: 20px 40px;
	display: flex;
}

.faq-head {
	position: relative;
	background-color: #fdf4ed;
	cursor: pointer;
	font-size: 16px;
	border-radius: 5px;
}

.faq-head:before {
	position: absolute;
	display: block;
	content: 'Q.';
	margin-right: 12px;
	color: #f1a69f;
	font-size: 18px;
	font-weight: bold;
}

.faq-head:after {
	position: absolute;
	display: block;
	content: '';
	top: 45%;
	right: 25px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #f1a69f;
	border-right: 2px solid #f1a69f;
	transform: rotate(135deg);
}


.faq-head.open:after {
	transform: rotate(-45deg);
	top: 45%;
	transition: all .3s ease-in-out;
}

.faq-body {
	background-color: #fbede1;
	display: none;
}


.faq-text {
	padding-left: 40px;
}

._answer {
	position: relative;
}

._answer:before {
	position: absolute;
	display: block;
	content: 'A.';
	margin-right: 12px;
	color: #f1a69f;
	font-size: 18px;
	font-weight: bold;
	left: 0;
}





/** -----------------------------------
    footer
-------------------------------------**/
.footer {
	margin-top: 210px;
	background-image: url("../images/footer_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1000;
	height: 100vh;
}
.footer-inner {
	padding-top: 200px;
}

.footer-text {
	text-align: center;
	margin-bottom: 70px;
}

  
  .footer-link {
	font-size: 12px;
	margin: 100px auto 27px;
	text-align: center;
  }
  
  .footer-link li {
	display: inline;
	margin-right: 20px;
  }

  .footer-link a {
	color: #FFF;
	/* hover用追記 */
	padding-bottom: 5px;
	position: relative;
  }

  
  .footer-link a::before {
	background: #FFF;
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: center top;
	transform: scale(0, 1);
	transition: transform 1s;
  }
  .footer-link a:hover::before {
	transform-origin: center top;
	transform: scale(1, 1);
  }


  .copyright {
	font-size: 14px;
	color: #FFF;
	text-align: center;
	padding-bottom: 70px;
  }
  
  


/*ここからメディアクエリで各デバイスサイズに書き分けます。
今回の課題で考慮するのはPCとスマホのみでOKですが、タブレットサイズでのスタイルを書いてもOK！
また、CSSは上から下に継承されるので、変化させたいところだけ書けばOKです*/


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){

	.only-pc {
		display: none;
	}
	
	.only-sp {
		display: block;
	}
	

/** -----------------------------------------------
  SP共通
------------------------------------------------**/
.section-inner {
	padding: 0 22px;
	max-width: 550px;
	margin: 0 auto;
	}
	
	#about, #jigyonaiyo, #member, #work, #wanted #faq {
		padding: 100px 0;
	}


/** -----------------------------------
    SPテキスト
-------------------------------------**/
h1.max {
	font-size: 24px;
}

h2.large {
	font-size: 22px;
	margin-bottom: 40px;
  }
  
  h3.small {
	font-size: 20px;
  }
    
  p.medium {
	font-size: 14px;
  }
  
  p.small {
	font-size: 11px;
  }


/** -----------------------------------
    SPボタン
-------------------------------------**/
  /* SP用追従CTAボタン */
  .sp-button-cta {
	display: block;
	width: 100%;
	height: 48px;
	color: #fff;
	background: linear-gradient(to bottom right, #f0bda9, #ef7373 50%); 
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 50px;
	text-align: center;
	padding: 0 10px;
	position: relative;
	z-index: 999;
	position: fixed;
	bottom: 0;

  }
  /* ボタン右端の矢印 */
  .sp-button-cta::after {
	content: "＞";
	font-size: 10px;
	position: absolute;
	top: 50%;
	right: 30%;
	transform: translateY(-50%);
  }

/*0405_フッターまでスクロールしたら消す*/
.is-hidden {
	visibility: hidden;
	opacity: 0;
	transition: .5s;
}
.is-appear {
	visibility: visible;
	opacity: 1;
	transition: .5s;
}





.button-large {
	height: 44px;
	font-size: 14px;
	line-height: 44px;
	position: relative;
	margin: 60px auto 0px;
}


.button-max {
	width: 330px;
	height: 80px;
	color: #333;
	font-size: 30px;
	line-height: 22px;
	padding: 30px 112px;
	border-radius: 8px;
}



/** -----------------------------------
    SP見出し
-------------------------------------**/
  
.title-img {
	width: 40%;
	margin: 0 auto 50px;
  }

  .description {
	text-align: left;
	margin-bottom: 60px;
  }


/** -----------------------------------
   SP レイアウト
-------------------------------------**/
.col-2 {
    display: block;
  }
  .col-2 .item {
    width: 100%;
  }
  .col-3 {
    display: block;
  }
  .col-3 .item {
    width: 100%;
  }


/** -----------------------------------
    SPヘッダー
-------------------------------------**/
#header {
    height: 60px;
    padding: 0;
	background-color: #fdf4ed;
	opacity: 100%;
  }

  .header-logo {
	width: 107px;
    padding-left: 18px;
  }

  .header-text {
    margin-left: 12px;
    letter-spacing: 0.1em;
	font-size: 12px;
  }

  .gnav-pc-wrap {
    display: none;
  }

/* 以下SPハンバーガーメニュー */
  #sp-menu-button {
    display: block;
    width: 60px;
    height: 60px;
    padding: 22px 18px;
  }

  .sp-menu-button-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .sp-menu-button-inner span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ee8a3c;
    position: absolute;
  }

  .sp-menu-button-inner span:nth-child(1) {
    top: 0;
  }

  .sp-menu-button-inner span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .sp-menu-button-inner span:nth-child(3) {
    bottom: 0;
  }

  /* 以下×アニメーション */
  #sp-menu-button.active span {
	transition: 1s;
  }

  #sp-menu-button.active span:nth-child(1) {
	transform: translateY(8px) rotate(-45deg);
  }
  #sp-menu-button.active span:nth-of-type(2) {
	opacity: 0;
  }
  #sp-menu-button.active span:nth-of-type(3) {
	transform: translateY(-6px) rotate(45deg);
  }

  /* 以下右からスライドアニメーション */
  /* アニメーション前のメニューの状態 */
	.gnav-sp-wrap{
		transform: translateX(100vw);
		transition: all .4s linear;
	}
	/* アニメーション後のメニューの状態 */
	.gnav-sp-wrap.active{
		transform: translateX(0);
	}
  

	/* スマホ用メニューのスタイル */
	.gnav-sp-wrap {
		display: none;
		width: 70%;
		height: 100vh;
		background-color: #fdf4ed;
		position: fixed;
		z-index: 1002;
		padding-top: 100px;
		right: 0;
	}

	ul.gnav-sp li {
		text-align: left;
		margin: 0 60px 30px;
		padding-bottom: 10px;
		border-bottom: 1px dotted #ee8a3c;
	  }
	
	  ul.gnav-sp li a {
		font-size: 16px;
		letter-spacing: 0.1em;
		color: #333333;
		font-weight: bold;
	  }



/** -----------------------------------
   SP メインビジュアル
-------------------------------------**/
#mainvisual {
	width: 100%;
	height: calc(110vh - 60px);
	background-image: url("../images/sp-KV.png");
	background-size: cover;
	margin-top: 60px;
}
#mainvisual img {
	left: 20px;
	bottom: 16%;
	width: 50%;
}


/* --------------
SP about(私たちについて)
-------------- */
#about {
	padding-top: 0;
}

#about .section-inner {
	margin-top: 0px;
}

#about .bg-shape01 {
	width: 70%;
	top: -20%;
	/* right: -10%; */
}

#about .bg-shape02 {
	width: 36%;
	bottom: 10%;
}

#about .bg-TSUTSUMU {
	right: 20px;
    top: 2%;
	width: 10%;
}

#about .title-img {
	width: 50%;
	margin-top: 100px;
}

/* 手を重ねている画像 */
.img-about_us {
	position: static;/* これで配置を初期値に戻す */
	margin-bottom:60px;
}

/* aboutのテキスト */
.about-wrap-right {
	width: 100%;
	position: static;
}

.about-container {
	height: auto;
}

/* 画像スライド */
.slider {
	margin-top: 60px;
	margin-bottom: 0px;
}
.slick-track {
	margin-top: 20px;
}


/* --------------
SP 事業内容
-------------- */
.jigyonaiyo {
	background-image: url("../images/sp-jigyonaiyo_bg.png");
	background-position: top;
}

#jigyonaiyo .jigyonaiyo_angel {
    right: 30px;
    top: 3%;
	width: 60px;
}
#jigyonaiyo .jigyonaiyo_hane {
    left: 20px;
    top: 43%;
	width: 70px;
}

.col-2 {
	margin-bottom: 100px;
  }

.col-2 .item img {
	margin-bottom: 40px;
}


.jigyonaiyo-textbox {
	padding: 24px;
	border-radius: 20px;
	background-color: #fff;
	position: relative;
}

.jigyonaiyo-no {
	font-size: 36px;
	top: -30px;
}

span.marker {
	background: linear-gradient(transparent 55%, #f7d4ca 55%);
}


/* --------------
SP メンバー紹介
-------------- */
.member {
	background-image: url("../images/sp-member_bg.png");
	background-position: top;
}

#member .member_angel {
	right: 40px;
    top: -5%;
	width: 94px;
}


/* --------------
SP 働く環境
-------------- */
.work {
	background-image: url("../images/sp-work_bg.png");
	background-position: top;
}

#work .work_angel {
    left: 40px;
    top: -2%;
	width: 72px;
}
#work .work_hane {
    right: 20px;
    top: 65%;
	width: 73px;
}

.workitem-text {
	margin-bottom: 70px;
}

.workitem-img {
	width: 70%;
	margin: 0 auto 24px;
}


/* --------------
SP 募集要項
-------------- */
.wanted {
	background-image: url("../images/sp-wanted_bg.png");
	padding: 150px 0;
}

#wanted .section-inner {
	width: 100%;
}

.wanted-title {
	font-size: 48px;
}

.wanted-wrapper {
	padding: 40px 16px 80px;
	border-radius: 15px;
	margin-top: -8px;
}

.wanted-container {
	margin-bottom: 100px;
}

.sp-wanted-list {
	display: block;
	justify-content: center;
}

.sp-wanted-list img {
	width: 100%;
	margin-bottom: 12px;
}

.sp-wanted-list img:nth-child(5) {
	margin-bottom: 0;
}



/** -----------------------------------
    FAQ
-------------------------------------**/
.faq_shape01 {
	top: -300px;
	width: 70%;
}
.faq_shape02 {
	top: 630px;
    width: 30%;
}

.faq-text {
	padding-left: 30px;
}

.faq-head, .faq-body {
	padding: 24px 30px;
}

.faq-head:before {
	margin-right: 10px;
	font-size: 16px;
}

.faq-body:before {
	margin-right: 10px;
	font-size: 16px;
}


/** -----------------------------------
    footer
-------------------------------------**/
.footer {
	margin-top: 160px;
	background-image: url("../images/sp-footer_bg.jpg");
	height: auto;
}
.footer-inner {
	padding-top: 70px;
}

.footer-text {
	margin-bottom: 36px;
}
.footer-text img {
	width: 254px;
}


.footer-link {
	font-size: 11px;
	margin: 64px auto 30px;
	padding: 0 3px;
}

.footer-link li {
	margin-right: 10px;
}


.copyright {
	font-size: 13px;
	padding-bottom: 60px;
}



}
