@charset "UTF-8";
/** -----------------------------------------------
  共通
------------------------------------------------**/
body {
	/*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background-color:#fff;
	font-family: 'Noto Sans JP', "Yu Gothic", sans-serif;
	font-weight: 500;
}

/* =====================
   フッター PC
===================== */

.footer {
  background-color: #ffebd8;
  padding: 32px 0 24px;
}

.footer_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer_logo {
  margin: 0;
}

.footer_logo img {
  width: auto;
  height: 30px;
  display: block;
}

.footer_nav {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.footer_copy {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin: 0;
}

.header_nav-link:hover {
  color: #e8a86f;
}

.footer_nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.footer_nav a:hover {
  color: #e8a86f;
}


/* スムーズスクロール */
html {
	scroll-behavior: smooth;
}
/* ヘッダー固定してる場合のズレ防止 */
section {
	scroll-margin-top: 100px; /* ヘッダーの高さに合わせて調整 */
}

.mainvisual{
	padding-top: 100px;
}

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

	/* ーーーーーーースマホーーーーーーーーー */
@media screen and (max-width: 640px){

	.section-inner {
		padding: 0 24px;
		max-width: 550px;
		width: 100%;
		margin: 0 auto;
		}
	.pc-only {	
	display: none;
	}
	.sp-only {
	display: block;
	}
	.hamburger {
		display: block;
	}


}



/* =====================
   ボタン
===================== */
.btn {
	display: inline-block;
	min-width: 220px;
	padding: 16px 40px;
	border: 1px solid #d89a74;
	border-radius: 999px;
	color: #d89a74;
	font-size: 24px;
	font-weight: 700;
	background-color: #fff;
	text-decoration: none;
	transition: all 0.3s;
}

.btn:hover {
	background-color: #e8a06f;
	color: #fff;
	transform: none; 
}
	


.header {
	background-color: #FFE8DB;
	padding: 10px 0;
	position: fixed;
	top: 0;
	left: o;
	width: 100%;
	z-index: 1000;
}

.header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 80px;
}

.header_logo a {
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	text-decoration: none;
	color: #333;
	outline: none;
}
.header_logo img {
	height: 36px;
	width: auto;

}

.header_logo-text {
	margin-left: 8px;
	letter-spacing: 1px;
}

.header_nav-list {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}



.header_nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 700;
	transition: all 0.3s;
}

.header_nav-link:hover {
	color: #d89a74;
	opacity: 0.8;
	transform: translateY(-2px);
}

.header_btn {
	text-decoration: none;
	color: #fff;
	background-color: #E8A173;
	padding: 12px 20px;
	border-radius: 999px;
	display: inline-block;
	transition: all 0.3s;
}

.header_btn:hover {
	background-color: #d88a5f; /* 少し濃い色に */
	transform: translateY(-2px); /* ふわっと浮く */
	box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* 影 */
}

.menu-button {
	display: none;
	}





.mainvisual {
	width: 100%;
	background-color: #fff;
	overflow: hidden;
}

.mainvisual_inner {
	position: relative;
	width: 100%;
	height: calc(100vh - 80px);
}

.mainvisual_img {
	width: 100%;
	height: 100%;
	position: relative;
}

.mainvisual_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mainvisual_text {
	position: absolute;
	top: 150px;
	left: 150px;
	z-index: 2;
	padding: 32px;
	max-width: 520px;
}

.mainvisual_text > * {
	position: relative;
	z-index: 1;
} 
.mainvisual_text::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -70px;
	transform: translateY(-50%);
	width: 550px;
	height: 550px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	filter: blur(6px);
	z-index: 0;
	content: "";

}

.mainvisual_text h1 {
	font-size: 60px;
	line-height: 1.2;
	margin-bottom: 24px;
	margin-left: 0;
	position: relative;
	color: #222222;
}

.mainvisual_text p {
	font-size: 16px;
	line-height: 1.8;
	margin-left: 0;
	color: #222222;
}




