
/*----------------------------------------------------------------------------
  機能一覧
----------------------------------------------------------------------------*/

/* ラッパー設定（1200px幅） */
.function-grid-wrap {
  box-sizing: border-box;
}

/* 1行ごとの基本デザイン */
.function-grid-row {
  display: grid;
  grid-template-columns: 220px 1fr; /* 左: 220px固定, 右: 残り可変 */
  align-items: flex-start; /* 上揃え */
  gap: 24px;
  padding: 16px 8px;
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
}

/* 一番最初の行だけに上罫線を追加 */
.function-grid-row:first-child {
  border-top: 1px solid #e2e8f0;
}

/* ホバー時の背景 */
.function-grid-row:hover {
  background-color: #f8fafc;
}

/* 項目名（左側）：文字をダークカラーにしてリンク誤認を防止 */
.function-grid-head {
  font-weight: bold;
  color: #1e293b; /* リンクと被らない濃いスレートグレー（ほぼ黒） */
  background-color: #f1f5f9; /* 淡い上品なグレー背景 */
  border: 1px solid #cbd5e1; /* 輪郭をクッキリさせる薄いグレー枠 */
  border-radius: 6px;
  padding: 6px 12px;
  line-height: 1.5;
  width: 100%; 
  box-sizing: border-box;
  text-align: center;
}

/* 内容（右側） */
.function-grid-body {
  color: #2b3648;
  padding-top: 7px; /* 項目名（左）と高さを揃える */
  line-height: 1.5;
}

/* 注記全体（※〜）のテキスト設定 */
.function-grid-body .note {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #64748b;
}

/* 「※」記号のみを赤字にする設定 */
.function-grid-body .c-at {
  color: #e53e3e; /* 赤色 */
  font-weight: bold;
}

/* ----------------------------------
 * レスポンシブ対応 (768px以下)
 * ---------------------------------- */
@media screen and (max-width: 768px) {
  .function-grid-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .function-grid-head {
    width: 100%;
    text-align: left;
  }

  .function-grid-body {
    padding-top: 0;
  }
}

/*----------------------------------------------------------------------------
  カテゴリータブ
----------------------------------------------------------------------------*/

  .sec-tab-contents{
    background-image: linear-gradient(180deg, rgba(243, 243, 246, 1), rgba(255, 255, 255, 1) 15%);
    position: relative;
  }
