@charset "UTF-8";

/*-----------------------------------
    リセット・ベース
-----------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 94px;
}

body {
	position: relative;
	width: 100%;
	max-width: 100%;
	padding-top: 94px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #333333;
	overflow-x: hidden;
	background-color: #FEF8EF;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	animation: fadeInUp 0.8s ease-out both;
}

@media screen and (max-width: 840px) {
	html {
		scroll-padding-top: 81px;
	}

	body {
		padding-top: 81px;
		font-size: 1.3rem;
		line-height: 1.6;
	}
}

/*-----------------------------------
    ユーティリティ
-----------------------------------*/
.contents_inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.pc {
	display: block;
}

.tab,
.sp {
	display: none;
}

.text_left {
	text-align: left;
}

.text_center {
	text-align: center;
}

.fs_en {
	font-family: "Josefin Sans", sans-serif;
}

.logo_label {
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	color: #fb2c14;
	font-size: 1.4rem;
}

@media screen and (max-width: 840px) {
	.pc {
		display: none;
	}

	.tab,
	.sp {
		display: block;
	}
}

@media screen and (max-width: 640px) {
	.contents_inner {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
}

/*-----------------------------------
    共通コンポーネント
-----------------------------------*/
.h2_style span {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 1.6rem;
	color: #4e3f2d;
}

.h2_style h2 {
	font-weight: 700;
}

.career_section_head h2,
.voice_section_head h2,
.works_section_head h2 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 3.4rem;
	line-height: 1.6;
	color: #4e3f2d;
}

@media screen and (max-width: 840px) {
	.career_section_head h2,
	.voice_section_head h2,
	.works_section_head h2 {
		font-size: 2rem;
	}
}

.anchor_nav {
	background: #fff;
}

.anchor_nav ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 20px;
	padding: 60px 0 0;
}

.anchor_nav a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 20px;
	background-color: #ffffff;
	border: 1px solid #4e3f2d;
	border-radius: 999px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 1.6rem;
	color: #4e3f2d;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.anchor_nav a:hover {
	background-color: #4e3f2d;
	color: #ffffff;
}

@media screen and (max-width: 840px) {
	.anchor_nav ul {
		gap: 8px 12px;
		padding: 40px 20px 10px;
	}

	.anchor_nav a {
		height: 36px;
		padding: 0 16px;
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 640px) {
	.anchor_nav ul {
		gap: 8px 10px;
	}

	.anchor_nav a {
		height: 34px;
		padding: 0 14px;
		font-size: 1.1rem;
	}
}

#page_title_block {
	padding: 0 0 0;
	background-color: #fef8ef;
}

#page_title_block .contents_inner {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 60px;
}

.page_title_text {
	flex: 1;
	min-width: 0;
}

.page_title_label {
	display: block;
	margin-bottom: 0;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 1.6rem;
	color: #4e3f2d;
}

.page_title_en {
	display: block;
	margin-bottom: 25px;
	font-family: "Yellowtail", cursive;
	font-weight: 400;
	font-size: 8rem;
	letter-spacing: 0.03em;
	line-height: 160%;
	color: #f73420;
}

.page_title_photos {
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
	width: 86%;
	max-width: 640px;
	aspect-ratio: 560 / 380;
}

.page_title_photos img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.breadcrumb {
	margin-top: 140px;
	padding-bottom: 10px;
}

.breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.breadcrumb li {
	display: flex;
	align-items: center;
	font-size: 1.3rem;
	color: #4e3f2d;
}

.breadcrumb li:not(:last-child)::after {
	content: "";
	width: 5px;
	height: 5px;
	margin: 0 12px;
	border-top: 1px solid #4e3f2d;
	border-right: 1px solid #4e3f2d;
	opacity: 0.5;
	transform: rotate(45deg);
}

.breadcrumb a {
	color: #4e3f2d;
	opacity: 0.75;
	text-decoration: none;
	transition: opacity 0.3s, color 0.3s;
}

.breadcrumb a:hover {
	color: #f73420;
	opacity: 1;
	text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
	font-weight: 700;
	color: #f73420;
}

@media screen and (max-width: 840px) {
	#page_title_block {
		padding: 40px 0 0;
	}

	#page_title_block .contents_inner {
		flex-direction: column;
		align-items: stretch;
		gap: 5px;
	}

	.page_title_en {
		font-size: 5.2rem;
	}

	.page_title_photos {
		width: 100%;
		max-width: none;
		aspect-ratio: 560 / 270;
	}

	.breadcrumb {
		margin-top: 20px;
		padding-top: 15px;
	}

	.breadcrumb li {
		font-size: 1.15rem;
	}

	.breadcrumb li:not(:last-child)::after {
		margin: 0 8px;
	}
}

