@charset "UTF-8";

/** -----------------------------------------------
  共通
------------------------------------------------**/

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

	.section{
	padding:  120px 0 96px;
}

h3 {
	font-size: clamp(16px,2vw, 24px);
	font-weight: bold;
	color: #F2AEA1;
}

h2 {
	font-size: clamp(28px, 5vw, 40px);
	font-weight: bold;
	color: #D22D4B;
	margin-bottom: 40px;
	letter-spacing: 0.1em;
}

h1 {
	font-size: clamp(32px, 6vw, 64px);
	font-weight: bold;
	color: #F2AEA1;
}

.section-title{
	text-align: center;
	position: relative;
	z-index: 2;
}

p.section-text{
	display: flex;
	flex-direction: column;
	font-size: clamp(16px,3vw, 24px);
	font-weight: normal;
	color: #4F563D;
	margin-bottom: 48px;
}

img{
	max-width: 100%;
	height: auto;
	display: block;
}
/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/


/** ヘッダー **/

#header{
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: #CBDAA3;
}

.header-inner{
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	height: auto;

	display: flex;
	align-items: center;
	justify-content: space-between;
	
	gap: 8px;

}

.header-logo{
	width: clamp(140px, 28vw,230px);
}

.header-logo img{
	display: block;
	width: 100%;
	height: auto;
}

.header-logo a{
	display: inline-block;
	transition: 0.3s;
}

.header-logo a:hover{
	transform: translateY(-3px);
	filter: drop-shadow(0 8px 8px #ffffffe6);
	opacity: 0.85;
}


.header-right{
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}

.header-nav{
	flex: 1 1 auto;
	min-width: 0;
}

.header-links{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.header-links a{
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	color: #4F563D;
	white-space: nowrap;

	position: relative;
	transition: 0.3s;
}

.header-links a:after{
	color: #D22D4B;
}

.header-links a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: #D22D4B;
	transition: 0.3s;
}

.header-links a:hover{
	color: #D22D4B;
}

.header-links a:hover::after{
	width: 100%;
}

.header-links li + li{
	border-left: 1px solid #4F563D;
	padding-left: 16px;
	margin-left: 16px;
}

.header-banner{
	max-width: 230px;
}

.header-cta{
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 8px;
	padding: 10px 10px;
	border: 1px solid #CBDAA3;
	border-radius: 10px;
	box-shadow: 0 4px 4px #4F563D;
	text-decoration: none;
	color: #D22D4B;
	background-color: #FCEFC2;
	transition: 0.3s;
}

.header-cta:hover{
	transform: translateY(-2px);
	box-shadow:  0 8px 16px rgba(255,255,255,0.2);
}

.header-cta-text{
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.header-cta-sub{
	font-size: 10px;
	font-weight: bold;
}

.header-cta-main{
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.12em;
}

.header-cta-arrow{
	width: 40px;
	height: 40px;
	transition: 0.3s;
}

.header-cta:hover{
	transform: translateY(-8px);
	filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
}

.header-cta:hover .header-cta-arrow{
	transform: translateX(4px);
}

.hamburger{
	display: none;
	width: 30px;
	height: 32px;
	position: relative;
}

.hamburger span{
	position: absolute;
	width: 100%;
	height: 2px;
	background: #4F563D;
	left: 0;
	transition:  0.3s;
}

.hamburger span:nth-child(1){top: 0;}
.hamburger span:nth-child(2){top: 9px;}
.hamburger span:nth-child(3){top: 18px;}

.hamburger-menu{
	position: absolute;
	width: max-content;
	bottom: -5px;
	color: #4F563D;
	font-size: 10px;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.3s;
	text-align: center;
	line-height: 1;
}
/** 私たちについて **/

#mainvisual{
	width: 100%;
	background-image: url(../images/babyFTHG7601.jpg);
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	position: relative;
}

#mainvisual::after{
	content: "";
	position: absolute;
	pointer-events: none;
	inset: 0;
	background: rgba(255,255,255,0.5);
	z-index: 0;
}

p.mv-consept {
	font-size: clamp(16px,4.2vw,24px);
	line-height: 1.6;
	font-weight: bold;
	color: #4F563D;
	text-shadow: 0 2px 2px #ffffff;
}

.mv .section-title{
	text-align: left;
}

.mv-inner{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;

	display: flex;
	flex-direction: column;
	align-items: flex-start;

	position: relative;
	z-index: 1;
}

.button-large{
	text-decoration: none;
	align-self: flex-end;
	margin-top: 24px;
	box-shadow: 0 4px 4px #4F563D;

	transition: 0.3s;

    display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	background-color: #FCEFC2;
	font-size: 16px;
	font-weight: bold;
	color: #D22D4B;
	text-align: center;
	border-radius: 75px;
}