.about {
	padding: 80px 0;
	background-color: #f8f8f8;
}

.about-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px 140px;
	text-align: center;
	position: relative;
}

/* タイトル */
.about-title {
	font-size: 36px;
	margin-bottom: 30px;
}

/* テキスト */
.about-text {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 24px;
}


.about-sub {
	font-size: 20px;
	font-weight: 700;
	margin-top: 40px;
	margin-bottom: 16px;
	letter-spacing: 0.1em;
	
}

/* キャッチコピー */
.about-catch {
	font-size: 32px;
	margin-top: 10px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

/* 画像配置 */
.about-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin-top: 0;
	pointer-events: none;
}	

/* 👇ここに追加（これが正解） */

.img {
	position: absolute;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 0 30px 18px rgba(255, 255, 255, 0.95);
	
}

/* 左画像 */
.img-left {
	left: -6%;
	top: 5%;
	width: 300px;
	height: 300px;	
}
/* 右上 */
.img-right-top {
	right: -5%;
	top: 1%;
	width: 250px;
	height: 250px;
	
}
/* 右下 */
.img-right-bottom {
	right: 1%;
	top: 50%;
	width: 150px;
	height: 150px;
	
}



/* 事業について PC */
.concept_list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.concept_item {
  width: 320px;
  background-color: #fff;
  padding: 28px;
  border-radius: 24px;
  box-sizing: border-box;
}

.concept_img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
}

.concept_item-title {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.concept_item-text {
  font-size: 14px;
  line-height: 1.8;
}

.concept {
  background-color: #f7ede6;
  padding: 100px 0;
  text-align: center;
}

.concept_list {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px auto 0;
}

.concept_btn {
  text-align: center;
  margin-top: 32px;  /* ←ここ調整（今より少し上げる） */
}



.working {
	padding: 100px 0;
	background-color: #fff;
}

.working .inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.section_title {
	width: fit-content;
	margin: 0 auto;
	padding: 10px 32px;
	font-size: 36px;
	font-weight: 700;
	color: #333;
	line-height: 1.4;
}

.section_text {
	margin-top: 24px;
	text-align: center;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

.working_cards {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 50px;
}

.working_card {
	width: calc((100% - 48px) / 3);
	
	border: 1px solid #d89a74;
	border-radius: 24px;
	background-color: #fffdf9;
	box-shadow: 6px 8px 0 #f4eee8;
	text-align: center;
}

.point_box {
	margin-bottom: 24px;
	padding: 12px 0;
	border-radius: 18px 18px 0 0;
	background-color: #e8a06f;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.working_content{
	padding: 18px 18px 24px;

	}

.working_img {
	width: 180px;
	margin: 0 auto 24px;
}

.working_img img {
	width: 100%;
	display: block;
}

.working_card h3 {
	margin-bottom: 16px;
	font-size: 30px;
	font-weight: 700;
	color: #333;
	line-height: 1.5;
}

.working_card p {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	text-align: left;
}

.working_btn {
	text-align: center;
	margin-top: 40px;
}





.member {
	background: #fdf7f1;
	padding: 100px 40px;
}

.member_inner {
	max-width: 1220px;
	margin: 0 auto;
	text-align: center;
}

.member_title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin-bottom: 24px;
}

.member_text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 50px;
}

.member_list {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.member_card {
	width: 270px;
	background: #fff;
	padding: 14px 14px 20px;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	text-align: left;
}

.member_card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
	margin-bottom: 16px;
}

.member_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.member_year {
	display: inline-block;
	font-size: 14px;
	color: #d88b6d;
	border: 1px solid #d88b6d;
	border-radius: 20px;
	padding: 6px 14px;
	width: fit-content;
}

.member_job {
	font-size: 14px;
	line-height: 1.7;
	color: #666;
}

