@charset "UTF-8";
/** -----------------------------------------------
共通
------------------------------------------------**/
body {
	/*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background-color:#fff;
	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Osaka", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 500;	
}

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

a {
	text-decoration: none;
	color: #333333;
}

ul {
	list-style-type: none;
}

a.button_more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: 50px;
	position: relative;
	background: #fff;
	border: 1px solid #e98213;
	border-radius: 30px;
	box-sizing: border-box;
	padding: 0 60px 0 45px;
	color: #e98213;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-align: left;
	text-decoration: none;
	transition-duration: 0.3s;
	margin: 0 auto;
	margin-top: 50px;
	z-index: 10;
}


a.button_more:before {
	content: "";
	width: 10px;
	height: 10px;
	border: 0;
	border-top: 1px solid #e98213;
	border-right: 1px solid #e98213;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 25px;
	margin-top: -6px;
}

a.button_more:hover {
	background-color: #e98213;
	color: #fff;
	border: solid 1px #e98213;
	transition : 0.7s;
}

a.button_more:hover:before {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transition : 0.7s;
}



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

/** -----------------------------------
    レイアウト
-------------------------------------**/

#about_us, #job, #member, #cross_talk, #environment, #recruit, #entry {
	padding: 140px 0 150px 0;
}

.section-inner {
	max-width: 1200px;
	margin: 0 auto;

	width: 100%;

}


/* pcとspで表示を切り替えたい時のCSS① */
.pc-only {
	/* pc時に表示 */
    display: block; 
}
.sp-only {
	/* pc時に非表示 */
	display: none; 
}

/** -----------------------------------
    テキスト
-------------------------------------**/

h2.medium {
	/* 文字の種類を指定 */
	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", sans-serif;
	/* 文字の太さを指定 */
	font-weight: bold;
	/* 文字のサイズを指定 */
	font-size: 32px;
	/* 文字間を指定 */
	letter-spacing: 0.4em;
	/* 左右中央に配置 */
	text-align: center;
	margin-bottom: 40px;
}

h3.small {
	font-family: "Helvetica", "Arial", sans-serif;
	/* 文字の太さを指定 */
	font-weight: bold;
	/* 文字のサイズを指定 */
	font-size: 15px;
	/* 文字間を指定 */
	letter-spacing: 0.4em;
	/* 下に外側余白20pxを設定 */
	margin-bottom: 16px;
	text-align: center;
}

.section-title {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	margin-bottom: 40px;
}

.section-title::before {
	width: 1px;
	height: 50px;
	display: block;
	content: "";
	background-color: #333
}

p.large {
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 0.4em;
}

p.medium {
	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体";
	font-weight: bold;
	font-size: 35px;
	line-height: 1.75;
	letter-spacing: 0.2em;
	
}

p.small {
	font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体";
	font-weight: normal;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.4em;
}

p.title {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	
}


/** -----------------------------------
    ヘッダー
-------------------------------------**/
#header {
	background-color: #fdf1d3;
	color: #333333;
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 500;
	align-items: center;
	padding: 0 3% 0 3%;
	position: fixed;
	top: 0;
	z-index: 9999;
	
	text-align: center;
}

#header .header_logo {
	width: 233px;
	height: 28px;
	position: relative;
	margin-bottom: 20px;

	display: inline-block;
} 

.header_logo p.header_subtitle {
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	bottom: -30px;
	left: 4%;
}

#header .gnav-pc {
	
	font-weight: bold;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	text-align: center;
	line-height: 100px;
}

#header .gnav-pc li {
	margin: 0 10px;
}

#header .gnav-pc li a:hover {
color: #e98213;
transition : 0.7s;
}

nav .ul a {
	font-family: "Helvetica";
}

nav .button-small {
	display: block;
	width: 135px;
	height: 43px;
	background-color: #e98213;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	border-radius: 20px;
	text-align: center;
	line-height: 43px;
	margin-top: 30px;
	transition : 0.7s;
}

