@charset "UTF-8";

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




/* 上下に150px  左右に102px*/
#fv,#about,#service,#work,#data,#interview,#recruit,#cta{
padding: 150px 102px 0px 102px;
}

@media screen and (max-width: 767px) {
  #fv,
  #about,
  #service,
  #work,
  #data,
  #interview,
  #recruit,
  #cta {
    padding: 0;
  }
}

/* コンテンツの最大幅設定 */
.section-inner{
max-width: 1236px;
margin: 0 auto;
box-sizing: border-box;
}

.large{
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.medium{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}


/* 全体背景 */
body {
    /*下記のCSSはご自身のデザインに合わせて書き換えてください。*/
    font-size: 20px;
    line-height: 15px;
    color: #473C31;
    font-family: "Zen Maru Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Osaka", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    overflow: hidden;
}


/* header 背景色　#F9F9F9 */
#header{
background-color:#F9F9F9 ;
width: 100%;
padding: 7px 18px;
height: 67px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
top: 0;
z-index: 2;
}

.logo{
width: 162px;
height: 19px;
aspect-ratio: 162/19;
}

.nav_pc_wrap{
display: flex;
justify-content: space-between;
align-items: center;
flex-shrink: 0;
gap: 2rem;
}

#header {
  display: flex;
  align-items: center;
  padding: 0 40px; /* 任意 */
}

.nav_pc_wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px; /* ナビとボタンの間隔 */
}

ul.nav_pc li{
display: inline;
margin-right: 30px;
}
.nav_sp_wrap{
	display: none;
}

