.p-company-info-archive {
  padding: 80px 0 100px;
}

.p-company-info-archive__title {
  margin-bottom: 32px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-company-info-archive__term-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  margin-top: 50px;
}

.p-company-info-archive__term-item {
  border-right: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  background: #fff;
}

.p-company-info-archive__term-item a,
.p-company-info-archive__term-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  padding: 12px;
  box-sizing: border-box;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.p-company-info-archive__term-item a {
  color: #3f62ad;
  text-underline-offset: 0.08em;
  transition: opacity 0.2s ease;
}

.p-company-info-archive__term-item a:hover {
  opacity: 0.7;
}

.p-company-info-archive__term-item.is-empty {
  background: #f3f1f6;
}

.p-company-info-archive__term-item.is-empty span {
  color: transparent;
}

.p-company-info-archive__term-item.is-disabled {
  background: #fff;
}

.p-company-info-archive__term-item.is-disabled span {
  color: #3f62ad;
  text-decoration: none;
  opacity: 0.45;
}

/* tablet */
@media screen and (max-width: 1024px) {
  .p-company-info-archive {
    padding: 64px 0 80px;
  }

  .p-company-info-archive__title {
    margin-bottom: 24px;
    font-size: 3rem;
  }

  .p-company-info-archive__term-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .p-company-info-archive__term-item a,
  .p-company-info-archive__term-item span {
    min-height: 88px;
    font-size: 2.8rem;
  }
}

/* smartphone */
@media screen and (max-width: 767px) {
  .p-company-info-archive {
    padding: 48px 0 64px;
  }

  .p-company-info-archive__title {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  .p-company-info-archive__term-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .p-company-info-archive__term-item a,
  .p-company-info-archive__term-item span {
    min-height: 72px;
    padding: 8px;
    font-size: 2.2rem;
  }
}


.no-border {
  border: none !important;
}




/* =========================
   2カラムレイアウト
========================= */
.p-single-infomation__layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.p-single-infomation__main {
  flex: 1 1 auto;
  min-width: 0;
}

.p-infomation-sidebar {
  width: 320px;
  flex: 0 0 320px;
}


/* =========================
   サイドバー本体
========================= */
.p-infomation-sidebar__inner {
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  background: #fff;
}

.p-infomation-sidebar__parent-block {
  display: flex;
  flex-direction: column;
}

.p-infomation-sidebar__parent-block+.p-infomation-sidebar__parent-block {
  padding-top: 32px;
  border-top: 1px solid #ddd;
}

.p-infomation-sidebar__parent-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  padding: 16px 0;
  margin: 0;
}

/* =========================
   子カテゴリ一覧
========================= */
.p-infomation-sidebar__child-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-infomation-sidebar__child-item {
  display: flex;
  flex-direction: column;
}

/* 子カテゴリボタン */
.p-infomation-sidebar__child-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 60px;
  padding: 12px 40px 12px 12px;
  border: none;
  background-color: #08475F;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.p-infomation-sidebar__child-toggle::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}

.p-infomation-sidebar__child-toggle[aria-expanded="true"]::after {
  content: "−";
}

.p-infomation-sidebar__child-toggle:focus {
  outline: none;
}

.p-infomation-sidebar__child-toggle:focus-visible {
  outline: 2px solid #08475F;
  outline-offset: 2px;
}

@media (any-hover: hover) {
  .p-infomation-sidebar__child-toggle:hover {
    opacity: 0.9;
  }
}

/* =========================
   記事一覧
========================= */
.p-infomation-sidebar__post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}

.p-infomation-sidebar__post-list.is-open {
  max-height: 1000px;
}

.p-infomation-sidebar__post-item {
  display: flex;
}