nav .button-small:hover {
	background-color: #fff;
	color: #e98213;
	border: solid 1px #e98213;
	transition : 0.7s;
}

#menu-button {
	display: none;
}




/** -----------------------------------
    メインビジュアル
-------------------------------------**/


#mainvisual {

	background-color: #fff;
	width: 100%;
	background-image: url(../images/FV_2.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	min-height: 100vh;
	height: 58vw;
}	



#mainvisual p.maincopy {
	font-family: "Noto Sans JP";
	font-size: 35px;
	font-weight: normal;
	writing-mode: vertical-rl;
	color: #666666;
	position: absolute;
	top: 20%;
	left:10%;
	

}



/** -----------------------------------
    私たちについて
-------------------------------------**/

#about_us {
	font-size: 16px;
	color: #333333;
	background-color: #fff;
	position: relative;
	height: auto;
}


p.large {
	font-weight: normal;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

.first_message {
	font-size: 18px;
	font-weight: normal;
	letter-spacing: 0.15em;
	line-height: 1.75;	
	margin-top: 32px;
}

.item {
	position: relative;
	z-index: 1;
}

.col-2_about_us {
	display: flex;
	justify-content: space-evenly;
}


.bokashi_yellow1 {
	background-image: url(../images/about_us_yellow_bokashi_1.png);
	width: 470px;
	height: 470px;
	top: 124px;
	left: 120px;
	position: absolute;
	transition: opacity 0.8s ease;
}


.bokashi_blue1 {
	background-image: url(../images/About_us_bokashi_blue2.png);
	width: 470px;
	height: 470px;
	top:530px;
	right: 50px;
	position: absolute;
	transition: opacity 0.8s ease;
} 





/** -----------------------------------
　　　事業について
-------------------------------------**/


#job {
	font-size: 16px;
	color: #333333;
	background-color: #fdf6e3;
	height: auto;
}


#job .section_message {
	text-align: center;
	margin-bottom: 32px;
}

#job .col-3_job {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	margin-top: 50px;
}

#job .title {
		text-align: center;
		margin-top: 24px;
}

#job .small {
	line-height: 1.8em;
	letter-spacing: 0;
	margin-top: 16px;
	
}

#job .job_item {
position: relative;
text-align: center;
}

#job .job-image {
	position: relative;
	text-align: center;
}


#job p.no1 {
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: 55px;
	color: #333333;
	font-weight: bolder;
	letter-spacing: -0.05em;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #fdf6e3;
	position: absolute;
	top: -9%;
	left: 9%;
}

#job p.no2 {
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: 55px;
	color: #333333;
	font-weight: bolder;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #fdf6e3;
	position: absolute;
	top: -9%;
	left: 9%;
}

#job p.no3 {
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: 55px;
	color: #333333;
	font-weight: bolder;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #fdf6e3;
	position: absolute;
	top: -9%;
	left: 9%;
}

#job .photo {
	border-radius: 37px;
	box-shadow: 0 0 20px rgba(142, 135, 117, 0.2);
}





/** -----------------------------------
    メンバー紹介
-------------------------------------**/


#member {
	font-size: 16px;
	color: #333333;
	background-color: #ffffff;
	height: auto;
	position: relative;
}

#member .bokashi_blue2 {
	background-image: url(../images/member_bokashi_blue.png);
	position: absolute;
	width: 542px;
	height: 540px;
	bottom: -10px;
	left: 72px;
}

#member .bokashi_pink2 {
	background-image: url(../images/member_bokashi_pink.png);
	position: absolute;
	width: 529px;
	height: 526px;
	top: 100px;
	right: 75px;
}


#member .section_message {
	margin-bottom: 32px;
	text-align: center;
	
	position: relative;
	z-index: 1;
}

#member .member_1 {
	background-color: #faf9f9;
	border-radius: 40px 40px 0 0;
	box-shadow: 0 0 20px rgba(142, 135, 117, 0.2);
	z-index: 2;
	transition-duration: .4s;
	transition: transform 0.3s ease;
}

