@charset "utf-8";

/* ==========================================================================
   紙袋ページ（paper_bag）FV追加テキスト＆選ばれる理由スタイル
   ========================================================================== */

/* FV下の赤文字テキスト */
.fv_red_text {
  color: #ff0000;
  font-weight: bold;
  font-size: 19px;
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 20px;
  text-align: left;
}

/* 選ばれる理由ブロック */
.reason_box {
  border: 1px solid #fe6800;
  /* サイト全体の共通オレンジ */
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 25px;
  background-color: #fff;
}

.reason_title {
  background-color: #fe6800;
  /* サイト全体の共通オレンジ */
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  padding: 12px 20px;
  margin: 0;
  border: none;
  text-align: left;
}

.reason_content {
  padding: 20px;
  text-align: left;
}

.reason_content p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 15px 0;
}

.reason_content p:last-child {
  margin-bottom: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .fv_red_text {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .reason_box {
    margin-bottom: 20px;
  }

  .reason_title {
    font-size: 15px;
    padding: 10px 15px;
  }

  .reason_content {
    padding: 15px;
  }

  .reason_content p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* FAQ追加セクション */
.paper_bag_faq {
  margin-top: 60px;
}

.paper_bag_faq .headline_type1 {
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .paper_bag_faq {
    margin-top: 40px;
  }

  .paper_bag_faq .headline_type1 {
    margin-bottom: 15px;
  }
}

/* ==========================================================================
   新規受注件数の比率スタイル
   ========================================================================== */
.original_ratio {
  margin-top: 60px;
}

.ratio_container {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: #fdfdfd;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 30px;
}

.ratio_text {
  flex: 1.2;
}

.ratio_image {
  flex: 0.8;
  text-align: center;
}

.ratio_image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ratio_lead {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.ratio_data {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ratio_data li {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  margin-bottom: 12px;
  padding: 12px 15px;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.ratio_data li:last-child {
  margin-bottom: 0;
}

.ratio_data .year {
  font-weight: bold;
  color: #1a1a1a;
  font-size: 16px;
  min-width: 70px;
  text-align: left;
}

.ratio_breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.ratio_badge {
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: #4a5568;
}

.ratio_badge strong {
  color: #fe6800;
  font-size: 15px;
  margin-left: 4px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .original_ratio {
    margin-top: 40px;
  }

  .ratio_container {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }

  .ratio_text {
    width: 100%;
  }

  .ratio_image {
    width: 100%;
  }

  .ratio_lead {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .ratio_data li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
  }

  .ratio_data .year {
    font-size: 14px;
    min-width: auto;
    border-bottom: 1px solid #edf2f7;
    width: 100%;
    padding-bottom: 4px;
  }

  .ratio_breakdown {
    gap: 6px 8px;
  }

  .ratio_badge {
    font-size: 12px;
    padding: 3px 8px;
  }

  .ratio_badge strong {
    font-size: 13px;
  }
}