/* =========================================================
   APPROACH  — 制作の進め方
   既存の 00_default_setting.css（Shippori Mincho / #4d4946）を土台に、
   このページ固有の余白と段組みだけを定義する。
   ========================================================= */

.approach{
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 0;
  box-sizing: border-box;
}

/* ---- 見出し ---- */
.approach-title{
  text-align: center;
  margin-bottom: 96px;
}
/* Works / About の page-title と同じ: 英字 40px、日本語 12px */
.approach-title h5{
  font-size: 40px;
  font-weight: normal;
  letter-spacing: 1px;
  margin: 5px;
}
.approach-title h6{
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
  margin: 0;
}

/* ---- 冒頭の一文（理念） ---- */
.approach-statement{
  text-align: center;
  margin-bottom: 140px;
}
.approach-statement p{
  font-size: 18px;            /* About の本文と同じ */
  line-height: 2.2;
  letter-spacing: 1px;
  margin: 0 0 28px;
}
.approach-statement p:last-child{
  margin-bottom: 0;
}

/* ---- 四つの段 ---- */
.approach-steps{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e3e1de;
}
.approach-step{
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 48px 0;
  border-bottom: 1px solid #e3e1de;
}
.step-figure{
  flex: 0 0 132px;
  margin: 0 0 0 -8px;
}
.step-figure canvas.silq-wire{
  display: block;
  width: 132px;
  height: 132px;
  cursor: pointer;
}
.step-num{
  flex: 0 0 56px;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: #a19d99;
  padding-top: 6px;
}
.step-body{
  flex: 1 1 auto;
  min-width: 0;
}
.step-body h3{
  font-size: 22px;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}
.step-sub{
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #8a8683;
  margin-left: 4px;
}
.step-body p{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
  margin: 0;
}

/* ---- 注記 ---- */
.approach-note{
  font-size: 13px;
  line-height: 2;
  color: #8a8683;
  text-align: center;
  margin: 48px 0 0;
}

/* ---- 区切り線・問い合わせ（price-flow.css から必要分のみ） ---- */
.approach .border-line{
  width: 100%;
  margin-top: 120px;
  margin-bottom: 96px;
}
.contact-area{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 140px;
}
.contact-area p{
  text-align: center;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}
a.btn{
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
a.btn-flat{
  overflow: hidden;
  padding: 18px 56px;
  color: #fff;
  background: #ceccc9;
}
a.btn-flat span{ position: relative; }
a.btn-flat:before{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  content: '';
  transition: transform .5s ease-in-out;
  transform: translateX(-100%);
  background: #bab8b6;
}
a.btn-flat:hover:before{ transform: translateX(0); }

/* ---- ゆっくり現れる（画を邪魔しない程度） ---- */
.fade_left{
  transform: translateX(0);      /* 既存の横ずれは使わない */
  transform: translateY(12px);
  opacity: 0;
  transition: opacity .9s ease, transform .9s ease;
}
.fade_left.on{
  opacity: 1;
  transform: translateY(0);
}
.no-js .fade_left{ opacity: 1; transform: none; }

/* ---- 改行制御 ---- */
.br-sp{ display: none; }

/* ---- モバイル ---- */
@media screen and (max-width: 1024px){
  .approach{ padding: 72px 20px 0; }
  .approach-title{ margin-bottom: 64px; }
  .approach-title h5{ font-size: 25px; }
  .approach-statement{ margin-bottom: 96px; }
  .approach-statement p{ font-size: 16px; line-height: 2; }
  .br-sp{ display: inline; }
  .approach-step{ gap: 14px; padding: 36px 0; flex-wrap: wrap; }
  .step-figure{ flex-basis: 84px; margin: 0; }
  .step-figure canvas.silq-wire{ width: 84px; height: 84px; }
  .step-num{ flex-basis: 36px; font-size: 13px; padding-top: 4px; }
  .step-body h3{ font-size: 19px; margin-bottom: 12px; }
  .step-body p{ font-size: 15px; line-height: 2; }
  .approach .border-line{ margin-top: 80px; margin-bottom: 64px; }
  .contact-area{ padding-bottom: 96px; }
  a.btn-flat{ padding: 16px 40px; }
}

/* ---- 冒頭・二段目（制作の方法について） ---- */
.approach-statement .statement-sub{
  font-size: 15px;
  line-height: 2.2;
  color: #6f6b67;
  margin-top: 40px;
}
@media screen and (max-width: 1024px){
  .approach-statement .statement-sub{ font-size: 14px; margin-top: 32px; }
}

/* ---- 線の色（わずかに暖かい灰） ---- */
.approach-steps,
.approach-step,
.about-section{ border-color: #e8e2da; }
canvas.silq-wire{ --wire-color: #6e6259; }
