@charset "utf-8";

.main{
  padding-top: 100px;
}


.section{ padding: 46px 0; }
.container{ width: min(80%,640px); margin-inline: auto; }

/* 見出し */
.sec-title {
  font-size: 2.0rem;
  color: var(--blue);
  font-weight: 500;
  text-align: center;
  margin-bottom: 14px;
}

.sub {
    font-size: 1.6rem;
    position: relative;
}

.sub::after{
    content:"";
    display:block;
    width: 16%;
    height: 1px;
    background: var(--orange);
    position: absolute;
    bottom: 11px;
    right: 0px;
}

.sub::before{
    content:"";
    display:block;
     width: 16%;
    height: 1px;
    background: var(--orange);
    position: absolute;
    bottom: 11px;
}


.sec-title.sub{ 
  margin-top: 4px;
  margin-bottom: 40px;
}
.sec-lead{
  font-size: 1.4rem;
  font-family: "Zen Kurenaido",sans-serif;
  color: var(--txt_black);
}





/* ========== Flow：手順 ========== */
.flow-steps{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 24px;
}

.flow-step{
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 12px;
  align-items: center;
} 
.flow-step > img{
  width: 36px; height: 36px; object-fit: contain;
  transform: translateY(2px);
}
.step-title{
  font-size: 1.4rem;
  color: var(--blue);
  margin: 0 0 2px;
  font-weight: 500;
}
.step-text{
  font-size: 1.2rem;
  font-family: "Zen Kurenaido",sans-serif;
}

/* お支払いメモ */
.flow-note{
  margin-top: 18px;

}
.flow-note {
  color: var(--blue);
  font-size: 1.4rem;
  margin-bottom: 6px;
  margin-top: 50px;
  font-weight: 500;
  padding-left: 22px;
}

.note-title {
  color: var(--blue);
  font-size: 1.4rem;
  margin-bottom: 6px;
  margin-top: 50px;
  font-weight: 500;
  padding-left: 22px;
}

.flow-note {
  font-size: 1.2rem;
    padding: 0 22px 22px 22px;
}

.note-text {
    font-size: 1.2rem;
  font-family: "Zen Kurenaido",sans-serif;
    padding: 0 22px 22px 22px;
    color: var(--txt_black);
}

/* ========== Pricing：料金 ========== */
.section-pricing{ padding-top: 44px; }
.price-block{ 
  margin-top: 62px; 
}
.price-heading{
  position: relative;
  padding-left: 22px;
  color: var(--blue);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 7px;
}

.price-small{
  display: block;
  font-size: 1.2rem;
  color: var(--blue);
  margin-top: 2px;
}

.price-heading {
  display: block;
  font-size: 1.4rem;
  color: var(--blue);
  margin-top: 2px;
}

/* 見出しの飾り（縦バー / ドット） */
.price-heading .bar,
.price-heading .dot{
  position: absolute;
   left: 0;
  top: .3em;
  display: inline-block;
}

.price-heading .bar{
  width: 6px; 
  height: 36px;
   background: var(--blue); 
}

.price-heading .dot{
  width: 6px; 
  height: 36px;
   background: var(--blue);
}

/* プランのDLリスト */
.price-list{ margin-top: 8px; }
.price-item{ margin: 15px 0; }
.price-plan{
  font-size: 1.4rem; 
  color: var(--blue);
  font-weight: 500;
}

.price-value{
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 500;
  margin-top: 2px;
}
.price-desc{
  font-size: 1.4rem;
  font-family: "Zen Kurenaido",sans-serif;
  color: var(--txt_black);
}

/* 文章ブロック（ロゴ／印刷物／イラスト） */
.price-body{
  margin-top: 8px;
  font-size: 1.35rem;
  font-family: "Zen Kurenaido",sans-serif;
}

.price-footnote{
  margin-top: 40px;
  font-size: 1.2rem;
  color: var(--blue);
  font-weight: 500;
}

.price-note{
  margin-top: 40px;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Zen Kurenaido",sans-serif;
}

/* CTA（このページ末尾のものを軽く） */
.section-works-cta .works-cta__lead{
  font-family: "Zen Kurenaido",sans-serif;
  font-size: 1.3rem;
  text-align: center;
}
.btn-row{ display:flex; justify-content:center; gap:12px; }


 .pconly {
    display: none;
  }