.back{
	display: none;
}
/* nav　アニメーション */
/* 私たちについて */
.nav_about_us {
  padding-bottom: 5px;
  position: relative;
}
.nav_about_us::before {
  background: #473C31;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.nav_about_us:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* 事業について */
.nav_service {
  padding-bottom: 5px;
  position: relative;
}
.nav_service::before {
  background: #473C31;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.nav_service:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* 働く環境について */
.nav_work {
  padding-bottom: 5px;
  position: relative;
}
.nav_work::before {
  background: #473C31;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.nav_work:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* 募集職種 */
.nav_recruit {
  padding-bottom: 5px;
  position: relative;
}
.nav_recruit::before {
  background: #473C31;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.nav_recruit:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}


a {
text-decoration: none;
color: #473C31;
}

/* エントリーボタン */

.button_small{
border-radius: 999px;
background: linear-gradient(90deg, #CF959F 9.62%, #B2CFE2 78.85%);
box-shadow: 0 2px 2px 0 #CFC4C4;
display: flex;
width: 185px;
height: 50px;
justify-content: center;
align-items: center;
flex-shrink: 0;
color: #F9F9F9;
font-family: "Zen Maru Gothic";
font-size: 14px;
font-style: normal;
font-weight: 900;
line-height: 15px;
}

.button_small {
transition-duration: .4s;
}
.button_small:hover {
transform: scale(1.1);
}

/*----- スマホ ------*/
@media screen and (max-width: 768px){
#header {
    height: 40px;
    padding: 0;
}

#header h1{
	padding-left: 14px;

}

#header h1 a{
	width: 96px;
	height: 11px;
}

.logo{
    width: 96px;
    height: auto;
    display: block;
}

.nav_pc_wrap{
	display: none;
}

#menu_button{
	display: block;
	width: 34px;
	height: 33px;
	background-color: #473C31;
	border-radius: 3px;
}

.menu_button_inner{
	position: relative;
	display: flex;
	width: 22px;
	height: 16px;
	top: 8px;
	left: 6px;

}

.menu_button_inner span{
	display: block;
	background-color: #fff;
	width: 100%;
	height: 2px;
	position: absolute;

}

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

.menu_button_inner span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

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

.nav_sp_wrap{
	display: none;
    width: 100vw;
    height: 100vh;
    background-color: #F7F5F2;
    position: fixed;
    z-index: 100;
    padding-top: 100px;
}

ul.nav_sp li{
	text-align: center;
    margin-bottom: 60px;
	gap: 40px;
}

ul.nav-sp li a {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #473C31;
    font-weight: bold;
  }

.sp_logo{
width: 242px;
height: 29px;
margin-bottom: 70px;
}

.entry{
border-radius: 999px;
background: linear-gradient(90deg, #CF959F 9.62%, #B2CFE2 78.85%);
box-shadow: 0 2px 2px 0 #CFC4C4;
display: flex;
width: 185px;
height: 50px;
justify-content: center;
align-items: center;
flex-shrink: 0;
color: #F9F9F9;
font-family: "Zen Maru Gothic";
font-size: 14px;
font-style: normal;
font-weight: 900;
line-height: 15px;
position: relative;
left: 92px;
}

}

.large {
text-align: center;
font-family: "Zen Maru Gothic";
font-size: 36px;
font-style: normal;
font-weight: 700;
line-height: 15px;
margin-bottom: 65px;
}

.medium{
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: 54px;
color: #473C31;
text-align: center;
font-family:Zen Maru Gothic;
}

p.small{
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: 30px;
color: #473C31;
font-family:Zen Maru Gothic;
}



/* fv 全体*/
.fv {
width: 1440px;
height: 850px;

/* 神田 */
position: relative;
}

/* 背景ぼかし */
.fv{
position: relative;

}

/* ぼかし用レイヤー */
.fv::before {
content: "";
position: absolute;
inset: 0;

background:
radial-gradient(
circle at 90% 10%,
#F8E9D2,
transparent 30%
),
radial-gradient(
circle at 10% 90%,
#FAEBEC,
transparent 40%
);

  filter: blur(80px);
  z-index: 0;
}



/* fv　キーメッセージまとめ */
.fv-message{
display: flex;
width: 463px;
height: 207px;
flex-direction: column;
justify-content: space-between;
align-items: center;
}

/* 世界を優しさで包む */
.fv-inner {
height: 46px;
flex-shrink: 0;
align-self: stretch;
font-family: "Zen Maru Gothic";
font-size: 42px;
font-style: normal;
font-weight: 700;
line-height: 55px;
}

/* Recruit site,logo */
.fv-title {
display: flex;
width: 343px;
flex-direction: column;
align-items: center;
gap: 15px;
}

/* Recruit Site文字 */
.fv-sub {
color: #473C31;
font-family: "Zen Maru Gothic", sans-serif;
font-size: 32px;
font-weight: 700;
line-height: 1.3;
margin: 0;
}

/* ロゴ */
.fv-logo {
width: 343px;
height: auto;
display: block;
}

/* keymessage */
.fv-message{
position: relative;
top: 160px;
right: 866px;
bottom: 483px;
left: 92px;
}

/* 画像エリア */

.fv-image-center{
width: 680px;
height: 570px;
position: absolute;
left: 555px;
right: 193px;
top: 70px;
bottom: 193px;
}

/* 神田 */
.fv-image-center img{
	width: 100%;
}

.fv-image-left{
width: 350px;
height: 290px;
position: absolute;
left: 62px;
right: 995px;
top: 450px;
bottom: 34px;
}

.fv-image-left img{
	width: 100%;
}

.fv-image-right {
position: absolute;
left: 1150px;
right: -100px;
top: 400px;
bottom: 16px;
height: 250px;
width: 300px;
}



.fv-image-right img{
width: 100%;
}

/* scroll down */
.scroll-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #473C31;
    font-family: Zen Maru Gothic;
    text-align: center;
    position: relative;
    top: 290px;
}



/* 画像ふわふわ */

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.float {
  animation: float 6s ease-in-out infinite;
}
.float.slow { animation-duration: 8s; }
.float.fast { animation-duration: 5s; }



/* ========== FV（SP） ========== */
@media screen and (max-width: 768px){
.fv{
  position: relative;
  width: 100vw;
  height: 100vh;           /* まず画面いっぱい */
  min-height: 640px;       /* 文字が潰れない保険 */
  background: #F7F5F2;     /* カンプの薄いベージュ系 */
}

/* テキストブロック（中央寄せ） */
.fv-message{
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  left: -42px;
  top: 95px;
}

/* キャッチ */
.fv-catch{
  font-size: 27px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: #473C31;
}

/* Recruit Site + ロゴ */
.fv-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fv-sub{
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #473C31;
}

.fv-logo{
  width: 220px;       /* ここでサイズ調整 */
  height: auto;
  display: block;
}

/* ========== 画像3点（絶対配置） ========== */
.fv-image-center{
  position: absolute;
  z-index:2;
}

/* 中央の丸写真 */
.fv-image-center{
  top: 70px;                 /* ここで上下調整 */
  left: 240px;
  transform: translateX(-50%);
	width: 367px;
	height: 308px;
}

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

/* 左の丸画像 */
.fv-image-left{
display: none;
}

.fv-image-left img{
display: none;
}

/* 右の丸画像 */
.fv-image-right{
display: none;
}

.fv-image-right img{
display: none;
}

/* SCROLL DOWN */
.scroll-text{
  position: relative;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #473C31;
}

.large{
font-family: "Zen Maru Gothic";
font-size: 27px;
font-style: normal;
font-weight: 700;
line-height: 31px;
margin-bottom: 19px;
}

.medium{
font-family: "Zen Maru Gothic";
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 20px;
}

.small{
	font-family: "Zen Maru Gothic";
	font-size: 10px;
font-style: normal;
font-weight: 500;
line-height: 20px;
}
}

/* about section */
.about{
max-width: 1440px;
margin: 0 auto;
box-sizing: border-box;
}

/* Figmaの青い範囲（1440に対する余白）をセクション側に持たせる */
.section{
width: 100%;
}

/* 中身の最大幅：Figmaの “中身1236”  */
.section-inner{
max-width: 1236px;
margin: 0 auto;
box-sizing: border-box;
align-items: center;
}

.flex-inner{
	display: flex;
	flex-direction: row-reverse;
}



/* 文章側 */
.about-content{
flex: 1;
display: flex;
flex-direction: column;
gap: 30px;
}


.about-heading{
margin: 0;
color: #473C31;
font-family: "Zen Maru Gothic", sans-serif;
font-size: 25px;
font-weight: 700;
margin-bottom: 2rem;
}

.about-text{
margin: 0;
color: #473C31;
font-family: "Zen Maru Gothic", sans-serif;
font-size: 20px;
font-weight: 500;
line-height: 42px;
margin-bottom: 2rem;
}

.about-buttons{
display: flex;
gap: 33px;
}

.about-button{
width: 288px;
height: 82px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
border-radius: 999px;
box-shadow: 0 2px 2px #DCD9D4;

color: #473C31;
text-decoration: none;
font-family: "Zen Maru Gothic", sans-serif;
font-size: 20px;
font-weight: 500;
}

.about-button:hover{
background: #60564D;
color: #fff;
}

.about-text{
margin-bottom: 65px;
}

/* about image */
.flex-inner{
display: flex;
gap: 83px;
align-items: flex-start;
}

.about-img{
width: 407px;
height: 328px;
flex-shrink: 0;
}

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



/* -----------スマホ------- */
@media screen and (max-width: 768px){
.section-inner {
	display: block;
	padding: 72px 40px;
	top: 135px;
}

.about{
    position: relative;
    top: 170px;
  }

.about-heading{
color:#473C31;
font-family: "Zen Maru Gothic";
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: 20px;
text-align: center;
z-index: 1;
}

.about-text{
	color: var(--, #473C31);
font-family: "Zen Maru Gothic";
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 1.6;
width: 100%;
position: relative;
}

.about-img{
width: 243px;
height: 196px;
position: relative;
top: -490px;
left: 60px;
}

@media screen and (max-width: 768px){
  #about{
    padding: 72px 40px;   /* カンプの外側余白に寄せるなら */
  }

  #about h2.large{
    margin: 0 0 19px;     /* 見出し下だけ残す */
    text-align: center;
  }
}

.about-buttons{
	display: block;
	margin-bottom: 19px;

}

.about-button{
	width: 295px;
	height: 50px;
	margin-bottom: 19px;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 15px;
	position: relative;
	left: 30px;
}
}