/* ホバーすると浮き出る動作
	#member .member_1:hover {
	transform: scale(1.03);
	transition: transform 0.3s ease;
} */

/* #member .people1 {
	left: 50%;
	z-index: 3;
} */

#member .title_name {
	font-size: 20px;
	font-weight: bold;
	left: 24%;
	bottom: 22%;
	z-index: 3;
}

#member .small_department {
	font-size: 16px;
	font-weight: bold;
	left: 24%;
	bottom: 8%;
	z-index: 3;
}

#member .member_text {
	padding: 20px 30px;
	text-align: center;
}


#member .col-4 {
	display: flex;
	justify-content: space-between;
	
}


#member .button_3 {
	display: block;
	width: 279px;
	height: 53px;
	background-color: #fff;
	border: 2px solid #e98213;
	color: #e98213;
	border-radius: 26.5px;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.08em;
	text-align: center;
	line-height: 53px;
	margin-top: 50px;
	transition : 1s;
}

#member .button_3:hover {
	background-color: #e98213;
	color: #fff;
	border: solid 2px #e98213;
	transition : 1s;
}


#member .button {
display: flex;
justify-content: center;
}





/** -----------------------------------
    私たちの働き方
-------------------------------------**/


#cross_talk {
	font-size: 16px;
	color: #333333;
	background-color: #fdf6e3;
	height: auto;
	position: relative;
	text-align: center;
}


#cross_talk .section_message {
	margin-bottom: 32px;
	text-align: center;
}

a img:hover {
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

/** -----------------------------------
    働く環境
-------------------------------------**/


#environment {
	font-size: 16px;
	color: #333333;
	background-color: #fff;
	height: auto;
	position: relative;
}


#environment .section_message {
	margin-bottom: 32px;
	text-align: center;
	position: relative;
	z-index: 2;
}

#environment .col-3_environment {
	display: flex;
	justify-content: space-evenly;
}

.env-card {
	background-color: #faf9f9;
	border-radius: 40px 40px 0 0;
	box-shadow: 0 0 20px rgba(142, 135, 117, 0.2);
	z-index: 2;
	position: relative;
	transition-duration: .4s;
	transition: transform 0.3s ease;
}

/* ホバーすると浮き出る動作
	.env-card:hover {
	transform: scale(1.03);
	transition: transform 0.3s ease;
} */

.icon1 {
	background-color: #faf9f9;
	border-radius: 50%;
	padding: 10px;
	display: inline-block;
	position: absolute;
	bottom: 14%;
	left: 38%;
}

.icon2 {
	background-color: #faf9f9;
	border-radius: 50%;
	padding: 10px 8px 10px 8px;
	display: inline-block;
	position: absolute;
	bottom: 16%;
	left: 38%;
}

.icon3 {
	background-color: #faf9f9;
	border-radius: 50%;
	padding: 15px 10px 15px 10px;
	display: inline-block;
	position: absolute;
	bottom: 14%;
	left: 40%;
}

#environment p.title {
	padding: 30px 30px 30px 30px;
}


#environment .bokashi_green3 {
	position: absolute;
	background-image: url(../images/environment_green_bokashi_5.png);
	width: 553px;
	height: 551px;
	top: 100px;
	left: 100px;
}

#environment .bokashi_pink3 {
	position: absolute;
	background-image: url(../images/environment_bokashi_pink2.png);
	width: 609px;
	height: 608px;
	bottom: 40px;
	right: 30px;
}


#environment .button_4 {
	display: block;
	width: 240px;
	height: 53px;
	background-color: #fff;
	border: 2px solid #e98213;
	color: #e98213;
	border-radius: 26.5px;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.08em;
	text-align: center;
	line-height: 53px;	
	margin-top: 50px;
	transition : 1s;
}

#environment .button_4:hover {
	background-color: #e98213;
	color: #fff;
	border: solid 2px #e98213;
	transition : 1s;
}

#environment .button {

	display: flex;
	justify-content: center;
}



