@charset "UTF-8";
/* ------------------------------------------------------------
// Business
------------------------------------------------------------ */
.content-ttl-img {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 300px;
  background: url(../images/business/content-ttl-img.png) no-repeat center center/cover;
}
.content-ttl-img .content-ttl-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 60%;
  min-width: 260px;
  height: 100%;
  padding-left: 20px;
  background: rgba(143, 85, 159, 0.9);
}
.content-ttl-img .content-ttl-box .en {
  font-size: 60px;
  font-weight: 900;
  color: #ffffff;
}
.content-ttl-img .content-ttl-box .jp {
  font-size: 16px;
  font-weight: 500;
  color: #cccccc;
  margin-left: 0.5em;
}
@media print, screen and (max-width: 767px) {
  .content-ttl-img {
    width: 100%;
    height: 150px;
  }
  .content-ttl-img .content-ttl-box .en {
    font-size: 50px;
  }
  .content-ttl-img .content-ttl-box .jp {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .content-ttl-img .content-ttl-box .en {
    font-size: 38px;
  }
}

.content-ttl-img .content-ttl-box {
  position: relative;
  padding-right: 40px;
  background: rgba(143, 85, 159, 0.9);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* ========== FLOW (縦積みフロー＆矢印ボックス) ========== */
.flow {
  max-width: 1100px;
  margin: 0 auto;
}

/* 各ステップボックス */
.flow .flow-step {
  position: relative;
  z-index: 1;
  border: 3px solid #6f2ea7; /* 太めの枠線 */
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  padding: 24px;
  display: grid;
  grid-template-columns: 140px 320px 1fr; /* STEP / 画像 / 本文 */
  gap: 20px 28px;
}

/* STEPサイド（常に縦積み） */
.flow .flow-step .flow-step-side {
  display: flex;
  flex-direction: column; /* 縦積み固定（レスポンシブでも維持） */
  align-items: center;
  justify-content: center;
  color: #6f2ea7;
}

.flow .flow-step .flow-step-side .flow-step-label {
  font: 700 22px/1 "Segoe UI", system-ui, -apple-system, sans-serif;
  letter-spacing: 0.12em;
}

.flow .flow-step .flow-step-side .flow-step-num {
  margin-top: 6px;
  font: 900 56px/1 "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* 画像 */
.flow .flow-step .flow-step-media {
  align-self: center;
  aspect-ratio: 4/3;
}

.flow .flow-step .flow-step-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* 本文 */
.flow .flow-step .flow-step-body {
  align-self: center;
}

.flow .flow-step .flow-step-body .flow-step-title {
  margin: 0 0 10px;
  font: 700 28px/1.3 "Noto Sans JP", system-ui, -apple-system, sans-serif;
  color: #222;
  position: relative;
  padding-bottom: 10px;
}

.flow .flow-step .flow-step-body .flow-step-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 3px dotted #9b7db3; /* タイトル下ドット線 */
  opacity: 0.9;
}

.flow .flow-step .flow-step-body .flow-step-text {
  margin: 0;
  color: #333;
  line-height: 1.9;
  font-size: 15px;
}

.flow-arrow {
  font-size: 40px;
  color: #cccccc;
  text-align: center;
  padding-bottom: 10px;
}

/* ---------- レスポンシブ ---------- */
/* 中幅：画像と本文を2段、STEP幅は固定で広がらない */
@media print, screen and (max-width: 960px) {
  .flow .flow-step {
    grid-template-columns: 120px 1fr;
    grid-template-areas: "side media" "side body";
  }
  .flow .flow-step .flow-step-side {
    grid-area: side;
  }
  .flow .flow-step .flow-step-media {
    grid-area: media;
  }
  .flow .flow-step .flow-step-body {
    grid-area: body;
  }
}
/* スマホ：縦一列。ただしSTEPは縦積みのまま＆横幅を広げない */
@media print, screen and (max-width: 640px) {
  .flow .flow-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }
  .flow .flow-step .flow-step-side {
    display: inline-flex; /* 自身の必要幅だけ確保 */
    width: auto;
    align-self: flex-start; /* 左上に配置 */
    flex-direction: column; /* 縦積み維持 */
    align-items: center;
    justify-content: center;
  }
  .flow .flow-step .flow-step-side .flow-step-label {
    font-size: 18px;
  }
  .flow .flow-step .flow-step-side .flow-step-num {
    font-size: 42px;
  }
  .flow .flow-step .flow-step-body .flow-step-title {
    font-size: 22px;
  }
  .flow .flow-step .flow-step-body .flow-step-text {
    font-size: 14px;
    line-height: 1.8;
  }
}
.business-content-box {
  position: relative;
  padding: 100px 50px;
  border-radius: 20px;
  background: url(../images/business/img-1.png) no-repeat center center/cover;
  z-index: -2;
}
.business-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/business/mask.png);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 2px 2px;
  border-radius: 20px;
  z-index: -1;
}
.business-content-box .box {
  width: 50%;
}
.business-content-box .ttl .txt-jp {
  font-size: 60px;
  color: #ffffff;
  line-height: 1.4;
}
.business-content-box .ttl .txt-en {
  color: #cccccc;
}
.business-content-box .ttl .line {
  height: 2px;
  margin: 20px 0 40px;
  background-image: linear-gradient(to right, #753587 0%, #8f559f 100%);
  transform: skew(-15deg);
}
.business-content-box p {
  color: #ffffff;
  line-height: 2;
  margin-right: 20px;
}
@media print, screen and (max-width: 991px) {
  .business-content-box .box {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .business-content-box {
    padding: 40px 20px;
    border-radius: 10px;
  }
  .business-content-box .box {
    width: 60%;
  }
  .business-content-box .ttl .txt-jp {
    font-size: 32px;
  }
  .business-content-box .ttl .txt-en {
    font-size: 14px;
  }
  .business-content-box p {
    line-height: 1.6;
  }
}
@media screen and (max-width: 575px) {
  .business-content-box .box {
    width: 100%;
  }
  .business-content-box p {
    margin-right: 0;
  }
}