/* 私たちについて ぼかし　*/
#about{
  position: relative;
}
#about > *{
  position: relative;
  z-index: 1;
}

#about::before{
  content:"";
  position:absolute;
  top: 75%;
  left: 9%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    #F1E6F3,
    transparent 70%
  );
  filter: blur(80px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

#about::after{
  content:"";
  position:absolute;
  top: 45%;
  left: 90%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    #DFF1E6,
    transparent 70%
  );
  filter: blur(80px);
  transform: translate(-50%, -50%);
  z-index: 0;
}






/* service section */

.col-3{
display: flex;
align-items: center;
gap: 50px;
}
/* ひっくり返す“枠”＝3Dの視点 */
.card-flip{
width: 100%;
aspect-ratio: 1 / 1;     /* 正方形にしたいなら。必要なければ消してOK */
perspective: 1000px;
}

/* 回転する本体 */
.card-flip__inner{
position: relative;
width: 100%;
height: 100%;
transition: transform .6s;
transform-style: preserve-3d;
}


/* hoverしたら180度回転 */
.card-flip:hover .card-flip__inner{
transform: rotateY(180deg);
}

/* 表裏 共通 */
.card-flip__front,
.card-flip__back{
position: absolute;
inset: 0;
backface-visibility: hidden;  /* 裏面を見せない */
border-radius: 24px;
overflow: hidden;
display: grid;
place-items: center;
padding: 24px;
box-sizing: border-box;
border-radius: 30px;
align-content: space-around;
justify-content: center;
}


