@charset "UTF-8";
/* ----------------------------------------------------------------------
会社概要
---------------------------------------------------------------------- */
:root {
  --navy: #1a2e5a;
  --navy-mid: #1e3a6e;
  --navy-light: #2a4a8a;
  --accent: #2563b0;
  --accent-light: #3b7fd4;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --gray-light: #eef0f5;
  --gray: #9aa3b5;
  --gray-dark: #4a5568;
  --text: #2d3748;
  --text-light: #6b7280;
  --border: #e2e8f0;
}

/* Section Common */
.section-title {
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 17px;
  letter-spacing: 0.05em;
}

/* Career Section */
.career-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.career-section .note{color: #f70000;    text-align: center;    margin-bottom: 2rem;}

/* Sub heading with left border */
.sub-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sub-heading::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 24px;
  background: #063681;
  border-radius: 2px;
  flex-shrink: 0;
}

.sub-heading:not(:first-of-type) {
  margin-top: 7rem;
}

/* Table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--border);
  margin-bottom: 4rem;
}

.info-table tr {
  border-bottom: 1px solid var(--border);
}

.info-table th {
  width: 23.5%;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.info-table td {
  padding: 2.7rem 0rem;
  vertical-align: top;
}

/* Button */
.career-section a.button {
  width: 37.3rem;
  margin: 0 auto;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Flow Section */
.flow-section {
  margin-top: 18rem;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  padding-top: 5px;
}

/* Each row: number column + card */
.flow-row {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.flow-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 50%;
  bottom: -50%;
  width: 2px;
  border-left: 2px dashed #b0bed0;
  z-index: 0;
}

/* Left column */
.step-num-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  z-index: 1;
  margin-top: -4rem;
}

/* Top spacer: card margin-top(8px) + half card height — half badge(22px) */
.step-num-col .num-spacer-top {
  height: 8px;
  flex: 1;
}

.step-num-col .num-spacer-bottom {
  flex: 1;
}

/* Dotted line from bottom of badge to bottom of num-col (= bottom of row) */
.flow-row:not(:last-child) .step-num-col .num-spacer-bottom {
  padding-bottom: 120px;
  margin-bottom: -120px;
}

.step-number {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: #063681;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-right: 4rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Card */
.flow-step {
  flex: 1;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #CCC;
  margin-bottom: 4rem;
  padding: 3rem 3rem 3rem 0;
}

.step-body {
  flex: 1;
  padding: 0;
  display: flex;
  align-items: center;
}

.step-title {
  font-size: 2rem;
  font-weight: 700;
  width: 7em;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: center;
  width: 24%;
}

.step-desc {
  font-size: 1.8rem;
  color: #000000;
  flex: 1;
  padding-right: 2rem;
}

.step-image {
  width: 284px;
  flex-shrink: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-image-placeholder {
  width: 284px;
  aspect-ratio: 71/40;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dde3ec;
  overflow: hidden;
}

.step-image svg {
  width: 64px;
  height: 64px;
  opacity: 0.35;
}

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

/* FLOW */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 50%;
  bottom: -50%;
  width: 2px;
  border-left: 2px dashed #b0bed0;
  z-index: 0;
}

.flow-num {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: #063681;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-right: 3.8rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.flow-card {
  padding: 2.5rem 3rem;
  flex: 1;
  border: 1px solid #CCC;;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 18rem 1fr 285px;
  align-items: center;
  overflow: hidden;
  margin-bottom: 4.7rem;
  background: #FFF;
}

.flow-card-label {
  padding: 24px 16px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.flow-card-body p {
  font-size: 1.8rem;
  line-height: 1.85;
}

.flow-card a.button {
  width: 280px;
  height: 50px;
}

/* CTA */
.cta-bg {
  background: url(../images/service_cta_image@2x.webp) no-repeat left bottom/47.5rem 32.7rem, linear-gradient(90deg, #77b7e5 0%, #0076bf 55%, #004da1 100%);
  padding: 5.5rem 11.4rem 6.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 8rem;
  border-radius: 16px;
  display: grid;
  justify-content: flex-end;
}

.page .cta-bg.inner {
  max-width: 1200px;
}

.cta-text {
  width: 52rem;
}

.cta-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.8;
}

.cta-text p {
  color: #FFF;
  line-height: 1.85;
}

.cta-text a.button {
  margin-top: 2.5rem;
  width: 40rem;
}

@media (max-width: 1024px) {
	.section{padding-top:10rem;}
	.section-title{font-size:3.2rem;}
	.intro-columns {	grid-template-columns: 1fr 1fr; align-items:start;}
	.intro-text h2{font-size:2.0rem;}
	.intro-columns{gap:3rem;}
	.use-cases-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.deliverables-grid {
		grid-template-columns: 1fr 1fr; gap:2rem;
	}
	.deliverables-grid .deliverable-card:nth-of-type(3){ grid-area: 2 / 1 / 3 / 3; }
	.flow-card {
		grid-template-columns: 16rem 1fr 1fr;
	}
	.flex-btn .sample-btn {    width: 100%;}
	.page .cta-bg.inner {   padding-right: 3rem;  }
	.cta-text {    width: 50rem;}
}
@media screen and (max-width: 820px){
	  .pricing-layout {    grid-template-columns: 1fr;  }
	.use-cases-grid {        grid-template-columns: repeat(2, 1fr);    }
	.cta-text h2 {	font-size: 1.8rem;}
	.flow-card {  grid-template-columns: 1fr 2fr;   grid-template-rows: 1fr 2fr;   gap: 0 3rem; }
	.flow-card-label{grid-area: 1 / 1 / 2 / 2; padding:0;}
	.flow-card-body{grid-area: 1 / 2 / 3 / 3; padding:0;}
	.flow-card-img{grid-area: 2 / 1 / 3 / 2;}
	.page .cta-bg.inner {  padding-top: 4rem; margin-top:8rem; }
	.cta-text p{font-size:1.4rem;}
	.cta-text {    width: 40rem;}
	.cta-bg{background:url(../images/service_cta_image@2x.webp) no-repeat left bottom/34rem auto, linear-gradient(90deg, #77b7e5 0%, #0076bf 55%, #004da1 100%);
	
}
@media screen and (max-width: 520px){
	.section-title {        font-size: 2.4rem;    }
	.sub-heading{        font-size: 1.8rem;    }
	.info-table th,.info-table td{display:block;}
	.info-table th{width:100%;padding: 2rem 0 1rem 0; text-align:left;}
	.info-table td {	padding: 0 0 2rem 0;}
	.flow-num {    width: 30px;    height: 30px;		min-width: 30px; font-size:1.4rem; margin-right:2rem;}
	.flow-card{display:block; margin-bottom: 3rem;}
	.flow-card-body p {		font-size: 1.4rem;}
	.flow-item:not(:last-child)::after{left:15px;}
	.flow-card-label{font-size:1.8rem;}
	.flow-card a.button{width:100%;}
	.flow-card-img{margin-top:2rem;}
	.career-section a.button{width:100%;}
	.page .cta-bg.inner{display:block; padding: 3rem 3rem 24rem;}
	.cta-text a.button {    width: 100%;    height: 5rem;}
	.cta-text {   width: 100%;    }
	.cta-text h2{line-height:1.5;}
	}
/* タブレット*/
/* スマートフォン *//*# sourceMappingURL=page-recruit.css.map */