/* reset.css */
@charset "utf-8";*,::before,::after{box-sizing:border-box}::before,::after{text-decoration:inherit;vertical-align:inherit}html{cursor:auto;line-height:1.5;-moz-tab-size:2;tab-size:2;-webkit-tap-highlight-color:transparent;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;word-break:break-word;font-size:62.5%;margin:0;padding:0}body{margin:0;padding:0;-webkit-text-size-adjust:100%}h1,h2,h3,h4,h5,h6{margin:0;font-size:1.6rem;font-weight:400;}dl dl,dl ol,dl ul,ol dl,ul dl{margin:0;padding:0}ol ol,ol ul,ul ol,ul ul{margin:0;padding:0}hr{height:0;overflow:visible}main{display:block}ol,ul{list-style:none;padding:0;margin:0}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;text-decoration:none;color:#000;}h1,h2,h3,h4,h5,h6{margin:0;padding:0}p{padding:0;margin:0}abbr[title]{text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}audio,canvas,iframe,img,svg,video{vertical-align:middle}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}iframe{border-style:none}img{border-style:none;max-width:100%;height:auto;}svg:not([fill]){fill:currentColor}svg:not(:root){overflow:hidden}table{border-collapse:collapse}button,input,select{margin:0}button{overflow:visible;text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}fieldset{border:1px solid #a0a0a0;padding:.35em .75em .625em}input{overflow:visible}legend{color:inherit;display:table;max-width:100%;white-space:normal}progress{display:inline-block;vertical-align:baseline}select{text-transform:none}textarea{margin:0;overflow:auto;resize:vertical}[type="checkbox"],[type="radio"]{padding:0}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}details{display:block}dialog{background-color:#fff;border:solid;color:#000;display:block;height:-moz-fit-content;height:-webkit-fit-content;height:fit-content;left:0;margin:auto;padding:1em;position:absolute;right:0;width:-moz-fit-content;width:-webkit-fit-content;width:fit-content}dialog:not([open]){display:none}summary{display:list-item}canvas{display:inline-block}template{display:none}a,area,button,input,label,select,summary,textarea,[tabindex]{-ms-touch-action:manipulation;touch-action:manipulation}[hidden]{display:none}[aria-busy="true"]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled="true"],[disabled]{cursor:not-allowed}[aria-hidden="false"][hidden]{display:initial}[aria-hidden="false"][hidden]:not(:focus){clip:rect(0,0,0,0);position:absolute}address{font-style:normal}figure{line-height:1;margin:0;img{width:100%;}}

:root {
	--main-color: #C9A376;
	--sub-color: #F5F2F0;

	--fontG: 'Noto Sans JP','sans-serif';
	--fontM: 'Noto Serif JP','serif';

	--fs-16: 1.6rem;
	--main-txt: 2rem;
	--fs-24: 2.4rem;
	--fs-32: 3.2rem;
	--fs-48: 4.8rem;

	--space-01: 3rem;
}
.sp_br{
	display: none;
}
@media screen and (max-width: 767px) {
  :root {
    --fs-16: 1.4rem;
    --main-txt: 1.4rem;
		--fs-24: 1.8rem;
		--fs-32: 2.4rem;
		--fs-48: 2.8rem;

    --wid-1024: 90%;

		--space-01: 2rem;
  }
	.sp_br{
		display: block;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  :root {
		--fs-16: 1.5rem;
    --main-txt: 1.6rem;
		--fs-24: 2rem;
		--fs-32: 2.8rem;
		--fs-48: 3.6rem;

		--space-01: 4rem;
  }
}

/* ページ内リンクの移動を滑らかに */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}


.pc_block {display: block;}
.sp_block {display: none;}
.bold{font-weight: 600;}

body {
	font-size: var(--fs-16);
	line-height: 1.6;
	font-family: var(--fontG);
	letter-spacing: 0;
	font-weight: 400;
	background: var(--sub-color);
}
@media screen and (max-width: 1279px) {
	/* 推奨動作環境1280pxに固定 */
	body {
		width: 1280px;
	}
}

@media screen and (max-width: 767px) {
/* スマホ閲覧時、横幅可変 */
	body {
		width: 100%;
	}
}


.indent{text-indent: -1em;padding-left: 1em;}
.span_indent{display: block;text-indent: -1em;padding-left: 1em;}

a:hover{
	opacity: .7;
}

@media screen and (max-width: 1279px) {
	body {
		width: 1280px;
	}
}
@media screen and (max-width: 767px) {
	html {
		scroll-behavior: smooth;
		scroll-padding-top: 60px;
	}
	body {
		width: 100%;
	}
	.pc_block {
		display: none;
	}
	.sp_block {
		display: block;
	}
	main{
		margin-top: 60px;
	}
}
/*アンカーリンク*/
:target::before {
  content: "";
  display: block;
  margin-top: -80px;
  height: 80px;
}

