@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */
html {
  color: #000;
  background: #fff;
  scroll-behavior: auto;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}


.Body-sections {
 text-align: center;
}
  
/* 注意書きエリア */
.background-notice {
  background-color: #f0f0f0;
  padding: 100px 20px;
}

.notice {
  text-align: center;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin: 0 auto;
}

.notice .highlight {
  color: red;
}

.notice .highlight_es {
  color: red;
  background-color: #fff0f0; /* 優しい赤系の背景 */
  border: 2px solid #ffcccc; /* 薄い赤色の枠線 */
  padding: 15px;
  border-radius: 8px;
  display: inline-block; /* ブロック風に囲む */
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.1); /* さりげない影 */
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .background-notice {
    padding: 80px 10px;
  }

  .notice {
    font-size: 16px;
    padding: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  .background-notice {
    padding: 60px 10px;
  }

  .notice {
    font-size: 15px;
  }
}
/* 注意書きエリア 終了 */


/* メリットエリア */
/* セクション全体 */
.merit-section {
  /*max-width: 1200px;*/
  margin: 0 auto;
  padding: 80px 20px 160px 20px;
  text-align: center;
}

/* 見出し */
.heading-hayabarai2 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #333333;
  display: inline-block;
  padding: 0.2em 1.5em 0.3em;
  margin: 80px 30px 160px 30px!important;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .heading-hayabarai2 {
    font-size: 1.4rem;
    margin: 60px 30px 60px 30px!important;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .heading-hayabarai2 {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 40px 30px 40px 30px!important;
  }
}
/* 見出し 終了 */

/* カード全体を囲むグループ（カード＋矢印） */
.merit-card-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* カード本体 */
.merit-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 1px 2px 6px rgba(0,0,0,0.2);
  padding: 20px;
  width: 360px;
  box-sizing: border-box;
}

/* カードタイトル */
.merit-title {
  background: #f0f0f0;
  color: #333;
  font-weight: bold;
  padding: 0.4em;
  border-radius: 8px;
  margin-bottom: 1em;
  font-size: 1rem;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .merit-title {
    font-size: 18px;
    padding: 0 10px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .merit-title {
    font-size: 16px;
  }
}
/* カードタイトル 終了 */


/* カード本文と画像 */
.merit-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1em;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .merit-content p {
    font-size: 18px;
    padding: 0 10px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .merit-content p  {
    font-size: 16px;
  }
}
/* カード本文と画像 終了 */


/* カード下の矢印グループ（縦に3つ） */
.merit-chevron-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 38px;
  margin-bottom: 38px;
}

/* カード下の矢印（1つ） */
.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-25%) rotate(135deg);
  margin: 0.1em 0;
}

/* グラデーション風な濃淡調整（上から下へ濃く） */
.merit-chevron-group .dli-chevron-down:nth-child(1),
.merit-arrow-center .dli-chevron-down:nth-child(1) {
  color: #fff3b0;
}
.merit-chevron-group .dli-chevron-down:nth-child(2),
.merit-arrow-center .dli-chevron-down:nth-child(2) {
  color: #ffe066;
}
.merit-chevron-group .dli-chevron-down:nth-child(3),
.merit-arrow-center .dli-chevron-down:nth-child(3) {
  color: #FCCF00;
}

/* カードレイアウトと矢印表示切り替え */
@media (max-width: 1177px) {
 .dli-chevron-down {
    width: 2em;
    height: 2em;
}
  
 .chevron-1,
 .chevron-2 {
    display: none;
  }

 .merit-arrow-center {
    display: flex;
  }
}

.merit-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

@media (min-width: 769px) {
 .merit-card {
   height: 440px;
  }
}

@media (max-width: 768px) {
 .merit-card {
    width: 100%;
  }

 .merit-chevron-group {
    display: none;
  }

 .merit-arrow-center {
    display: flex;
  }
  
 .merit-chevron-group {
    display: none;
  }
 .chevron-3 {
    display: flex !important;
  }
 .merit-arrow-center {
    display: flex;
  }
}
/* カード下の矢印グループ（縦に3つ） 終了 */


/* まとめテキスト */
.merit-summary {
  background: #f0f0f0;
  border-radius: 8px;
  padding: 0.75em 0.75em 1em;
  font-size: 22px;
  font-weight: 700;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
}

