/* ===============================
   タイトル画像
=============================== */
/*タイトル背景画像*/
.title-area{
  
  height:20vh;   /*画面の20% */
  min-height:180px; /*小さくなりすぎ防止*/


  background-image:url("../pic2026/recruit1.png");
  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
  padding-left:10%;

  margin-top:80px;
}

/*タイトルの文字*/
.title-area h1{
  color:#008080;
  font-size:clamp(22px, 5vw, 32px);
  font-family: "Noto Serif JP", serif;
}
.link-text_recruit{
  display:inline-block; /* 文字幅キープ */
  margin-top:0px;
  margin-left:auto;     /* 右寄せ */
  float:right;          /* これで右下配置 */
  color:#008080;
  text-decoration:none;
  font-weight:bold;
  border-bottom:2px solid #69C4D0;
  padding-bottom:2px;
  transition:0.3s;
}

/* 色変わる */
.link-text_recruit:hover{
  color:#F07F0F;
  border-bottom:2px solid #F07F0F;
}
/* ===============================
   スマホ対応タイトル画像
=============================== */

@media (max-width: 1024px){

  /* タイトル画像縮小 */
  .title-area{
    height:13vh;
    min-height:100px;

    background-image:url("../pic2026/recruit2.png"); /* スマホ用画像 */
    background-position:center;/* 中央に */

    justify-content:center;
    padding-left:0;           /* 左余白消す */
    text-align:center;        /* 文字中央 */

  }
}

/* ===============================
   メインコンテンツ
=============================== */
/* メインコンテンツ */
.content{
  flex:1;
  padding:40px;
}

/* タイトル */
h2{
  color:#0D716E;
  font-size:clamp(22px, 5vw, 32px);
  margin:20px 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

/* タイトル内タイトル */
h3{
  color:#5C2408;
  font-size: clamp(18px, 4vw, 26px);
  margin-bottom:10px;
  text-align: center;
}

/* テキスト */
p{
  font-size:clamp(14px, 2.5vw, 18px);
  text-align: center;
}

/* ===============================
   スクロール調整
=============================== */
html{
  scroll-behavior:smooth;
}

h2,h3,.flow-detail-block{
  scroll-margin-top:200px;
}

/* ===============================
   このファイルだけに使用
=============================== */

/* 全体 */
body {
  font-family: sans-serif;
}

.flow-title{
  text-align: center;
  color: #5C2408;
  margin: 0 0 30px;
}

.flow-wrapper{
  border: 3px solid #69C4D0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.flow-detail {
  /*margin: 0;*/
  max-width: 800px;
  margin:30px auto;
}


.flow-area{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	width:100%;
	margin: 0;
	
	padding-bottom: 30px;
  	border-bottom: 1px solid #69C4D0;
  	margin-bottom:30px;

}

.flow-block{
	flex:1;
	min-width:0;
	background:rgba(255, 246, 133, 0.3);/* #FFF685を30%透過 */
	border:4px double #FFF685;/* 二重線 */
	padding:24px 16px;
	text-align:center;
	border-radius:12px;
	
	min-height:180px;
	
	display:flex;
	flex-direction:column;
	justify-content:center;
	padding-left:0;/*修正箇所*/
	padding-right:0;/*修正箇所*/
}

.flow-block h3{
	margin:0 0 12px;
	font-size:20px;
	color: #5C2408;
	
}

.flow-block p{
	margin:0;
	font-size:14px;
	line-height:1.6;
	color: #5C2408;
}

.flow-arrow{
	position:relative;
	width:40px;
	height:2px;
	background:#666;
	flex-shrink:0;
	
}

.flow-arrow::after{
	content:"";
	position:absolute;
	top:50%;
	right:0;
	width:10px;
	height:10px;
	border-top:2px solid #666;
	border-right:2px solid #666;
	transform:translateY(-50%) rotate(45deg);
}

.flow-detail-block {
  margin: 0 auto 40px;
  width:90%;
  max-width:700px;
  border-radius:12px;
  background: rgba(105,196,208,0.3);/* #FFF685を30%透過 */
}

.flow-detail-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
  /*border-left: 4px solid #333;*/
  padding-left: 0;
}

.flow-detail-block p {
  line-height: 1.8;
  text-align:left;
  padding-left:10px;
  padding-right:10px;
  padding-bottom:10px;
}

@media screen and (max-width:1024px){
	.flow-area{
		flex-direction:column;
		align-items:stretch;
	}
	
	.flow-block{
		min-height:auto;
		padding:15px;
	}
	
	.flow-arrow{
		position:relative;
		width:2px;
		height:40px;
		background:#666;
		margin :0 auto;
		flex-shrink:0;
	}
	
	.flow-arrow::after{
		content:"";
		position:absolute;
		top:auto;
		bottom:0;
		right:50%;
		transform:translateX(50%) rotate(135deg);
	}
	
}
