@charset "UTF-8";
#header {background-color: rgba(255,255,255,1);}
#page_header{background-image: url("../img/header_img_pc.webp");aspect-ratio: 21.3 / 10.2;}
#page_header .header_ttl{text-align: left; position: absolute;top: 20%;}
#page_header .header_ttl span{font-size: 1.8em;color: #ffffff;}
#page_header .header_ttl img{height: 60px;}

.section-title {
  position: relative;
	text-align: left;
	color:#ffffff;
	top: 5em;
}

/* 日本語見出し */
.section-title__jp {
  margin: 0;
	font-weight: bold;
  font-size: 2em;
  line-height: 1;
}

/* 英字見出し */
.section-title__en {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  font-size: 5em;
}

/* 左下ライン */
.section-title__en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;          /* ライン長さ */
  height: 4px;           /* ライン太さ */
  background-color: #ffffff;
	width: 42vw; /* 要素の幅を画面いっぱいに */
  margin-left: calc(50% - 50vw); /* 親要素の幅に合わせて左にずらす */
}
.box-item02{width: 48%;display: inline-block;margin:1% 0 1%;height: auto;}

.bg_breadcrumb{position: relative; margin-top: 0px;z-index: 100;}


/* section_02 */
.section_02_01{margin:0 auto;background-image: url("../img/sec_02_bg_01_pc.webp");
	background-repeat: no-repeat;background-size: cover;background-position: top center; position: relative;padding-bottom: 30em;}
.sec02_01_top{padding-top: 10em;}
.title_width {width: 7%;}
.text_width {width: 48%;padding: 4%;box-sizing: border-box;background-color: #cedbec;}
.text_width h3{border-bottom: solid 1px #333;border-top: solid 1px #333;padding: 0.6em 0;font-size: 1.6em;margin-bottom: 0.8em;}
.text_width p{font-size: 0.94em; line-height: 2.2em; padding-bottom: 0.8em; border-bottom: solid 1px #333;}

.section_02_02{margin:0 auto;background-image: url("../img/sec_02_bg_02_pc.webp");
	background-repeat: no-repeat;background-size: cover;background-position: top center; position: relative;padding-bottom: 80em;}
.sec02_02_top{position: absolute; margin-top: -3em;}

.section_02_03{margin:0 auto;background-image: url("../img/sec_02_bg_03_pc.webp");
	background-repeat: no-repeat;background-size: cover;background-position: top center; position: relative;padding-bottom: 50em;}
.sec02_03_top{position: absolute; width: 1000px; margin-top: -3em;}

/* section_03 */
.section_03{background: #e7f4ff;margin-top: 3em;}

.section-heading__inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  justify-items: center;
  text-align: center;
  row-gap: clamp(5px, 3vw, 28px);
}

/* 上のイラスト */
.section-heading__icon {
  width: clamp(60px, 10vw, 120px);
  height: auto;
  display: block;
}

/* タイトル */
.section-heading__title {
  position: relative;
  margin: 0;
  padding-bottom: clamp(8px, 2vw, 18px);
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #2b201b;
  font-size: 2.2em;
}

/* 下の短いライン（疑似要素） */
.section-heading__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);

  width: clamp(50px, 8vw, 70px);
  height: 3px;
  background: #1f4f7d;
}

/* section_04・05 */

.section_04,.section_05{background: #004d85;margin-top: 3em;color: #ffffff;}
/* =========================
   Section base
========================= */
.recruit {
  background: #134f82;
  color: #fff;
  overflow: hidden; /* 右側はみ出し用 */
}

/* 全体はフル幅 */
.recruit__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

/* =========================
   Left text area
========================= */
.recruit__content {
  max-width:500px;
	text-align: left;
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 48px);
  margin-left: auto; /* 左端を1000px内に収める */
}

.recruit__title {
  margin: 0 0 24px;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.06em;
}

.recruit__text {
  margin: 0 0 1.4em;
  line-height: 2;
  font-size: 1.0em;
}

/* =========================
   Right image area
========================= */
.recruit__media {
  position: relative;
}

.recruit__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-width: 100%; /* 右にだけフルブリード */
}

/* =========================
   Mobile
========================= */
@media (max-width: 640px) {
  .recruit__inner {
    grid-template-columns: 1fr;
  }

  .recruit__content {
	   order: 2;
    max-width: none;
    margin-left: 0;
  }

  .recruit__media {
	  order: 1;
    height: 280px;
  }
}

/* =========================
   Reverse layout
========================= */
.recruit--reverse .recruit__inner {
  grid-template-columns: 1fr 1fr;
}

/* 並び順を反転 */
.recruit--reverse .recruit__media {
  order: 1;
}

.recruit--reverse .recruit__content {
  order: 2;
  margin-left: 0;
  margin-right: auto; /* ←右側1000px内に収める */
}

/* =========================
   Mobile（SP）
========================= */
@media (max-width: 640px) {
	.recruit--reverse .recruit__inner {
  grid-template-columns: 1fr;
}
  /* SPは常に 写真 → テキスト */
  .recruit__media {
    order: 1;
  }

  .recruit__content {
    order: 2;
    margin-right: 0;
  }
}


/*
===================================================
 tb タブレット解像度
===================================================
*/
@media screen and (max-width:1200px) {

.recruit__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  min-width: 50%; /* 右にだけフルブリード */

}
	}
/*
===================================================
 sp スマホ解像度
===================================================
*/
@media screen and (max-width:640px) {
#page_header{background-image: url("../img/header_img_sp.webp");aspect-ratio: 16.7 / 11.1;}
.section-title {
  position: relative;
	text-align: left;
	color:#ffffff;
	top: 1em;
	padding-left: 1em;
}

/* 日本語見出し */
.section-title__jp {
  margin: 0;
	font-weight: bold;
  font-size: 1em;
  line-height: 1;
}

/* 英字見出し */
.section-title__en {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  font-size: 2.2em;
}

/* 左下ライン */
.section-title__en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;          /* ライン長さ */
  height: 2px;           /* ライン太さ */
  background-color: #ffffff;
	width: 42vw; /* 要素の幅を画面いっぱいに */
  margin-left: calc(50% - 50vw); /* 親要素の幅に合わせて左にずらす */
}
.section_01 {
        padding-top: 0em;
    }
.flexbox_page{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content:space-between;
  	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;}
.box-item02{width: 100%;display: inline-block;margin:1% 0 3%;height: auto;}	

.section_02_01{background-image:none;position: relative;padding-bottom: 0em;}
.sec02_01_top{padding-top: 0em;width: 100vw; margin: 0 calc(50% - 50vw);}
.text_width {width: 100%;padding: 5%;}
.text_width h3{padding: 0.4em 0;font-size: 1.2em;margin-bottom: 0.8em;}
.text_width p{font-size: 0.84em; line-height: 1.8em; padding-bottom: 0.8em; border-bottom: solid 1px #333;}
.section_02_02{background-image: none;position: relative;padding-bottom: 0em;}
.sec02_02_top{position: relative; margin-top: 0em;width: 100vw; margin: 0 calc(50% - 50vw);}

.section_02_03{background-image: none;position: relative;padding-bottom: 0em;}
.sec02_03_top{position: relative;  margin-top: 0em;width: 100vw; margin: 0 calc(50% - 50vw);}
	
/* section_03 */
.section_03{background: #e7f4ff;margin-top: 2em;}

/* タイトル */
.section-heading__title {
  font-size: 1.8em;
}

}
