@charset "UTF-8";
/* CSS Document */

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)){
	all: unset;
	display: revert;
}
*,*::before,*::after{
	box-sizing: border-box;
}
a, button{
	cursor: revert;
}
ol, ul, menu{
	list-style: none;
}
img{
	vertical-align: top;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
input, textarea{
	-webkit-user-select: auto;
	user-select: auto;
}
textarea{
	white-space: revert;
}
meter{
	-webkit-appearance: revert;
	appearance: revert;
}
::placeholder{
	color: unset;
}
:where([hidden]){
	display: none;
}
:where([contenteditable]:not([contenteditable="false"])){
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	line-break: after-white-space;
	-webkit-user-select: auto;
	user-select: auto;
}
:where([draggable="true"]){
	-webkit-user-drag: element;
}


/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
html{
	font-size: 62.5%;
}
body{
	color: #000;
	font-size: 1.5em;
	font-family: 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 500;
	font-feature-settings: "halt";
	overflow-wrap: break-word;
	counter-reset: number 0; 
}
p{
	line-height: 170%;
}
a{
	color: #000;
	text-decoration: none;
	transition: all 0.3s;
}
a:link{
	color: #000;
}
a:visited{
	color: #000;
}
a:hover{
	text-decoration: none;
}
@media print, screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width: 1160px;
	}
	
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events: none;
	}
}

/* 表示切替 */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}


/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* color */
	--clBlack: #222222;
	--clRed: #af0014;
	--clLbrown: #ae9764;
	--clBrown: #8b7254;
	--grdBrown: linear-gradient(180deg, rgba(174,151,100,1) 30%, rgba(96,56,19,1) 100%);
	
	/* font */
	--fnJp: "Noto Serif JP", 'Yu Mincho',YuMincho,Meiryo,'Hiragino Mincho Pro',serif;
	--fnCg: "Cormorant Garamond", 'Yu Mincho',YuMincho,Meiryo,'Hiragino Mincho Pro',serif;
	--fnSm: "Shippori Mincho", 'Yu Mincho',YuMincho,Meiryo,'Hiragino Mincho Pro',serif;

	/* width */
	--wBase: 1100px;
	--w900:  960px;
}

/* box
============================== */
/* wrapper */
#wrapper{
	overflow: hidden;
	position: relative;
}
.bg {
	width: 100%;
	height: 1243px;
	object-fit: cover;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

/* ctsArea */
.ctsArea{
	width: var(--wBase);
	padding-inline:30px;
	margin: 0 auto;
}
.ctsArea.w900{
	width: var(--w900);
}

/* font / txt
============================== */
.txtRed {
	color: var(--clRed);
}
@media print, screen and (min-width:813px){

}

/* tit
============================== */
/* titBase */
.titBase{
	width: fit-content;
	margin-block: 0 40px;
}
.titBase.center{
	margin-inline: auto;
	text-align: center;
}
.titBase .tit{
	display: inline-block;
	font-family: var(--fnCg);
	font-size: 9rem;
	line-height: 0.8;
	background: var(--grdBrown);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: var(--clBrown);
}
.titBase .jp {
	color: var(--clBlack);
	font-size: 1.8rem;
	font-family: var(--fnJp);
}


/*
	headerWrapper
-----------------------------------------------------------------------------------------------*/
#headerWrapper{
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 30px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
}
/* 文字被り防止 */
@media screen and (max-width:1200px){
	#headerWrapper{
		background: url(../images/bg_top_pc.png) no-repeat top left/cover;
		overflow: hidden;
		z-index: 99;
	}
}
#headerWrapper .logo {
	transition: opacity .3s;
}
#headerWrapper .logo:hover {
	opacity: .7;
}
#headerWrapper .txt{
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.4;
	position: relative;
}
#headerWrapper .txt::after{
	content: "";
	width: 1px;
	height: 30px;
	background: #a2a19e;
	position: absolute;
	top: 50%;
	left: -15px;
	transform: translateY(-50%);
}


/*
	kv
-----------------------------------------------------------------------------------------------*/
#kvWrapper .ctsArea{
	padding-block:50px;
}
.scroll {
	overflow-x: scroll;
}
.listAwards{
	display: flex;
	justify-content: flex-end;
	width: 100%;
	min-width: 1250px;
	padding: 20px 20px 0 0;
	gap: 30px;
	position: relative;
} 
.listAwards li{
	padding-left: 37px;
	font-size: 1.2rem;
	font-family: var(--fnJp);
	font-weight: 600;
	letter-spacing: 0rem;
	position: relative;
}
.listAwards li::before{
	content: "";
	background: url(../images/icon_trophy.svg) no-repeat center/contain;
	width: 24px;
	height: 22px;
	position: absolute;
	top: 3px;
	left: 0px;
}
#kvWrapper .peopleArea{
	display: flex;
	gap: 20px;
}
#kvWrapper .txtArea{
	width: fit-content;
	margin: 35px auto;
	text-align: center;
	font-family: var(--fnJp);
	position: relative;
}
#kvWrapper .txtArea::after,
#kvWrapper .txtArea::before {
	content: "";
	background: url(../images/item_leaf_left.svg) no-repeat center/contain;
	width: 34px;
	height: 99px;
	position: absolute;
	top: 50%;
	left: -34px;
	transform: translateY(-50%);
}
#kvWrapper .txtArea::before {
	background: url(../images/item_leaf_right.svg) no-repeat center/contain;
	right: -34px;
	left: auto;;
}
#kvWrapper .txt{
	margin-top: 7px;
	font-weight: 600;
	font-size: 1.6rem;
}


