@charset "utf-8";

.copd-paper{
    background-color: #ffffff!important;
    border-bottom: 1px solid #0070c0!important;
    color: #0070c0!important;
    font-weight: bold!important;
    justify-content: center!important;
    height: 82px;
    text-align: center;
}

.s-list-contents-5 dd .box:first-child::before{
    content: "実施背景"!important;
}

.s-list-contents-5 dd .box:last-child::before{
    content: "実施内容"!important;
}

.inbound-sightseeing-project-box1{
    font-weight: normal;
    padding: 20px;
    min-height: 315px;


    display: flex;
    flex-direction: column; /* 中身を縦に並べる */
    box-sizing: border-box;
}

.insidesales-project-box2{
    font-weight: normal;
    padding: 20px;
    min-height: 415px;
    box-sizing: border-box;
}


/* 2枠を横並びにするコンテナ */
.results-container {
  display: flex;
  flex-direction: row; 
  flex-wrap: nowrap;     /* 【重要】PCでは絶対に折り返さない設定 */
  gap: 20px;
  width: 100%;
  align-items: stretch;  /* 高さを揃える */
}

/* 個別の実績枠 */
.result-item {
  /* 【重要】画像サイズに負けないよう、幅を50%に固定する */
  flex: 0 0 calc(50% - 10px); 
  max-width: calc(50% - 10px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}


/* ロゴエリアの画像制御 */
.logo-area img {
  width: 100%;       /* 親の幅（50%）に合わせる */
  height: auto;      /* アスペクト比を維持 */
  max-height: 50px;  /* 大きくなりすぎないよう制限（お好みで） */
  object-fit: contain; /* 枠内で綺麗に収める */
}

.logo-area{
  min-height: 50px;
  text-align: center;
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: center;
  font-weight: bold;
  font-size: 105%;
}

.result-title{
    font-weight:bold;
    text-align: center;
    color: #0070c0;
}

/* 白い詳細ボックス（中身のテキスト量に関わらず高さを揃える場合） */
.result-detail {
  background-color: #ffffff;
  padding: 15px;
  font-size: 90%;
  flex-grow: 1; /* これを入れると左右の箱の高さが揃います */
  margin-top: 5px;
}

.check-text{
    padding-top:10px;
}


.logo-under {
  border: none;           /* デフォルトの線を消す */
  height: 1px;            /* 線の太さ */
  background-color: #000000; /* 線の色（薄いグレー） */
  width: 100%;            /* 横幅いっぱい */
}


  .contactcenter-efficient_about-1{
    min-height: 152px;
  }
  
  .contactcenter-efficient_about-2{
    min-height: 152px;
  }

  .flowbox-short{
    height: 160px!important;
  }


/* スマホ用の設定（画面幅が狭い時だけ縦にする） */
@media (max-width: 768px) {
  .results-container {
    flex-wrap: wrap; /* スマホでは折り返しを許可 */
  }
  .result-item {
    flex: 0 0 100%;  /* 幅いっぱいにする */
    max-width: 100%;
    padding-top: 20px;
  }
}


/*参考部分*/
.kb-wrapper {
  --kb-color-header: #0070c0;
  --kb-color-light: #deebf7;
  --kb-color-medium: #bdd7ee;
  --kb-color-medium-dark: #9dc3e6;
  --kb-color-dark: #2e75b6;
  --kb-color-gray: #f2f2f2;
  --kb-color-medium-title: #b4c7e7;
  --kb-side-width: 200px; /* ここで幅を一括管理 */
  
  max-width: 1000px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  line-height: 1.6;
}

.kb-header {
  background-color: var(--kb-color-header);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
}

.kb-row {
  display: flex;
  align-items: stretch; /* 左右の高さを強制的に揃える */
  gap: 15px;
}

/* 左側：幅を200pxから絶対に動かさない設定 */
.kb-category-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: var(--kb-side-width);
  min-width: var(--kb-side-width); /* 縮まないように固定 */
  max-width: var(--kb-side-width); /* 広がらないように固定 */
  flex-shrink: 0;
}

.kb-category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--kb-side-width);
  min-width: var(--kb-side-width);
  max-width: var(--kb-side-width);
  flex: 1; /* 高さを親（row）に合わせる */
  padding: 15px;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* 右側：残りの幅をすべて使う */
.kb-main-content {
  flex: 1;
  min-width: 0;
}

.kb-title {
  padding: 10px 20px;
  border-radius: 50px;
  margin: 0 0 10px 0;
  text-align: center;
  font-weight: bold;
}

.kb-chat-box {
  background-color: var(--kb-color-gray);
  padding: 12px 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  border-radius: 4px;
}

.kb-chat-box::before {
  content: "\1F4AC"; 
  margin-right: 12px;
  filter: grayscale(1);
  opacity: 0.5;
}

.kb-chat-box p {
  margin: 0;
}

.kb-action-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  color: var(--kb-color-dark);
  font-weight: bold;
}

.kb-action-list li {
  margin-bottom: 8px;
}