/** -----------------------------------
    募集職種
-------------------------------------**/

#recruit {
	font-size: 16px;
	color: #333333;
	background-color: #fdf6e3;
	height: auto;
	position: relative;
}


#recruit .section_message {
	margin-bottom: 32px;
	text-align: center;
}

#recruit p.title {	
	width: 384px;

	height: 64px;
	background-color: #fff;
	border: solid 1px #969292;
	border-radius: 20px;
	text-align: center;
	letter-spacing: 0.08em;
	line-height: 64px;
	
	margin-bottom: 32px;
	box-shadow: 0 0 5px rgba(142,135,117,0.2) ;
}


#recruit p.title:hover {
	background-color: #fdb15f;
	transition : 0.7s;
}

#recruit p.title:hover:before {
	background-color: #ffffff;
	transition : 0.7s;
}



#recruit .col-2_recruit {
	
	display: flex;
	
	justify-content: center; /* 中央に寄せる */
	gap: 60px; /* カラム間の余白調整 */
	max-width: 960px;
	margin: 0 auto;
}

/* 各カラム（縦に積む） */
#recruit .col_2_recruit .item {
	display: block;
	display: flex;
	flex-direction: column;
	gap: 32px;
}




#recruit .button_5 {
	display: block;
	width: 245px;
	height: 53px;
	background-color: #fff;
	border: 2px solid #e98213;
	color: #e98213;
	border-radius: 26.5px;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.08em;
	text-align: center;
	line-height: 53px;
	margin-top: 50px;
	transition : 1s;
}

#recruit .button_5:hover {
	background-color: #e98213;
	color: #fff;
	border: solid 2px #e98213;
	transition : 1s;
}

#recruit .button {
	
	display: flex;
	justify-content: center;
}




/** -----------------------------------
    エントリー
-------------------------------------**/

#entry {
	font-size:16px;
	color: #333333;
	background-color: #fff;
	height: auto;
	position: relative;
}

/* .section-title {
	display: flex;
	flex-direction: column-reverse;
	
} */

#entry p.medium {
	text-align: center;
	font-weight: normal;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
	letter-spacing: 0.1em;
}

#entry .bokashi_green4 {
	position: absolute;
	background-image: url(../images/entry_bokashi_green2.png);
	width: 534px;
	height: 512px;
	top: 25%;
	left: 20%;
}

#entry .bokashi_yellow4 {
	position: absolute;
	background-image: url(../images/entry_bokashi_yellow2.png);
	width: 529px;
	height: 527px;
	top: 25%;
	right: 20%;
}


#entry .button-large {
	display: block;
	width: 380px;
	height: 115px;
	background-color: #e98213;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 50px;
	font-weight: bold;
	letter-spacing: 0.08em;
	border-radius: 57px;
	text-align: center;
	line-height: 115px;	
	transition : 1s;
	transition-duration: .4s;
	transition: transform 0.3s ease;
	}

#entry .button-large:hover {
	background-color: #fff;
	color: #e98213;
	border: solid 2px #e98213;
	transition : 1s;
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

/* .env-card:hover {
	transform: scale(1.03);
	transition: transform 0.3s ease;
} */

#entry .button {	
display: flex;
justify-content: center;
position: relative;
z-index: 2;
}





/** -----------------------------------
    フッター
-------------------------------------**/


#footer {
	background-color: #fdf1d3;
	padding: 50px 0;
}

.footer {
	display: flex;
	justify-content: space-evenly;
	font-weight: bold;
}

.footer2 {
	display: flex;
	justify-content: space-between;
}


/* .footer_link {
	margin-left: 40px;
} */

.footer_link li {
	display:inline;
	margin-left: 30px;
}

.footer_link li a:hover {
	color: #e98213;
	transition : 0.7s
}

.copyright {
	margin-left: 40px;
}


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


/** -----------------------------------------------
Smartphone :  画面の横幅が768pxまで
------------------------------------------------**/


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

/* レイアウト */

.pc-only {
	display: none;
}