.button-large:hover{
	transform: translateY(-2px);
	box-shadow:  0 8px 16px rgba(255,255,255,0.2);
}

.button-arrow{
	color: #F2AEA1;
	transition: 0.3s;
}

.button-large:hover .button-arrow{
	transform: translateX(4px);
}


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

#about{
	background: 
		linear-gradient(
			to bottom right,
			rgba(255,255,255,0.9),
			rgba(255,255,255,0.3)
		),
		#CBDAA3;
}

.about-inner{
	max-width: 1000px;
	width: 100%;
	margin:  0 auto;
	padding: 0 24px;
}

.about-cards{
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
	
	transition: 0.3s;
}

.about-cards a:hover{
	transform: translateY(-2px);
	box-shadow:  0 8px 16px rgba(255,255,255,0.2);
}

.about-card{
	display: flex;
	position: relative;
	align-items: center;
	height: 200px;
	overflow: hidden;
	background-color: #fff;
	gap: 24px;
	border: 1px solid#CBDAA3;
	border-radius: 20px 20px 0 20px;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 4px #4F563D;
}

.card-img-wrap{
	position: relative;
	flex: 0 0 305px;
	height: 200px;
	overflow: hidden;
}

.card-img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.card-img-wrap::after{
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:linear-gradient(
		to right,
		rgba(255,255,255,0.2),
		rgba(255,255,255,1)
	)
}

.card-body{
	flex: 1;
}

.card-text{
	font-size: clamp(15px,2vw, 20px);
	font-weight: normal;
	line-height: 1.7;
	color: #4F563D;
	margin: 0;
}

.card-title{
	margin: 0 0 12px;
	position: relative;
}

.card-title::after{
	content: "";
	display: block;
	height: 1px;
	width: min(360px, 90%);
	background: #CBDAA3;
	margin-top: 10px;
}

.card-icon-wrap{
	position: absolute;
	right: 20px;
	top: 30%;
	transform: translateY(-50%);
}

.card-icon{
	width: 40px;
	height: 40px;
	transition: 0.3s;
}

.about-card:hover .card-icon{
	transform: translateX(4px);
}

/** 働く環境 **/

#work-style{
	background: 
		linear-gradient(
			to bottom right,
			rgba(255,255,255,0.9),
			rgba(255,255,255,0.3)
		),
		#FCEFC2;
	position: relative;
	overflow: hidden;
}

.deco{
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	overflow: hidden;
	z-index: 0;
	pointer-events: none;
}

.deco::after{
	content: "";
	position: absolute;
	pointer-events: none;
	inset: 0;
	background: rgba(255,255,255,0.5);
}
.deco img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.deco1{bottom: 0px; left: -20px;}

.deco2{top:-30px; right: 220px;
		transform: rotate(-15deg);	
}

.deco3{bottom: 230px; right: -120px;}

.style-inner{
	max-width: 1000px;
	width: 100%;
	margin:  0 auto;
	padding: 0 24px;
	position: relative;
	z-index: 2;
}
.work-cards{
	max-width: 1000px;
	display: grid;
	grid-template-columns: repeat(3,auto);
	justify-content: center;
	gap: clamp(12px, 3vw, 20px);
	
	position: relative;
}

.work-card{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: clamp(200px, 28vw, 280px);
	height: clamp(200px, 28vw, 280px);
	background-color: #FCEFC2;
	border-radius: 140px;
	}

.work{
	font-size: clamp(14px, 1.8vw, 24px);
	font-weight: bold;
	color: #4F563D;
}

.work-card img{
	width: clamp(100px, 6vw, 115px);
}

.style-support{
	grid-column: 2 / 4;
	grid-row: 2;
	justify-self: center;
	transform: translateY(-50px);

	z-index: 2;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	width: clamp(200px, 3vw, 210px);
	height: clamp(200px, 3vw, 210px);
	background-color: #F2AEA1;
	border-radius: 50%;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 4px 4px #4F563D;

	transition: 0.3s;
}

.style-support:hover{
	transform: translateY(-52px);
	box-shadow:  0 8px 16px rgba(255,255,255,0.2);
}

.support-button{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
}

.s-button-arrow{
	display: inline-block;
	transition: 0.3s;
}

.style-support:hover .s-button-arrow{
	transform: translateX(4px);
}


/** 募集業種 **/

#jobs{
	background-color: #fff;
	position: relative;
}

.jobs-inner{
	max-width: 1000px;
	width: 100%;
	margin:  0 auto;
	padding: 0 24px;
}

.jobs-title{
	color: #4F563D;
	text-align: center;
	text-decoration: none;
}

.jobs-cards{
	display: grid;
	grid-template-columns: repeat(auto-fit,280px);
	gap: 10px;
	justify-content: center;
	
	transition: 0.3s;
}