.member_name {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.member_btn{
	text-align: center;
	margin-top: 40px;
	}






.recruit {
	padding: 100px 20px;
	background: #ffffff;
}

.recruit_inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.recruit_title {
	display: inline-block;
	font-size: 36px;
	font-weight: 700;
	color: #333333;
	
	padding: 12px 48px;
	margin-bottom: 24px;
}

.recruit_text {
	font-size: 16px;
	color: #333333;
	margin-bottom: 50px;
}

.job_list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 760px;
	margin: 0 auto;
}

.job_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 40px;
	border-radius: 20px;
	text-decoration: none;
	color: #333;

	/* ここが変更ポイント👇 */
	background: #fff7f3;

	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.job_btn{
	text-align: center;
	margin-top: 40px;
	}

/* ホバー */
.job_item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.12);

	/* 少し濃くする */
	background: #ffece4;
}

/* テキスト */
.job_name {
	font-size: 28px;
	font-weight: 700;
}

/* 矢印 */
.job_arrow {
	width: 24px;
	height: 24px;
	transition: 0.3s;
}

/* 矢印も動く */
.job_item:hover .job_arrow {
	transform: translateX(8px);
}


	


.entry {
	position: relative;
	width: 100%;
	height: 120vh;
	margin-top: 80px;
	/* overflow: hidden; */
}

.entry::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;

	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 1),
		rgba(255, 255, 255, 0)
	);

	z-index: 1;
}

.entry_bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
}

.entry_content {
	position: absolute;
	left: 50%;
	bottom: 50px;
  transform: translateX(-50%); 
  margin: auto;
  max-width: 1000px;
	width: 100%;
	/* display: flex; */
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  backdrop-filter: blur(12px);
	justify-content: center;
	padding: 40px 30px 30px;
	box-sizing: border-box;
}

.entry_box {
	/* position: relative; 
  width: 100%; 
	max-width: 1000px;
  background: rgba(255, 255, 255, 0.5); 
  border-radius: 20px; 
	backdrop-filter: blur(12px); 
	-webkit-backdrop-filter: blur(12px);
	padding: 40px 30px 30px;
	text-align: center; 
	box-sizing: border-box;  */
}

.entry_text {
	font-size: 36px;
	font-weight: 500;
	line-height: 1.8;
	color: #222;
	margin: 0 0 30px;
}

.entry_btn_wrap{
  text-align: center;
}

