@charset "UTF-8";
/* =========================================================
   外部フォント
========================================================= */
@import url("https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* =========================================================
   Reset
========================================================= */
* {
  box-sizing: border-box; }

::before, ::after {
  box-sizing: inherit; }

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; }

body {
  margin: 0; }

main {
  display: block; }

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0; }

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none; }

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td, th {
  vertical-align: top;
  padding: 0; }

/* =========================================================
   Root tokens
========================================================= */
:root {
  --c-primary: #3867FF;
  --c-primary-dark: #2951db;
  --c-text-on-primary: #fff;
  --container: 1200px;
  --container-anchor: 820px; }

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  height: -webkit-fill-available; }

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: "Noto Sans JP", sans-serif, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #39424B; }

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto; }

.container-anchor {
  width: min(100% - 40px, var(--container-anchor));
  margin-inline: auto; }

/* =========================================================
   Breakpoints（統一・5段階）
========================================================= */
/* Media mixins */
/* =========================================================
   Header
========================================================= */
.header {
  width: 100%;
  padding: 0 0 0 20px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 97;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ebebeb;
  /* 右側アクション */ }
  .header__inner {
    width: 100%;
    display: flex;
    justify-content: space-between; }
  .header__logo {
    display: flex;
    align-items: center; }
  .header__logo-img {
    display: inline-block;
    margin-right: 1em;
    width: 91px;
    padding-bottom: 5px; }
    .header__logo-img .img {
      background: url(/media_library/grhpcommon/images/logo_tkc.svg) no-repeat bottom left/contain;
      width: 91px;
      height: 28px; }
  .header__actions {
    padding: 10px; }
    .header__actions .header__nav-list {
      display: flex;
      gap: 5px; }
    .header__actions .header__nav-link {
      display: block;
      padding: 10px;
      background: var(--c-primary);
      color: #fff;
      border-radius: 10px;
      font-size: clamp(1.4rem, 2vw, 1.8rem);
      font-weight: 700;
      min-width: 250px;
      text-align: center;
      letter-spacing: .1em;
      transition: transform .12s ease; }
      .header__actions .header__nav-link:hover {
        transform: translateY(1px);
        background-color: #325adb; }
      @media (max-width: 768px) {
        .header__actions .header__nav-link {
          min-width: auto; } }

/* =========================================================
   MV
========================================================= */
.mv {
  text-align: center; }
  .mv__inner {
    padding: 50px 20px; }
    @media (max-width: 768px) {
      .mv__inner {
        padding: 50px 20px 20px; } }
  .mv h1 {
    font-size: clamp(3rem, 2vw, 4.2rem);
    font-weight: 800;
    color: var(--c-primary);
    letter-spacing: .1em;
    padding-bottom: 30px; }
  .mv .sublead {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: .1em; }
    @media (max-width: 768px) {
      .mv .sublead {
        font-size: 1.6rem;
        line-height: 1.6; } }

.slick-thumbnails {
  display: flex;
  flex-wrap: wrap; }

.notes {
  padding-top: 20px;
  width: min(100% - 40px, 1020px);
  font-size: 15px;
  line-height: 1.5; }
  @media (max-width: 768px) {
    .notes {
      padding: 20px 0 50px; } }
  .notes li {
    padding-bottom: 5px;
    font-size: 15px; }
    @media (max-width: 768px) {
      .notes li {
        font-size: 13px; } }
  .notes__mv {
    padding-bottom: 100px;
    font-size: 13px;
    padding-left: 3em;
    text-indent: -3em; }
  .notes__addition {
    background: #fff;
    padding: 30px;
    font-size: 1.6rem;
    margin-top: 20px;
    border: solid 1px #e9efff;
    line-height: 1.7; }
  .notes__main {
    text-align: center;
    padding: 0 0 100px;
    text-indent: -1em; }
  .notes a {
    text-decoration: underline; }
    .notes a:hover {
      color: #325adb;
      opacity: 0.7;
      transition: opacity .4s; }

/* =========================================================
   Anchor band（ページ内リンク帯）
========================================================= */
.anchor-band {
  background: var(--c-primary);
  color: var(--c-text-on-primary);
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08); }
  .anchor-band__title {
    margin: 0 0 25px;
    text-align: center;
    font-size: clamp(20px, 4vw, 35px);
    font-weight: 700;
    letter-spacing: .04em; }
  .anchor-band__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center; }
    @media (max-width: 640px) {
      .anchor-band__grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) {
      .anchor-band__grid {
        grid-template-columns: 1fr; } }

