@charset "UTF-8";
/* ----------------------------------------------------------------------
型枠数量積算代行
---------------------------------------------------------------------- */
:root {
  --blue:#1a5fa8;
  --blue-light:#e8f1fb;
  --blue-dark:#0d3d6e;
  --gray-border:#CCC;
  --text:#1e2228;
  --text-sub:#5a6370;
  --white:#fff;
  --radius:8px;
  --radius-lg:12px;
}

/* INTRO */
.intro-columns {
  display: grid;
  grid-template-columns: 56rem 1fr;
  gap: 8rem;
  align-items: center;
}

.intro-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 16px;
}

.intro-text p {
  font-size: 1.8rem;
  line-height: 1.9;
  margin-bottom: 14px;
}

.intro-text .quote {
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 0;
}

.intro-cta {
  text-align: center;
  padding: 8rem 0 0;
}
.intro-cta a.button{
	margin: 0 auto;
    height: 8rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  color: #fff;
  border-radius: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 560px;
  padding: 24px 0;
  justify-content: center;
  background: #063681;
}

/* SECTION */
.section {
  padding: 18.5rem 0 0;
	width:90%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
}

/* USE CASES */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.use-case-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 3.5rem 3rem;
  text-align: center;
}

.use-case-icon {
  margin: 0 auto 3rem;
}

.use-case-card p {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--gray-border);
}

.feature-img {
  width: 20rem;
}

.feature-text {
  width: calc(100% - 24rem);
}

.feature-tag {
  display: inline-block;
  background: #3189e0;
  color: #fff;
  font-size: 1.4rem;
  padding: 0px 13px;
  border-radius: 20px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.feature-card h3 {
  font-size: 2rem;
  font-weight: 700;
}

.feature-card p {
  line-height: 2;
}

/* DELIVERABLES */
.deliverables-intro {
  text-align: center;
  margin-bottom: 1rem;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.deliverable-card {
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 3.8rem 2rem 3rem;
  text-align: center;
}

.deliverable-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.deliverable-card .sub {
  margin-bottom: 10px;
}

.sample-btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 6px 18px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  margin-top: 13px;
  text-align: center;
  line-height: 1.5;
}

.sample-btn.one {
  width: 70%;
}

.sample-btn .sample-ttl {
  font-weight: 600;
}

.sample-btn .sample-file {
  font-size: 1.2rem;
}

.flex-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flex-btn .sample-btn {
  width: 47%;
}

.deliverable-note {
  margin-top: 2rem;
  line-height: 1.8;
}

/* PRICING */
.pricing-layout {
  display: grid;
  grid-template-columns: 29fr 60fr;
  gap: 6rem;
  align-items: stretch;
}

.pricing-table-wrap {
  height: 100%;
}
.pricing-table-wrap h3{
	text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
}
.pricing-table-wrap .unit{
	text-align:right;
}

.pricing-info p {
  line-height: 2;
  margin-bottom: 2rem;
}

.pricing-minrow {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pricing-label {
  font-weight: 800;
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 800;
}

.pricing-amount span {
  font-size: 1.6rem;
  font-weight: bold;
}

.pricing-note-box {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 2.2rem 2.5rem;
}

.pricing-note-box p {
  font-size: 1.4rem;
  color: var(--blue-dark);
  line-height: 2;
  margin: 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  height: 100%;
}

.pricing-table th, .pricing-table td {
  border: 1px solid #c8d4e4;
  padding: 12px 14px;
  text-align: center;
  vertical-align: middle;
  width: 20%;
}

.pricing-table thead th {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}

.pricing-table tbody td.col-floor {
  background: #77b7e5;
  color: #FFF;
  font-weight: 700;
}

.pricing-table tbody td {
  background: var(--white);
  color: var(--text);
}

.pricing-table tbody td.td-zero {
  color: #e60000;
  font-weight: 700;
}

.td-plus {
  color: var(--text);
}

.pricing-table tbody td.td-free {
  color: #fbb03b;
  font-weight: 700;
}

/* 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: var(--blue-dark);
  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 var(--gray-border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 18rem 1fr 285px;
  align-items: center;
  overflow: hidden;
  margin-bottom: 4.7rem;
  background: var(--white);
}

.flow-card-label {
  padding: 24px 16px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  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;
  color: var(--text);
  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 4.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 15rem;
  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: 2rem;
  width: 40rem;
}

/*-----レスポンシブ調整-----*/
@media screen and (max-width: 1440px) {
	.intro-text h2{font-size:2.8rem;}
}
/* タブレット*/
@media (max-width: 1024px) {
	.section-title{font-size:3.2rem;}
	.section{padding-top:10rem;}
	.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 {        padding-top: 8rem;    }
	.section-title {    font-size: 2.4rem;  line-height: 1.5; }
	.intro-columns {    grid-template-columns: 1fr;  }
	.use-cases-grid {   grid-template-columns: 1fr 1fr;  }
	.deliverables-grid {    grid-template-columns: 1fr ;  }
	.feature-card{flex-wrap:wrap;}
	.use-case-icon {    margin: 0 auto 2rem;}
	.use-case-card p {		font-size: 1.4rem;}
	.use-case-card {		padding: 1.5rem 1rem;}
	.feature-img {    width: 100%;    text-align: center;    margin-bottom: 3rem;}
	.feature-text{    width: 100%;}
	.deliverables-intro{text-align:left;}
	.deliverable-card{padding: 2.8rem 2rem 2rem;}
	.deliverables-grid .deliverable-card:nth-of-type(3) {        grid-area: 1;    }
	.deliverable-card .sub {    font-size:1.4rem;}
	.pricing-table th, .pricing-table td{font-size:1.2rem;padding:8px;}
	.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;}
}

}


@media (any-hover: hover){
	.sample-btn:hover{background:#063681;}
}