.entry_btn {
  /* position: absolute; */
  /* bottom: -30px;    */
  /* left: 50%; */
  /* transform: translateX(-50%); */

  padding: 16px 48px;
  background-color: #f4a261;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

/* .entry_btn:hover { 
  transform: translateX(-50%);
}*/


/* =====================

   応募ボタン（色違い）

=====================*/

.entry_btn {
	background-color: #f4a261;
	color: #fff;
	border: none;
}

.entry_btn:hover {
	background-color: #e08a4f;
	color: #fff;
} 

/* =====================
	大きいボタン
===================== */
.big_btn {
	min-width: 320px;
	padding: 20px 60px;
	font-size: 32px;
}
/* フッター */
.footer {
  background-color: #FEE8DB;
  padding: 40px 20px;
}

/* 中央寄せ */
.footer_inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 上段 */
.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* ロゴ */
.footer_logo img {
  height: 36px;
  width: auto;
}

/* ナビ */
.footer_nav {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* コピー */
.footer_copy {
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* フッター全体 
.footer {
	background-color: #FFE8DB;
	padding: 40px 0;
}


.footer_inner {
	padding: 0 80px;
}

.footer_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}


.footer_logo img{
	width: auto; 
	height: 36px;
	display: block;
	}


.footer_nav {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer_nav a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
}


.footer_copy {
	text-align: center;
	font-size: 12px;
	color: #666;
}*/

.more_btn {
	display: inline-block;
	padding: 14px 40px;
	border: 2px solid #e8a08b;
	border-radius: 9999px;
	color: #e8a08b;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}





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

.example {
	font-size: 50px;
	color: #99293D;
}




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


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
	.example {
		font-size: 20px;
		color: #AD8651;
	}
}

/* =========================
   SP版 〜767px
========================= */
@media screen and (max-width: 767px){

  body {
    min-width: auto;
  }

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

  section {
    padding: 60px 20px;
  }

  /* ヘッダー */
  /* ヘッダー */
.header {
  background: #fde8dc;
}

.header_inner {
  height: 72px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo img {
  width: 90px;
}
.header_logo a {
  font-size: 14px;
  line-height: 1.2;
}
.header_logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
}

.header_nav,
.header_btn {
  display: none;
}

.hamburger {
  display: block;
  width: 30px;
  height: 22px;
  position: relative;
  margin-left: auto;
  margin-top: 4px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  left: 0;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.header_nav.active {
  display: block;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #fde8dc;
  padding: 30px 20px;
}

.header_nav.active ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
  

  /* メインビジュアル */
/* メインビジュアル */
.mainvisual {
  padding-top: 30px;
  overflow: hidden;
  padding: 0;
}

.mainvisual_inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto !important;
  min-height: auto !important;
  padding: 0;
}

/* 画像 */
.mainvisual_img {
  order: 1;
  width: 100%;
  position: relative;
  margin-top: 60px;
}

.mainvisual_img picture,
.mainvisual_img img {
  display: block;
  width: 100%;
  height: auto;
}

/* テキスト全体 */
.mainvisual_text {
  order: 2;
  position: static;
  width: 100%;
  padding: 24px 24px 40px;
  text-align: center;
  box-sizing: border-box;
}

/* タイトル（画像の上） */
.mainvisual_text h1 {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  text-align: center;
  font-weight: bold;

  font-size: 20px;
  line-height: 1.4;
  color: #222;
  white-space: nowrap;
}
.mainvisual_text h1 {
  display: block;
}

/* br消す（1行にする） */
.mainvisual_text h1 br {
  display: none;
}

/* 説明文（下） */
.mainvisual_text p {
  font-size: 13px;
  line-height: 2;
  color: #222;
}

/* 背景ぼかし消す */
.mainvisual_text::before {
  display: none;
}

  /* 私たちについて */
  /* =====================
   about
===================== */

  .about {
    padding: 70px 20px 80px;
    background-color: #f8f6f4;
  }

  .about-inner {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .about-title {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 32px;
  }

  .about-text {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 32px;
  }

  .about-images {
    margin: 40px 0 32px;
    text-align: center;
  }

  .about-images img {
    display: none;
  }

  .about-images .img-right-top {
    display: block;
    width: 110px;
    height: 110px;
    margin: 20px auto 0;
    border-radius: 50%;
    object-fit: cover;
  }

  .about-catch_sub {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
  }

  .about-catch {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.7;
  }


  /* 👇ここに追加 */
.about-inner {
  display: flex;
  flex-direction: column;
}

.about-title {
  order: 1;
}

.about-text {
  order: 2;
}

.about-images {
  order: 3;
  margin-top: 10px;
  margin-bottom: 20px;
  margin: 10px 32px;
}

.about-sub {
  order: 4;
}

.about-catch {
  order: 5;
}
.about-images {
  order: 2;
  position: static !important;
  width: 100%;
  margin: 32px 0 28px;
  text-align: center;
}

.about-images .img-right-top {
  display: block;
  position: static !important;
  transform: none !important;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}
  /* 👇ここに追加する */
  .about-images img {
  display: none;
}

.about-images .img-right-top {
  display: block;
  width: 190px;
  height: 190px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
} 
 


/* 3カラム系：事業・働く環境 */
.business_list,
.work_list {
  flex-direction: column;
  gap: 24px;
}

.business_item,
.work_item {
  width: 100%;
}

.business_item img {
  height: auto;
}

  

  /* =====================
     事業について（SP）
  ===================== */


.concept {
  background-color: #fff1e8;
  padding: 70px 20px;
}

.concept_inner {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.concept_title {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.concept_text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 40px;
}

.concept_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.concept_item {
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  padding: 18px;
  text-align: left;
  box-sizing: border-box;
}

.concept_img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 22px;
}

.concept_item-title {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.concept_item-text {
  font-size: 14px;
  line-height: 1.9;
}

.concept_btn {
  margin-top: 36px;
  text-align: center;
}

.concept_btn .btn {
  display: inline-block;
  padding: 10px 38px;
  border: 2px solid #ff9d73;
  border-radius: 999px;
  color: #ff9d73;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}
/* 事業について：SPで縦並びにする */
.concept_list {
  display: flex;
  flex-direction: column !important;
  gap: 32px;
}

.concept_item {
  width: 100% !important;
  box-sizing: border-box;
}



/* =====================
   働く環境 SP
===================== */

.working {
  padding: 70px 20px;
  background-color: #fff;
}

.working .inner {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.working .section_title {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.working .section_text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 36px;
}

.working_cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.working_card {
  width: 100%;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 8px 8px 0 #fde8dc;
  overflow: hidden;
  border: none;
}

.point_box {
  background-color: #ffa873;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.12em;
  padding: 14px 0;
  border-radius: 20px 20px 0 0;
}

.working_content {
  padding: 28px 24px 32px;
  text-align: center;
}

.working_icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 24px;
}

.working_content h3 {
  font-size: 18px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: none;
}

.working_content p {
  font-size: 14px;
  line-height: 1.9;
  text-align: left;
}

.working_btn {
  margin-top: 40px;
  text-align: center;
}

.working_btn .btn {
  display: inline-block;
  padding: 10px 38px;
  border: 2px solid #ff9d73;
  border-radius: 999px;
  color: #ff9d73;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
}






  /* メンバー紹介 4カラム */
  .member_list {
    flex-direction: column;
    gap: 24px;
  }

  .member_item {
    width: 100%;
  }

  .member_item img {
    width: 100%;
  }

  /* 募集職種 */
  .job_list {
    width: 100%;
  }

  .job_item {
    width: 100%;
    padding: 18px 20px;
  }

  /* 応募セクション */
  .entry {
    padding: 80px 20px;
    text-align: center;
  }

  .entry_text {
    width: 100%;
  }

  .entry_text h2 {
    font-size: 24px;
    line-height: 1.6;
  }

  .entry_text p {
    font-size: 14px;
  }

  /* ボタン */
  .more_btn,
  .entry_btn {
    width: 220px;
    margin: 30px auto 0;
  }
  /* 応募セクション SP 修正 */
/* =====================
   応募セクション SP
===================== */
/* 応募セクション SP */
.entry {
  padding: 0;
  position: relative;
  height: auto;
}

.entry_inner {
  position: relative;
}

.entry_bg {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}

.entry_content {
  position: static;
  top: 40px;
  left: 20px;
  right: 20px;
  transform: none;
  z-index: 2;

  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  text-align: center;
  transform: none;
}

.entry_text {
  width: 100%;
}

.entry_text p {
  font-size: 16px;
  line-height: 1.8;
}

.entry_btn_wrap {
  margin-top: 2px;
}

.entry_btn {
  display: block;
  width: 100%;
  padding: 14px 0;
  margin-top: 16px;

  background-color: #ffa873;
  color: #fff;
  border-radius: 999px;

  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}

.entry_box {
  /* position: absolute; 
  top: 40px;
  left: 20px;
  right: 20px;
  z-index: 2;

  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  text-align: center; */
}

.entry_box p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}


  /* フッター */
.footer_inner {
  flex-direction: column;
  gap: 20px;
  text-align: center;
  padding: 30px 20px;
}

.footer_nav {
  flex-direction: column;
  gap: 12px;
}


.footer_top {
  display: block; /* ← flexを解除 */
  text-align: center;
}

.footer_logo {
  margin-bottom: 24px;
}

.footer_nav {
  display: block;
}

.footer_nav li {
  margin-bottom: 12px;
}





.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  display: block;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #333;
  left: 0;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  bottom: 0;
}
}



/*  
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}*/