.sp-only {
	display: block;
	margin: 0 auto;
}

#about_us, #job, #member, #cross_talk, #environment, #recruit, #entry {
	padding: 80px 0 80px 0;
}

/* テキスト */

h2.medium {
	font-size: 24px;
	margin-bottom: 20px;
}

h3.small {
	font-size: 14px;
}

a.button_more {
	font-size: 14px;
}

p.large {
	font-size: 20px;
	letter-spacing: 0.06em;
	margin-bottom: 24px;
}


.section-title {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	margin-bottom: 20px;
}

.section-title::before {
	width: 1px;
	height: 25px;
	display: block;
	content: "";
	background-color: #333
}



/* ヘッダー */

#header {
	height: 80px;
	padding:15px 0;
}

#header h1 {
	padding-left: 20px;
	margin-bottom: 20px;
	width: 150px;
	height: 19px;
	position: relative;
}

#header h1 a {
	display: flex;
}

#header .header_subtitle {
	font-size: 13px;
	position: absolute;
	bottom: -24px;
	left: 32px;
}

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

}

nav.gnav-sp-wrap {
	display: none;
	width: 100vw;
	height: 100vh;
	background-color: #fdf1d3;
	position: fixed;
	z-index: 100;
	padding: 50px 85px 85px 85px;
}


ul.gnav-sp li {
	text-align: center;
	margin-bottom: 35px;
	
}

ul.gnav-sp li a {
font-size: 20px;
letter-spacing: 0.1em;
color: #333333;
font-weight: bold;
text-align: center;
}

.gnav-sp .button-small {
	color: #ffffff;
}

ul .button-small {
	font-size: 25px;
	background-color: #e98213;
	/* padding: 15px 50px 15px 50px; */
	border-radius: 50px;
	margin: 0 auto;
}

.small_button a {
	text-align: center;
}

#menu-button {
	display: block;
	background-color: #fdb15f;
	/* width: 100%;
	height: 100%; */
	border-radius: 50%;
	width: 55px;
	height: 52px;
	padding: 0px 10px 25px 15px;
	margin-right: 20px;
}

.menu-button-inner {
	display: block;
	width: 80%;
	height: 80%;
	position: relative;
	margin-top: 15px;
}

.menu-button-inner span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: #333333;
	margin-right: 10px;
	position: absolute;
}

.menu-button-inner span:nth-child(1){
	/* ハンバーガーボタン一番目の線 */
	top: 0;
}
.menu-button-inner span:nth-child(2){
	/* ハンバーガーボタン二番目の線（上下中央に配置） */
	top: 0;
	bottom: 0;
	margin: auto;
}
.menu-button-inner span:nth-child(3){
	/* ハンバーガーボタン三番目の線 */
	bottom: 0;
}



/* メインビジュアル */
#mainvisual {
		width: 100vw;
		height: 40vw;
		background-image: url(../images/mainvisual_sp.png);
		margin-top: 80px;
	}

#mainvisual p.maincopy {
		font-size: 25px;
		top: 25px;
		left: 17px;
	}

#mainvisual p.company {
		font-size: 25px;	
	}


/* 私たちについて */

#about_us .section-inner {
	padding: 0 27.5px 0 27.5px;
}

#about_us p.large {
		font-size: 20px;
	}

#about_us p.first_message {
		font-size: 16px;
	}

#about_us .bokashi_yellow1 {
	background-image: url(../images/about_us_bokashi-yellow_sp2.png);
	width: 296px;
	height: 321x;
	top: 11%;
	left: 3%;
	/* position: absolute; */
}


#about_us .bokashi_blue1 {
	background-image: url(../images/about_us_bokashi-blue_sp2.png);
	width: 319px;
	height: 318px;
	bottom: 15%;
	right: 0%;
	/* position: absolute; */
}

#about_us .col-2_about_us {
		display: block;
	
	}

#about_us .col-2_about_us .item {
		width: 100%;
	}



/* 事業について */

#job .section-inner {
	padding: 0 27.5px 0 27.5px;
}