/* ========================================
   Header
======================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: #fff;
	z-index: 1000;
	transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header_inner {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	padding-inline: 3.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header_logo img {
	height: auto;
	width: 200px;
}

.header_nav-list {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header_nav-list li.header_nav-tt a,
.header_nav-list li.header_nav-tt button {
	font-weight: 800;
	color: #333;
	letter-spacing: 0.05em;
	position: relative;
  display: inline-block;
  overflow: hidden;
  background: linear-gradient(to right, #855f2b, #855f2b 50%, #333 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
	line-height: 1;
	font-family: inherit;
	font-size: inherit;
	border: none;
	padding: 0;
	cursor: pointer;

	&:hover{
		opacity: 1;
		background-position: 0 100%;
	}

}
.header_nav-list li.header_nav-tt a {
	text-decoration: underline;
	text-decoration-color: #333;
	text-underline-offset: 4px;
}
.header_nav-list li a,
.header_nav-list li button {

	&.hd_cont{
		background: #b8915c;
		border-radius: 100vmax;
		width: 200px;
		height: 40px;
		display: flex;
		gap: 10px;
		align-items: center;
		justify-content: center;
		color: #fff;
		border: none;
		font-family: inherit;
		font-size: inherit;
		cursor: pointer;

		&::after{
			display: none;
		}
		&:hover{
			background: var(--main-color);
			color: #fff;
			transition: all 0.3s ease;
		}

		.material-symbols-outlined{
			font-weight: 100;
		}
	}
}

main {
	margin-top: 80px;
}
@media screen and (max-width: 767px) {
	.header_nav{
		display: none;
	}
}


/* ========================================
   MV
======================================== */
.mv {
	position: relative;
	width: 100%;
	height: calc(100vh - 80px);
	overflow: hidden;
}

.mv_video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

/* MV オーバーレイ＆テキスト */
.mv_content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(0, 0, 0, .5);
	pointer-events: none;
	opacity: 0;
	transition: opacity 1.5s ease;
}

.mv_content.is-visible {
	opacity: 1;
}
.mv_bg {
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	height: 300px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	pointer-events: none;
}

.mv_title {
	font-size: 4.2rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.08em;
	line-height: 1.6;
	margin-bottom: 60px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 11;
}