.sec-tab-charlie{
  position: absolute;
    top: -92px;
    left: 50px;
}  
@media screen and (max-width: 1600px) {
  .sec-tab-charlie{
    display: none;
  }  
}


  .function-tab-wrap{
    padding-top: 100px;
  }
  @media screen and (max-width: 768px) {
    .function-tab-wrap{
      padding-top: 50px;
    }
  }
  
  .function-tab-inner{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  .tabselect{
    display: flex;
  }
  .function-tab-inner a{
    display: flex;
    width: calc(100% /5);
    padding: 20px 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: 2px solid #DDD;
    border-bottom: 0;
    border-radius: 5px 5px 0 0;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    position: relative;
  }
  @media screen and (max-width: 768px) {
    .function-tab-inner a{
      padding: 15px 10px;
      font-size: 14px;
      margin: 0 3px;
    }
  }

  .function-tab-inner a:hover{
    background: #146397;
    font-weight: 600;
    color: #FFF;
    border: 2px solid #146397;
    border-bottom: 0;
    text-decoration: none;
  }

  .function-tab-inner a.active{
    background: #146397;
    font-weight: 600;
    color: #FFF;
    border: 2px solid #146397;
    border-bottom: 0;
  }
  
  @media screen and (max-width: 768px) {
    .function-tab-inner a:before,
    .function-tab-inner a.active:before{
      display: none;
    }
  }

  
  .function-tab-inner a.active:after{
    content: "";
    position: absolute;
    bottom: -23px;
    left: 50%;
    margin-left: -12px;
    border: 12px solid transparent;
    border-top: 12px solid #146397;
    z-index: 98;
}
  
.function-tab-inner a span{
  display: flex;
  font-size: 14px;
  justify-content: center;
  width: 100%;
}


/*----------------------------------------------------------------------------
  冒頭のフォーカスポイント
----------------------------------------------------------------------------*/

.point-wrap {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.point-inner{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.point-1block{
  width: 240px;
  margin: 0 25px;
}
.point-1block--4col{
  width: 220px;
  margin: 0 15px;
}
@media screen and (max-width: 1230px) {
  .point-1block--4col{
    width: 180px;
    margin: 0 15px;
  }
  .point-1block br{
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .point-inner{
    justify-content: space-between;
  }
  .point-1block{
    width: 48%;
    margin: 10px 0;
  }
  .point-1block--4col{
    width: 48%;
    margin: 10px 0;
  }
}


/*
.point-1block:first-child{
  border-left: none;
}
*/
.point-image{
  text-align: center;
  margin-bottom: 10px;
}
.point-image img{
  height: 100px;
  width: auto;
}
.point-text{
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}
.point-text:before{
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f058";
	padding-right: 5px;
  color: #bf9a35;
}


/*----------------------------------------------------------------------------
  課題解決型
----------------------------------------------------------------------------*/

.kadai-wrap{
  display: flex;
  justify-content: center;
}

.kadai-1block{
  max-width: 220px;
  width: 100%;
  margin: 0 30px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
  .kadai-1block img{
    max-height: 150px;
  }

@media screen and (max-width: 768px) {
  .kadai-wrap{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .kadai-1block{
    max-width: initial;
    max-width: auto;
    width: 30%;
    font-size: 1.4rem;
    margin: 0;
  }
}
  
  .kadai-title{
    font-size: 30px;
    text-align: center;
  }
  .kadai-title span{
    display: block;
    font-size: 22px;
  }
  
.sec-solution{
  position: relative;
  background: #dbedf7;
}
  .sec-solution .sec-inner{
    padding-top: 120px;
  }
@media screen and (max-width: 768px) {
  .sec-solution .sec-inner{
    padding-top: 40px;
  }
}

.title-solution {
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.45;
  background-color: #146397;
  border-radius: 100px;
  max-width: 700px;
  margin: 0 auto;
  padding: 15px 10px;
  letter-spacing: 0.05em;
  color: #FFF;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
}
  .title-solution span{
    font-size: 18px;
    display: block;
  }
.title-solution::after {
  content: url("/webchohyobin/images/function/kadai-triangle.svg");
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
}
  @media screen and (max-width: 768px) {
  .title-solution {
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
    top:0;
    right: auto;
  }
    .title-solution span{
      font-size: 14px;
    }
  .title-solution::after {
    display: none;
  }
}

  .solution-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .solution-text{
    width: 55%;
  }
.solution-text h3{
  font-size: 18px;
}
  .solution-illust{
    width: 41%;
    margin-left: 4%;
    text-align: right
  }
  @media screen and (max-width: 768px) {
    .solution-text{
      width: 100%;
    }
    .solution-illust{
      width: 100%;
      margin: 0;
      margin-top: 20px;
      text-align: center;
    }
  }



/*----------------------------------------------------------------------------
   3つのポイント Outlook用
----------------------------------------------------------------------------*/

.flow-point{
    padding:40px 20px;
    background:#fff;
}

.flow-point__inner{
    max-width:1000px;   /* 1200pxでもOK */
    margin:0 auto;

    display:flex;
    gap:28px;
    justify-content:center;
}

.flow-card{

    flex:1;

    background:#f8f8f8;
    border:2px solid #d8d8d8;
    border-radius:18px;

    padding:24px 20px;

    text-align:center;

    transition:.25s;
}

  /*
.flow-card:hover{

    border-color:#146397;

    transform:translateY(-4px);

    box-shadow:0 10px 24px rgba(0,0,0,.08);

}*/

.flow-card__num{

    display:inline-block;

    color:#146397;

    font-size:20px;

    font-weight:700;

    line-height:1;

    margin-bottom:5px;

}

.flow-card__text{

    margin:0;

    font-size:18px;

    line-height:1.5;

    font-weight:700;

    color:#333;

}

@media (max-width:768px){

    .flow-point__inner{

        flex-direction:column;

        gap:18px;

    }

    .flow-card__text{

        font-size:20px;

    }

}
  


/*----------------------------------------------------------------------------
   途中のフォーカスポイント issueで使用
----------------------------------------------------------------------------*/

.features-container {
  display: grid;
  /* 自動でカードの幅を均等に伸ばし、最低幅(240px)を下回ったら折り返す設定 */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
  
.feature-card {
  flex: 1;
  background-color: #f9f9f9;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 20px 18px 24px; /* 上・左右・下 */
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 「ポイント01」などの小さなラベル */
.feature-label {
  font-size: 12px;              /* ご指定の12px */
  font-weight: bold;
  color: #005691;               /* メインの青色 */
  background-color: #eaf2f8;    /* 控えめな薄い背景色 */
  padding: 3px 10px;            /* ラベルの内側余白 */
  border-radius: 12px;          /* カプセル型の丸み */
  margin-bottom: 12px;          /* タイトルとの間の余白 */
  display: inline-block;
  letter-spacing: 0.05em;       /* 少し文字間隔を広げて整える */
}

/* タイトル部分（青文字） */
.feature-title {
  color: #005691;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* 強調文字（オプション） */
.highlight-price {
  font-size: 22px;
  color: #e65100;
}

/* 本文（黒文字） */
.feature-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}


/*----------------------------------------------------------------------------
  その他
----------------------------------------------------------------------------*/



	.screen-wrap{
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
	}

.slide-text{
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}

  .newfunc{
    position: relative;
  }
  .newfunc-icon{
    position: absolute;
    top: -20px;
    right: -15px;
  }
  @media screen and (max-width: 768px) {
  .newfunc-icon{
    display: none;
  }
}