.p-infomation-sidebar__post-link {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: dotted 1px #ccc;
  background: #fff;
  color: #333;
  line-height: 1.7;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.p-infomation-sidebar__post-item:last-child .p-infomation-sidebar__post-link {
  border-bottom: none;
}

.p-infomation-sidebar__post-item.is-current .p-infomation-sidebar__post-link {
  color: var(--tcd-accent-color, #08475F);
  font-weight: 700;
  background-color: #f7fbfc;
}

@media (any-hover: hover) {
  .p-infomation-sidebar__post-link:hover {
    opacity: 0.7;
  }
}

/* =========================
   SP
========================= */
@media screen and (max-width: 991px) {
  .p-single-infomation__layout {
    display: block;
  }

  .p-infomation-sidebar {
    width: 100%;
    margin-top: 100px;
  }
}


.single-infomation .p-related-post .p-post-cards-item__image {
  display: none;
}
.post-type-archive-infomation .p-post-cards-item__image.c-thumbnail,.c-date-item.c-date--updated{
  display: none;
}



.c-custom-page-header {
  width: 100%;
}

.c-custom-page-header .c-custom-page-header__bg {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* オーバーレイ */
.c-custom-page-header .c-archive-header__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

/* タイトル */
.c-custom-page-header .c-archive-header__title_use_img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
}

.c-custom-page-header .c-archive-header__title_use_img h1 {
  margin: 0;
}

/* デフォルト画像 */
.c-custom-page-header .c-custom-page-header__bg {
  background-image: url("../img/page-default-header.jpg");
}

/* 固定ページごとの画像 */
.c-custom-page-header.is-page-practice .c-custom-page-header__bg {
  background-image: url("../img/page-practice-header.jpg");
}

.c-custom-page-header.is-page-office .c-custom-page-header__bg {
  background-image: url("../img/page-office-header.jpg");
}

.c-custom-page-header.is-page-services .c-custom-page-header__bg {
  background-image: url("../img/page-services-header.jpg");
}

.c-custom-page-header.is-page-company .c-custom-page-header__bg {
  background-image: url("../img/page-company-header.jpg");
}

.c-custom-page-header.is-page-topics .c-custom-page-header__bg {
  background-image: url("../img/page-topics-header.jpg");
}

@media screen and (max-width: 991px) {
  .c-custom-page-header .c-custom-page-header__bg {
    min-height: 320px;
  }
}

@media screen and (max-width: 767px) {
  .c-custom-page-header .c-custom-page-header__bg {
    min-height: 240px;
  }
}


/* =========================
   画像＋テキスト 2カラム
========================= */
.p-page-2col {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

/* 1セット */
.p-page-2col__item {
  display: flex;
  /* ← ここが重要 */
  gap: 40px;
}

/* 画像 */
.p-page-2col__img {
  width: 50%;
}

.p-page-2col__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.p-page-2col__text {
  width: 50%;
  line-height: 1.8;
}

/* =========================
   交互レイアウト
========================= */
.p-page-2col__item:nth-child(even) {
  flex-direction: row-reverse;
}

/* =========================
   SP対応
========================= */
@media screen and (max-width: 767px) {
  .p-page-2col__item {
    flex-direction: column;
  }

  .p-page-2col__img,
  .p-page-2col__text {
    width: 100%;
  }
}




.p-link-list {
  border-top: 1px dotted #b7b7b7;
}

.p-link-list__item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px dotted #b7b7b7;
}

.p-link-list__name {
  width: 320px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.p-link-list__name a,
.p-link-list__name {
  color: #0d2f8b;
}

.p-link-list__url {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 1.8;
  word-break: break-all;
}

.p-link-list__url a {
  color: #555;
  text-decoration: none;
}

.p-link-list__url a:hover {
  text-decoration: underline;
}

/* SP */
@media screen and (max-width: 767px) {
  .p-link-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
  }

  .p-link-list__name {
    width: 100%;
  }

  .p-link-list__url {
    width: 100%;
  }
}




/* =========================
   Recruit Box（タイトルなし）
========================= */
.p-recruit-box {
  margin-top: 60px;
  border: 1px solid #d9d9d9;
  background: #fff;
}

/* 中身 */
.p-recruit-box__content {
  display: block;
}

/* 行 */
.p-recruit-box__row {
  display: flex;
  border-top: 1px solid #d9d9d9;
}

.p-recruit-box__row:first-child {
  border-top: none;
}

/* 左（見出し） */
.p-recruit-box__head {
  width: 220px;
  flex: 0 0 220px;
  padding: 24px 20px;
  background: #f5f5f5;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  border-right: 1px solid #d9d9d9;
}

/* 右（本文） */
.p-recruit-box__body {
  flex: 1;
  padding: 24px 24px;
  font-size: 16px;
  line-height: 1.9;
}

/* =========================
   箇条書き
========================= */
.p-recruit-box__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-recruit-box__list li {
  position: relative;
  margin-top: 10px;
}

.p-recruit-box__list li:first-child {
  margin-top: 0;
}

.p-recruit-box__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* 2カラム */
.p-recruit-box__list--2col {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
}

.p-recruit-box__list--2col li {
  width: calc(50% - 20px);
}

/* =========================
   SP
========================= */
@media screen and (max-width: 767px) {

  .p-recruit-box__row {
    flex-direction: column;
  }

  .p-recruit-box__head {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }

  .p-recruit-box__body {
    padding: 16px;
  }

  .p-recruit-box__list--2col {
    display: block;
  }

  .p-recruit-box__list--2col li {
    width: 100%;
  }
}


/* =========================
  Topics（トップページ）
========================= */

.p-cb-topics {
  padding-top: 0;
}

/* グリッド */
.p-topics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  background: #fff;
  margin-bottom: 70px;
}

/* アイテム */
.p-topics-grid__item {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* リンク全体 */
.p-topics-grid__link {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 280px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}

.p-topics-grid__link:hover {
  background: #f9f9f9;
}

/* 画像 */
.p-topics-grid__thumb {
  width: 180px;
  height: 180px;
  background: #d9d9d9;
  flex-shrink: 0;
  overflow: hidden;
}

.p-topics-grid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* NO IMAGE */
.p-topics-grid__noimage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cfcfcf;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.05em;
}

/* テキスト */
.p-topics-grid__content {
  flex: 1;
  text-align: left;
}

/* カテゴリ */
.p-topics-grid__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  margin-bottom: 18px;
  border: 1px solid #1f6683;
  border-radius: 9999px;
  color: #1f6683;
  font-size: 14px;
  font-weight: 500;
}