/*
	companynWrapper
-----------------------------------------------------------------------------------------------*/
#companynWrapper .txt{
	padding: 12px 0;
	background: var(--clBlack);
	color: #fff;
	font-family: var(--fnJp);
	font-size: 1.7rem;
	text-align: center;
}
#gallery {
	display: flex;
	background: #fff;
	padding: 5px 0;
	border-bottom: solid 1px var(--clLbrown);
	width: 100%;
	min-width: fit-content;
	overflow: hidden;
}
.swiper-wrapper {
	display: flex;
	gap: 40px;
	align-items: center;
	animation: 100s linear infinite top-markee;
}
.swiper-wrapper li:last-of-type{
	margin-right: 30px;
}
  @keyframes top-markee {
	to {
	  -webkit-transform: translateX(-100%);
			  transform: translateX(-100%);
	}
  }

/*
	reasonWrapper
-----------------------------------------------------------------------------------------------*/
#reasonWrapper .ctsArea{
	padding-block: 80px 0;
	text-align: center;
}
.listReason {
	display: flex;
	justify-content: center;
	gap: 50px;
}
.listReason li {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 300px;
	height: 300px;
	padding-block: 50px;
	border-radius: 150px;
	background: #fff;
	box-shadow: 0px 0px 25px 0px rgba(139, 114, 84, 0.2);
	position: relative;
}
.listReason li::before,
.listReason li::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 0;
}
.listReason li::before {
	background: var(--grdBrown);
	width: 280px;
	height: 280px;
	border-radius: 140px;
}
.listReason li::after {
	background: #fff;
	width: 278px;
	height: 278px;
	border-radius: 139px;
}
.listReason li .num {
	font-size: 1.4rem;
	font-family: var(--fnCg);
	color: var(--clLbrown);
	position: relative;
	z-index: 1;
}
.listReason li .num::after {
	color: var(--clBrown);
	counter-increment: number 1; 
	content: " 0" counter(number) ;  
	font-size: 4.8rem;
}
.listReason .tit {
	margin-top: 30px;
	font-size: 2.3rem;
	font-family: var(--fnSm);
	letter-spacing: -0.1rem;
	position: relative;
	z-index: 1;
}
.listReason .tit::before {
	content: "";
	width: 10px;
	height: 1px;
	background: var(--clLbrown);
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
}