/* 白い角丸ボタン */
.anchor-btn {
  --w: 320px;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  width: min(100%, var(--w));
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 2rem;
  background: #fff;
  color: var(--c-primary);
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: 0 4px 12px rgba(10, 30, 70, 0.15);
  transition: transform .12s ease; }
  .anchor-btn:hover {
    transform: translateY(2px);
    opacity: 0.8; }
  .anchor-btn .caret {
    inline-size: .75rem;
    block-size: .75rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: .8; }
  .anchor-btn:after {
    content: "";
    display: block;
    position: absolute;
    inline-size: 1rem;
    block-size: 1rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    right: 20px;
    top: 38%;
    opacity: .8; }

/* 固定ヘッダー対策（アンカー到達位置） */
.section,
#regi, #costing, #sales, #expense, #others, #attendance {
  scroll-margin-top: 20px; }

/* =========================================================
   Section（共通）
========================================================= */
.section__inner {
  padding: 100px 0; }
  @media (max-width: 768px) {
    .section__inner {
      padding: 50px 0; } }
.section__title-h2 {
  font-size: clamp(20px, 3vw, 3.8rem);
  text-align: center;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: .1em; }
  .section__title-h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: var(--c-primary);
    margin: 30px auto 0; }

.bg__blue {
  background: #f7f9ff; }

@media print, screen and (min-width: 769px) {
  .pc {
    display: block !important; } }
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important; } }
@media print, screen and (min-width: 769px) {
  .sp {
    display: none !important; } }
@media only screen and (max-width: 768px) {
  .sp {
    display: block !important; } }
/* =========================================================
   TABLE（BEM）
========================================================= */
/* スクロール親カード */
.table-card {
  width: min(1024px, 92vw);
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e7ecf5;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(20, 40, 80, 0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* スクロールの視覚ヒント（任意） */ }
  .table-card.table-card--wide {
    width: min(1060px, 92vw); }
  @media (max-width: 1024px) {
    .table-card {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch; }
      .table-card::after {
        content: '';
        position: sticky;
        right: 0;
        bottom: -1px;
        width: 24px;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 70%);
        pointer-events: none; } }

/* テーブル本体 */
.table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  /* セル共通 */
  /* セル内の高さ担保用ラッパー */
  /* 連携元システム（ロゴ＋リンクの縦並び） */
  /* 中央寄せ列 */
  /* ロゴ枠（グレーの箱） */ }
  .table thead th {
    padding: 8px 10px;
    background: #f7f9ff;
    font-size: 14px;
    font-weight: 700;
    color: #6b7a90;
    border-bottom: 1px solid #e7ecf5;
    border-right: 1px solid #e7ecf5;
    text-align: center; }
  .table tbody tr {
    border-bottom: 1px solid #e7ecf5; }
  .table tbody .table__col {
    padding: 14px;
    font-size: 15px;
    background: #fff;
    border-right: 1px solid #e7ecf5;
    vertical-align: middle;
    overflow-wrap: break-word;
    /* 長い語も改行 */
    word-break: break-word;
    /* Safari対策（必要なら break-all でも可） */ }
  .table__cell {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; }
  .table__col--system .table__cell {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .table__col--system .table__cell a {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      /* 2行まで表示 */
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%; }
      .table__col--system .table__cell a .no_link {
        pointer-events: none;
        cursor: default;
        text-decoration: none; }
  .table__col--system-name a {
    color: #2f5bf0;
    text-decoration: underline;
    font-weight: 600;
    line-height: 1.4; }
    .table__col--system-name a .no_link {
      pointer-events: none;
      cursor: default;
      text-decoration: none; }
  .table__col--method {
    text-align: center;
    line-height: 1.5; }
    .table__col--method span {
      font-size: 80%;
      font-weight: bold;
      vertical-align: top; }
  .table__col--category {
    text-align: center;
    font-weight: 600; }
  .table__col--company {
    overflow-wrap: break-word;
    word-break: break-word; }
  .table__logo {
    margin: 5px; }
    .table__logo img {
      width: 85%; }

/* 中身で“列を押し広げない”ための保険 */
.link-external {
  background: center right / contain no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 0 24 24' width='24px' fill='%231366E2'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M19 19H5V5h7V3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 20px;
  padding-right: 22px; }

/* タグ群（TKCシステムのピル） */
.tag-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0px;
  /* タグ折返し過多の防止＆横スクロール促進 */
  max-width: 100%;
  /* 旧HTML互換（liにクラスが付いていない場合でも最低限見栄え） */ }
  @media (max-width: 1024px) {
    .tag-list {
      min-width: 360px; } }
  .tag-list__item, .tag-list > li:not(.tag-list__item) {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9efff;
    color: #2f5bf0;
    border: 1px solid #d7e3ff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    padding: 10px 8px;
    min-height: 60px; }
    .tag-list__item--ghost {
      background: transparent !important;
      border-color: transparent !important;
      color: transparent !important;
      pointer-events: none; }

/* 共通の最小幅 */
:root {
  --table4-min: 1024px;
  /* 4列 */
  --table5-min: 1060px;
  /* 5列（その他） */ }

/* PCは100%で必ず揃える */
.table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse; }

