/* ===== Page Hero ===== */
.page-hero__overlay {
  background-image: url('http://built.sincor.jp/wp-content/uploads/2026/06/about_mv.png');
  /* ← ここに背景画像のURLを入れる */
}

.about-intro {
  padding: 80px 0 68px;
  background: #fff;
}

.about-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;

  position: relative;
}

/* 左：見出し */
.about-intro__left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.about-intro__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 2;
  margin: 0;
}

/* 右：テキスト＋ロゴ */
.about-intro__right {
  flex: 1;
  position: relative;
  z-index: 1;

  /* flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px; */
}

.about-intro__text {
  font-size: 16px;
  color: #333;
  line-height: 2;
  margin: 0;
}

/* ロゴエリア */
.about-intro__logo {
  width: 246px;
  height: 284px;
  /* background: #ccc; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: -15%;
  right: 0;
  z-index: 0;
}

.about-intro__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* レスポンシブ */
@media (max-width: 768px) {

  .about-intro__heading {
    font-size: 22px;
  }

  .about-intro__text {
    font-size: 15px;
  }

  .about-intro__inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-intro__logo {
    /* width: 246px;
    height: 284px; */

    top: 22%;
    right: -12%;
  }
}

/* 流れ */
.about_flow {
  overflow-x: visible;
}

.about_flow>div {
  max-width: 1200px;
  height: auto;
  margin: 0 auto 130px;
  padding: 0 40px;
  overflow-x: scroll;
}

.about_flow>div img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== Features Section ===== */
.features {
  padding: 0 0 100px;
  background: #fff;
}

/* ヘッダーバー */
.features__header {
  padding: 0;
  margin-bottom: 48px;
}

.features__header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  /* background: linear-gradient(to right, #1a4a8a, #3a80c8); */
}

.features__title {
  display: flex;
  height: 100%;
  width: 95%;
  gap: 10px;
  margin: 0;
  padding: 0rem 33px;
  align-items: center;
  border-radius: 35px;
  background: linear-gradient(225deg, var(--color-primary-light) 30%, var(--color-primary-dark) 100%);
}

.features__title-ja {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.features__title-en {
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: 0.15em;
}

/* 右の青い丸 */
.features__header-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  flex-shrink: 0;
}

/* カードエリア */
.features__inner {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 40px; */
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* カード */
.features__card {
  border: 1px solid #dde6f0;
  border-radius: 8px;
  padding: 32px 36px;
  background: #fff;
}

.features__card-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

/* 番号 */
.features__num {
  font-size: 120px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  /* font-family: Georgia, serif; */
}

/* カードタイトル */
.features__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  background: linear-gradient(transparent 60%, var(--color-white) 60%);
  display: inline;
  line-height: 1.6;
}

.features__card {
  border-radius: 20px;
  background: linear-gradient(225deg, rgb(184 234 250 / 30%) 30%, rgba(7, 8, 65, 0.1) 100%) !important;
  border: none !important;
}

.features__card-title {
  font-size: 32px;
  color: var(--color-primary);
}

/* カードテキスト */
.features__card-text {
  font-size: 16px;
  /* color: #444; */
  color: var(--color-text);
  line-height: 1.9;
  margin: 0;
}

.scroll-indicator {
  display: none;
}

/* レスポンシブ */
@media (max-width: 768px) {

  .features {
    /* padding: 0 40px; */
    padding: 0;
  }

  .features::before {
    content: inherit;
  }

  .features__card {
    padding: 24px 20px;
  }

  .features__num {
    font-size: 2.2rem;
  }

  .features__card-title {
    font-size: 0.95rem;
  }

  .features__card-top {
    flex-direction: column;
  }

  .features__num {
    font-size: 100px;
  }

  .features__card-title {
    font-size: 24px;
    background: none;
  }

  .features__inner {
    padding: 0 40px;
  }

  .section-header__title {
    width: 100%;
  }

  .section-header__circle {
    display: none;
  }

  .industries .section-header {
    margin: 0 0 40px;
    text-align: center;
  }
}

/* ===== Industries Section ===== */
.industries {
  position: relative;
  padding: 120px 0 110px;
  /* background: linear-gradient(225deg, rgb(184 234 250 / 30%) 30%, rgba(7, 8, 65, 0.1) 100%); */
  /* border-bottom-right-radius: 300px; */
  overflow: hidden;
}

.industries:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(225deg, rgb(184 234 250 / 30%) 30%, rgba(7, 8, 65, 0.1) 100%);
  border-bottom-right-radius: 300px;
}

@media screen and (min-width: 1025px) {
  .industries {
    margin-right: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .industries {
    border-bottom-right-radius: 150px;
    padding: 68px 20px;
    margin-top: 10rem;
  }

}

@media screen and (max-width: 768px) {
  .industries {}
}


@media (max-width: 1200px) {
  .scroll-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .scroll-indicator__label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .scroll-indicator__line {
    flex: 1;
    height: 1px;
    background: currentColor;
  }

  .scroll-indicator__arrow {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    flex-shrink: 0;
    margin-left: -6px;
  }
}

.about_flow__image-scrollable {
  display: none !important;
}

@media screen and (max-width: 1200px) {
  .about_flow__image-scrollable {
    display: block !important;
  }
}

section.industries::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  section.industries {
    background: linear-gradient(225deg, rgb(184 234 250 / 30%) 30%, rgba(7, 8, 65, 0.1) 100%);
    padding: 68px 20px;
    margin: 0 16px;
    margin-top: 185px;

  }

  section.industries::after {
    content: inherit;
  }
}


/* インナー */
.industries__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .industries__inner {
    padding: 0;
  }
}

/* リード文 */
.industries__lead {
  font-size: 0.88rem;
  color: #333;
  line-height: 2;
  margin: 0 0 40px;
}

/* グリッド */
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* カード */
.industries__card {
  /* background: #fff; */
  /* border-radius: 8px; */
  /* padding: 32px 20px 24px; */
  text-align: center;
}

.industries__icon {
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 260;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  min-width: 200px;
}

.industries__icon img {
  width: 57%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 3 / 2;
}

.industries__card-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.industries__card-sub {
  font-size: 16px;
  /* color: #666; */
  color: var(--color-text);
  margin: 0;
  line-height: 1.7;
}

@media screen and (max-width: 1023px) {
  .industries__card {
    flex-direction: column;
  }
}

/* 右下の白い丸装飾 */
.industries__circle {
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 460px;
  height: 460px;
  background: #fff;
  border-radius: 50%;
  z-index: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .industries__grid {
    grid-template-columns: 1fr;
  }
}