/*
	caseWrapper
-----------------------------------------------------------------------------------------------*/
#caseWrapper .ctsArea{
	padding-block: 80px;
}
.listCase {
	display: flex;
	flex-direction: column;
	gap: 60px 0;
}
.listCase .tit {
	margin-bottom: 25px;
	text-align: center;
	font-family: var(--fnJp);
	font-size: 2.8rem;
	line-height: 1.6;
}
.listCase .txtRed {
	font-weight: 600;
}
.marker {
	display: inline;
	padding: 0 5px;
	background: linear-gradient(180deg, transparent 0%, transparent 75%, rgba(174,151,100,0.3) 75%, rgba(96,56,19,0.3) 92%,transparent 92%, transparent 100%);
}
.listCaseBox {
	display: flex;
	gap: 0 50px;
	padding: 15px;
	background: linear-gradient(90deg, rgba(67,67,67,1) 0%, rgba(34,34,34,1) 40%);
}
.job {
	display: flex;
	font-family: var(--fnJp);
	background: #d2c8aa;
	border: solid 5px #d2c8aa;
}
.job .before,
.job .after{
	padding: 50px 0 33px 40px;
	font-size: 1.6rem;
	line-height: 1.4;
	position: relative;
}
.job .before {
	width: 35%;
	position: relative;
}
.job .before::after {
	content: "";
	border-style: solid;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #d2c8aa;
	border-right: 0;
	position: absolute;
	right: -14px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.job .after {
	width: 65%;
	font-size: 2.2rem;
	background: #fff;
}
.job .before::before,
.job .after::before {
	content: "BEFORE";
	font-size: 1.5rem;
	font-family: var(--fnCg);
	font-weight: 500;
	color: var(--clLbrown);
	position: absolute;
	top: 15px;
	left: 20px;
}
.job .after::before {
	content: "AFTER";
}
.profileBox {
	margin:30px 15px 0;
	width: 500px;
	color: #fff;
	position: relative;
}
.profileBox .img {
	position: absolute;
	right: -150px;
	top: -110px;
}
.profile {
	padding-block: 0 8px;
	margin-block: 0 15px;
	font-size: 1.8rem;
	font-family: var(--fnJp);
	text-align: center;
	border-bottom: solid 1px #666666;
}
.profile .num {
	font-size: 2.8rem;
}
.profile .age {
	font-size: 2.2rem;
}
.profile .gender {
	font-size: 1.2rem;
	padding-inline: 5px 12px;
}
.profileBox .txt {
	font-weight: 400;
	font-size: 1.4rem;
	text-align: justify;
}
.boxL {
	width: calc(100% - 290px);
}
.boxR {
	width: 290px;
	background: #f1f0ee;
	padding: 20px;
}
.partner .name {
	padding: 10px 10px 5px;
	font-family: var(--fnJp);
	font-size: 1.8rem;
	text-align: center;
	color: #fff;
	background: #222222;
}
.partner .name span{
	font-size: 1.3rem;
	padding-right: 10px;
}
.partner .txt {
	margin-block: 10px 5px;
	text-align: justify;
	font-size: 1.2rem;
}


/*
	#applyWrapper
-----------------------------------------------------------------------------------------------*/
#applyWrapper {
	background: #f0efec;
}
#applyWrapper .ctsArea {
	padding-block: 80px 0;
}
#applyWrapper .txt {
	font-family: var(--fnJp);
	text-align: center;
}
.formArea {
	margin-block: 55px 0;
	padding-block: 60px 90px;
	border-top: solid 1px #d5d3cd;
}

/*
	#fixBtnWrapper 追従
-----------------------------------------------------------------------------------------------*/
#fixBtnWrapper {
	position: fixed;
	right: -1px;
	bottom: 90px;
	z-index: 88;
}
a.popUp {
	display: block;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.8);
}
a.popUp:hover {
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0);
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footerWrapper{
	padding-block: 15px 60px;
	background-color: #fff;
	text-align: center;
}
.copyRight {
	font-family: var(--fnCg);
	font-size: 1.2rem;
}