/* タイトル */
.p-topics-grid__title {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}

/* 日付 */
.p-topics-grid__date {
  color: #8f8f8f;
  font-size: 18px;
  line-height: 1.4;
}

/* ボタン */
.p-topics-grid__button {
  margin-top: 50px;
  text-align: center;
}

/* =========================
  SP
========================= */

@media screen and (max-width: 767px) {

  .p-topics-grid {
    grid-template-columns: 1fr;
  }

  .p-topics-grid__link {
    gap: 18px;
    min-height: auto;
    padding: 20px;
    align-items: flex-start;
  }

  .p-topics-grid__thumb {
    width: 110px;
    height: 110px;
  }

  .p-topics-grid__cat {
    min-height: 32px;
    padding: 0 12px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .p-topics-grid__title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .p-topics-grid__date {
    font-size: 14px;
  }

  .p-topics-grid__noimage {
    font-size: 14px;
  }
}

.p-topics-grid__thumb img {
  transition: transform 0.4s;
}

.p-topics-grid__link:hover .p-topics-grid__thumb img {
  transform: scale(1.05);
}


.p-cb-service{
  display: none;
}


.p-top-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
      margin-top: 100px;
        margin-bottom: 100px;
}

.p-top-banner__item {
  flex: 0 0 auto;
}

.p-top-banner__link {
  display: block;
  transition: opacity 0.3s ease;
}

.p-top-banner__link:hover {
  opacity: 0.8;
}

