/* ========== HOW IT WORKS ========== */
.howit-flow {
  padding: 100px 0px 100px;
}

.howit-flow-header {
  text-align: center;
  margin-bottom: 60px;
}

.howit-flow-header .section-title-en {
  color: #1d1d1d;
}

.howit-flow-header .section-title-ja {
  color: #1d1d1d;
  margin-bottom: 0;
}

.howit-flow-content {
  display: flex;
  gap: 60px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* HOW IT WORKS */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  /* HOW IT WORKS */
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .howit-flow {
    padding: 80px 32px 60px;
  }

  .howit-flow-content {
    flex-direction: column;
    gap: 0;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .section-title-en {
    white-space: nowrap;
  }

  .howit-flow {
    padding: 60px 20px 48px;
  }

  .howit-flow-header {
    margin-bottom: 40px;
  }
}

/* ========== TIMELINE (LEFT / sticky + scroll-linked) ========== */
.howit-timeline {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  flex-shrink: 0;
  width: 177px;
  /* 画像のバランスに合わせて少し調整 */
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  /* 各ステップ同士の縦の隙間 */
}

/* Track container (holds both background line and progress bar) */
.howit-timeline-track {
  position: absolute;
  left: 0;
  /* ドットの中心に線が来るように調整 */
  top: 40px;
  /* 一番上のドットの中心から開始 */
  bottom: 25px;
  /* 一番下のドットの中心で終了 */
  width: 12px;
  /* ドットの幅に合わせる */
  display: flex;
  justify-content: center;
  pointer-events: none;
}

/* 背景の点線（未到達部分） */
.howit-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: transparent;
  /* 画像に合わせて細かい点線にする */
  background-image: repeating-linear-gradient(to bottom, #1d1d1d, #1d1d1d 2px, transparent 2px, transparent 6px);
  transform: translateX(-50%);
  z-index: 0;
}

/* スクロールによる進行バー（実線） */
.howit-timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 0;
  background: #1d1d1d;
  /* ここまでスクロールした分は実線になる */
  transform: translateX(-50%);
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

/* Timeline item (now <a> anchor link) */
.howit-timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  /* 上で揃える（STEP文字があるため） */

  gap: 16px;
  /* ドットとテキストエリアの隙間 */
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
  padding: 0;
  /* paddingを削除し、親のgapで隙間を管理 */
}

.howit-timeline-item:hover {
  opacity: 0.7;
}

/* Dot */
.howit-timeline-dot {
  position: relative;
  z-index: 2;
  /* タイムライン線より上に配置 */
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #d9d9d9;
  background: #fff;
  margin-top: 14px;
  /* 「01」のテキストの高さ（中央）にドットを合わせるための微調整 */
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}

/* Active dot (passed or current) */
.howit-timeline-item.is-active .howit-timeline-dot {
  background: #1d1d1d;
  border-color: #1d1d1d;
}



/* --- テキストエリア全体のラッパー（追加要素なしでFlexを活用） --- */
.howit-timeline-step {
  display: flex;
  flex-direction: column;
  /* 「STEP」と「01」を縦に並べる */
  align-items: flex-start;
  gap: 0px;
}

/* 「STEP」の文字 */
.howit-timeline-step-label {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #d9d9d9;
  letter-spacing: 0.22px;
  transition: color 0.4s;
}

/* 「01」と「用意」を横に並べるためのラッパー代わりの指定 */
/* HTML側で <div class="howit-timeline-step"> の中に「用意」も入れている前提のCSSになりますが、
   既存のHTML構造（<div class="howit-timeline-step"> と <span class="howit-timeline-text"> が兄弟要素）の場合は
   以下のように position を使って位置を合わせます */

.howit-timeline-step-num {
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  /* 細身に変更 */
  font-size: 32px;
  /* 少し大きく */
  color: #d9d9d9;
  line-height: 1;
  transition: color 0.4s;
}

.howit-timeline-text {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 500;
  font-size: 16px;
  color: #d9d9d9;
  letter-spacing: 0.26px;
  transition: color 0.4s;

  position: absolute;
  left: 75px;
  /* 「01」の右横 */

  /* --- 「01」の数字の中央に合わせる魔法 --- */
  bottom: 19px;
  /* 「01」(24px)のちょうど半分の位置を基準にする */
  transform: translateY(50%);
  /* テキスト自身の高さの半分だけ下にずらす */

}