#job p.section_message {
	text-align: left;
}

#job .col-3_job {
		display: block;
	}
	

#job .job_item {
	margin-top: 32px;
}

#job p.small {
	text-align: left;
}


#job img.photo {
	margin-top: 24px;
	border-radius: 37px;
	box-shadow: 0 0 20px rgba(142, 135, 117, 0.2);
}

#job .job-image {
	position: relative;
}


#job p.no1 {
	margin-top: 24px;
	position: absolute;
	top: -9%;
	left: 12%;
}

#job p.no2 {
	margin-top: 24px;
	position: absolute;
	top: -9%;
	left: 12%;
}

#job p.no3 {
	margin-top: 24px;
	position: absolute;
	top: -9%;
	left: 12%;
}


/* メンバー紹介 */

#member .section-inner {
	padding: 0;
}

#member p.section_message {
	text-align: left;
	padding: 0 27.5px;
}


#member .col-4 {
	display: none;	
}

#member .member_wrap {
	padding: 0 10px;
	/* background-color: pink; */
}

#member .member_1 {
	background-color: #faf9f9;
	border-radius: 40px 40px 0 0;
	box-shadow: 0 0 20px rgba(142, 135, 117, 0.2);
	z-index: 2;
	display: inline-block;
	width: auto;
	margin-bottom: 10px;
}

#member .slider .img {
	width: 100%;
	display: block;
}

#member .member_wrap{
	text-align: center;
}

#member .member_text {
	width: 245px;
	padding: 15px 35px 20px 35px;
	text-align: center;
}

#member .slider {
    position: relative;
	margin-bottom: 20px;

	z-index: 10;  /* ←これを10にアップ */
	overflow: visible;  /* ←これも追加で矢印が見切れても表示できる */
	}

#member .slider .member_1 {
	display: inline-block;
	/* max-width: 100%; */
}


.slick-prev, .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;  /* ← ここが超大事！前に出す！ */
}

.slider .slick-prev::before,
.slider .slick-next::before {
	color: #e98213; 
	font-size: 30px;
	z-index: 5;
	position: relative;
}

/* カードの間に近づけるために、少し内側に配置 */
.slider .slick-prev {
  	left: 20px; /* スライダーの内側へ */
}

.slider .slick-next {
	right: 30px;
}


#member .bokashi_pink2 {
	background-image: url(../images/member_bokashi-pink_sp.png);
	width: 260px;
	height: 260px;
	top: 8%;
	left: 0%;
	position: absolute;
	z-index: 0;
}


#member .bokashi_blue2 {
	background-image: url(../images/member_bokashi-blue_sp.png);
	width: 267px;
	height: 266px;
	bottom: 5%;
	right: 50%;
	position: absolute;
	z-index: 0;
}

/* 私たちの働き方 */

#cross_talk .section-inner {
	padding: 0 27.5px 0 27.5px;
}


/* 働く環境 */

#environment .section-inner {
	padding: 0 27.5px 0 27.5px;
}

#environment p.section_message {
	text-align: left;
}

#environment .col-3_environment {
	display: block;
	flex-direction: column;
    text-align: center;
    gap: 40px;
}

#environment .env-card {

	background-color: #faf9f9;
	border-radius: 40px 40px 0 0;
	box-shadow: 0 0 20px rgba(142, 135, 117, 0.2);
	z-index: 5;
	margin-bottom: 32px;

	width: 90%;
	margin: 0 auto 30px;
	position: relative;
	

	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
}


.env-photo img {
    width: 245px;
    height: auto;
}

/* タイトル位置も見直し */
#environment p.title {
	padding: 20px 0;
}

.env-icon {
	width: 64px;       /* 親divのサイズ */
	height: 64px;
	background-color: #fff;
	border-radius: 50%;
	padding: 10px;
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

#environment .icon1 .icon2 .icon3 img {
	position: static;
	display: inline-block;
	margin-top: -25px; /* アイコンの重なり調整 */
}