.card-flip__front img{
width: 100%;
height:auto;
object-fit: cover;
display: block;
border-radius: 18px;
background: #fff;
}

/* 裏（180度回しておく） */
.card-flip__back{
transform: rotateY(180deg);
border-radius: 18px;
}

.card-flip__inner{
display: flex;
width: 365px;
height: 464px;
padding: 34px 22px;
flex-direction: column;
align-items: center;
gap: 40px;
}

.card_pink .card-flip__front,
.card_pink .card-flip__back{
background-color: #FFD9E080;
border-radius: 18px;
}

.card_blue .card-flip__front,
.card_blue .card-flip__back{
background-color: #CAE8FC80;
border-radius: 18px;
}

.card_yellow .card-flip__front,
.card_yellow .card-flip__back{
background-color: #FFEBBB80;
border-radius: 18px;
}


/* 事業について　ぼかし */
#service{
  position: relative;
}
#service > *{
  position: relative;
  z-index: 1;
}

.service-text{
	font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 42px;
margin-bottom: 65px;
position: relative;
left: -13px;
}

#service::before{
  content:"";
  position:absolute;
  top: 100%;
  left: 95%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    #EBF2F6,
    transparent 70%
  );
  filter: blur(0px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.read-more {
  display: none;
}


/* -------スマホ-------- */

@media screen and (max-width: 768px){
	.col-3{
		display: block;
	}

	.card-flip{
		margin-bottom: 22px;
		left: -8px;
		position: relative;
	}

	.service-text{
		font-family: "Zen Maru Gothic";
		font-size: 14px;
		font-style: normal;
		font-weight: 500;
		line-height: 31px;
	}

	#service{
		width: 100%;
	}

	#service .section-inner{
    max-width: none;
    padding: 72px 0;
	position: relative;
	left: 14px;
  }

  .service h2.large,
  .service .service-text{
    padding: 0 40px;
  }

  #service::before{
	display: none;
  }

   .read-more {
    display: inline-block;
    font-size: 12px;
	color: #473C31;
  }

   .back{
	display: inline-block;
    font-size: 15px;
	color: #473C31;
	position: relative;
	bottom: -350px;
   }

   .read-more::after {
  content: "▶︎";
  position: absolute;
  right: 137px;
  top: 89%;
  transform: translateY(-50%);
  font-size: 7px;
  color: #473C31;
}
}




/* work section */
.work_text{
margin-bottom: 45px;
font-size: 20px;
}

.work_type{
display: flex;
align-items: center;
align-items: center;
gap: 50px;
text-align: center;
}

.work_type img{
width: 100%;
margin-bottom: 2rem;
}

.flextime{
font-size: 30px;
}

.daycare{
font-size: 30px;
}

.remote{
font-size: 30px;
}

/* 働く環境　ぼかし */
#work{
  position: relative;
}
#work > *{
  position: relative;
  z-index: 1;
}

#work::before{
  content:"";
  position:absolute;
  top: 90%;
  left: 8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    #EEE5DD,
    transparent 70%
  );
  filter: blur(0px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

#work::after{
  content:"";
  position:absolute;
  top: 105%;
  left: 90%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    #F7F2E6,
    transparent 70%
  );
  filter: blur(0px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* ------スマホ--------- */
@media screen and (max-width: 768px){
.work_type{
		display: block;
	}

	 .work_type{
    position: static;   /* ← relative を解除 */
    margin-bottom: 22px;
  }

	.work_text{
		font-family: "Zen Maru Gothic";
		font-size: 14px;
		font-style: normal;
		font-weight: 500;
		line-height: 31px;
	}

	 #work .section-inner{
    width: 100%;
    max-width: none;
    padding: 72px 40px;
    box-sizing: border-box;
  }

  #work h2.large{
    width: 100%;
    white-space: normal;
    word-break: keep-all;
    text-align: center;
  }