/* Active text colors */
.howit-timeline-item.is-active .howit-timeline-step-label,
.howit-timeline-item.is-active .howit-timeline-step-num,
.howit-timeline-item.is-active .howit-timeline-text {
  color: #1d1d1d;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* TIMELINE */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  /* TIMELINE */
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* 左側のタイムライン（追従）は非表示 */
  .howit-timeline {
    display: none;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  /* TIMELINE */
}

/* ========== STEP CARDS (RIGHT) ========== */
.howit-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* ボックス間の余白 */
}

.howit-step-card {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  /* 両端に寄せる */
  padding: 0;
  border-bottom: none;
}

/* --- 左側のSTEPラベル部分 --- */
.howit-step-label {
  display: flex;
  align-items: center;
  /* 横線を上下中央に */
  margin-right: 10px;
  margin-top: 5px;
  gap: 10px;
  /* テキストと線の間の隙間 */
}

.howit-step-label-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.howit-step-label-sub {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1d1d1d;
  letter-spacing: 0.28px;
  line-height: 1;
  margin-bottom: 4px;
}

.howit-step-label-num {
  font-family: 'Heebo', sans-serif;
  font-weight: 400;
  /* 画像のスマートな印象に合わせて少し細く */
  font-size: 32px;
  color: #1d1d1d;
  line-height: 1;
}

.howit-step-label-line {
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 15px;
  background: #1d1d1d;
  /* 画像に合わせて黒い線に */
}

/* --- 右側のコンテンツボックス部分 --- */
.howit-step-body {
  width: 78%;
  /* ★ボックスの横幅を固定。必要に応じて 75% ～ 80% で微調整してください */
  flex-shrink: 0;
  /* 画面が狭くなってもボックスの幅を死守する */
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 25px 40px;
  border: 1px solid #1d1d1d;
  /* 画像に合わせて黒い枠線に */
  background: #fff;
}

