@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;
}

/* 区切り線 */
.section-divider {
  height: 1px;
  background-color: #ddd;
  margin: 20px auto;
  max-width: 90%;
}
  
/* 注意書きエリア */
.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-wrapper {
  row-gap: 125px;
}

/* カード本文 タイトル */
.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; 
}

/* ボックス単体 最後のボックス */
.single-center-terms-hayabarai {
  flex: 0 1 45%;
  margin: 0 auto;
  margin: 0 auto 40px;
}

/* タブレット対応（768px以下） */
@media (max-width: 768px) {
  .box-terms-hayabarai,
  .single-center-terms-hayabarai {
    flex: 1 1 100%;
  }
}


/* ボックス単体 タイトル */
.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行目（見出し下線）削除 */
}
/* 比較表エリア 終了 */




/* 導入事例 */
/* セクション全体 */
.container-case-hayabarai {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 0px 20px 40px 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-radius: 12px;
  margin-bottom: 40px;
  padding: 24px;
  box-shadow: 1px 2px 6px rgba(0,0,0,0.2);
  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: 14px;
  margin-left: 1em;
  z-index: 10;
}

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


/* テキストエリア（右） 背景画像（CASE01） */
.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;
}

/* テキストエリア（右） 背景画像（CASE02） */
.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;
}

/* テキストエリア（右） 背景画像（CASE03） */
.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;
}



/* タブレット対応（768px以下） */
@media (max-width: 768px) {
  .case-content-hayabarai {
    flex-direction: column;
  }

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

  .case-bg-hayabarai1,
  .case-bg-hayabarai2,
  .case-bg-hayabarai3 {
    width: 120px;
    height: 120px;
  }
}



/* 質問エリア */
/* セクション全体 */
.faq-section-question-hayabarai {
  background-color: #f0f0f0;
  padding: 40px 30px 60px;
  color: #333;
  text-align: center;
}

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

/* 質問項目 */
.faq-item-question-hayabarai {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

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

/* 質問項目 アイコン（＋） */
.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-question-question-hayabarai:hover {
  background-color: #fff;
}

.faq-question-question-hayabarai.active {
  background-color: #fccf00;
}

  
.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: #fccf00;
  line-height: 1.8;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

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

.faq-answer-question-hayabarai p {
  margin-bottom: 50px;
}

.icon-tick-hayabarai2 {
  margin: 0.1em 1em 0 0;
  color: #333;
}




@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%;
  }
}



/* 問合せエリア */
/* セクション全体 */
.information-area {
    padding: 40px 30px 60px;
}

/* カード下部テキスト */
.hours {
  font-size: 20px;
  font-weight: 500;
  padding: 0px 20px 75px 20px;
}

/* カード全体 */
.contact-information-hayabarai {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px; /* Increased gap between boxes */
  padding: 0px 20px 80px 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: 1px 2px 6px rgba(0,0,0,0.2);
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

/* カード本体 アイコン */
.contact-information-hayabarai__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin-bottom: 24px;
  color: #333; 
  width: 100%;
}

/* カード本体 テキスト */
.contact-information-hayabarai__text {
  font-size: 22px;
  font-weight: bold;
}

.tel-number a {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1px;
}

.tooltip {
  font-size: 18px;
  word-break: break-word;
  padding-top: 20px;
  position: relative;
	display: inline-block;
	cursor: pointer;
}

.note {
  font-size: 16px;
  padding-top: 20px;
}


@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 {
    font-size: 64px;
  }
}


/* カード本体 Eメールコピー */
.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: 60px;
	left: 50%;
	transform: translateX(-50%);
}


.tooltip.show .tooltiptext {
	visibility: visible;
	opacity: 1;
}
/* 問合せエリア 終了 */



/* フッターエリア */
/* セクション全体 */
.footer-container {
  max-width: 1000px;
  margin: 50px auto 50px;
  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;
  }
}



/* footer ここまで */