.mv_desc {
	color: #fff;
	font-size: 1.6rem;
	line-height: 2.2;
	letter-spacing: 0.05em;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.mv_desc p + p {
	margin-top: 0;
}

/* Scroll インジケーター */
.mv_scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.mv_scroll span {
	font-family: 'Ramaraja', serif;
	font-size: 1.4rem;
	color: #fff;
	letter-spacing: 0.1em;
}

.mv_scroll::before {
	content: "";
	display: block;
	width: 1px;
	height: 40px;
	background-color: #fff;
	animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
	0% {
		transform: scaleY(0);
		transform-origin: top;
	}
	50% {
		transform: scaleY(1);
		transform-origin: top;
	}
	50.1% {
		transform: scaleY(1);
		transform-origin: bottom;
	}
	100% {
		transform: scaleY(0);
		transform-origin: bottom;
	}
}

	/* ------------------
	ハンバーガーメニュー
	------------------ */
.sp_nav--btn,
.drawer-nav{
	display: none;	
}

/* ========================================
   共通ボタン
======================================== */
.btn_wrap {
	text-align: center;
}

.btn_common {
	display: inline-block;
	min-width: 340px;
	padding: 2rem 6rem;
	border: 1px solid #333;
	font-weight: 500;
	color: #333;
	background: #fff;
	text-align: center;
	letter-spacing: 0.08em;
	overflow: hidden;
	transition: color 0.3s ease;
	position: relative;
	z-index: 1;
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;

	&::before{
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #333;
		transform: translateX(-100%);
		transition: all 0.3s ease, color 0.3s ease;
		z-index: -1;
	}

	&:hover{
		color: #fff;
		opacity: 1;
		transition: color 0.3s ease;
		&::before {
			transform: translateX(0);
			transition: all 0.3s ease, color 0.3s ease;
		}
	}
}


/* ========================================
   Reason
======================================== */
.reason {
	position: relative;
	padding: 100px 0 0;
	overflow: hidden;
}

.reason_inner {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.reason_bg-text {
	position: absolute;
	top: 80px;
	left: 0px;
	font-family: 'Ramaraja', serif;
	font-size: 14rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.10);
	line-height: .3;
	writing-mode: vertical-lr;
	letter-spacing: 0.05em;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

.reason_title {
	font-size: var(--fs-32);
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
	letter-spacing: 0.08em;
}

.reason_cards {
	display: flex;
	align-items: center;
	gap: 20px;
}

.reason_card {
	position: relative;
	padding-top: 40px;
	width: calc(100% / 4);
	height: 310px;
}

.reason_card-num {
	position: absolute;
	top: 5px;
	left: 10px;
	font-family: 'Ramaraja', serif;
	font-size: 8rem;
	font-weight: 400;
	color: #fff;
	-webkit-text-stroke-width: 1.2px;
	-webkit-text-stroke-color: #C9A376;
	line-height: 1;
	z-index: 1;
}

.reason_card-body {
	background: var(--main-color);
	border-radius: 8px;
	padding: 40px 20px 30px;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.reason_card-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 16px;
	text-align: center;
}

.reason_card-title-sub {
	font-size: 1.4rem;
	line-height: 1.6;
	display: inline-block;
}

.nobr {
	white-space: nowrap;
}

.reason_message {
	margin-top: 80px;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2;
}


.reason_message-body p + p {
	margin-top: 4px;
}

.reason .btn_wrap {
	margin-top: 60px;
	padding-bottom: 60px;
}

/* 家並みシルエット */
.reason_houses {
	position: relative;
	width: 100%;
	z-index: 1;
	line-height: 0;
}

.reason_houses img {
	width: 100%;
	display: block;
}

/* ========================================
   Staff
======================================== */
.staff {
	position: relative;
	padding: 100px 0 80px;
	overflow: hidden;
}

.staff_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.staff_bg[data-bg] {
	background-image: none;
	background-color: var(--sub-color);
}

.staff_bg-text {
	position: absolute;
	top: 80px;
	left: 0px;
	font-family: 'Ramaraja', serif;
	font-size: 14rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.10);
	line-height: .3;
	writing-mode: vertical-lr;
	letter-spacing: 0.05em;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

.staff_inner {
	position: relative;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	z-index: 2;
}

.staff_title {
	font-size: var(--fs-32);
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
	letter-spacing: 0.08em;
}

/* タブ */
.staff_tab-wrapper {
	width: 100%;
}

.staff_tabs {
	display: flex;
}

.staff_tab {
	flex: 1;
	padding: 14px 20px;
	font-size: var(--fs-16);
	font-weight: 500;
	border: none;
	cursor: pointer;
	letter-spacing: 0.05em;
	transition: background-color 0.3s ease, color 0.3s ease;
	background: #fff;
	color: #333;
	border-radius: 10px 10px 0 0;
}

.staff_tab.is-active {
	background: var(--main-color);
	color: #fff;
	cursor: auto;
	opacity: 1;
	pointer-events: none;
}

.staff_tab:hover {
	opacity: 0.85;
}

/* パネル */
.staff_panel {
	background: var(--main-color);
	padding: 50px 40px;
	border-radius: 0 0 20px 20px;
	transition: border-radius 0.3s ease;
}

.staff_panel[data-active-tab="planner"] {
	border-radius: 0 10px 20px 20px;
}

.staff_panel[data-active-tab="craft"] {
	border-radius: 10px 0 20px 20px;
}

/* コンテンツ */
.staff_content {
	display: none;
}

.staff_content.is-active {
	display: block;
}

/* スタッフメンバー */
.staff_members {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.staff_member {
	text-align: center;
}

.staff_member-photo {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: #A8D5BA;
	overflow: hidden;
	margin: 0 auto 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.staff_member-photo img {
	border-radius: 50%;
}

.staff_member-name {
	font-size: var(--fs-16);
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.05em;
}

.staff .btn_wrap {
	margin-top: 60px;
}

/* ========================================
   Service（リフォーム事業部ができること）
======================================== */
.service {
	position: relative;
	padding: 100px 0 80px;
	overflow: hidden;
}

.service_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.service_bg[data-bg] {
	background-image: none;
	background-color: var(--sub-color);
}

.service_bg-text {
	position: absolute;
	top: 80px;
	left: 0px;
	font-family: 'Ramaraja', serif;
	font-size: 14rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.10);
	line-height: .3;
	writing-mode: vertical-lr;
	letter-spacing: 0.05em;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

.service_inner {
	position: relative;
	max-width: 1024px;
	width: 100%;
	margin: 0 auto;
	z-index: 2;
}

.service_title {
	font-size: var(--fs-32);
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	letter-spacing: 0.08em;
}

.service_card {
	display: flex;
	background: rgba(255, 255, 255, 0.85);
	padding: 60px 40px;
}

.service_card-item {
	flex: 1;
	text-align: center;
	padding: 0 30px;
}

.service_card-item + .service_card-item {
	border-left: 1px solid #333;
}

.service_card-heading {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 24px;
	letter-spacing: 0.08em;
}

.service_card-body {
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.service_card-body ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	text-align: left;

	li {
		text-indent: -1em;
		padding-left: 1em;
	}
}

.service_card-body p + p {
	margin-top: 16px;
}

.service .btn_wrap {
	margin-top: 60px;
}

/* ========================================
   Flow
======================================== */
.flow {
	position: relative;
	padding: 100px 0 80px;
	overflow: hidden;
}

.flow_bg-text {
	position: absolute;
	top: 80px;
	left: 0px;
	font-family: 'Ramaraja', serif;
	font-size: 14rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.10);
	line-height: .3;
	writing-mode: vertical-lr;
	letter-spacing: 0.05em;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

.flow_inner {
	position: relative;
	max-width: 1024px;
	width: 100%;
	margin: 0 auto;
	z-index: 2;
}

.flow_title {
	font-size: var(--fs-32);
	font-weight: 700;
	text-align: center;
	margin-bottom: 50px;
	letter-spacing: 0.08em;
}

.flow_steps {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.flow_step {
	position: relative;
	display: flex;
	width: 100%;
	align-items: stretch;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 30px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	margin-bottom: 10rem;
}

.flow_step::after {
	content: "";
	position: absolute;
	bottom: -11rem;
	left: 50%;
	transform: translateX(-50%);
	border: 4rem solid transparent;
	border-top: 4rem solid #D9D9D9; 
	z-index: 1;
}

.flow_step:last-child::after {
	display: none;
}


.flow_step--reverse {
	flex-direction: row-reverse;
}

.flow_step-body {
	max-width: 512px;
	width: 100%;
	padding: 40px 33px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.flow_step-heading {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 16px;
	letter-spacing: 0.04em;
	color: #333;
}

.flow_step-desc {
	color: #555;
}

.flow_step-img {
	max-width: 512px;
	width: 100%;
}

.flow_step-img img {
	border-radius: 30px;
}

.flow .btn_wrap {
	margin-top: -30px;
}

/* ========================================
   Contact
======================================== */
.contact {
	position: relative;
	padding: 100px 0 80px;
	overflow: hidden;
}

.contact_bg-text {
	position: absolute;
	top: 80px;
	left: 0px;
	font-family: 'Ramaraja', serif;
	font-size: 14rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.10);
	line-height: .3;
	writing-mode: vertical-lr;
	letter-spacing: 0.05em;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}
.contact_title {
	font-size: var(--fs-32);
	font-weight: 700;
	text-align: center;
	margin-bottom: 20px;
	letter-spacing: 0.08em;
}
.contact_inner{
	max-width: 1024px;
	width: 90%;
	margin: auto;

	h3 {
		font-size: 2.4rem;
		font-weight: 700;
		margin-bottom: 16px;
		letter-spacing: 0.05em;
	}
}
.contact_desc{
	text-align: center;
	padding-bottom: 3rem;
}


.formrun{
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.form_box--input{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid #333;
	padding-block: 2rem;

	label.form_title {
		display: inline-block;
		max-width: 300px;
		width: 100%;
		font-weight: 500;
	}
	input,
	textarea {
		width: 500px;
		font-size: 1.6rem;
		padding: 0.5rem;
	}
	/* カスタムチェックボックス */
	input[type="checkbox"] {
		appearance: none;
		-webkit-appearance: none;
		width: 22px;
		height: 22px;
		min-width: 22px;
		border: 2px solid #ccc;
		border-radius: 4px;
		background: #fff;
		cursor: pointer;
		position: relative;
		transition: all 0.2s ease;
		vertical-align: middle;
		padding: 0;
	}
	input[type="checkbox"]:hover {
		border-color: var(--main-color);
	}
	input[type="checkbox"]:checked {
		background: var(--main-color);
		border-color: var(--main-color);
	}
	input[type="checkbox"]:checked::after {
		content: "";
		position: absolute;
		top: 2px;
		left: 6px;
		width: 5px;
		height: 11px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: rotate(45deg);
	}
	input[type="checkbox"]:focus-visible {
		outline: 2px solid var(--main-color);
		outline-offset: 2px;
	}
	label:has(input[type="checkbox"]) {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		margin-right: 20px;
		margin-bottom: 8px;
		cursor: pointer;
	}

	/* カスタムラジオボタン */
	input[type="radio"] {
		appearance: none;
		-webkit-appearance: none;
		width: 22px;
		height: 22px;
		min-width: 22px;
		border: 2px solid #ccc;
		border-radius: 50%;
		background: #fff;
		cursor: pointer;
		position: relative;
		transition: all 0.2s ease;
		vertical-align: middle;
		padding: 0;
	}
	input[type="radio"]:hover {
		border-color: var(--main-color);
	}
	input[type="radio"]:checked {
		border-color: var(--main-color);
	}
	input[type="radio"]:checked::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 12px;
		height: 12px;
		border-radius: 50%;
		background: var(--main-color);
	}
	input[type="radio"]:focus-visible {
		outline: 2px solid var(--main-color);
		outline-offset: 2px;
	}
	label:has(input[type="radio"]) {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		margin-right: 20px;
		margin-bottom: 8px;
		cursor: pointer;
	}
	textarea {
		resize: vertical;
		min-height: 150px;
	}

}

.form_error {
	width: 100%;
	margin-left: 300px;
	margin-top: 0.8rem;
	color: #c00;
	font-size: 1.3rem;
	line-height: 1.4;
}
.form_pp{
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-block: 3rem;

	/* カスタムチェックボックス */
	input[type="checkbox"] {
		appearance: none;
		-webkit-appearance: none;
		width: 22px;
		height: 22px;
		min-width: 22px;
		border: 2px solid #ccc;
		border-radius: 4px;
		background: #fff;
		cursor: pointer;
		position: relative;
		transition: all 0.2s ease;
		vertical-align: middle;
		padding: 0;
		margin-right: 8px;
	}
	input[type="checkbox"]:hover {
		border-color: var(--main-color);
	}
	input[type="checkbox"]:checked {
		background: var(--main-color);
		border-color: var(--main-color);
	}
	input[type="checkbox"]:checked::after {
		content: "";
		position: absolute;
		top: 2px;
		left: 6px;
		width: 5px;
		height: 11px;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: rotate(45deg);
	}
	input[type="checkbox"]:focus-visible {
		outline: 2px solid var(--main-color);
		outline-offset: 2px;
	}
	.form_title {
		cursor: pointer;
		vertical-align: middle;
	}

	button {
		display: inline-block;
		max-width: 340px;
		width: 100%;
		padding: 2rem 6rem;
		margin-top: 1rem;
		border: 1px solid #333;
		font-weight: 500;
		color: #333;
		font-size: 1.6rem;
		background: #fff;
		text-align: center;
		letter-spacing: 0.08em;
		overflow: hidden;
		transition: color 0.3s ease;
		position: relative;
		z-index: 1;

		&::before{
			content: "";
			position: absolute;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			background-color: #333;
			transform: translateX(-100%);
			transition: all 0.3s ease, color 0.3s ease;
			z-index: -1;
		}

		&:hover{
			color: #fff;
			opacity: 1;
			transition: color 0.3s ease;
			cursor: pointer;
			&::before {
				transform: translateX(0);
				transition: all 0.3s ease, color 0.3s ease;
			}
		}
	}
}

.form_link{
	text-decoration: underline;
	text-underline-offset: 0.2em;
	&:hover{
		text-decoration: none;
	}
}

#drop-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 500px;
  max-width: 100%;
  height: 150px;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
	background: #fff;
	text-align: center;
  cursor: pointer;
}

#file-input {
  display: none;
}

#preview {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
  padding: 0;
}

#preview li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  width: 100%;
  height: 100px;
}

#preview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.custom-drop-zone {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 2px dashed #aaa;
	border-radius: 8px;
	padding: 1em;
	text-align: center;
	cursor: pointer;
	background: #f6f6f6;
	margin-top: 18px;
	transition: background 0.2s, border-color 0.2s;
}
.custom-drop-zone.dragover {
	background: #e9f5ff;
	border-color: #b8915c;
}
#custom-drop-zone-label {
	font-size: 1em;
	color: #333;
}
.custom-file-list {
	margin-top: 10px;
	text-align: left;
	font-size: 0.97em;
	max-width: 100%;
	max-height: 110px;
	overflow-y: auto;
}
.custom-file-list-item {
	padding: 2px 0;
	border-bottom: 1px dotted #eee;
}