.howit-step-icon {
  flex-shrink: 0;
  width: 97px;
  height: 97px;
  border-radius: 50%;
  border: 1px solid #1d1d1d;
  /* アイコンも黒い枠線に */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.howit-step-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.howit-step-detail {
  flex: 1;
  padding-top: 10px;
  /* タイトルとアイコンの頭を少し揃えるための調整 */
}

.howit-step-title {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 24px;
  color: #1d1d1d;
  letter-spacing: 0.36px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.howit-step-desc {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 14px;
  color: #1d1d1d;
  line-height: 2;
  letter-spacing: 0.28px;
}

/* 黒いボタン（対応ウェア一覧など） */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1d1d1d;
  color: #fff;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 40px;
  text-decoration: none;
  transition: background 0.3s;
  margin-top: 5px;
}

.btn-dark:hover {
  background: #444;
}

/* 住所ボックス */
.howit-step-address {
  margin: 16px 0;
  padding: 15px 15px;
  width: 287px;
  background: #fff;
  border: 1px solid #d9d9d9;
  /* 枠線に変更 */
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 500;
  font-size: 14px;
  color: #1d1d1d;
  line-height: 2;
  letter-spacing: 0.28px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* STEP CARDS */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .howit-steps {
    width: 100%;
    gap: 20px;
  }

  .howit-step-card {
    /* 1280pxではまだ左右に並べる余裕があるのでflexを維持 */
    align-items: flex-start;
    justify-content: flex-start;
    /* 左寄せに戻す */
  }

  /* STEPラベル部分 */
  .howit-step-label {
    width: 80px;
    /* 固定幅を持たせる */
    margin-top: 0;
    margin-right: 20px;
    flex-direction: column;
    /* STEPと線を縦に並べる（横線の代わりに縦の隙間に） */
    align-items: center;
    gap: 8px;
  }

  .howit-step-label-line {
    /* 1280pxでは横の繋がりが不要になるため線を消す、または短くする */
    display: none;
  }

  /* コンテンツボックス部分 */
  .howit-step-body {
    width: 100%;
    /* 横幅いっぱいに広げる */
    flex: 1;
    /* 余った幅をすべて使う */
    padding: 24px;
    /* 余白を少し小さく */
    gap: 24px;
    /* アイコンとテキストの隙間を縮小 */
  }

  .howit-step-icon {
    width: 80px;
    height: 80px;
  }

  .howit-step-icon img {
    width: 45px;
    height: 45px;
  }

  .howit-step-title {
    font-size: 20px;
    /* 文字を少し小さく */
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .howit-step-detail {
    padding-top: 0px;
  }

  /* 右側のステップ群を全体に広げる */
  .howit-steps {
    width: 100%;
    gap: 25px;
    /* ステップ間の余白をしっかりとる */
  }

  /* --- STEPカードを「見出し＋ボックス」の上下構造に --- */
  .howit-step-card {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0;
  }


  /* UI改善：STEPラベルを見出し風にスタイリング */
  .howit-step-label {
    width: 100%;
    height: auto;
    margin: 0 0 5px 0;
    /* ボックスとの隙間 */
    flex-direction: row;
    /* 横に並べる */
    align-items: center;
    gap: 16px;
  }

  .howit-step-label-text {
    flex-direction: row;
    /* STEP と 01 を横並びに */
    align-items: center;
    gap: 4px;
  }

  .howit-step-label-sub {
    font-size: 13px;
    margin-bottom: 0;
  }


  /* UI改善：横線を右端まで伸ばしてセクションの区切り線を演出 */
  .howit-step-label-line {
    flex: 1;
    /* 残りの空間を線で埋める */
    width: auto;
    margin-top: 0;
    transform: none;
    background: #d9d9d9;
    /* 悪目立ちしないようにグレーに */
  }

  /* コンテンツボックス */
  .howit-step-body {
    width: 100%;
    padding: 25px;
    gap: 24px;
  }

  .howit-step-icon {
    width: 70px;
    height: 70px;
  }

  .howit-step-icon img {
    width: 35px;
    height: 35px;
  }

  .howit-step-title {
    font-size: 20px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .howit-steps {
    gap: 25px;
  }

  /* STEP見出しのスマホ向け微調整 */
  .howit-step-label {
    margin-bottom: 0px;
    gap: 12px;
  }

  .howit-step-label-sub {
    font-size: 12px;
  }



  /* --- UI改善：ボックス内をスマホの読解に最適化 --- */
  .howit-step-body {
    flex-direction: column;
    /* アイコンとテキストを縦並びに */
    align-items: center;
    /* ★あえて左揃えにして視線を自然に導く */
    padding: 24px 20px;
    gap: 5px;
  }

  .howit-step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 7px;
    /* アイコンの下に少しだけ余白 */
  }

  .howit-step-icon img {
    width: 30px;
    height: 30px;
  }

  .howit-step-detail {
    padding-top: 0;
    width: 100%;
  }

  .howit-step-title {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
    /* 左揃え */
  }

  .howit-step-desc {
    font-size: 14px;
    text-align: left;
    /* 長文は左揃えが基本 */
  }

  /* UI改善：スマホで押しやすいフルワイド（全幅）ボタン */
  .btn-dark {
    width: 100%;
    padding: 14px 20px;
    /* タップしやすいように高さを少し確保 */
    margin-top: 16px;
  }

  /* 住所ボックスのスマホ調整 */
  .howit-step-address {
    width: 100%;
    box-sizing: border-box;
    /* paddingを含めて幅100%にする必須コード */
    padding: 16px;
    font-size: 13px;
    margin: 12px 0;
  }
}

/* ========== USER GUIDE ========== */
.howit-guide {
  position: relative;
  overflow: hidden;
  padding: 60px 0px;
}

.howit-guide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howit-guide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0.85);
}

.howit-guide-inner {
  position: relative;
  z-index: 2;
}

.howit-guide-title {
  margin-bottom: 40px;
}

.howit-guide-title .section-title-en {
  color: #fff;
}

.howit-guide-title .section-title-ja {
  color: #fff;
  margin-bottom: 0;
}

.howit-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 100px;
}

.howit-guide-item {
  color: #fff;
}

.howit-guide-item-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1px 5px;
  margin-bottom: 12px;
}

.howit-guide-item-line {
  width: 16px;
  height: 1px;
  background: #fff;
}