/*-----------------------------------
    ヘッダー
-----------------------------------*/
#header_block {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 300;
	transition: background-color 0.3s ease;
}

#header_block.is-scrolled {
	background-color: #FEF8EF;
	/* 例：サイトのベース色に近い白（少し透過） */

}

#header_block .contents_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 100%;
	padding: 15px 20px 20px;
}

#header_logo a {
	display: flex;
	align-items: flex-end;
	gap: 5px;
}

#header_logo img {
	width: 127px;
}

#header_logo .logo_label {
	font-size: 1.9rem;
}

#header_right {
	display: flex;
	align-items: center;
	gap: 43px;
}

#header_nav ul {
	display: flex;
	align-items: center;
	gap: 40px;
}

#header_nav a {
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #4e3f2d;
	transition: 0.2s;
}

#header_nav a:hover {
	color: #f73420;
	transition: 0.2s;
}

#header_entry_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 46px;
	background-color: #ebd6bc;
	border: 1px solid #241a0e;
	border-radius: 23px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 1.4rem;
	color: #241a0e;
		transition: 0.3s ease;
}

#header_entry_btn:hover {
	transform:  translateY(-5px);
	opacity: 0.8;
}

@media screen and (max-width: 840px) {
	#header_block .contents_inner {
		padding: 15px 20px 20px;
	}

	#header_logo img {
		width: 94px;
	}

	#header_right {
		gap: 10px;
	}
}

@media screen and (max-width: 640px) {
	#header_logo .logo_label {
		font-size: 16px;
	}

}

/*-----------------------------------
    ハンバーガーメニュー
-----------------------------------*/
#menu_btn {
	position: relative;
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-left: 10px;
	border: none;
	border-radius: 50%;
	background-color: #4e3f2d;
	cursor: pointer;
}

#menu_btn .menu_icon {
	position: relative;
	width: 24px;
	height: 12px;
	margin-bottom: 3px;
}

#menu_btn .menu_icon span {
	position: absolute;
	left: 0;
	display: block;
	width: 24px;
	height: 2px;
	background-color: #ffffff;
	transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

#menu_btn .menu_icon span:nth-child(1) {
	top: 6px;
}

#menu_btn .menu_icon span:nth-child(2) {
	top: 12px;
}

#menu_btn .menu_label {
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 1rem;
	color: #ffffff;
	transition: opacity 0.3s ease;
}

/* ---- 開いた状態 ---- */

/* 1. 開いたときは文字を完全に非表示にしてスペースを空ける */
#menu_btn.is_active .menu_label {
	display: none;
}

/* 2. アイコンの土台をボタンのど真ん中に強制配置する */
#menu_btn.is_active .menu_icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin-bottom: 0;
	height: 0;
	/* 高さを0にして中心点を1つにする */
}

/* 3. 2本の線を中央に集めて、その場で回転させる */
#menu_btn.is_active .menu_icon span:nth-child(1) {
	top: -1px;
	/* 線の厚み（2px）の半分だけ補正 */
	transform: rotate(45deg);
	background-color: #ffffff;
	/* colorから修正 */
}

#menu_btn.is_active .menu_icon span:nth-child(2) {
	top: -1px;
	/* 線の厚み（2px）の半分だけ補正 */
	transform: rotate(-45deg);
	background-color: #ffffff;
	/* colorから修正 */
}

@media screen and (max-width: 840px) {
	#menu_btn {
		display: flex;
	}
}

@media screen and (max-width: 640px) {
	#menu_btn {
		margin-left: 0px;
	}
}

/*-----------------------------------
    ドロワーメニュー
-----------------------------------*/
#drawer_nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 200;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding: 100px 30px;
	background-color: #fef8ef;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

#drawer_nav.is_active {
	transform: translateX(0);
}

#drawer_nav ul li {
	border-bottom: 1px solid #d8d0c2;
}

#drawer_nav ul li a {
	display: block;
	padding: 16px 0;
	font-family: "Zen Old Mincho", serif;
	font-weight: 700;
	font-size: 1.4rem;
	color: #4e3f2d;
}

#drawer_overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 150;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

#drawer_overlay.is_active {
	display: block;
}

/*-----------------------------------
    cta
-----------------------------------*/
#cta_block {
	position: relative;
	max-width: 900px;
	padding: 0px 20px 0px;
	text-align: center;
	z-index: 1;
	margin: 0 auto;
}

#cta_block::before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50px;
	width: 50px;
	height: 82px;
	background-image: url(../img/common/footer_deco_grass.png);
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: 2;
}

.cta_ttl_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

.cta_ttl_wrap .left,
.cta_ttl_wrap .right {
	width: 64px;
}