/* ========================================
   Thank
======================================== */
.mv_under{
	background: url(../img/mv_under.webp) no-repeat top/cover;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.thanks{
	padding: 6rem 5%;
	text-align: center;
}
.thanks_text{
	margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
	.mv_bg{
		top: 60px;
	}
}


/* ========================================
   Page Top ボタン
======================================== */
.page-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	border: 1px solid #999;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.8);
	transition: opacity 0.3s ease, visibility 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.page-top.is-visible {
	opacity: 1;
	visibility: visible;
}

.page-top:hover {
	opacity: 0.7;
}

.page-top span {
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #666;
	border-right: 2px solid #666;
	transform: rotate(-45deg) translateY(3px);
}

.copyright{
	background: #eee;
	text-align: center;
	padding: 2rem 5%;
	letter-spacing: 1px;
	font-weight: 500;
}


/* ========================================
   ぼかし
======================================== */
.mv_title,
.mv_desc {
  opacity: 0;
  transition: transform 0.5s linear;
  animation-duration: 2s;
  animation-fill-mode: both;
}
.mv_title,
.mv_desc {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}

@keyframes imageBlur {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
		opacity: 1;
    transform: scale(1);
  }
}


/* ========================================
   スクロール時フェードインアニメーション
======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.fade-in.is-visible {
  opacity: 1 ;
  transform: translateY(0);
  will-change: auto;
}

/* 遅延を追加するクラス */
.fade-in{
	&.fade-in-delay-1 {
		transition-delay: 0.1s;
	}
		
	&.fade-in-delay-2 {
		transition-delay: 0.2s;
	}
	
	&.fade-in-delay-3 {
		transition-delay: 0.3s;
	}
	
	&.fade-in-delay-4 {
		transition-delay: 0.4s;
	}
}