.p-top-banner__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-top-banner {
    gap: 12px;
    margin-top: 30px;
  }

  .p-top-banner__item {
    width: calc(50% - 6px);
  }

  .p-top-banner__img {
    width: 100%;
  }
}



.p-contact-form {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d9e1e7;
}

.p-contact-form__row {
  display: flex;
  border-bottom: 1px solid #d9e1e7;
}

.p-contact-form__label {
  width: 30%;
  margin: 0;
  padding: 24px 20px;
  background: #0d4f67;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  box-sizing: border-box;
}

.p-contact-form__field {
  width: 70%;
  margin: 0;
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
}

.p-contact-form__field .wpcf7-form-control-wrap {
  display: block;
}

.p-contact-form input[type="text"],
.p-contact-form input[type="email"],
.p-contact-form input[type="tel"],
.p-contact-form select,
.p-contact-form textarea {
  width: 100%;
  padding: 14px 16px !important;;
  border: 1px solid #c7d2db !important;;
  background: #fff;
  font-size: 15px !important;;
  line-height: 1.6 !important;;
  color: #333;
  box-sizing: border-box;
  border-radius: 0;
  appearance: none;
}

.p-contact-form input[type="text"]:focus,
.p-contact-form input[type="email"]:focus,
.p-contact-form input[type="tel"]:focus,
.p-contact-form select:focus,
.p-contact-form textarea:focus {
  outline: none;
  border-color: #0d4f67;
  box-shadow: 0 0 0 1px #0d4f67;
}

.p-contact-form select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%230d4f67' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><polygon points='5,7 15,7 10,13'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 25px;
  padding-right: 40px !important;
  /* 矢印と被らないように余白 */
}

.p-contact-form textarea {
  height: 100px !important;
  min-height: 100px !important;
  resize: vertical;
}

.p-contact-form__zip {
  max-width: 240px;
}

.p-contact-form .required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: #fff;
  color: #0d4f67;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 2px;
  vertical-align: middle;
}

.p-contact-form__submit {
  padding: 32px 20px;
  text-align: center;
  background: #f7f9fb;
}

.p-contact-form input[type="submit"] {
  min-width: 220px;
  padding: 16px 40px;
  border: none;
  background: #0d4f67;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.p-contact-form input[type="submit"]:hover {
  opacity: 0.85;
}

.p-contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 13px;
  color: #d63638;
}

.p-contact-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  border: 1px solid #d9e1e7;
  font-size: 14px;
  line-height: 1.6;
}

.p-contact-form__field {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}


.p-contact-form__field>p:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
      width: 100%;
}

.p-contact-form__field>p:first-child .wpcf7-form-control-wrap {
  width: 100%;
  max-width: 420px;
  /* お好みで調整 */
}

.p-contact-form__field>p:first-child .p-contact-form__short,
.p-contact-form__field>p:first-child input[type="text"] {
  width: 100%;
}

.p-contact-form__unit {
  white-space: nowrap;
  flex-shrink: 0;
}

.p-contact-form__note {
      display: block;
        margin: 0;
        font-size: 12px !important;
        color: #696969;
}

.wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 24px;
  /* 間隔 */
}

.wpcf7-list-item {
  margin: 0;
}


@media screen and (max-width: 767px) {
  .p-contact-form__row {
    display: block;
  }

  .p-contact-form__label,
  .p-contact-form__field {
    width: 100%;
  }

  .p-contact-form__label {
    padding: 14px 16px;
    font-size: 14px;
    background-color: unset;
    color: #0d4f67;
    padding: 0;
    margin: 0;
    margin-top: 30px;
  }

  .p-contact-form__field {
    padding: 0;
    margin-bottom: 30px;
  }

  .p-contact-form textarea {
    min-height: 180px;
  }

  .p-contact-form input[type="submit"] {
    width: 100%;
    min-width: 0;
  }
}


.wpcf7 {
  width: 100%;
  border: none !important;
  background: transparent !important;
  font-size: 14px;
}
.wpcf7 form{
  margin: 0 !important;
}
.p-contact-form__submit {
  padding: 32px 20px;
  text-align: center;
  background: transparent;
}