#environment .bokashi_green3 {
	background-image: url(../images/environment_bokashi-green_sp.png);
	width: 306px;
	height: 305px;
	top: 7%;
	left: 0%;
}

#environment .bokashi_pink3 {
	background-image: url(../images/environment_bokashi-pink_sp.png);
	width: 313px;
	height: 302px;
	bottom: 5%;
	right: 0%;
}




/* 募集職種 */

#recruit .section-inner {
	padding: 0 27.5px 0 27.5px;
}

#recruit p.section_message {
	text-align: left;
}

#recruit .col-2_recruit{
	display: block;
	margin: 0 auto;
}

#recruit p.title {
	max-width: 280px;
	width: 100%;
	height: 55px;
	letter-spacing: 0.08em;
	line-height: 55px;
	margin: 0 auto;
	margin-bottom: 20px;
}


/* エントリー */

#entry .section-inner {
	padding: 0 27.5px 0 27.5px;
}

p.medium {
	font-size: 20px;
}

#entry .button-large {
	width: 85%;
}

#entry .bokashi_green4 {
	background-image: url(../images/entry_nokashi-green_sp.png);
	/* background-position: 20% 20%; */
	width: 233px;
	height: 233px;
	top: 20%;
	left: 0%;
}

#entry .bokashi_yellow4 {
	background-image: url(../images/entry_bokshi-yellow_sp.png);
	width: 259px;
	height: 260px;
	top: 30%;
	right: 0%;
}


/* フッター */
.footer {
	display: block;
	text-align: center;
}

.footer2 {
	display: block;
}

.footer_link li {
	display: block;
	margin: 0 auto;
	margin-top: 10px;
}
p.copyright {
	margin: 0 auto;
	margin-top: 15px;
}

}



/** -----------------------------------------------
Smartphone :  画面の横幅が768pxから1080pxまで
------------------------------------------------**/

@media screen and (min-width: 769px) and (max-width:1080px) {

	.section-inner {
		padding: 0 5%;
	}


/* ヘッダー */
	#header {
		height: 80px;
		padding:15px 0;
	}

	#header h1 {
		padding-left: 20px;
		margin-bottom: 20px;
		width: 150px;
		height: 19px;
		position: relative;
	}

	#header h1 a {
		display: flex;
	}

	#header .header_subtitle {
		font-size: 13px;
		position: absolute;
		bottom: -22px;
		left: 28px;
	}

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

	nav.gnav-sp-wrap {
	display: none;
	width: 100vw;
	height: 100vh;
	background-color: #fdf1d3;
	position: fixed;
	z-index: 100;
	padding: 50px 85px 85px 85px;
	}


	ul.gnav-sp li {
		text-align: center;
		margin-bottom: 35px;
		
	}

	ul.gnav-sp li a {
    font-size: 20px;
    letter-spacing: 0.1em;
    color: #333333;
    font-weight: bold;
	text-align: center;
	}

	.gnav-sp .button-small {
		color: #ffffff;
	}
	
	ul .button-small {
		font-size: 25px;
		background-color: #e98213;
		/* padding: 15px 50px 15px 50px; */
		border-radius: 50px;
		margin: 0 auto;
	}

	.small_button a {
		text-align: center;
	}

	#menu-button {
		display: block;
		background-color: #fdb15f;
		/* width: 100%;
		height: 100%; */
		border-radius: 50%;
		width: 55px;
		height: 52px;
		padding: 0px 10px 25px 15px;
		margin-right: 20px;
	}

	.menu-button-inner {
		display: block;
		width: 80%;
		height: 80%;
		position: relative;
		margin-top: 15px;
	}
	
	.menu-button-inner span {
		display: block;
		height: 2px;
		width: 100%;
		background-color: #333333;
		margin-right: 10px;
		position: absolute;
	}

	.menu-button-inner span:nth-child(1){
		/* ハンバーガーボタン一番目の線 */
		top: 0;
	}
	.menu-button-inner span:nth-child(2){
		/* ハンバーガーボタン二番目の線（上下中央に配置） */
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.menu-button-inner span:nth-child(3){
		/* ハンバーガーボタン三番目の線 */
		bottom: 0;
	}



/* ファーストビュー	 */
#mainvisual {
	margin-top: 80px;
	width: 100vw;
	height: 100vw;
}