.howit-guide-item-num {
  font-family: 'Heebo', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.howit-guide-item-label {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.36px;
  padding-bottom: 5px;
}

.howit-guide-item-text {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.28px;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* USER GUIDE */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .howit-guide {
    padding: 60px 32px;
  }

  .howit-guide-grid {
    gap: 32px 40px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  .howit-guide-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .howit-guide-item-label {
    font-size: 18px;
    padding-bottom: 2px;
  }

  .howit-guide-item-heading {
    margin-bottom: 7px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .howit-guide {
    padding: 48px 20px;
  }

  .howit-guide-item-heading {
    margin-bottom: 3px;
    gap: 5px;
  }

  .howit-guide-item-label {
    font-size: 16px;
  }

  .howit-guide-item-text {
    font-size: 14px;
  }
}

/* ========== FAQ ========== */
#howit-faq {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0;
}

.howit-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.howit-faq-header .section-title-en {
  color: #1d1d1d;
}

.howit-faq-header .section-title-ja {
  color: #1d1d1d;
  margin-bottom: 0;
}

.howit-faq-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}




/* Question button */
.howit-faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 15px 25px 15px 15px;
  border: 1px solid #1d1d1d;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.howit-faq-question:hover {
  background: #fafafa;
}

.howit-faq-q-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #1d1d1d;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background-color: #1D1D1D;
}

.howit-faq-q-text {
  flex: 1;
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
  font-size: 18px;
  color: #1d1d1d;
  letter-spacing: 0.32px;
  line-height: 1.75;
}

.howit-faq-toggle {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
}

.howit-faq-toggle::before,
.howit-faq-toggle::after {
  content: '';
  position: absolute;
  background: #1d1d1d;
  transition: transform 0.3s ease;
}

.howit-faq-toggle::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%);
}

.howit-faq-toggle::after {
  top: 0;
  left: 50%;
  width: 1.5px;
  height: 100%;
  transform: translateX(-50%);
}

.howit-faq-item.is-open .howit-faq-toggle::after {
  transform: translateX(-50%) rotate(90deg);
}

/* Answer */
.howit-faq-answer {
display: flex;
  gap: 20px;
  max-height: 0;
  overflow: hidden;
  /* ★真犯人はここ！ 閉じた状態でも左右の余白（右55px、左15px）をあらかじめ確保しておく */
  padding: 0 55px 0 15px;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
  opacity: 0; /* 開くときにフワッと文字が出るようにするおまじない */}

.howit-faq-item.is-open .howit-faq-answer {
padding: 15px 55px 15px 15px;
  opacity: 1;
}

.howit-faq-a-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #D6D6D6;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1D1D1D;
}

.howit-faq-a-text {
  flex: 1;
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 14px;
  color: #1d1d1d;
  line-height: 2;
  letter-spacing: 0.28px;
}

.howit-faq-a-text p {
  margin: 0;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* FAQ */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .howit-faq {
    padding: 80px 32px 60px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  #howit-faq {
    padding: 80px 0 60px;
  }

  .howit-faq-q-text {
    font-size: 16px;
  }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  .howit-faq-header {
    margin-bottom: 40px;
  }

  .howit-faq-question {
    gap: 15px;
  }

  .howit-faq-answer {
    /* ★スマホ用も同様に、閉じた状態でも左右の余白（右30px、左15px）を確保しておく */
    padding: 0 30px 0 15px;
    gap: 15px;
  }

  .howit-faq-item.is-open .howit-faq-answer {
    padding: 15px 30px 15px 15px;
  }

  .howit-faq-q-text {
    font-size: 14px;
  }

  .howit-faq-a-text {
    font-size: 14px;
  }

  .howit-faq-list {
    gap: 15px;
  }

  #howit-faq {
    padding: 50px 0;
  }
}

/* ========== ORDER FORM ========== */
.order {
  position: relative;
  height: 381px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.order-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 29, 0.75);
}

.order-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.order-content .section-title-en {
  color: #fff;
}

.order-content .section-title-ja {
  color: #fff;
  margin-bottom: 24px;
}

.order-desc {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  line-height: 1.875;
  margin-bottom: 32px;
}

.order-content .btn-outline {
  border-color: #fff;
  color: #1d1d1d;
  background: #fff;
}

.order-content .btn-outline:hover {
  background: transparent;
  color: #fff;
}

/*-----------------------------------
    レスポンシブ: PC (max-width: 1500px)
-----------------------------------*/
@media screen and (max-width: 1500px) {
  /* ORDER FORM */
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
  .order {
    height: 340px;
    padding: 0 32px;
  }

  .order-desc {
    font-size: 15px;
  }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
  /* ORDER FORM */
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
  /* ORDER FORM */
}