.jobs-cards a:hover{
	transform: translateY(-2px);
	box-shadow:  0 8px 16px rgba(255,255,255,0.2);
}

.jobs-card{
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	height: 230px;
	overflow: hidden;
	border-radius: 20px 20px 0 20px;
	border: 1px solid #CBDAA3;
	background: linear-gradient(
		to bottom,
		#FCEFC2,
		#F2AEA1
	);
	box-shadow: 0 4px 4px #4F563D;
}

.jobs-thumb {
	height: 150px;
	overflow: hidden;
}

.jobs-thumb img{
	width:  100%;
	height: 100%;
	object-fit: cover;
}

.jobs-link{
	font-size: 16px;
	font-weight: normal;
}

.jobs-footer{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
	margin-top: auto;
	padding-right: 40px;
}

.jobs-arrow{
	display: block;
	width: 38px;
	height: 38px;

	transition: 0.3s;
}

.jobs-cards a:hover .jobs-arrow{
	transform: translateX(4px);
}

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

#team{
	background: 
		linear-gradient(
			to bottom right,
			rgba(255,255,255,0.9),
			rgba(255,255,255,0.3)
		),
		#CBDAA3;
	position: relative;
}

.team-inner{
	max-width: 1000px;
	width: 100%;
	margin:  0 auto;
	padding: 0;
}

.team-cards{
	display: grid;
	grid-template-columns: repeat(auto-fit,480px);
	gap: 40px;
	justify-content: center;
}

.team-card{
	display: block;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	border-radius: 20px 20px 0 20px;
	border: 1px solid #CBDAA3;
	box-shadow: 0 4px 4px #4F563D;

	transition: 0.3s;
}

.team-card:hover{
	transform: translateY(-2px);
	box-shadow:  0 8px 16px rgba(255,255,255,0.2);
}

.team-thumb {
	height: 320px;
	overflow: hidden;
	position: relative;
}

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

.team-footer{

	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;

	display: flex;
	align-items: flex-end;
	justify-content: space-around;

	padding:  40px 16px 12px 16px;
	box-sizing: border-box;

	background: 
		linear-gradient(
			to bottom,
			#FCEFC200,
			#FCEFC2FF
		);
		z-index: 2;
}

.team-member{
	color: #4F563D;
	font-weight: bold;
	letter-spacing: 0.08em;
	text-shadow: 0 2px 2px #ffffffe6;
}

.zoom-image{
	transform: scale(1.5);
	transform-origin: 100% 10%;
}

img.team-arrow{
	width: 35px;
	height: 35px;soukono 
}

.team-arrow{ka-s
	transition: 0.3s;
}

.team-card:hover .team-arrow{
	transform: translateX(4px);
}

/** 求める人材 **/

#ideal{
	background: url(../images/PAK85_color20141206204808.jpg);
	background-repeat: no-repeat;
	background-position: 150%;
	background-size: 70%;
	position: relative;
	overflow: hidden;
}

#ideal::before{
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.5);
	pointer-events: none;
	z-index: 1;

}

.ideal-inner{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.ideal-text{
	font-size: clamp(20px, 3vw, 32px);
	font-weight: normal;
	line-height: 1.5;
	color: #4F563D;
	margin: 56px 0 56px;
	text-shadow: 0 1px 2px #ffffffe6;
}

.ideal-entry{
	display: inline-flex;
	align-items: center;
	gap: 12px;
	line-height: 1;

	padding: 12px 24px;
	border: 1px solid #CBDAA3;
	border-radius: 10px;
	box-shadow: 0 4px 4px #4F563D;

	text-decoration: none;
	color: #D22D4B;
	font-weight: bolder;
	background-color: #FCEFC2;

	transition: 0.3s;
}

.ideal-entry:hover{
	transform: translateY(-2px);
	box-shadow:  0 8px 16px rgba(255,255,255,0.2);
}

.ideal-entry-sub{
	font-size: 24px;
	line-height: 1;
}

.ideal-entry-main{
	font-size: 40px;
	line-height: 1;
	letter-spacing: 0.1em;
}

.ideal-entry-arrow{
	width: 40px;
	height: 40px;
	transition: 0.3s;
}

.ideal-entry:hover .ideal-entry-arrow{
	transform: translateX(4px);
}


/** フッター **/


#footer{
	background-color: #CBDAA3;
	padding: 80px;
}

.footer-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

img.footer-logo{
	width: 200px;
	height: auto;
	display: block;
	flex-shrink: 0;
}

.footer-right{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 16px;
	font-size: 15px;
	color: #fff;
}

.footer-links{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links a{
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: 0.3s;
}

.footer-links a:hover{
	color: #F2AEA1;
}

.footer-links a::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 0;
	height: 2px;
	background: #F2AEA1;
	transition: 0.3s;
}