/* ========================================
   SP対応
======================================== */
@media screen and (max-width: 767px) {
	.header {
		height: 60px;
	}

	.header_inner {
		padding: 0 15px;
	}

	.header_logo img {
		height: 30px;
	}

	main {
		margin-top: 60px;
	}

	.mv {
		height: calc(100vh - 60px);
	}

	.mv_title {
		font-size: 2.4rem;
		margin-bottom: 30px;
		padding: 0 20px;
	}

	.mv_desc {
		font-size: 1.3rem;
		padding: 0 20px;
		line-height: 2;
	}

	/* Reason SP */
	.reason {
		padding: 60px 0 0;
	}

	.reason_bg-text {
		font-size: 10rem;
		top: 50px;
		left: -10px;
	}

	.reason_title {
		margin-bottom: 20px;
	}

	.reason_cards {
		flex-direction: column;
		width: 90%;
		margin-right: 0;
		margin-left: auto;
	}

	.reason_card {
		width: calc(100% - 6.5rem);
		height: auto;
		padding-top: 20px;
	}

	.reason_card-num {
		font-size: 5.6rem;
		top: -5px;
	}

	.reason_card-body {
		padding: 30px 5% ;
	}

	.reason_card-title {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}

	.reason_card-title-sub {
		font-size: 1.1rem;
	}

	.reason_card-desc {
		font-size: 1.1rem;
	}

	.reason_message {

		width: 90%;
		margin: auto;
		margin-top: 30px;
	}

	.reason_message-body {
		line-height: 1.8;
	}

	.reason .btn_wrap {
		margin-top: 40px;
		padding-bottom: 40px;
	}

	.btn_common {
		padding: 15px 40px;
		font-size: 1.4rem;
	}

	/* Staff SP */
	.staff {
		padding: 60px 0 50px;
	}

	.staff_bg-text {
		font-size: 10rem;
		top: 50px;
		left: -10px;
	}

	.staff_inner {
		width: 90%;
	}

	.staff_title {
		margin-bottom: 24px;
	}

	.staff_tab {
		font-size: 1.3rem;
		padding: 12px 10px;
	}

	.staff_panel {
		padding: 30px 20px;
	}

	.staff_members {
		gap: 20px;
		flex-wrap: wrap;
	}
	.staff_member {
		width: calc(50% - 10px);
	}

	.staff_member-photo {
		width: 100px;
		height: 100px;
		margin-bottom: 8px;
	}

	.staff_member-name {
		font-size: 1.2rem;
	}

	.staff .btn_wrap {
		margin-top: 40px;
	}

	/* Service SP */
	.service {
		padding: 60px 0 50px;
	}

	.service_bg-text {
		font-size: 10rem;
		top: 50px;
		left: -10px;
	}

	.service_inner {
		width: 90%;
	}

	.service_title {
		margin-bottom: 30px;
	}

	.service_card {
		flex-direction: column;
		padding: 30px 5%;
	}

	.service_card-item {
		padding: 20px 0;
	}

	.service_card-item + .service_card-item {
		border-left: none;
		border-top: 1px solid #333;
	}

	.service_card-heading {
		font-size: 1.6rem;
		margin-bottom: 12px;
	}


	.service .btn_wrap {
		margin-top: 40px;
	}

	/* Flow SP */
	.flow {
		padding: 60px 0 50px;
	}

	.flow_bg-text {
		font-size: 10rem;
		top: 50px;
		left: -10px;
	}

	.flow_inner {
		width: 90%;
	}

	.flow_title {
		margin-bottom: 30px;
	}

	.flow_steps{
		.flow_step:last-of-type{
			margin-bottom: 0;
		}
	}
	.flow_step {
		width: 100%;
		flex-direction: column;
		margin-bottom: 5rem;
	}

	.flow_step:nth-child(odd),
	.flow_step:nth-child(even) {
		margin-left: 0;
		margin-right: 0;
	}

	.flow_step-img {
		width: 100%;
		height: 180px;
	}

	.flow_step-body {
		padding: 20px;
	}

	.flow_step-heading {
		font-size: 1.5rem;
		margin-bottom: 12px;
	}

	.flow_step-desc {
		font-size: 1.3rem;
		line-height: 1.7;
	}

	.flow_step::after {
		border: 2rem solid transparent;
    border-top: 2rem solid #D9D9D9;
		bottom: -7rem;
	}

	.flow_step + .flow_step {
		margin-top: 30px;
	}

	.flow .btn_wrap {
		margin-top: 40px;
	}

	/* Contact SP */
	.contact {
		padding: 60px 0 50px;
	}

	.contact_bg-text {
		font-size: 10rem;
		top: 50px;
		left: -10px;
		z-index: -1;
	}

	.form_box--input {
		flex-direction: column;
		gap: 10px;
		align-items: self-start;
		padding-inline: 5px;

		input, textarea {
			width: 100%;
		}
	}
	.form_error {
		margin-left: 0;
		margin-top: 0;
	}
	.form_temp{
		width: 100%;
	}


	.page-top {
		bottom: 20px;
		right: 15px;
		width: 40px;
		height: 40px;
	}

	.page-top span {
		width: 10px;
		height: 10px;
	}

	/* ------------------
	ハンバーガーメニュー
	------------------ */
	#toggleBtn, #drawer {
		display: block;
	}
	#toggleBtn:hover {
		opacity: 1;
	}
	#drawer:hover {
		opacity: 1;
	}
	.sp_nav--btn{
		position: absolute;
		width: 60px;
		height: 60px;
		background: var(--main-color);
		border: none;
		right: 0;
		top: 0;
		transition: all 0.5s;
	}
	.sp_nav--btn span {
		position: absolute;
		display: block;
		height: 2px;
		background: #fff;
		margin: auto;
	}

	.sp_nav--btn[aria-pressed="false"] span {width: 35px;transition: all 0.5s;}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(1) {top: 40px;left: 0;right: 0;}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(3) {bottom: 40px;left: 0;right: 0;margin: auto;}

	.sp_nav--btn[aria-pressed="true"] {right: 240px;}
	.sp_nav--btn[aria-pressed="true"] span {width: 30px;transition: all 0.5s;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(1) {top: 48%;transform: translateY(-1.5px) rotate(45deg);background: #fff;left: 15px;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(2) {display: none;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(3) {bottom: 53%;transform: translateY(1.5px) rotate(-45deg);background: #fff;left: 15px;}

	.drawer-nav {
		position: fixed;
		height: 100vh;
		width: 240px;
		top: 0;
		right: 0;
		color: #000;
		display: flex;
		z-index: 99;
		overflow: scroll;
		transition: all 0.5s;
		background: var(--main-color);;
	}
	.drawer-nav[aria-hidden="true"] {
		visibility: hidden;
		pointer-events: none;
		transform: translateX(100%);
		overflow-y: scroll;
	}
	.drawer-nav[aria-hidden="false"] {
		visibility: visible;
		transform: translateX(0);
	}
	.drawer-menu {
		width: 100%;
		padding-bottom: 100px;
	}
	.drawer_list--item {
		border-bottom: 1px solid #fff;
		background: var(--main-color);
		position: relative;
		z-index: 3;
	}
	.drawer_list--item.third {
		margin: 0;
	}
	.drawer-dropdown-menu-item {
		border-bottom: 1px solid #fff;
		position: relative;
		z-index: 2;
	}
	.drawer-menu-item, .drawer-dropdown-menu-item {
		color: #fff;
		padding: 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		background: transparent;
		border: none;
		font-family: inherit;
		font-size: inherit;
		cursor: pointer;
		text-align: left;
		width: 100%;
		height: 100%;
	}
	.drawer-link-icon {
		font-size: 1.8rem;
		margin-left: 8px;
		font-weight: 100;
	}
	.drawer-dropdown-menu-item {
		width: auto;
	}
	.drawer-menu-item[aria-expanded="false"]::after {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 7px solid #fff;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
	}
	.drawer-menu-item[aria-expanded="true"]::after {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 7px solid #fff;
	}
	.drawer-menu-item[aria-expanded="false"] + .drawer-dropdown-menu {
		overflow: hidden;
		max-height: 0;
		transition: max-height ease-in;
	}
	.drawer-menu-item[aria-expanded="true"] + .drawer-dropdown-menu {
		max-height: 9999px;
		transition: max-height ease-in;
	}
	.drawer-dropdown-menu {
		background: #666;
		width: 100%;
		margin: 0 0 0 auto;
	}
	.cp_cont {
		display: flex;
		z-index: 5;
		height: 70px;
		justify-content: space-between;
		align-items: center;
		position: absolute;
		max-width: 25%;
		width: 100%;
		right: 0;
	}
	.cp_cont *,
	.cp_cont *:before,
	.cp_cont *:after {
		padding: 0;
		margin: 0;
	}
	.cp_logo {
		max-height: 50px;
		display: flex;
		align-items: center;
	}
	.cp_logo a,
	.cp_logo img {
		max-height: 50px;
		width: auto;
		display: flex;
		align-items: center;
	}
	.cp_offcm01 {
		position: absolute;
		top: 0px;
		right: 0px;
		display: inline-block;
		z-index: 99999;
	}

	.cp_offcm01 .cp_menu {
		position: fixed;
		top: 0;
		right: -100vw;
		width: 300px;
		height: 100%;
		cursor: pointer;
		-webkit-transition: 0.4s transform;
		transition: 0.4s transform;
		background-color: #000;
		opacity: 1;
		z-index: 99999;
	}
	.cp_offcm01 .cp_menu ul.ff_ul {
		position: relative;
		margin-top: 35px;
		padding: 0;
		padding-bottom: 200px;
	}
	.cp_offcm01 .cp_menu ul.ff_ul::after {
		content: '';
		position: absolute;
		background: url("../img/eco_mark_sp.svg")no-repeat center;
		background-size: cover;
		width: 100px;
		height: 100px;
		right: 0;
		left: 0;
		margin: auto;
		bottom: 4.5em;
	}
	.cp_lang a {
		background: #fff;
		color: #000;
		font-weight: bold;
		font-size: 1.4rem;
		padding: 3px 10px;
		margin: 0 15px 60px;
		display: inline-block;
	}
	.cp_offcm01 .cp_menu li.pshm_title {
		padding: 35px 20px 13px;
		color: #fff;
		height: 33px;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li a {
		display: block;
		padding: 12px 20px;
		text-decoration: none;
		color: #fff;
		border-bottom: 1px solid #ccc;
		font-weight: bold;
		font-size: 1.5rem;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li ul.sf_ul li a {
		color: #000;
		border-bottom: 1px dashed #ccc;
		background: #fff;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio {
		display: none;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul {
		overflow: hidden;
		max-height: 0;
		transition: max-height 0s ease-in;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio:checked + ul.sf_ul {
		max-height: 9999px;
		transition: max-height 1s ease-in;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li a {
		padding: 5px 15px 5px 45px;
		text-decoration: none;
		color: #ffffff;
		border-bottom: 1px dashed #e6e6e6;
		background: #686c77;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li:last-child a {
		border-bottom: none;
	}
	.cp_offcm01 #cp_toggle01 {
		position: absolute;
		display: none;
		opacity: 0;
	}
	.cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
		overflow-y: auto;
		-webkit-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
		box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
	}

	.cp_offcm01 #cp_toggle01 ~ label {
		position: relative;
		z-index: 999999;
		display: block;
		height: 70px;
		width: 70px;
		cursor: pointer;
		-webkit-transition: 0.4s transform;
		transition: 0.4s transform;
		text-align: center;
		color: #fff;
		margin: 0 auto;
		background: #000;
	}
	.cp_offcm01 #cp_toggle01 ~ label::before, .cp_offcm01 #cp_toggle01:checked ~ label::before {
		content: "MENU";
		vertical-align: middle;
		display: inline-block;
		color: #fff;
		bottom: 40px;
		left: 0;
		position: absolute;
		width: 100%;
		text-align: center;
		font-size: 1.1rem;
		font-weight: bold;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label::before {
		content: "CLOSE";
	}
	.cp_offcm01,
	.cp_offcm01 span {
		display: inline-block;
		transition: all 0.4s;
		box-sizing: border-box;
	}
	.cp_offcm01 {
		position: fixed;
		right: 0px;
		top: 0px;
		width: 70px;
		height: 70px;
		padding: 0;
		background-color: #ffffff;
	}
	.cp_offcm01 span {
		position: absolute;
		right: auto;
		left: 23px;
		width: 24px;
		border-radius: 1px;
		height: 2px;
		background-color: #ffffff;
	}
	.cp_offcm01 span:nth-of-type(1) {
		top: 34px;
	}
	.cp_offcm01 span:nth-of-type(2) {
		top: 42px;
	}
	.cp_offcm01 span:nth-of-type(3) {
		top: 50px;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
		-webkit-transform: translateY(20px) rotate(-45deg);
		transform: translateY(20px) rotate(-45deg);
		background-color: #fff;
		top: 23px;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
		opacity: 0;
		background-color: #000;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
		-webkit-transform: translateY(-20px) rotate(45deg);
		transform: translateY(-20px) rotate(45deg);
		background-color: #fff;
		top: 63px;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_switch .ff_name {
		display: block;
		padding: 12px 20px;
		text-decoration: none;
		color: #000;
		border-bottom: 1px solid #ccc;
		font-weight: bold;
		font-size: 1.5rem;
		position: relative;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_switch .ff_name::after {
		content: '';
		position: absolute;
		display: block;
		width: 10px;
		height: 10px;
		border-bottom: 2px solid #fff;
		border-right: 2px solid #fff;
		top: calc(50% - 5px);
		right: 25px;
		transform: rotate(45deg);
		transition: .3s;
	}

/* data-scroll: hrefなし<a>用 */
[data-scroll] {
	cursor: pointer;
}
}