@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust: 100%;
		font-size: 1.4rem;
		letter-spacing: 0.1rem;
	}
	img{
		width: 100%;
	}
	p{
		line-height: 180%;
	}
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
	br.sp{
		display: inline-block;
	}
	
	
	/*
		common
	-----------------------------------------------------------------------------------------------*/
	:root{
		/* width */
		--wBase: 100%;
		--w900: 100%;
	}

	/* box
	============================== */
	.bg {
		width: 100%;
		height: 1340px;
		object-fit: cover;
		position: absolute;
		top: 0;
		right: 0;
		z-index: -1;
	}
	/* ctsArea */
	.ctsArea{
		max-width: 500px;
		padding: 60px 20px;
	}
	
	/* font / txt
	============================== */
	/* txtBase */
	.titBase {
		margin-block: 0 20px;
	}
	.txtBase,
	.txtBase p{
		text-align: justify;
		font-size: 1.3rem;
		line-height: 1.5%;
	}

	/* 下付き */
	.sub{
		transform: translateY(-4px);
	}

	/* tit
	============================== */
	/* titBase */
	.titBase .tit{
		font-size: 6rem;
		line-height: 0.8;
	}
	.titBase .jp {
		font-size: 1.4rem;
	}
	

	/* btn
	============================== */
	.btnArea{
		margin-top: 50px;
	}

	/* btnBase */
	a[class ^= btnBase]{
		min-width: 150px;
		font-size: 1rem;
		padding: 10px 15px;
	}
	a[class ^= btnBase].clrBlack{
		padding: 5px 15px;
	}


	/*
		headerWrapper
	-----------------------------------------------------------------------------------------------*/
	#headerWrapper{
		padding: 10px 10px 0px 10px;
		gap: 30px;
		position: relative;
	}
	/* 文字被り防止 */
	#headerWrapper{
		background:none;
	}
	#headerWrapper .logo {
		display: block;
		width: 150px;
	}
	#headerWrapper .txt{
		font-size: 1rem;
		letter-spacing: -0.01rem;
	}
	#headerWrapper .txt::after{
		height: 40px;
	}


	/*
		kv
	-----------------------------------------------------------------------------------------------*/
	#kvWrapper .ctsArea{
		padding-block: 30px 15px;
		max-width: none;
	}
	.scroll {
		overflow-x: auto;
	}
	.listAwards{
		flex-direction: column;
		gap: 2px;
		width: fit-content;
		margin: 0 auto;
		min-width: auto;
		padding: 0px 25px 30px;
	}
	.listAwards li{
		padding: 3px 0 3px 23px;
	}
	.listAwards li::before{
		width: 17px;
		height: 16px;
	}
	#kvWrapper .peopleArea{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px;
	}
	#kvWrapper .peopleArea li{
		width: 160px;
	}
	#kvWrapper .txtArea{
		margin: 25px auto;
	}
	#kvWrapper .ttl{
		width: 260px;
		margin: 0 auto;
	}
	#kvWrapper .txtArea::after,
	#kvWrapper .txtArea::before {
		width: 41px;
		height: 118px;
		left: -45px;
	}
	#kvWrapper .txtArea::before {
		right: -45px;
		left: auto;;
	}
	#kvWrapper .txt{
		font-size: 1.3rem;
		line-height: 1.4;
		letter-spacing: -0.01rem;
	}


	/*
		companynWrapper
	-----------------------------------------------------------------------------------------------*/
	#companynWrapper .txt{
		font-size: 1.3rem;
	}
	#gallery {
		padding: 15px 0;
	}
	.swiper-wrapper {
		gap: 20px;
	}
	.swiper-wrapper img{
		width: auto;
		max-height: 3rem;
	}

	/*
		reasonWrapper
	-----------------------------------------------------------------------------------------------*/
	#reasonWrapper .ctsArea{
		padding-block: 40px 0;
	}
	.listReason {
		flex-direction: column;
		gap: 20px;
	}
	.listReason li {
		width: 100%;
		height: auto;
		padding-block:20px 30px;
		border-radius: 0px;
	}
	.listReason li::before {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		border-radius: 0px;
	}
	.listReason li::after {
		width: calc(100% - 22px);
		height: calc(100% - 22px);
		border-radius: 0px;
	}
	.listReason li .num::after { 
		font-size: 3.2rem;
	}
	.listReason .tit {
		margin-top: 20px;
		font-size: 2rem;
	}
	.listReason .tit::before {
		width: 15px;
		top: -10px;
	}


	/*
		caseWrapper
	-----------------------------------------------------------------------------------------------*/
	#caseWrapper .ctsArea{
		padding-block: 60px;
		padding-inline: 15px;
	}
	.listCase {
		gap: 40px 0;
	}
	.listCase .tit {
		margin-bottom: 20px;
		font-size: 2.3rem;
		line-height: 1.5;
	}
	.listCaseBox {
		flex-direction: column;
		gap: 0 30px;
		padding: 10px;
	}
	.job {
		flex-direction: column;
	}
	.job .before,
	.job .after{
		width: 100%;
		padding:17px 10px 20px;
		font-size: 1.5rem;
		text-align: center;
	}
	.job .after{
		padding: 28px 10px 20px;
	}
	.job .before::after {
		border-top: 10px solid #d2c8aa;
		border-right: 10px solid transparent;
		border-left: 10px solid transparent;
		border-bottom: 0px;
		right: auto;
		left: 50%;
		top: auto;
		bottom: -9px;
		transform: translate(-50%,0);
	}
	.job .after {
		font-size: 1.8rem;
	}
	.job .before::before,
	.job .after::before {
		font-size: 1.3rem;
		top: 0px;
		left: 7px;
	}
	.job .after::before{
		top: 3px;
		left: 10px;
	}
	.profileBox {
		margin:20px 0 30px;
		padding-inline: 10px;
		width: 78%;
	}
	.profileBox .img {
		right: -72px;
		top: auto;
		width: 80px;
		bottom: -4px;
    }
	.profile {
		padding-block: 0 4px;
		margin-block: 0 7px;
		font-size: 1.7rem;
	}
	.profile .num {
		font-size: 2.2rem;
	}
	.profile .age {
		font-size: 1.7rem;
	}
	.profile .gender {
		font-size: 1.2rem;
		padding-inline: 3px 10px;
	}
	.boxL {
		width: 100%;
	}
	.boxR {
		width: 100%;
		margin: 0 auto;
		padding: 15px;
	}
	.partner .name {
		padding: 5px 5px 3px;
		font-size: 1.7rem;
	}
	.partner .txt {
		line-height: 1.5;
		font-size: 1.3rem;
	}


	/*
		#applyWrapper
	-----------------------------------------------------------------------------------------------*/
	#applyWrapper .ctsArea {
		padding-block: 60px 0;
	}
	#applyWrapper .txt {
		text-align: justify;
	}
	.formArea {
		margin-block: 40px 0;
		padding-block: 40px 60px;
	}


	/*
		#fixBtnWrapper 追従
	-----------------------------------------------------------------------------------------------*/
	a.popUp {
		width: 110px;
	}
	

	/*
		footer
	-----------------------------------------------------------------------------------------------*/
	#footerWrapper{
		padding-block: 10px 20px;
	}
}