.medium .work_text{
	display: inline;
}

.work_type img{
width: 197px;
height: 197px;
margin-bottom: 15px;
}

.flextime{
	margin-bottom: 22px;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
}

.daycare{
	margin-bottom: 22px;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
}

.remote{
	margin-bottom: 22px;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 20px;
}

}


/* data section */
/* 見出し */

.data_head{
  position: relative;
  padding-left: 18px;
  padding-bottom: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.4;
  color: #473C31;
}

/* 左の「・」（ドット） */
.data_head::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.60em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #473C31;
  transform: translateY(-50%);
}

/* 下のグレー線 */
.data_head::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 1.6em;
  height: 2px;
  background: #473C31;
}

.data_head{
  font-family: "Zen Maru Gothic";
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  color: #473C31;
  margin: 0;
}

/* ul共通：ここでGrid */
.data_list{
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

/* 3カラム / 2カラム */
.data_list--3{
  grid-template-columns: repeat(3, 1fr);
}

.data_list--2{
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

/* カード共通 */
.data_list_item{
  border-radius: 20px;
  padding: 20px 24px;
  display: grid;
  gap: 14px;
  background: transparent;
}

/* 色は個別に */
.data_pink   { background: #FBE7E9; }
.data_blue   { background: #E0EEF7; }
.data_yellow { background: #F7EFD7; }
.data_orange { background: #FBE2BD80; }
.data_purple { background: #EFD6EF80; }

/* 中身レイアウト */
.data_body{
  display: grid;
  justify-items: center;
  gap: 10px;
}

.data_row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.data_split{
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
}

.data_person{
  display: grid;
  justify-items: center;
  gap: 8px;
}

.data_icon{
  width: 75px;
  height: auto;
  display: block;
  margin-top:25px;
}

.data_value{
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.data_num{
  font-family: "Apple LiGothic";
  font-size: 85px;
  font-weight: 400;
  line-height: 1;
  color: #473C31;
}

.data_unit{
  font-size: 18px;
  color: #473C31;
}

.data_note{
  margin: 0;
  font-size: 14px;
  color: #473C31;
}

.data_small{
  margin: 0;
  font-size: 14px;
  color: #473C31;
}

.data_num_sm{
  font-family: "Apple LiGothic";
  font-size: 85px;
  font-weight: 400;
  line-height: 1;
  color: #473C31;
}

/* 画面が狭い時の崩れ防止 */
@media (max-width: 1024px){
  .data_list--3{ grid-template-columns: 1fr; }
  .data_list--2{ grid-template-columns: 1fr; }
}

@media screen and (max-width: 768px){
	.data_list{
		width: 100%;
	}

	.data_head{
		font-size: 15px;
		font-style: normal;
		font-weight: 500;
		line-height: 15px;
	}

	.data_head::before{
		width: 6px;
		height: 6px;
	}

	.data_head::after{
		stroke-width: 2px;
		stroke: var(--, #473C31);
	}

	.data_pink{
	width: 335px;
	position: relative;
	left: 9px;
	}

	.data_blue{
	width: 335px;
	position: relative;
	left: 9px;
	}

	.data_yellow{
	width: 335px;
	position: relative;
	left: 9px;
	}

	.data_orange{
	width: 335px;
	height: 227px;
	position: relative;
	left: 9px;
	}

	.data_purple{
	width: 335px;
	position: relative;
	left: 9px;
	}

	.data_person{
		text-align: center;
	}
}


/* interview */
.interview_col3{
	display: flex;
	width: 915px;
	height: 507px;
	margin-bottom: 45px;
}

.interview_button_wrap{
	display: flex;
	justify-content: center;
	width: 100%;
}

.interview_button{
	display:inline-flex;
	width: 288px;
	height: 82px;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 2px 2px #DCD9D4;
	color: #473C31;
	text-decoration: none;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 20px;
	font-weight: 500;
	margin-top: 22px;
}

.interview_button:hover{
background: #60564D;
color: #fff;
}

.interview-swiper {
  width: 100%;
  margin-top: 40px;
}

.interview-swiper .swiper-slide {
  text-align: center;
}

.interview-swiper img {
  width: 100%;
  border-radius: 16px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  color: #4A4A4A;
}

/* -------スマホ-------- */
@media screen and (max-width: 768px){
.interview_button{
	width: 295px;
	height: 50px;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 15px;
}
}

/* recruit section */

.recruit_medium{
color: #473C31;
font-family: "Zen Maru Gothic", sans-serif;
font-size: 30px;
font-weight: 500;
line-height: 1.2;
text-align: left;
}

.recruit{
	border-radius: 10px;
	margin-bottom: 20px;
	background-color: #fff;
}

.recruit_head, .recruit_body{
	border-radius: 10px;
	padding: 20px 30px;
}

.recruit_head{
	position: relative;
}

.recruit_head::after{
	content: "";
	display: block;
	background-size: contain;
	width: 14px;
	height: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 22px;
}

.recruit_body img{
width: 100%
}

/* 募集職種　ぼかし */
#recruit{
  position: relative;
}
#recruit > *{
  position: relative;
  z-index: 1;
}

#recruit::before{
  content:"";
  position:absolute;
  top: 4%;
  left: 1%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    #F1E6F3,
    transparent 70%
  );
  filter: blur(0px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

#recruit::after{
  content:"";
  position:absolute;
  top: 90%;
  left: 90%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
    #F8E9D2,
    transparent 70%
  );
  filter: blur(0px);
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* スマホ */
@media screen and (max-width: 768px){
	#recruit::before{
	display: none;
	}
}

/* アコーディオン */
.acc {
  background: #fff;
  border-radius: 20px;
  overflow: hidden; /* 中身のはみ出し防止 */
  margin-bottom: 15px;
}

.acc__summary {
  list-style: none; /* “詳細”の見た目系を消す */
  cursor: pointer;
  padding: 28px 22px;
  position: relative;
  font-weight: 500;
  font-size: 30px;
}

/* Chrome/Safariでデフォルト三角を消す */
.acc__summary::-webkit-details-marker {
  display: none;
}

/* 右側に三角（▼）を自作 */
.acc__summary::after {
  content: "▼";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

/* 開いたら向きを変える */
.acc[open] .acc__summary::after {
  content: "▲";
}

.acc__body {
  padding: 0 24px 24px;
}

.acc__img {
  display: block;
  width: 100%;
  height: auto;      /* 比率を保つ */
  max-width: 100%;   /* 親からはみ出さない */
}


/* --------スマホ------- */
@media screen and (max-width: 768px){
.acc{
	border-radius: 0%;
	width: 350px;
}
.acc__summary{
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 15px;
	padding: 16px;
	}

.acc__summary::after {
  font-size: 9px;

}
}


/* cta */
#cta{
width: 100vw;
height: 567px;
background-image: url(../../images/footer.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
left: -104px;
}

#cta .background-image{
	width: 100%;
}


.button_large{
width: 288px;
height: 82px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(90deg, #CF959F 9.62%, #B2CFE2 78.85%);
box-shadow: 0 2px 2px 0 #CFC4C4;
border-radius: 999px;

color: #fff;
text-decoration: none;
font-family: "Zen Maru Gothic", sans-serif;
font-size: 20px;
font-weight: 500;
}

.button_large{
position: relative;
top: 240px;
left: 465px;
}

.button_large {
transition-duration: .4s;
}
.button_large:hover {
transform: scale(1.1);
}

/* --------footer---------- */
@media screen and (max-width: 768px){
#cta{
width: 100vw;
height: 567px;
background-image: url(../../images/sp_footer.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
top: 100px;
left: 0;
}

.button_large{
	position: relative;
	left: 30px;
	top: 195px;
	width: 295px;
	height: 50px;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: 15px;
}
}

/* footer section */

#footer{
text-align: center;
padding: 50px;
margin-top: 30px;
}

.footer_link, .copyright{
font-size: 20px;
}

.footer_link{
margin-bottom: 50px;
}

.footer_link li{
display: inline;
margin-right: 20px;
}

.copyright{
display: inline;
margin-right: 20px;
}

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

#footer{
	text-align: left;
	top: 50px;
}

.footer_link{
display: flex;
width: 296px;
flex-direction: column;
align-items: flex-start;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 31px;
}

.copyright{
	font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 31px;
}
}

/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/
.pc_only{
display: block;
}



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


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
.sp_only{
display: none;
}

@media screen and (max-width: 640px){
.section-inner{
padding: 72px 15px;
max-width: 550px;
}
.pc_only{
display: none;
}

.sp_only{
display: block;
}
#concept, #system, #plan, #faq, #access {
    padding: 72px 0 15px 0;
}
}