/* 横スクロールはラッパーが担当（共通） */
.table-card {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

/* タブレット以下：読みやすい最小幅を共通で確保 */
@media (max-width: 1024px) {
  .table.table--four {
    min-width: var(--table4-min); }

  .table.table--with-category {
    min-width: var(--table5-min); } }
/* =========================================
   4列テーブルの列幅（全ブロック共通）
========================================= */
/* 連携元システム */
/* 提供元 */
/* 連携方法 */
/* TKCシステム ← 48% → 45%へ微調整(例)：横スクロール緩和 */
.table.table--four colgroup col:nth-child(1) {
  width: 23%; }
.table.table--four colgroup col:nth-child(2) {
  width: 17%; }
.table.table--four colgroup col:nth-child(3) {
  width: 12%; }
.table.table--four colgroup col:nth-child(4) {
  width: 38%; }

/* =========================================
   5列（その他）
========================================= */
/* カテゴリ */
/* 連携元システム */
/* 提供元 */
/* 連携方法 */
/* TKCシステム */
.table.table--with-category colgroup col:nth-child(1) {
  width: 10%; }
.table.table--with-category colgroup col:nth-child(2) {
  width: 23%; }
.table.table--with-category colgroup col:nth-child(3) {
  width: 17%; }
.table.table--with-category colgroup col:nth-child(4) {
  width: 12%; }
.table.table--with-category colgroup col:nth-child(5) {
  width: 38%; }

.table__col {
  overflow-wrap: break-word;
  word-break: break-word; }

/* 連携元名は2行で収める（高さ揃えに効く） */
.table__col--system .table__cell a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%; }
  .table__col--system .table__cell a .no_link {
    pointer-events: none;
    cursor: default;
    text-decoration: none; }

/* ピル*/
.tag-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 100%;
  min-width: 0; }