/* 私たちについて */
#about_us .col-2_about_us {
		display: block;
	}

#about_us .col-2_about_us .item {
		width: 100%;
		text-align: center;
	}


p.first_message {
	text-align: center;
}


/* メンバー紹介 */

#member .col-4 {
	display: none;	
}

#member .member_wrap {
	padding: 0 10px;
	/* background-color: pink; */
}

#member .member_1 {
	background-color: #faf9f9;
	border-radius: 40px 40px 0 0;
	box-shadow: 0 0 20px rgba(142, 135, 117, 0.2);
	z-index: 2;
	display: inline-block;
	width: auto;
	margin-bottom: 10px;
}

#member .slider .img {
	width: 100%;
	display: block;
}

#member .member_wrap{
	text-align: center;
}

#member .member_text {
	width: 245px;
	padding: 15px 35px 20px 35px;
	text-align: center;
}

#member .slider {
    position: relative;
	margin-bottom: 20px;

	z-index: 10;  /* ←これを10にアップ */
	overflow: visible;  /* ←これも追加で矢印が見切れても表示できる */
	}

#member .slider .member_1 {
	display: inline-block;
	/* max-width: 100%; */
}


.slick-prev, .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;  /* ← ここが超大事！前に出す！ */
}

.slider .slick-prev::before,
.slider .slick-next::before {
	color: #e98213; 
	font-size: 30px;
	z-index: 5;
	position: relative;
}

/* カードの間に近づけるために、少し内側に配置 */
.slider .slick-prev {
  	left: 20px; /* スライダーの内側へ */
}

.slider .slick-next {
	right: 30px;
}




/* 働く環境 */
#environment .env-photo {
	display: block;
}

#environment .col-3_environment {
	display: block;
	flex-direction: column;
    text-align: center;
    gap: 40px;
}

#environment .env-card {

	background-color: #faf9f9;
	border-radius: 40px 40px 0 0;
	box-shadow: 0 0 20px rgba(142, 135, 117, 0.2);
	z-index: 5;
	margin-bottom: 32px;

	width: 90%;
	margin: 0 auto 30px;
	position: relative;
	

	display: flex;
	flex-direction: column;
	align-items: center;
	width: fit-content;
}

.env-photo img {
    width: 245px;
    height: auto;
}

/* タイトル位置も見直し */
#environment p.title {
	padding: 20px 0;
}

.env-icon {
	width: 64px;       /* 親divのサイズ */
	height: 64px;
	background-color: #fff;
	border-radius: 50%;
	padding: 10px;
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	z-index: 2;
}

#environment .icon1 .icon2 .icon3 img {
	/* width: 100%;        親にフィットさせる
	height: auto;
	display: block; */

	position: static;
	display: inline-block;
	margin-top: -25px; /* アイコンの重なり調整 */
}

.icon1 {
	bottom: 15%;
	left: 38%;
}

/* 募集職種 */

.sp-only {
	display: none;
}

#recruit .col-2_recruit{
	display: block;
	margin: 0 auto;
}

#recruit p.title {
	max-width: 280px;
	width: 100%;
	height: 55px;
	letter-spacing: 0.08em;
	line-height: 55px;
	margin: 0 auto;
	margin-bottom: 20px;
}

#entry .bokashi_green4 {
	top: 20%;
	left: 0%;
}

#entry .bokashi_yellow4 {
	top: 20%;
	right: 0%;
}

/* フッター */
.footer {
	display: block;
	text-align: center;
}

.footer2 {
	display: block;
}

.footer_link li {
	display: block;
	margin: 0 auto;
	margin-top: 10px;
}
p.copyright {
	margin: 0 auto;
	margin-top: 15px;
}



}