.footer-links a:hover::after{
	width: 100%;
}

.footer-links li + li{
	border-left: 1px solid #fff;
	padding-left: 24px;
	margin-left: 24px;
}

.footer-logo{
	display: flex;
	flex-shrink: 0;
	min-width: 140px;
	transition: 0.3s;
}

.footer-logo:hover{
	transform: translateY(-3px);
	filter: drop-shadow(0 8px 8px #ffffffe6);
	opacity: 0.85;
}


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


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){

/** 共通 **/
	.section{
		padding: 80px 0 60px;
	}

	h1{font-size: 40px;}

	h2{font-size: 28px;}

	h3{font-size: 20px;}

	/** ヘッダー **/
	.header-links{
		align-items: flex-end;
		gap: 16px
	}

	.hamburger{
		display: block;
		position: relative;		
	}

	.header-inner{
		justify-content: space-between;
		padding: 0 16px;
		height: 90px;
	}

	.header-nav{
		display: block;

		position: fixed;
		top: 90px;
		right: 0;
		width: min(80vw 320px);
		height: auto;
		background: #fff;

		transform: translateX(120%);
		opacity: 0;
		pointer-events: none;

		transition: transform .3S, opacity .3S;
		z-index: 998;

		padding: 16px 20px;
		border-radius: 10px;
		box-shadow: -10px 0 20px rgba(0, 0, 0, 0.08);
	}

	.header-nav.open{
		transform: translateX(0%);
		opacity: 1;
		pointer-events: auto;
	}

	.header-links li + li{
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}

	.hamburger span{
		transition: transform .3s, opacity .3s;
		position: absolute;
	}

	.hamburger.open span:nth-child(1){
		transform: translateY(9px) rotate(45deg);
	}

	.hamburger.open span:nth-child(2){
		opacity: 0;
	}

	.hamburger.open span:nth-child(3){
		transform: translateY(-9px) rotate(-45deg);
	}

	/** 事業について **/
	.card-img-wrap{
		flex: 1;
		width: 100%;
		height: 100%;
	}

	.card-img{
		border-radius: 20px 20px 0 20px;
	}

	.card-body{
		position: absolute;
		left: 16px;
		right: 64px;
		bottom: 14px;
		z-index: 2;
		padding: 14px 14px 12px;
	}

	/** 働く環境 **/
	.work-cards{
		display: grid;
		grid-template-columns: 1fr;
		grid-auto-flow: row;
		justify-items: center;
		gap: 20px;
	}

	.work-card{
		width: 200px;
		height: 200px;
	}

	.style-support{
		width: 170px;
		height: 170px;
		grid-column: auto;
		grid-row: auto;
		justify-self: center;
		transform: none;
		position: static;
		margin-top: 24px;
	}

	.style-support:hover{
	transform: translateY(-4px);
	box-shadow:  0 8px 16px rgba(255,255,255,0.2);
	}

	/** 募集業種 **/

	#jobs .slick-list{
		overflow: visible;
	}

	.jobs-cards{
	display: block;
	}

	.jobs-card{
		width: 280px;
		margin: 0 5px;
		transform: none;
	}

	.jobs-cards a:hover{
		transform: none;
	}

	.slick-center .jobs-card{
		transform: scale(1.03);
		transition: 0.3s;
	}

	.slick-slide{
		transform: scale(0.85);
		opacity: 0.4;
		transition: 0.3s ease; 
	}

	.slick-center{
		transform: scale(1.03);
		opacity: 1;
	}

	/** 募集業種 **/

	.team-inner{
		padding: 0 24px;
	}

	.team-cards{
		grid-template-columns: 1fr;
		justify-content: center;
		gap: 24px;
	}

	.team-card{
		width: 320px;
		margin: 0 auto;
	}

	.team-thumb{
		height: 220px;
	}

	/** 求める人材 **/
	.ideal-text{
		font-size: clamp(13px, 3vw, 18px);
		line-height: 1.8;
		margin: 28px 0 24px;
	}

	.ideal-entry{
		display: inline-flex;
		flex-direction: column;
		gap: 8px;
		padding: 14px 22px;
		position: relative;	
		}

	.ideal-entry-sub{
		font-size: 16px;
		line-height: 1.2;
	}

	.ideal-entry-main{
		font-size: 24px;
		line-height: 1;
		letter-spacing: 0.15em;
		position: relative;
		align-self: flex-start;
	}

	.ideal-entry-arrow{
		position: absolute;
		right: 22px;
		bottom: 10px;
	}

	/** フッター **/
	.footer-inner{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.footer-right{
		align-items: flex-end;
		width: 100%;
	}

	}	