@charset "UTF-8";
/*
 * 業種別ページ（page-industry.php）2026.08
 * 角丸は4px以下、ぼかし影は使わない、区切りは1pxの線と背景色の差で出す
 * 角丸と枠線は併用しない（30_ナレッジ/デザイン禁止事項_AIあるある回避.md）
 */

.ind {
  font-size: 15px;
}
.ind-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.ind-br { display: none; }
@media screen and (min-width: 768px) {
  .ind-br { display: inline; }
}

/* ---------- 共通の見出し ---------- */
.ind-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #f29600;
}
.ind-h2 {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.5;
  color: #16243f;
}
.ind-h2 em {
  font-style: normal;
  color: #f29600;
}

.ind-sec {
  padding: 80px 0;
  background: #fff;
}
.ind-sec--alt {
  background: #faf6ef;
}

/* ---------- ヒーロー ---------- */
.ind-hero {
  position: relative;
  padding: 96px 0 80px;
  background: #faf6ef;
  overflow: hidden;
}
.ind-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ind-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(22, 36, 63, .88) 0%, rgba(22, 36, 63, .78) 45%, rgba(22, 36, 63, .45) 100%);
}
.ind-hero .ind-inner {
  position: relative;
  z-index: 2;
}
.ind-hero__en {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  color: #f29600;
}
.ind-hero__h1 {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: #16243f;
}
.ind-hero__title {
  margin-top: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(27px, 4.2vw, 48px);
  line-height: 1.45;
  color: #16243f;
}
.ind-hero__title em {
  font-style: normal;
  color: #f29600;
}
.ind-hero__lead {
  margin-top: 20px;
  max-width: 660px;
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
.ind-hero__btns {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 写真があるときは文字を白に反転させる */
.ind-hero--photo .ind-hero__h1,
.ind-hero--photo .ind-hero__title {
  color: #fff;
}
.ind-hero--photo .ind-hero__lead {
  color: #ececec;
}
.ind-hero--photo .ind-hero__title em {
  color: #ffb547;
}

/* ---------- ボタン ---------- */
.ind-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 15px 28px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: all .2s ease-out;
}
.ind-btn--primary {
  background: #f29600;
  border-color: #f29600;
  color: #fff;
}
.ind-btn--primary:hover {
  background: #d98700;
  border-color: #d98700;
}
.ind-btn--line {
  background: #fff;
  border-color: #fff;
  color: #16243f;
}
.ind-btn--line:hover {
  background: #16243f;
  border-color: #16243f;
  color: #fff;
}
.ind-hero:not(.ind-hero--photo) .ind-btn--line {
  background: transparent;
  border-color: #16243f;
  color: #16243f;
}
.ind-hero:not(.ind-hero--photo) .ind-btn--line:hover {
  background: #16243f;
  color: #fff;
}
.ind-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}
.ind-btn--ghost:hover {
  background: #fff;
  color: #16243f;
}

/* ---------- お悩み ---------- */
.ind-problems {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .ind-problems { grid-template-columns: 1fr 1fr; }
}
.ind-problem {
  position: relative;
  padding: 18px 20px 18px 44px;
  background: #fff;
  border-left: 3px solid #f29600;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
}
.ind-problem::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-right: 2px solid #f29600;
  border-bottom: 2px solid #f29600;
  transform: rotate(-45deg);
}
.ind-problems__note {
  margin-top: 24px;
  font-size: 15px;
  line-height: 2;
  color: #333333;
}

/* ---------- 押さえるところ ---------- */
.ind-insight {
  margin-top: 22px;
  padding: 24px 26px;
  border-left: 3px solid #f29600;
  background: #faf6ef;
  font-size: 15px;
  line-height: 2.1;
  color: #333333;
}