/* 769px~ */
@media screen and (min-width: 769px) {
  .container {
    width: min(100%);
    text-align: center;
  }

  .sec-title {
    font-size: 3.0rem;
  }

  .sub {
    font-size: 2.8rem;
  }
  
  .sec-lead {
    font-size: 1.8rem;
    width: min(80%, 5000px);
    margin: 0 auto;
  }

  .sec-title.sub {
    margin: 4px auto 40px;
    width: 80%;
}

.sub::before {
    width: 31%;
    bottom: 18px;
}

.sub::after {
    width: 31%;
    bottom: 18px;
}

.flow-step {
  width: min(90%, 583px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50px 1fr; /* 左: アイコン, 右: 本文 */
  align-items: center;             /* ← これで縦中央に！ */
  column-gap: 16px;
  text-align: left;
}

.step-title {
  font-size: 2rem;
}

.step-text {
  font-size: 1.8rem;
}

  /* ③ アイコンの揃え（上端にぴたっと） */

.flow-step > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  align-self: center;   /* grid内で中央寄せ */
  transform: none;
}

  /* タイトル／本文のサイズ（PC少し大きめにするなら） */
  .step-title { font-size: 2rem; margin: 0 0 4px; color: var(--blue); }
  .step-text  { font-size: 1.6rem; line-height: 1.9; }


  .flow-note {
  width: min(88%, 560px);   /* ← “箱”の幅 */
  margin: 48px auto 0;      /* ← 画面中央に配置 */
  text-align: left;         /* ← 中身は左揃え */
}


.flow-note .note-title {
  position: relative;
  margin: 0 0 10px;
  padding-left: 22px;       /* ← 左の縦バー分の余白 */
  color: var(--blue);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}


.flow-note .note-text {
  padding-left: 22px;       /* タイトルに合わせる */
  font-size: 1.6rem;
  line-height: 1.9;
  font-family: "Zen Kurenaido", sans-serif;
  margin: 0;
}

  .pconly {
    display: inline;
  }

  .note-title {
  font-size: 1.8rem;
  }

  .note-text {
    font-size: 1.6rem;
  }

  .price-heading {
    font-size: 2.6rem;
    margin-top: 110px;
  }

  .price-small {
    font-size: 1.8rem;
  }

  .price-plan {
    font-size: 2rem;
  }

  .price-value {
    font-size: 2.2rem;
  }

  .price-desc {
    font-size: 1.8rem;
  }

  .price-note {
    font-size: 1.6rem;
  }

  .price-block {
    width: min(80%, 680px);
    margin: 0 auto;
    text-align: start;
  }

  .price-body {
    font-size: 1.8rem;
  }

  .price-footnote {
    font-size: 1.6rem;
    margin-top: 140px;
  }

  .price-heading .bar {
    width: 10px;
    height: 51px;
}

.price-heading .dot {
    width: 10px;
    height: 51px;
}

.section-works-cta .works-cta__lead{
  font-family: "Zen Kurenaido",sans-serif;
  font-size: 1.6rem;
  text-align: center;
}


}


/* ちょい広めの画面での息継ぎ（任意） */
@media (min-width: 560px) and (max-width: 1000px){
  .sec-title{ font-size: 2.2rem; }
  .price-heading{ font-size: 1.8rem; }
  .flow-step{ padding: 12px 14px; }
}








/* CTA */
.section-works-cta{
  padding-top: 102px;
  padding-bottom: 70px;
}

.works-cta__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em; /* ← テキストと線の距離を一定に保つ */
  text-align: center;
  font-size: 1.4rem;
  color: var(--txt_black);
  font-family: "Zen Kurenaido";
  line-height: 1.8;
    margin: 40px auto 0px;
}

.works-cta__lead::before,
.works-cta__lead::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--blue);
}

.works-cta__lead::before {
  transform: rotate(30deg);

}

.works-cta__lead::after {
  transform: rotate(-30deg);
}

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform .1s ease, opacity .2s ease;
}

.btn-row {
  display: flex;
  justify-content: center;
  gap: 3.2%;
  flex-wrap: wrap;
}

.btn-primary {
    margin: 38px 0 0 0;
    background: var(--blue);
    color: var(--white);
    padding: 6px 52px 6px 41px;
}
.btn-secondary {
    margin: 24px 0 0 0;
    background: var(--blue);
    color: var(--white);
    padding: 6px 52px 6px 41px;
}

.btncontact {
    padding: 6px 66px 6px 56px;
}

.btn:hover { 
    opacity: .92; 
    transform: translateY(-1px);
}

/* 矢印（白 or 青） */
.btn--arrow::before,
.btn--arrow-blue::before{
  content: "";
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.btn--arrow::before{
  right: 18px;
  border-left: 6px solid var(--white);
}
.btn--arrow-blue::before{
  right: 14px;
  border-left: 6px solid var(--blue);
}