.merit-summary .highlight {
  color: red;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .merit-summary {
    font-size: 18px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .merit-summary {
    font-size: 16px;
  }
}
/* まとめテキスト 終了 */
/* メリットエリア 終了 */


/* グループ会社エリア */
.background-parentcompany {
  background-color: #f0f0f0;
  padding: 80px 20px;
}

.parentcompany {
  text-align: center;
  color: #333;
  font-size: 22px;
  margin: 0 auto;
}

.centered-image {
  display: block;
  margin: 50px auto 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .background-parentcompany {
    padding: 80px 10px;
  }
  
  .parentcompany {
    font-size: 18px;
    padding: 0 10px;
  }

  .centered-image {
    width: 300px;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .background-parentcompany {
    padding: 60px 10px;
  }
  
  .parentcompany {
    font-size: 16px;
  }

  .centered-image {
    width: 250px;
    height: auto;
  }
}
/* グループ会社エリア 終了 */


/* ファクタリングとは */
/* セクション全体 */
.background-whatisfactoring {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.column {
  flex: 1 1 0px;
  max-width: 500px;
}

/* セクション文章エリア（左） */
.whatisfactoring {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .whatisfactoring {
    flex-direction: column;
    gap: 30px;
  }
}

/* セクション文章（左） */
.text-column p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 1em;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .text-column p {
    font-size: 18px;
    padding: 0 10px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .text-column p {
    font-size: 16px;
  }
}

.red-ruby {
  color: red;
}

.whatisfactoring .highlight-red {
  color: red;
  font-size: 22px;
  font-weight: 700;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .whatisfactoring .highlight-red {
    font-size: 18px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .whatisfactoring .highlight-red {
    font-size: 16px;
  }
}

/* セクション画像（右） */
.image-column img {
  width: 100%;
  max-width: 500px;
  height: auto;
  transform: scale(1.2);   /* ← 見た目の拡大倍率 */
  transform-origin: center; /* 拡大の基点を中央に */
  padding: 0 20px;
}
/* ファクタリングとは 終了 */


/* お悩み提示エリア */


.content-cards-card-button-wrapper {
    padding-left: 20px!important;
    padding-right: 20px!important;
}

/* 見出し */
.heading-problem {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  display: inline-block;
  padding: 0.2em 1em 0.3em;
  margin: 40px 30px 40px 30px;
  line-height: 1.5;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .heading-problem {
    font-size: 1.2rem;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .heading-problem {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* PC用アンダーライン */
.emphasis-heading-problem {
  position: relative;
  display: inline-block;
}

.emphasis-heading-problem::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1em;
  width: 100%;
  height: 0.5em;
  background: repeating-linear-gradient(
    45deg,
    #ccc,
    #ccc 4px,
    #fff 4px,
    #fff 8px
  );
  z-index: -1;
  transform: skewX(-15deg); 
  transform-origin: bottom center;
}

/* スマホ用アンダーライン */
.emphasis-heading-problem-sp {
  display: inline-block;
  background: repeating-linear-gradient(
    45deg,
    #ccc,
    #ccc 4px,
    #fff 4px,
    #fff 8px
  );
  background-size: auto 0.5em;
  background-repeat: repeat-x;
  background-position: 0 100%;
  padding-bottom: 0.1em;
}
/* 見出し 終了 */

/* カード本文 */
.heading-problem-p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1em;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .heading-problem-p {
    font-size: 18px;
    padding: 0 10px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .heading-problem-p {
    font-size: 16px;
  }
}
/* お悩み提示エリア 終了 */


/* お悩み解決エリア */
/* 見出し */
.heading-hayabarai3 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  background-color: #333333;
  display: inline-block;
  padding: 0.2em 1em 0.3em;
  margin: 80px 30px 140px 30px!important;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
 .heading-hayabarai3 {
  font-size: 1.4rem;
   margin: 80px 30px 100px 30px!important;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
 .heading-hayabarai3 {
  font-size: 1.2rem;
  line-height: 1.4;
   margin: 60px 30px 100px 30px!important;
  }
}
/* 見出し 終了 */

/* カード本体 */
#hs_cos_wrapper_widget_1749198129716 .content-cards-card-button-inner-wrapper {
  box-shadow: 1px 2px 6px rgba(0,0,0,0.2);
}

#hs_cos_wrapper_widget_1749198129716 .content-cards-card-button-inner-wrapper:hover {
  box-shadow: 1px 2px 6px rgba(0,0,0,0.2);
}

/* カード本文 タイトル */
.solutionarea-hayabarai .content-cards-card-description {
    margin-top: 220px; /* カード本文を画像下部に配置 */
}

.solution-subheading {
  margin-top: -240px; 
  background-color: #f0f0f0;
  border-radius: 32px; 
  padding: 3px 24px 4.5px 24px; 
  margin: 16px 0; 
  width: 100%;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .solution-subheading {
    font-size: 18px;
    padding: 0 10px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .solution-subheading {
    font-size: 16px;
  }
}

/* カード本文 */
.solution-p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1em;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .solution-p {
    font-size: 18px;
    padding: 0 10px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .solution-p {
    font-size: 16px;
  }
}
/* お悩み解決エリア 終了 */

/* ご利用条件 */
/* セクション全体 */
.box_wrap-terms-hayabarai {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 5%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px 80px 20px;
  background: #fff;
}

/* ボックス単体 */
.box-terms-hayabarai {
  flex: 0 1 45%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 40px;
}

.box-header-terms-hayabarai {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 1em;
}

.icon-terms-hayabarai {
  font-size: 2rem;
  margin: 0.1em 1em 0 1em;
  color: #333; 
}


/* ボックス単体 タイトル */
.box-header-terms-hayabarai h3 {
  font-size: 22px;
  color: #333;
  text-align: left;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .box-header-terms-hayabarai h3 {
    font-size: 18px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .box-header-terms-hayabarai h3 {
    font-size: 16px;
  }
}

/* ボックス単体 文章 */
.box-terms-hayabarai p {
  background: #fff;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  padding: 0 1.5em;
  text-align: left;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .box-terms-hayabarai p {
    font-size: 18px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .box-terms-hayabarai p {
    font-size: 16px;
  }
}
/* ご利用条件 終了 */

/* お申し込み～ご契約までの流れ */
/* step */
.flow-subheading1 {
    font-weight: bold;
    font-size: 1rem;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .flow-subheading1 {
    font-size: 18px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .flow-subheading1 {
    font-size: 16px;
  }
}

/* stepタイトル */
.flow-subheading2 {
    color: #333;
    font-size: 22px;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .flow-subheading2 {
    font-size: 18px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .flow-subheading2 {
    font-size: 16px;
  }
}

/* step文章 */
.flow-p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .flow-p {
    font-size: 18px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .flow-p {
    font-size: 16px;
  }
}
/* お申し込み～ご契約までの流れ 終了 */

/* スケジュールイメージ */
/* スケジュール セクション */
.schedule-area {
  margin: 0px 0 80px 0;
}

/* 見出し */
.heading-problem2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  padding: 0.2em 1em 0.3em;
  margin: -100px 30px 40px 30px;
  line-height: 1.5;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .heading-problem2 {
    font-size: 1.2rem;
    margin: 0px 30px 40px 30px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .heading-problem2 {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* スケジュールカレンダー */
.schedule-image {
    width: 1000px;
    height: auto;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .schedule-image {
    width: auto;
    height: auto;
  }
}
/* スケジュールイメージ 終了 */


/* 比較表エリア */
/* テーブル セクション */
.comparison-area {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .comparison-area {
    padding: 0 1rem;
    margin-bottom: 80px;
  }
}

/* テーブルカード 全体 */
.comparison-table {
  display: flex;
  justify-content: center;
  /*flex-wrap: wrap;*/
  gap: 60px;
  max-width: 1200px;
  margin: 120px auto;
  padding: 0px 20px;
}

/* レスポンシブ対応（984px以下） */
@media (max-width: 984px) {
  .comparison-table {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
}

/* テーブルカード 単体 */
.comparison-card {
  background: #f0f0f0;
  border: 3px solid #ddd;
  border-radius: 12px;
  padding: 32px 24px;
  flex: 1 1 28%; 
  min-width: 240px;
  max-width: 320px; 
  color: #333;
 /*box-sizing: border-box;
   transition: transform 0.3s ease;*/
}

/* テーブル協調（早払い）カード 単体 */
.comparison-card.featured {
  background: #fff;
  border: 3px solid #FCCF00;
  box-shadow: 1px 2px 6px rgba(0,0,0,0.2);
  flex: 1.3 1.3 34%;
  max-width: 380px;
  padding: 40px 28px; 
  transform: scale(1.2); /* わずかに拡大して目立たせる */
  z-index: 1;
}

/* レスポンシブ対応（984px以下） */
@media (max-width: 984px) {
  .comparison-card,.comparison-card.featured {
    flex: none;
    width: 90%;
    max-width: 700px;
    padding: 32px 20px;
    transform: none;   
  }
}

/* テーブルカード 見出し */
.comparison-card h3 {
  font-size: 22px;
  margin-bottom: -10px;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .comparison-card h3 {
    font-size: 18px;
    margin-bottom: -5px;
  }
}
  
  /* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .comparison-card h3 {
    font-size: 16px;
  }
}
  
.comparison-card.featured h3 {
  color: #FCCF00;
}

.comparison-card small {
  font-size: 14px;
}
/* テーブルカード 見出し 終了 */

/* テーブルカード 項目文章 */
.comparison-card ul {
  margin-top: 20px;
  list-style: none;
  padding-right: 10px;
  font-size: 1rem;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .comparison-card ul {
    font-size: 18px;
  }
}
  
  /* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .comparison-card ul {
    font-size: 16px;
  }
}

.comparison-card ul .heading {
  font-size: 14px;
  padding-right: 10px;
}

.icon-tick-hayabarai {
  margin: 0.1em 0.5em 0;
  color: #333; 
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .comparison-card small,.comparison-card ul .heading {
    font-size: 13px;
  }
}
  
  /* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .comparison-card small,.comparison-card ul .heading {
    font-size: 12px;
  }
}
/* テーブルカード 項目文章 終了 */

/* テーブルカード 項目線 */
.comparison-card ul li {
  padding: 12px 0;
  border-top: 2px solid #ddd;
}

.comparison-card ul li:first-child {
  border-top: none; /* 1行目（見出し下線）削除 */
}
/* 比較表エリア 終了 */




/* 導入事例 */

.title-case-hayabarai {
  margin: 0 30px 2em 30px;
  text-align: center;
}

.heading-case-hayabarai {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background-color: #333;
  padding: 0.2em 1em;
  border-radius: 4px;
  margin: 20px 30px 2em 30px!important;
  margin-top: 100px;
  text-align: center;
  display: inline-block;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .heading-case-hayabarai {
  font-size: 1.4rem;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .heading-case-hayabarai {
  font-size: 1.2rem;
  line-height: 1.4;
  }
}

.container-case-hayabarai {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 0px 20px 80px 20px;
  text-align: left;
}

/* タブレット対応（768px以下） */
@media screen and (max-width: 768px) {
  .container-case-hayabarai {
  padding-bottom: 20px;
  }
}

/* スマホ対応（480px以下） */
@media screen and (max-width: 480px) {
  .container-case-hayabarai {
  padding-bottom: 0px;
  }
}


.case-box-hayabarai {
  position: relative;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 40px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

.case-label-hayabarai {
  position: absolute;
  top: 13px;
  left: 0;
  background: #FCCF00;
  color: #333333;
  font-size: 16px;
  padding: 3px 12px;
  border-bottom-right-radius: 8px;
}

.case-content-hayabarai {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.case-left-hayabarai {
  flex: 1 1 30%;
  min-width: 280px;
}

.case-left-hayabarai img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 0 15px;
}

.case-info-hayabarai {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.6;
  padding: 0 15px;
}

.highlight-blue-hayabarai {
  color: #007ACC;
  font-weight: bold;
}

.case-right-hayabarai {
  flex: 1 1 65%;
  min-width: 300px;
}

.case-section-hayabarai {
  margin-bottom: 20px;
}

.case-section-hayabarai .before-title-hayabarai {
  background: none;
  color: #cccccc;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 8px;
}

.case-section-hayabarai .after-title-hayabarai {
  background: none;
  color: #333333;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 8px;
}

.case-text-hayabarai {
  position:  relative;
  line-height: 1.8;
  font-size: 15px;
  margin-left: 1em;
  z-index: 10;
}

.case-text-hayabarai::before {
  content: "● ";
  color: #000;
  font-weight: bold;
}

.case-bg-hayabarai1 {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 170px;
  height: 170px;
  background-image: url('https://www.yamato-b2b-pay.com/hubfs/images/hayabarai/case-hayabarai-bg01.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.case-bg-hayabarai2 {
  position: absolute;
  bottom: 15px;
  right: 10px;
  width: 170px;
  height: 170px;
  background-image: url('https://www.yamato-b2b-pay.com/hubfs/images/hayabarai/case-hayabarai-bg02.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.case-bg-hayabarai3 {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 170px;
  height: 170px;
  background-image: url('https://www.yamato-b2b-pay.com/hubfs/images/hayabarai/case-hayabarai-bg03.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .case-content-hayabarai {
    flex-direction: column;
  }

  .case-left-hayabarai,
  .case-right-hayabarai {
    flex: 1 1 100%;
  }

  .case-bg-hayabarai {
    width: 120px;
    height: 120px;
  }
}

/* FAQエリア */
.faq-section-question-hayabarai {
  background-color: #f0f0f0;
  padding: 80px 30px;
  font-family: 'Noto Sans', sans-serif;
  color: #333;
  text-align: center;
}

.faq-list-question-hayabarai {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item-question-hayabarai {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq-question-question-hayabarai {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 25px 20px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question-question-hayabarai:hover,
.faq-question-question-hayabarai.active {
  background-color: #FCCF00;
  color: #333;
}

.faq-question-question-hayabarai .icon {
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-question-question-hayabarai.active .icon {
  transform: rotate(180deg);
}

.faq-answer-question-hayabarai {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.4s ease;
  background-color: #fff;
  padding: 0 25px;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}

.faq-answer-question-hayabarai p {
  margin: 25px 10px 70px 10px;
}

.faq-answer-question-hayabarai.show {
  padding: 25px;
  opacity: 1;
}

@media (max-width: 768px) {
  .faq-section-question-hayabarai {
    padding: 40px 15px;
  }

  .heading-hayabarai {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .faq-question-question-hayabarai {
    font-size: 18px;
    padding: 20px 15px;
    padding-right: 45px;
  }

  .faq-question-question-hayabarai .icon {
    font-size: 20px;
    right: 15px;
  }

  .faq-answer-question-hayabarai {
    font-size: 16px;
    padding: 0 15px;
  }

  .faq-answer-question-hayabarai.show {
    padding: 20px 15px;
  }

  .faq-list-question-hayabarai {
    max-width: 100%;
  }
}



/* 問合せエリア */

.contact-information-title-hayabarai {
    padding: 30px 30px;
    font-family: 'Noto Sans', sans-serif;
    color: #333;
    text-align: center;
}

.contact-information-hayabarai {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px; /* Increased gap between boxes */
  padding: 0px 20px 160px 20px;
  background-color: #ffffff; /* Background color set to white */
}

.contact-information-hayabarai__box {
  flex: 1 1 320px;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 
    8px 8px 16px #bebebe,
    -8px -8px 16px #ffffff,
    0 0 0 1px #bebebe;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  box-sizing: border-box;
  text-align: center;
}

.contact-information-hayabarai__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin-bottom: 24px;
  color: #3b4a5a; /* Updated icon color */
  width: 100%;
}

.contact-information-hayabarai__text h2 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: bold;
}

.contact-information-hayabarai__text p {
  margin: 6px 0;
  font-size: 16px;
  line-height: 1.6;
}

.tel-number a {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 1px;
  color: inherit;
  text-decoration: none;
}

.email a {
  font-size: 20px;
  font-weight: bold;
  word-break: break-word;
  color: inherit;
  text-decoration: none;
}

.note, .hours {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .contact-information-hayabarai {
    flex-direction: column;
    align-items: center;
  }

  .contact-information-hayabarai__box {
    width: 90%;
    aspect-ratio: auto;
    height: auto;
  }

  .contact-information-hayabarai__icon,
  .contact-information-hayabarai__icon i {
    font-size: 64px;
  }

  .tel-number {
    font-size: 20px;
  }

  .email {
    font-size: 18px;
  }
}

	.tooltip {
		position: relative;
		display: inline-block;
		cursor: pointer;
	}

	.tooltiptext {
		position: absolute;
		background-color: #333;
		color: #fff;
		padding: 6px 12px;
		border-radius: 4px;
		font-size: 14px;
		white-space: nowrap;
		z-index: 10;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.3s ease;
		top: -40px; /* PCでは上に表示 */
		left: 50%;
		transform: translateX(-50%);
	}

	.tooltip.show .tooltiptext {
		visibility: visible;
	opacity: 1;
	}

/* モバイル表示では下に表示 */
	@media (max-width: 768px) {
		.tooltiptext {
		top: 100%; /* 下に表示 */
		margin-top: 8px;
		}
	}













/* 最後のボックスを中央に配置 */
.single-center-terms-hayabarai {
  flex: 0 1 45%;
  margin: 0 auto;
  margin: 40px auto; /* 上下に40pxのマージンを追加 */
}

/* スマホ対応：1列表示 */
@media (max-width: 768px) {
  .box-terms-hayabarai,
  .single-center-terms-hayabarai {
    flex: 1 1 100%;
  }
}

/* footer */

.footer {
  padding: 2rem 1rem;
  color: #333;
  background: #fff;
  border-top: 1px solid #d1d5db;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
  font-size: 14px!important;
  text-align: left;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-left,
.footer-right {
  flex: 1 1 120px;
  min-width: 260px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  margin-top: 0px;
}

.footer__address a {
  text-decoration: underline;
  color: #333;
}

.footer__navi-heading {
  font-weight: 700;
  font-size: 14px;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.4;
}

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

.footer__navi li {
  margin-bottom: 0.4rem;
}

.footer__navi a {
  text-decoration: none;
  color: #333;
}

.footer__navi a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 2rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .footer-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-left,
  .footer-right {
    padding-left: 0.5rem;
  }
}

.section-divider {
  height: 1px;
  background-color: #e5e7eb;
  margin: 20px auto;
  max-width: 90%;
}



/* footer ここまで */

/*以下、旧CSS*/
/*top訴求アイコンエリア*/
.top-icon .content-cards-card-button-inner-wrapper {  
    height: 80%;
}
.top-icon .content-cards-card-title {
    margin-top: -20px;
}
/*top訴求アイコンエリア 終了*/

/*決済課題コンテンツ 下矢印エリア*/
#hs_cos_wrapper_widget_1722314744696 {
  background-color:#DDDDDD
}

/*区切り線１*/
.lp-textarea {
  margin: 50px auto 30px auto;
}

.lp-textarea hr {
    border: none;
    height: 1px;
    border-top: 1px solid #dddddd;
    margin:25px 50px 25px 50px;
}
/*区切り線１　終了*/

/*サービス比較表*/
.service_comparison {
  width: 100%;
  border-collapse: collapse;
}
.service_comparison tr {
  border-bottom: solid 2px white;
}
.service_comparison tr:last-child {
  border-bottom: none;
}
.service_comparison_th {
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #4b5564;
  color: white;
  text-align: center;
  padding: 10px 0;
}
/*.service_comparison_th:after {
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #4b5564;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}*/
.service_comparison td {
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}
  /*スマホサイズバージョン*/
  @media (min-width: 960px) {
   .comparison .content-cards-card-wrapper.one .content-cards-card-button-wrapper {
    width: 60% !important;
  }
}
  @media (max-width: 960px) {
   .comparison .content-cards-card-wrapper.one .content-cards-card-button-wrapper {
    width: 100% !important;
  }
}
  @media (max-width: 640px) {
   .service_comparison_th {
    font-size: 14px;
  }
}
  @media (max-width: 640px) {
   .service_comparison_td {
    font-size: 14px;
  }
}
/*サービス比較表　終了*/

/*導入事例*/
.case01-arucom img{
    width: 50%;
    margin-left: 175px;
}
.case02-ci img{
    width: 50%;
    margin-left: 200px;
}
.case03-viatran img{
    width: 50%;
    margin-left: 150px;
}
/*導入事例　終了*/

/*区切り線２*/
.lp-FAQarea hr {
    border: none;
    height: 1px;
    border-top: 2px dashed #fc490d;
    margin: 25px 250px;
}
@media (max-width: 1500px) {
   .lp-FAQarea hr {
      margin: 25px 100px;;
  }
}
@media (max-width: 768px) {
   .lp-FAQarea hr {
      margin: 25px 0px;;
  }
}
/*区切り線２　終了*/

/*PCでは無効（改行しない）*/
.sma{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}

/*PCでは無効（改行しない）*/
.sma2{
    display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:640px) {
    .sma2{
        display: block;
    }
}
.service-cards-grid {
  max-width: 800px;
  margin: 0 auto;
}
.service-cards-item {
  pointer-events: none;
  margin:0; 
  padding:0;
}

.timeline-text-l{
  font-size: 32px;
  color: #fc490d;
  font-weight: 500;
  border-bottom:double;/*二重線を引く*/
  border-color:#fc490d;
  border-width:3px;
}

#contents-lp-form {
  width: 600px;
  margin: 30px auto 30px auto;
  background-color : #FFB75E;
  border-radius: 15px;
}

@media (max-width: 768px){
#contents-lp-form{
 width: 100%;
 }
}

#hs_cos_wrapper_widget_1721376272571{
  background: #FFFFFF;
  }



.hs-form-6899e724-7a56-44fc-8f02-15377bac1f30_91c3fd97-3b96-4633-9b38-862ba1e7e6ba .fieldset{
   margin:30px;
}

.hs-richtext .hs-main-font-element{
  margin:10px;
}

.u-bgColor--F4F4F4:not(.is-rightAligned):not(.is-leftAligned):not(.TabberSection):after{
  background-image: none;
}

/*4カラム*/
*, *:before, *:after {
    box-sizing: border-box;
}
.col_4{
    max-width: 960px;
    margin: 50px auto 70px auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    color: #333333;
    text-align: center;
}
@media (max-width: 768px){
.col_4{
 width: 100%;
 }
}

.col_text_l{
    color: #B40000;
    font-size: 28px;
    background-image: repeating-linear-gradient(-45deg,
        #F0EA30 0, #F0EA30 3px,
        transparent 3px, transparent 6px);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 30%;
}

.col_text_s{
   font-size: 60%;
}

.col_4 < *{
    width: calc( 25% - 9px );
    margin-right: 12px;
    margin-bottom: 12px;
}
.col_4 < *:nth-child(4n){
    margin-right: auto;
}
@media screen and (max-width: 960px) {
    .col_4 < *{
        width: calc( 33.33333% - 8px ) ;
    }
    .col_4 < *:nth-child(4n){
        margin-right: 12px;
    }
    .col_4 < *:nth-child(3n){
        margin-right: auto;
    }
}
@media screen and (max-width: 580px) {
    .col_4 < *{
        width: calc( 50% - 6px ) ;
    }
    .col_4 < *:nth-child(3n){
        margin-right: 12px;
    }
    .col_4 < *:nth-child(2n){
        margin-right: auto;
    }
}


/*4カラムここまで*/





.content-cards-card-img-icon img {
  width: 150px;
  /*height: 95px!important;*/
}

.u-padding--medium .service-outsource {
  padding-top: 0px;
}

.service-outsource .ColumnContentSection-icon {
  max-width: 150px;
  max-height: 150px;
}

.service-outsource .content-cards-card-button-inner-wrapper {
  padding-right: 40px;
  padding-left: 40px;
}


.service-outsource .content-cards-card-img-icon img {
  width: auto;
  height: auto;
}


.cards4area_2 img {
  padding-top: 40px;
}

.content-cards-card-description {
  margin-bottom: 10px;
}

.Content-Cards-outsource.content-cards-card-button-wrapper {
  width: 100%;
}


.case_banner{
  padding:1em;/*内側余白*/
}

#hs_cos_wrapper_widget_1721120221209{
  padding-bottom: 0px !important;
  
}

.jake-testimonial-slider{
  padding-top: 0px;
  color: #333333;
  margin: 0 auto;
	padding:2em;/*内側余白*/
  background-color: #FFF;
  /*
	background-image: repeating-linear-gradient(-45deg,#f2f3f7 0, #f2f3f7 3px,transparent 3px,transparent 6px);/*ストライプ*/
}

.lp-case-area {
  max-width: 1800px;
}


.case_area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
/*スマートフォンではflex無効*/
@media screen and (max-width:768px) {
    .case_area{
      display: block;
    }
}

.case_title {
  font-size: 24px;
  font-weight: 500;
  color: #595959;
}

.case_left {
  margin: 10px 30px 10px 30px;
}

.case_name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #595959;
}

.case_right {
  text-align:left;
  color: #333333;
  width: 400px;
  font-size:14px;
  background-color:#f0f0f0;/*背景の色*/
  padding:5px 15px 5px 15px;
}

@media screen and (max-width:768px) {
    .case_right{
      width: 100%;
    }
}

.case_text {
  line-height: 26px;
}

.cta_area {
  background-color: #FFFFFF;
}
 
.faq-mwb-container {
  margin-top: 100px;
  margin-bottom: 200px;
}

.tel_area{
  background-color:#ffb75e;
  text-align: center;
}
.tel_area hr{
  margin:0px 30px 0px 30px;
}

.tel_1 {
  height:70px;
}
.tel_2 {
   height:70px;
   color:#ffffff;
}
.tel_3{
    height:70px;
}


@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

/*サービスサイト適用*/
/*topページCTA 開始*/
.cta_top_bg_white .cta_top_bg_gray .Button--outline {
  color: #ffffff;
  background: #fccf00;
  border-color: #fccf00;
}
.cta_top_bg_white .cta_top_bg_gray .Button--outline:hover {
  color: #fccf00;
  background: #ffffff;
  border-color: #fccf00;
}
/*topページCTA 終了*/

/* 5大ポイント　*/

.img-sp {
    display: none;
}

@media screen and (max-width:560px) {
    .img-pc {
        display: none;
    }

    .img-sp {
        display: block;
    }
}

.point_no {
 margin-left: 15px;
 font-size: 72px;
 text-align: left;
 margin-bottom: 30px;
 color: #FCCF00;
}

.point_head {
 margin-left: 15px;
 font-size: 28px;
 font-weight: 500;
 text-align: left;
}

.point_discription {
 /*font-size: 18px;*/
 font-weight: 500;
 color: #595959;
 text-align: left;
 margin: 20px 15px;
}

.point_discription_sub {
 font-size: 14px;
 font-weight: 300;
 color: #595959;
 text-align: left;
 margin: 20px 15px;
}
 /*スマホサイズバージョン*/
  @media (max-width: 1630px) {
   .point .content-cards-card-wrapper.two .content-cards-card-button-wrapper {
    width: 40% !important;
  }
}
  @media (max-width: 860px) {
   .point .content-cards-card-wrapper.two .content-cards-card-button-wrapper {
    width: 100% !important;
  }
}
  @media (max-width: 1395px) {
   .point_discription {
    font-size: 14px;
  }
}
  @media (max-width: 1395px) {
   .point_discription {
    font-size: 14px;
  }
}
/* 5大ポイント ここまで */

/*料金比較表*/
.point_discription table{
  /*border-collapse: collapse;
  border-spacing: 0;*/
  table-layout: fixed;
  width: 100%;
}

/*.point_discription table tr:last-child{
  border-bottom:solid 1px #ddd;
}*/

.point_discription table th{
  text-align: center;
  padding: 15px 0;
  border-right:solid 1px #ddd;
  border-left:solid 1px #ddd;
  /*width: 155px;*/
}

/*.point_discription table th:nth-child(1){
  background-color:#dddddd;
}

.point_discription table th:nth-child(3){
  background-color:#f5b932;
  color: white;
}

.point_discription table tr:nth-child(2) td{
  font-size: 30px;
}*/

.point_discription table td{
  text-align: center;
  padding: 12px 0;
  border-right:solid 1px #ddd;
  border-left:solid 1px #ddd;
  border-bottom:solid 1px #ddd;
  /*width: 155px;*/
}

/*.point_discription table td a{
  background-color: #25b327;
  color: white;
  padding:5px 20px;
  border-radius: 30px;
  font-weight: bold;
}*/

/*.point_discription table .popular{
  width: 180px;
}

.point_discription table th.popular{
  position: relative;
}

/*.point_discription table th.popular span.no1{
  position: absolute;
  top: -10px;
  left: 30%;
  right: 30%;
  background: #b40000;
  /*width: 60px;
  font-size: 10px;
  border-radius: 15px;
  line-height: 1;
  padding: 7px;
}*/

/*.point_discription table th.popular span.inner{
  position: absolute;
  color:white;
  background-color: #fccf00;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 15px 0;
}
/*料金比較表　終了*/

.news {
  background: #fff;
  background-color: #fff;
}

body{
    background: #fff;
    background-color: #fff;
}


.recent_news_head h3, .h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 45px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, YuGothic, "游ゴシック", "ＭＳ Ｐゴシック", "MS PGothic", arial, sans-serif
}

.cta_top_bg_gray {
  background-color: #f0f0f0;
}


.materialsdounloadarea_p {
  line-height: 3;
  font-weight: 700;
  color: #69a84f !important;
}
/*
.Resource-form .ao-richtext-block ul li, .ActonFormSection .Section-content .ao-richtext-block ul li, .Career-content ul li, .Post-content ul li, .Section-content ul li, .LP-Flex .Section-header ul li {
    padding-left: 0px;
    position: static;
}

@media screen and (max-width: 819px){
.materialsdounloadarea_ul {
 font-size: 14px;
}
}
 */

#hs_cos_wrapper_widget_1733982573791 .top-heading.heading-1 {
    font-size: 46px;
  font-weight: 500;
}

.u-bgColor--F4F4F4 {
    background-color: #FFF;
}