@charset "utf-8";

/* ========================================================
   取扱い説明動画ページ 改修用CSS
   このファイルに記述したCSSは、本番環境のテーマ（module.css等）の一番下に追記してください。
======================================================== */

:root {
  --color-olive: #BBBC79;       /* オリーブグリーン統一カラー */
  --color-olive-light: #BBBC79; /* オリーブグリーン統一カラー */
  --color-border: #BBBC79;      /* 枠線の色 */
  --color-text: #333;
}

/* 共通パーツ・装飾 */
.sectionChevron {
  margin: 10px auto;
}
.sectionChevron img {
  width: 30px; 
  height: auto;
}

/* メインビジュアル見出しのドロップシャドウ */
/* .advantageCopyCatch は別途テーマCSSで管理 */

/* ========================================================
   .sectionDetailUtilizationGallery（活用方法セクション）
======================================================== */
.sectionDetailUtilizationGallery {
  padding: 60px 0;
}
.utilizationGallery {
  display: grid !important;
  grid-template-columns: repeat(2, 563.1px);
  gap: 30px 60px;
  justify-content: center;
}
.utilizationGalleryTxt {
  width: 563.1px;
  height: 124.6px;
  padding: 16px 0 0;
  box-sizing: border-box;
  position: relative;
}
.utilizationGalleryTxt::before {

  display: block;
  width: 44.7px;
  margin-bottom: 12px;
}


/* ========================================================
   .sectionIntro
======================================================== */
.sectionIntro {
  padding: 60px 0;
  background-color: var(--color-bg-light);
}
.introWrapper {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.introTextBox {
  width: 45%;
}
/* advantagePhotoBox内に配置した場合のパディングリセット */
.advantagePhotoBox {
  padding: 0 !important;
  overflow: hidden;
}
.introImageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}
.introGridItem {
  position: relative;
  width: 100%;
  aspect-ratio: 281.83 / 216.41;
  overflow: hidden;
}
.introGridItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.introCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(187, 188, 121, 0.8); /* #bbbc79 + 透過80% */
  color: #fff;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75); /* テキストのみにドロップシャドウ */
}

/* ========================================================
   .sectionIndustryTags
======================================================== */
.sectionIndustryTags {
  padding: 60px 0 0;
}
.industryTagList {
  display: grid;
  grid-template-columns: repeat(4, 165.7px);
  justify-content: center;
  gap: 15px;
}
.industryTagList li {
  background-color: #BBBC79;
  color: #fff;
  text-align: center;
  width: 165.7px;
  height: 37.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

/* ========================================================
   .sectionChallenges
======================================================== */
.sectionChallenges {
  padding: 60px 0;
  background-color: var(--color-bg-light);
}
.challengeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 40px;
}
.challengeItem {
  position: relative;
}
/* 列の間に点線を引く */
.challengeItem:not(:nth-child(3n))::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  border-right: 2px solid #808080;
}
.challengeImg {
  text-align: center;
  margin-bottom: 20px;
}
.challengeImg img {
  max-width: 100%;
  width: auto; height: auto; max-width: 100%; max-height: 140px; 
}
.challengeText {
  background-color: #BBBC79;
  color: #fff;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  width: 369.6px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
  margin: 0 auto;
}

/* ========================================================
   .sectionPrice
======================================================== */
.sectionPrice {
  padding: 60px 0;
  background-color: var(--color-bg-light);
}
.priceList {
  width: fit-content;
  margin: 0 auto 30px;
}
.priceItem {
  width: 384.6px;
  padding: 30px 0;
  border-bottom: 2px solid #808080;
  text-align: left;
  box-sizing: border-box;
}
.priceItem:first-child {
  border-top: 2px solid #808080;
}
.priceTitle {
  color: var(--color-olive-light);
}
.priceNote {
  width: 384.6px;
  text-align: left;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ========================================================
   .sectionDetailSolutionDl（課題解決セクション）
======================================================== */
.sectionDetailSolutionDlWrapper {
  max-width: 100%;
}
.solutionItem {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 2px solid #808080;
}
.solutionItem .detailSolutionDd {
  border-bottom: none;
}
.solutionText {
  flex: 1;
}
.solutionImg {
  flex-shrink: 0;
  text-align: right;
}
.solutionImg img {
  width: 364px;
  height: 204.75px;
  object-fit: cover;
  display: block;
}

/* ========================================================
   .sectionFlow
======================================================== */
.sectionFlow {
  padding: 60px 0;
}
.flowGrid {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 36.5px;
}
.flowLine {
  max-width: 800px;
  margin: 0 auto 30px;
}
.flowLine img {
  width: 100%;
  display: block;
}
.flowBox {
  width: calc(100% / 6);
  aspect-ratio: 1; /* 正方形 */
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
}
/* カンプ通りの白黒ボックス */
.flowBlack {
  background-color: #000;
  color: #fff;
}
.flowWhite {
  background-color: #fff;
  color: #000;
}
.flowNum {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: Arial, sans-serif;
}
.flowText {
  text-align: right;
}

/* ========================================================
   レスポンシブ対応（スマホ max-width: 768px）
======================================================== */
@media screen and (max-width: 768px) {

  /* メインビジュアル */
  .introWrapper {
    flex-direction: column;
  }
  .introTextBox,
  .introImageGrid {
    width: 100%;
  }
  .introCatch {
    text-align: center;
  }
  .introCircle {
    width: 75px;
    height: 75px;
  }

  /* 対応業界 */
  .sectionIndustryTags {
    padding-bottom: 0;
  }
  .industryTagList {
    grid-template-columns: repeat(2, 1fr);
  }
  .industryTagList li {
    width: 100%;
  }

  /* こんな課題 */
  .challengeGrid {
    display: block;
    width: 100%;
  }
  .challengeItem {
    width: 100% !important;
    margin-bottom: 30px;
    display: block;
  }
  .challengeItem:not(:nth-child(3n))::after {
    display: none;
  }
  .challengeText {
    width: 90% !important;
    margin: 0 auto !important;
  }

  /* こんな悩み（課題解決） */
  .solutionItem {
    flex-direction: column;
    gap: 20px;
  }
  .solutionImg img {
    width: 100%;
    height: auto;
  }

  /* 活用方法 */
  .utilizationGallery {
    grid-template-columns: 1fr !important;
  }
  .utilizationGalleryTxt {
    width: 100%;
    height: auto;
  }

  /* 料金例 */
  .priceList {
    width: 100%;
  }
  .priceItem {
    width: 100%;
  }
  .priceNote {
    width: 100%;
  }

  /* 制作フロー */
  .flowGrid {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .flowBox {
    width: calc(100% / 3);
    aspect-ratio: auto;
    padding: 20px 10px;
  }
  .flowLine img {
    max-width: 100%;
  }
}