.cta_deco {
	position: relative;
	display: inline-block;
	height: 101.43px;
	width: auto;
}



.cta_deco::before,
.cta_deco::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 40px;
	border-top: 1px dashed #4e3f2d;
}

.cta_deco::before {
	left: -60px;
	transform: rotate(-25deg);
}

.cta_deco::after {
	right: -60px;
	transform: rotate(25deg);
}

.cta_box {
	max-width: 900px;
	margin: -37px auto 0;
	padding: 50px 30px 45px;
	border-radius: 20px;
	background-color: #ffffff;
}

.cta_lead {
	margin-bottom: 30px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 1.9rem;
	line-height: 2;
	letter-spacing: 0.076rem;
	color: #4e3f2d;
}

.cta_btn_list {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.cta_btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 293px;
	height: 57px;
	padding: 0 29px;
	border-radius: 999px;
	background-repeat: no-repeat;
	background-size: cover;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 1.9rem;
	color: #4e3f2d;
		transition: opacity 0.3s ease;
}

.cta_btn::after {
	content: "";
	width: 19px;
	height: 19px;
	background-image: url(../img/common/icon_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
transition: transform 0.3s ease; /* opacityではなくtransformに変更 */
}

.cta_btn:hover::after {
	transform: translate(6px);
}

.cta_btn:hover {
	opacity: 0.8;
}

.cta_btn_entry {
	background-image: url(../img/common/btn_bg_pink.webp);
	border: 1px solid #4E3F2D;
}

.cta_btn_recruit {
	background-image: url(../img/common/btn_bg_blue.webp);
	border: 1px solid #4E3F2D;

}

@media screen and (max-width: 840px) {
	#cta_block {
		padding: 80px 20px 40px;
	}

	.cta_deco {
		height: 70px;
	}

	.cta_ttl_wrap .left,
	.cta_ttl_wrap .right,
	.cta_ttl_wrap .left,
	.cta_ttl_wrap .left {
		width: 50px;
	}

	.cta_lead {
		margin-bottom: 20px;
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 640px) {
	.cta_btn_list {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.cta_ttl_wrap {
		gap: 35px;
	}

	.cta_deco {
		height: 47px;
	}

	.cta_ttl_wrap .left,
	.cta_ttl_wrap .right,
	.cta_ttl_wrap .left,
	.cta_ttl_wrap .left {
		width: 30px;
	}

	.cta_btn {
		width: 100%;
		max-width: 293px;
	}

	.cta_box {
		margin: -17px auto 0;
	}
}

/*-----------------------------------
    フッター
-----------------------------------*/
#footer_block {
	position: relative;
	background-color: #f3cd9e;
	overflow: hidden;
	margin-top: -125px;
}



#footer_block .contents_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 200px 100px 30px;
}

#footer_nav {
	width: 100%;
	padding-bottom: 50px;
	margin-bottom: 30px;
	border-bottom: 1px solid #4e3f2d;
}

#footer_nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 25px 0;
}

#footer_nav ul li a {
	display: block;
	padding: 0 20px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 1.4rem;
	color: #4e3f2d;
	transition: 0.2s;
}

#footer_nav ul li a:hover {
	opacity: 0.8;
}


#footer_nav ul li a::before {
	content: "― ";
}

/*-----------------------------------
    フッター内コンポーネント
-----------------------------------*/
#footer_logo {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	margin-bottom: 0px;
	width: 100%;
}

#footer_logo img {
	width: 150px;
}

#footer_copy {
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	font-size: 1.4rem;
	color: #4e3f2d;
	text-align: center;
	padding-bottom: 20px;
}

@media screen and (max-width: 840px) {
	#footer_block .contents_inner {
		padding: 150px 5% 20px;
	}

	#cta_block::before {
		bottom: 20px;
	}

	#footer_nav {
		padding-bottom: 25px;
	}

	#footer_nav ul {

		justify-content: flex-start;
	}

	#footer_nav ul li a {
		font-size: 1.2rem;
	}

	#footer_logo img {
		width: 102px;
	}

	#footer_block::before {
		display: none;
	}
}

@media screen and (max-width: 640px) {
	.cta_box {
		border-radius: 10px;
		    padding: 50px 30px 25px;
	}
	.cta_lead {
		margin-bottom: 15px;
	} 

	#cta_block::before {
		left: 10px;
		bottom: 0;
		width: 34px;
	}

	#footer_nav ul {
		display: grid;
		grid-template-columns: repeat(2, auto);
		/* 2列、各列は内容に合わせた幅 */
		gap: 25px;
		justify-content: flex-start;
	}

	#footer_nav {
		padding-bottom: 100px;
	}

	#footer_block .contents_inner {
		padding: 120px 5% 20px;
	}
}