.p-contact-form {
  background: transparent !important;
  border: none !important;
}




.c-archive-header__overlay {
  background-image: url("../img/page-default-header.jpg");
      background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


.archive.tax-initial .p-post-cards-item__image.c-thumbnail{
  display: none;
}

.archive.post-type-archive.post-type-archive-seminar .p-post-cards-item__image.c-thumbnail {
  display: none;
}



.p-contact-thanks {
  padding: 80px 20px;
  background: #fff;
}

.p-contact-thanks__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  border: 1px solid #d9e1e7;
  background: #fff;
  text-align: center;
}

.p-contact-thanks__title {
  margin: 0 0 32px;
  color: #0d4f67;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

.p-contact-thanks__text {
  margin: 0 0 16px;
  color: #333;
  font-size: 16px;
  line-height: 2;
}

.p-contact-thanks__info {
  margin: 40px auto 0;
  padding: 24px 20px;
  max-width: 600px;
  background: #f7f9fb;
  border: 1px solid #d9e1e7;
}

.p-contact-thanks__info p {
  margin: 0 0 10px;
  line-height: 1.8;
}

.p-contact-thanks__info p:last-child {
  margin-bottom: 0;
}

.p-contact-thanks__btn {
  margin-top: 40px;
}

.p-contact-thanks__btn a {
  display: inline-block;
  min-width: 240px;
  padding: 16px 40px;
  background: #0d4f67;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.p-contact-thanks__btn a:hover {
  opacity: 0.85;
}

@media screen and (max-width: 767px) {
  .p-contact-thanks {
    padding: 50px 16px;
  }

  .p-contact-thanks__inner {
    padding: 40px 20px;
  }

  .p-contact-thanks__title {
    font-size: 24px;
  }

  .p-contact-thanks__text {
    font-size: 15px;
    text-align: left;
  }

  .p-contact-thanks__btn a {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 800px) {
  .p-mv2 {
    position: relative;
  }
}
@media (max-width: 800px) {
  .p-mv2_catch_content {
    display: flex;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: calc(100svh - var(--tcd-header-message-height, 0px) - 100px);
      z-index: 1;
      background: #00000052;
      padding: 10px;
  }
  .main_catch{
    font-size: 26px !important;
  }
  .sub_catch{
    line-height: 1.6 !important;
  }
}




.p-footer-nav-wrap {
  display: flex;
  gap: 80px;
}

.p-footer-nav-col {
  width: 50%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-footer-nav-col li {
  margin-bottom: 18px;
}

.p-footer-nav-col a {
  text-decoration: none;
  line-height: 1.7;
  display: inline-block;
  white-space: nowrap;
}

/* スマホ非表示 */
@media screen and (max-width: 767px) {
  .p-footer-nav-wrap {
    display: none;
  }
}




/* =========================
  採用情報
========================= */

.p-sc-text-layout_right_slippage_left {
  margin-top: 50px;
}

.p-cb-split-main_catch {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
  margin-block: var(--tcd-half-read);
}

.p-cb-split-content {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 40px;
  background-color: var(--tcd-accent-color);
  color: #fff;
}



.p-cb-split_inner img.c-cover {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.p-cb-button {
  margin: 70px auto 0;
  font-weight: normal;
}

.c-button01 {
  color: var(--tcd-accent-color) !important;
}
.c-button01:hover {
  color: #fff !important;
  text-decoration: none;
}






/* =========================
  会計税務情報
========================= */




.p-infomation-archive {
  padding: 0 0 100px;
}

.p-infomation-archive__tab-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: #07475f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.p-infomation-archive__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px 20px;
  color: #c7d2e4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background .3s, color .3s;
}

.p-infomation-archive__tab.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.p-infomation-archive__tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.p-infomation-archive__tab[data-color="blue"] .p-infomation-archive__tab-dot {
  color: #b3d0ff;
}

.p-infomation-archive__tab[data-color="cyan"] .p-infomation-archive__tab-dot {
  color: #a8f2ff;
}

.p-infomation-archive__tab[data-color="purple"] .p-infomation-archive__tab-dot {
  color: #cab2ff;
}

.p-infomation-archive__tab[data-color="red"] .p-infomation-archive__tab-dot {
  color: #f86060;
}

.p-infomation-archive__sections {
  padding-top: 18px;
}

.p-infomation-archive__section {
  margin-top: 18px;
  padding: 0 0 18px;
  border: 1px solid #d9e2ec;
  border-radius: 16px;
  overflow: hidden;
}

.p-infomation-archive__section-head {
  position: relative;
  padding: 18px 24px 18px 28px;
  border-bottom: 1px solid #d9e2ec;
}

/* .p-infomation-archive__section-head::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: #3b82f6;
} */

.p-infomation-archive__section-head[data-color="blue"]::before {
  background: #b3d0ff;
}

.p-infomation-archive__section-head[data-color="cyan"]::before {
  background: #a8f2ff;
}

.p-infomation-archive__section-head[data-color="purple"]::before {
  background: #cab2ff;
}

.p-infomation-archive__section-head[data-color="red"]::before {
  background: #f86060;
}

.p-infomation-archive__section-title {
  margin: 0;
  color: #1e293b;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
}

.p-infomation-archive__section-desc {
  margin: 6px 0 0;
  color: #7b8aa0;
  font-size: 13px;
  line-height: 1.6;
}

.p-infomation-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 14px;
  align-items: start;
}

.p-infomation-archive__card {
  border: 1px solid #dde6f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
  overflow: hidden;
}

.p-infomation-archive__card-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding: 16px 18px 16px 22px;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.p-infomation-archive__card-head::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: #3b82f6;
}

.p-infomation-archive__card-head[data-color="blue"]::before {
  background: #3b82f6;
}

.p-infomation-archive__card-head[data-color="cyan"]::before {
  background: #06b6d4;
}

.p-infomation-archive__card-head[data-color="purple"]::before {
  background: #8b5cf6;
}

.p-infomation-archive__card-head[data-color="red"]::before {
  background: #ef4444;
}

.p-infomation-archive__card-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-left: 8px;
}