/* 色設定 */
.kb-bg-light { background-color: var(--kb-color-light); color: #333; }
.kb-bg-medium { background-color: var(--kb-color-medium); color: #333; }
.kb-bg-medium-dark { background-color: var(--kb-color-medium-dark); color: #fff; }
.kb-bg-dark { background-color: var(--kb-color-dark); color: #fff; }
.kb-title-light { background-color: var(--kb-color-light); color: var(--kb-color-dark); }
.kb-title-medium { background-color: var(--kb-color-medium-title); color: var(--kb-color-dark); }
.kb-title-dark { background-color: var(--kb-color-dark); color: #fff; }


.black-line {
  height: 0.5px;          /* 線の太さ */
  background: black;    /* 線の色 */
  margin: 10px 0;      /* 上下に10px、左右に0の余白 */
  width: 100%;          /* 線の長さ（必要に応じて調整してください） */
}


/* --- ラベル行（テーマ / 課題と施策）の追加スタイル --- */

.kb-label-row {
  display: flex;
  gap: 15px; /* 下の.kb-rowと同じ余白にする */
  color: var(--kb-color-dark);
  font-weight: bold;
  padding-bottom: 5px; /* 下のボックスとの間隔微調整 */
}

/* 「テーマ」ラベルの幅を固定（下のボックス幅と合わせる） */
.kb-label-theme {
  width: var(--kb-side-width);
  min-width: var(--kb-side-width);
  text-align: center;
  flex-shrink: 0;
}

/* 「課題と施策」ラベルを右側に配置 */
.kb-label-strategy {
  flex: 1;
  text-align: center;
}

/* --- スマホでラベルを隠す設定（メディアクエリ内に追加してください） --- */
@media (max-width: 768px) {
  .kb-label-row {
    display: none;
  }
}


/* スマホ対応 */
@media (max-width: 768px) {
  .kb-row {
    flex-direction: column;
  }
  .kb-category-stack, .kb-category {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .kb-category {
    flex: none;
    padding: 10px;
  }
}


/*参考②*/
/* 全体のコンテナ設定 */
.kcs-container {
  display: flex;
  gap: 20px; /* カード間の隙間 */
  max-width: 1000px;
  margin: 20px auto 0px;
}

/* カードの基本設定 */
.kcs-card {
  flex: 1; /* 幅を均等にする */
  background-color: #fff;
  text-align: center;
}

/* ヘッダー部分 */
.kcs-header {
  background-color: #e9ebee; /* 画像に合わせた薄いグレー */
  color: #2c3e70; /* 濃い紺色 */
  margin: 0;
  padding: 5px;
  font-weight: bold;
}

/* ボディ部分（テキストエリア） */
.kcs-body {
  padding: 15px;
  color: #333;
}

/* サブタイトル（太字部分） */
.kcs-subtitle {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* 説明文 */
.kcs-description {
  line-height: 1.6;
  margin: 0;
}

/* --- レスポンシブ対応（スマホ表示） --- */
@media (max-width: 768px) {
  .kcs-container {
    flex-direction: column; /* 縦並びに変更 */
  }
  
}


/*受講対象者*/

/* 新しいコンテナ設定（干渉防止のため v2 を付与） */
.kcs-v2-container {
  display: flex;
  gap: 15px; /* カード同士の隙間を少し詰めました */
  max-width: 1200px; /* 3つ並ぶため少し広めに設定 */
  margin: 20px auto;
}

/* カードの基本設定 */
.kcs-v2-card {
  flex: 1; /* 3つの幅を均等にします */
  background-color: #fff;
}

/* ヘッダー部分 */
.kcs-v2-header {
  background-color: #e9ebee;
  color: #2c3e70;
  margin: 0;
  padding: 5px;
  font-weight: bold;
  text-align: center;
}

/* ボディ部分 */
.kcs-v2-body {
  padding: 10px;
  color: #333;
  letter-spacing: 0;
}

/* サブタイトル */
.kcs-v2-subtitle {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* 説明文 */
.kcs-v2-description {
  line-height: 1.6;
  margin: 0;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 992px) {
  /* タブレットなどの幅では2つ並びにする（任意） */
  .kcs-v2-container {
    flex-wrap: wrap; /* 折り返しを許可 */
  }
  .kcs-v2-card {
    flex: calc(50% - 15px); /* 2カラムにする計算 */
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  /* スマホでは1枚ずつ縦並び */
  .kcs-v2-container {
    flex-direction: column;
  }
  .kcs-v2-card {
    flex: none;
    width: 100%;
  }

  .kcs-container-last{
    gap: 0;
  }
  
  .kcs-body-last{
    padding: 0 ;
  }
}


/*オペレーターのモチベーションを高める*/

:root {
    --op-card-bg-blue: #d8f0ff;
    --op-card-border-color: #3b3b6d;
    --op-card-gap: 20px;
}

.op-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--op-card-gap);
    max-width: 1200px; /* 3列に合わせて最大幅を少し広げました */
    margin: 20px auto;
    box-sizing: border-box;
}

.op-card-item {
    /* PC: 3列 (100% / 3) */
    flex: 1 1 calc(33.333% - var(--op-card-gap));
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    border: 3px solid var(--op-card-border-color);
    box-sizing: border-box;
}

.op-card-text {
    margin: 0;
    padding: 0;
    font-weight: bold;
    line-height: 1.6;
    /* フォントサイズ・種類の指定を削除しました */
}

.op-card-item.op-card-is-highlight {
    background-color: var(--op-card-bg-blue);
    border: none;
}

/* タブレット対応: 2列 (画面幅1024px以下) */
@media screen and (max-width: 1024px) {
    .op-card-item {
        flex: 1 1 calc(50% - var(--op-card-gap));
    }
}

/* モバイル対応: 1列 (画面幅600px以下) */
@media screen and (max-width: 600px) {
    .op-card-item {
        flex: 1 1 100%;
        min-height: 100px;
    }
}


.kcs-header-1line {
  background-color: #e9ebee; /* 画像に合わせた薄いグレー */
  color: #2c3e70; /* 濃い紺色 */
  margin: 20px 0;
  padding: 5px;
  font-weight: bold;
  text-align: center;
}

/*お客様の言葉で作る*/

.customer-word{
  text-align: center;
}
.customer-word img{
  max-width: 750px;
  padding: 20px;
}


@media screen and (max-width: 769px) {
  .customer-word img{
    max-width: 100%;
  }
}


/* 営業スタイル */
.strategy-flex {
    display: flex;
    align-items: stretch;
    column-gap: 20px;
}

.strategy-box01 {
    width: 50%;
    background-color: #f2f2f2;
    padding: 20px;
}

.strategy-box01 dt {
    font-size: 120%;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #5fbbf0;
}

.strategy-box02 {
    width: 50%;
    background-color: #f2f2f2;
    padding: 20px;
}

.strategy-box02 dt {
    font-size: 120%;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background-color: #333464;
}

/* 矢印 */
.suggestion-arrow__right {
    width: 5%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.suggestion-arrow__right-content {
    height: 80px;
    width: 100%;
    -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    background: #333464;

}

/* 画像を一番下に固定する設定 */
.bottom-image {
  /*margin-top: auto;*//*←ロゴ復活のときに復活させること！！*/ /* 上部の余白を自動で埋め、下へ押し出す */
  width: 100%;
}

.bottom-image img {
  width: 100%;
  display: block; /* 画像下の不要な隙間を消す */
}


/* 全体のコンテナ */
.status-table {
  display: flex;
  width: 100%;
  margin: 20px 0;
  line-height: 1.4;
}

/* 「ステータス」ラベル */
.status-label {
  background-color: #d8d8d8;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-right: 5px;
}

/* データ部分：比率を個別に設定 */
.status-grid {
  display: grid;
  /* 左3つを狭く(0.8倍)、右3つを広く(1.2倍)設定 */
  grid-template-columns: 0.8fr 0.8fr 0.8fr 1.2fr 1.2fr 1.2fr;
  flex: 1;
  gap: 5px;
}

/* 各カラムの構造 */
.status-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* 見出し部分 */
.status-header {
  background-color: #d8d8d8;
  padding: 10px 5px;
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  flex: 1;
}

/* コンテンツ部分 */
.status-content {
  background-color: #f2f2f2;
  padding: 15px 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1.5;
  word-break: break-all; /* 必要に応じて改行を許可 */
}

/* --- レスポンシブ対応 (スマホ) --- */
@media (max-width: 900px) {
  .status-table {
    flex-direction: column;
  }
  
  .status-label {
    margin-right: 0;
    margin-bottom: 5px;
    white-space: normal;
  }

  .status-grid {
    /* スマホでは比率をリセットして1列に */
    grid-template-columns: 1fr;
  }

  .status-item {
    flex-direction: row;
    margin-bottom: 2px;
  }

  .status-header {
    width: 35%;
    min-height: auto;
  }

  .status-content {
    width: 65%;
    text-align: center;
    padding: 15px;
  }

  
}

@media screen and (max-width: 769px) {

.copd-paper{
    height: auto;
}

    /* 営業スタイル */
    .strategy-flex {
        row-gap: 20px;
        flex-direction: column;
    }

    .strategy-box01 {
        width: 100%;
    }

    .strategy-box01 img {
        margin: 0 auto;
    }

    .strategy-box02 {
        width: 100%;
    }

    /* 矢印 */
    .suggestion-arrow__right {
        width: 100%;
        margin-block: 10px;
    }

    .suggestion-arrow__right-content {
        height: 5vw;
        width: 30%;
        -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
        clip-path: polygon(0% 0%, 100% 0%, 50% 100%);

    }

    .inbound-sightseeing-project-box1{
        min-height: auto;
    }

    .insidesales-project-box2{
      min-height: auto;
  }

  .contactcenter-efficient_about-1{
    min-height: 177px;
  }
  
  .contactcenter-efficient_about-2{
    min-height: 142px;
  }

  .flowbox-short{
    height: auto!important;
  }




}