/* ---------- 全幅の帯 ---------- */
.ind-band {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  background: #fff;
}
.ind-band--rev {
  background: #faf6ef;
}
.ind-band__img {
  min-height: 260px;
  background: #efe8e0;
}
.ind-band__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind-band__body {
  padding: 48px 24px;
}
@media screen and (min-width: 900px) {
  .ind-band {
    grid-template-columns: 1fr 1fr;
    min-height: 460px;
  }
  .ind-band__img { min-height: 0; }
  .ind-band--rev .ind-band__img { order: 2; }
  .ind-band--rev .ind-band__body { order: 1; }
  .ind-band__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px clamp(24px, calc((100vw - 1100px) / 2), 200px);
  }
  .ind-band:not(.ind-band--rev) .ind-band__body {
    padding-right: clamp(24px, calc((100vw - 1100px) / 2), 200px);
    padding-left: 56px;
  }
  .ind-band--rev .ind-band__body {
    padding-left: clamp(24px, calc((100vw - 1100px) / 2), 200px);
    padding-right: 56px;
  }
}
.ind-band__no {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #f29600;
}
.ind-band__title {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.5;
  color: #16243f;
}
.ind-band__text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
.ind-band__list {
  margin-top: 22px;
  border-top: 1px solid #e6ded4;
}
.ind-band__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #e6ded4;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}
.ind-band__icon {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: #f29600;
}
.ind-band__list b {
  margin-right: 8px;
  font-weight: 700;
  color: #16243f;
}

/* ---------- ご支援できること ---------- */
.ind-menu {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 700px) {
  .ind-menu { grid-template-columns: 1fr 1fr; }
}
.ind-menu__item {
  padding: 24px;
  background: #fff;
  border-top: 3px solid #f29600;
}
.ind-menu__no {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #f29600;
}
.ind-menu__name {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #16243f;
}
.ind-menu__text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}
.ind-menu__note {
  margin-top: 24px;
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
.ind-menu__note a {
  margin-left: 8px;
  font-weight: 700;
  color: #f29600;
  text-decoration: underline;
}

/* ---------- ご相談の流れ ---------- */
.ind-flow {
  margin-top: 28px;
  border-top: 1px solid #efe8e0;
}
.ind-flow__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 4px;
  border-bottom: 1px solid #efe8e0;
}
.ind-flow__no {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #f29600;
}
.ind-flow__name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #16243f;
}
.ind-flow__text {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}

/* ---------- よくある質問 ---------- */
.ind-faq {
  margin-top: 28px;
  border-top: 1px solid #e6ded4;
}
.ind-faq__item {
  padding: 22px 4px;
  border-bottom: 1px solid #e6ded4;
}
.ind-faq__q {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: #16243f;
}
.ind-faq__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #f29600;
}
.ind-faq__a {
  position: relative;
  margin: 12px 0 0;
  padding-left: 34px;
  font-size: 15px;
  line-height: 2;
  color: #333333;
}
.ind-faq__a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #16243f;
}
.ind-faq__more {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.9;
  color: #333333;
}
.ind-faq__more a {
  font-weight: 700;
  color: #f29600;
  text-decoration: underline;
}

/* ---------- 他の業種 ---------- */
.ind-others {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ind-others li a {
  display: inline-block;
  padding: 12px 20px;
  border: 1px solid #efe8e0;
  background: #faf6ef;
  font-size: 15px;
  font-weight: 700;
  color: #16243f;
  transition: all .2s ease-out;
}
.ind-others li a:hover {
  border-color: #f29600;
  background: #f29600;
  color: #fff;
}

/* ---------- CTA ---------- */
.ind-cta {
  padding: 72px 0;
  background: #16243f;
  color: #fff;
}
.ind-cta__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 2.6vw, 30px);
  line-height: 1.5;
  text-align: center;
}
.ind-cta__text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 2;
  text-align: center;
  color: #dcdcdc;
}
.ind-cta__btns {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 600px) {
  .ind-cta__btns { flex-direction: row; justify-content: center; }
}

@media screen and (max-width: 599px) {
  .ind-sec { padding: 56px 0; }
  .ind-hero { padding: 64px 0 56px; }
  .ind-btn { min-width: 100%; }
  .ind-flow__item { grid-template-columns: 40px 1fr; gap: 14px; }
}

/* ---------- ヒーローを2カラムにしてモックアップを置く（2026.08） ---------- */
.ind-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .ind-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
  }
}
.ind-hero__media {
  min-width: 0;
}
.ind-hero__media--asset {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.ind-hero__media--asset img {
  display: block;
  width: min(100%, 460px);
  max-height: 380px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 18px 26px rgba(22, 36, 63, .18));
}
@media screen and (max-width: 599px) {
  .ind-hero__media--asset {
    min-height: 190px;
  }
  .ind-hero__media--asset img {
    max-height: 240px;
  }
}

/* 2カラムになるぶん、見出しは少し小さくして行数を抑える（2026.08） */
@media screen and (min-width: 1000px) {
  .ind-hero__grid .ind-hero__title {
    font-size: clamp(26px, 3.1vw, 40px);
  }
  .ind-hero__grid .ind-hero__lead {
    max-width: none;
  }
}