.p-infomation-archive__card-title {
  color: #1e293b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.p-infomation-archive__card-count {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p-infomation-archive__card-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.p-infomation-archive__card-icon::before,
.p-infomation-archive__card-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: #94a3b8;
  transform: translate(-50%, -50%);
  transition: transform .3s;
}

.p-infomation-archive__card-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-infomation-archive__card.is-open .p-infomation-archive__card-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.p-infomation-archive__card-body {
  padding: 0 18px 18px 18px;
}

.p-infomation-archive__post-list {
  margin: 0;
  padding: 0 0 0 14px;
}

.p-infomation-archive__post-item+.p-infomation-archive__post-item {
  margin-top: 10px;
}

.p-infomation-archive__post-item::marker {
  color: #93c5fd;
}

.p-infomation-archive__post-link {
  color: #334155;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
}

.p-infomation-archive__post-link:hover {
  opacity: 0.7;
}

.p-infomation-archive__empty {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
}

@media screen and (max-width: 1024px) {
  .p-infomation-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .p-infomation-archive__tab-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .p-infomation-archive__tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .p-infomation-archive__section-title {
    font-size: 24px;
  }

  .p-infomation-archive__grid {
    grid-template-columns: 1fr;
  }
}


.p-infomation-archive__card-content {
  display: block;
  min-width: 0;
}

.p-infomation-archive__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.p-infomation-archive__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #eef3f8;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.p-infomation-archive__tags {
  transition: opacity .3s;
}

.p-infomation-archive__card.is-open .p-infomation-archive__tags {
  opacity: 0;
  pointer-events: none;
    margin-top: 0;
    display: none;
}


.p-404-button.c-button01{
  color: #fff !important;
}