/* =========================================================
   関連リンク
========================================================= */
.relation {
  background: #fff; }
  .relation__inner {
    padding: clamp(24px, 4vw, 100px) 0;
    text-align: center; }
  .relation__fxProducts_title {
    color: var(--c-primary);
    font-size: clamp(20px, 3.4vw, 28px);
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: .03em; }
  .relation__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px; }
    @media (max-width: 820px) {
      .relation__nav {
        grid-template-columns: 1fr;
        gap: 20px; } }
  .relation__button, .relation .relation-pill {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 12px 18px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-primary);
    background: #fff;
    border: 2px solid var(--c-primary);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transition: transform .12s ease, box-shadow .12s ease; }
    .relation__button:hover, .relation .relation-pill:hover {
      transform: translateY(1px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
      background: var(--c-primary);
      color: #fff; }
    .relation__button:active, .relation .relation-pill:active {
      transform: translateY(2px);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14); }

.bannerarea {
  display: flex;
  justify-content: center;
  gap: 40px; }
  @media (max-width: 768px) {
    .bannerarea {
      flex-direction: column; } }
  .bannerarea a {
    display: block; }

/* =========================================================
   CTA：お問合せ（中段）
========================================================= */
.cta-inquiry {
  background: #1A46D6;
  color: #fff;
  /* セクション見出しの下線は白に */ }
  .cta-inquiry__inner {
    padding: clamp(28px, 5vw, 80px) 0;
    text-align: center; }
  .cta-inquiry__lead {
    font-size: 2rem;
    line-height: 1.8;
    opacity: .95;
    margin: 0 auto 24px;
    letter-spacing: .1em;
    max-width: 820px;
    color: #2b2e34;
    font-weight: 500; }
    @media (max-width: 768px) {
      .cta-inquiry__lead {
        font-size: 1.6rem;
        line-height: 1.6; } }
  .cta-inquiry__grid {
    margin: 0 auto;
    background: #fff;
    padding: 30px 20px 35px;
    border-radius: 20px;
    width: 80%;
    /* 2カラムver 
      &__grid  {
      display: grid; gap: 40px; grid-template-columns: repeat(2, minmax(240px, 1fr)); justify-content: center; align-items: stretch; margin: 0 auto;
      @include lt-tab { grid-template-columns: 1fr; }*/ }
    @media (max-width: 820px) {
      .cta-inquiry__grid {
        grid-template-columns: 1fr;
        width: 100%; } }
  .cta-inquiry .section__title-h2::after {
    background: #fff; }

/* CTAカード */
.cta-card {
  color: var(--c-primary);
  /* 2カラムver 
display: grid; gap: 6px; justify-items: center; text-align: center;
padding: 28px 30px;
background: #fff; border-radius: 12px; color: var(--c-primary);
box-shadow: 0 8px 16px rgba(0,0,0,.18);*/ }
  .cta-card__title {
    font-size: clamp(16px, 2.6vw, 2.4rem);
    font-weight: 600;
    letter-spacing: .1em;
    padding-bottom: 10px; }
  .cta-card__action {
    display: inline-block;
    width: 70%;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 23px;
    letter-spacing: .1em;
    color: #fff;
    background: var(--c-primary);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform .12s ease; }
    @media (max-width: 768px) {
      .cta-card__action {
        width: 100%;
        font-size: 2rem;
        padding: 18px;
        border-radius: 20px; } }
    .cta-card__action:hover {
      transform: translateY(1px);
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
      background-color: #325adb; }
  .cta-card:hover .cta-card__action a {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16); }
  .cta-card:active .cta-card__action a {
    transform: translateY(2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18); }

/* =========================================================
   Footer
========================================================= */
.site-footer {
  background: #23252a;
  color: #dfe5ef;
  /* 会計リスト：2段（右に改段）→ スマホで1段 */ }
  .site-footer a {
    color: #fff; }
    .site-footer a:hover {
      text-decoration: underline;
      color: #d1d1d1; }
  .site-footer__upper {
    background: #2b2e34;
    padding: 28px 0; }
  .site-footer__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, minmax(600px, 1fr)); }
    @media (max-width: 1024px) {
      .site-footer__grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) {
      .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 20px; } }
  .site-footer__col {
    min-width: 0; }
  .site-footer__heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 4px 0 10px;
    color: #fff; }
    .site-footer__heading--sub {
      font-size: 1.4rem;
      font-weight: 600;
      margin: 4px 0 10px; }
  .site-footer__list {
    font-size: 1.3rem; }
    .site-footer__list li {
      line-height: 1.8; }
  .site-footer__list--cols2 {
    columns: 2;
    column-gap: 32px; }
    .site-footer__list--cols2 li {
      break-inside: avoid;
      -webkit-column-break-inside: avoid;
      margin-bottom: 4px; }
    @media (max-width: 640px) {
      .site-footer__list--cols2 {
        columns: 1; } }
  .site-footer__lower {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
    text-align: center; }
  .site-footer__copy {
    display: inline-block;
    font-size: 1.2rem;
    opacity: .9; }

/* =========================================================
   page-top
========================================================= */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  line-height: 0;
  cursor: pointer;
  width: 64px; }
  @media (max-width: 1024px) {
    #page-top {
      display: none; } }
  #page-top:hover {
    opacity: 0.7;
    transition: opacity .4s; }



