/* ===========================
   みずほDC事業主ポータル
   Main Stylesheet — Bootstrap 3.3.6 compatible
=========================== */

/* --- Design Tokens --- */
:root {
  --color-primary: #08287F;
  --color-navy: #000066;
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-bg-light: #F3F3F3;
  --color-banner: #D7DCEF;
  --color-label-blue: #C7E1EF;
  --color-divider: #E6E6E6;
  --color-new: #F01700;
  --color-shadow: rgba(21, 21, 79, 0.15);
  --color-hover: #0F0AD1;
  --font-base: 'Yu Gothic', 'YuGothic', 'Meiryo', 'Hiragino Sans', sans-serif;
}

/* === Skip Link (アクセシビリティ) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 10000;
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-hover);
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  white-space: nowrap;
}

.skip-link:focus {
  top: 0;
  color: var(--color-white);
  text-decoration: none;
  outline: 2px solid var(--color-hover);
  outline-offset: -2px;
}

.skip-link__icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 8px;
}

/* === Base === */
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--color-primary);
}

a:hover,
a:focus {
  color: var(--color-hover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* Wider container override */
@media (min-width: 1200px) {
  .container {
    max-width: 1080px;
  }
}

/* === Buttons === */
.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-hover);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 32px;
  border-radius: 8px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active {
  background-color: var(--color-hover);
  border-color: var(--color-hover);
  color: #fff;
}

.btn-outline-default {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 32px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-default:hover,
.btn-outline-default:focus {
  background: var(--color-hover);
  color: var(--color-white);
  text-decoration: none;
  border-color: var(--color-primary);
}

.btn-outline-blue {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 32px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-blue:hover,
.btn-outline-blue:focus {
  background: var(--color-hover);
  color: var(--color-white);
  text-decoration: none;
  border-color: var(--color-hover);
}

.btn-outline-dark {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 32px;
  border-radius: 8px;
  display: inline-block;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--color-hover);
  color: var(--color-white);
  text-decoration: none;
  border-color: var(--color-primary);
}

.btn-sm-outline-blue {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 8px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-sm-outline-blue:hover {
  background: var(--color-hover);
  color: var(--color-primary);
  text-decoration: none;
}

.btn-icon-search {
  display: inline-block;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  text-align: center;
  line-height: 40px;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-icon-search:hover,
.btn-icon-search:focus {
  background: var(--color-hover);
  border-color: var(--color-hover);
  text-decoration: none;
}

.btn-icon-search img {
  vertical-align: middle;
  transition: filter 0.2s;
}

.btn-icon-search:hover img,
.btn-icon-search:focus img {
  filter: brightness(0) invert(1);
}

/* === Section Heading === */
.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 4px;
}

.section-heading__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.section-heading__count {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 4px;
}

/* セクション見出しに件数(__count)が含まれる場合：タイトルは中央のまま、件数だけ右端 */
.section-heading:has(.section-heading__count) {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  /* text-align: center は基底 .section-heading から継承 */
}

.section-heading:has(.section-heading__count) .section-heading__text {
  grid-column: 2;
  min-width: 0;
}

.section-heading:has(.section-heading__count) .section-heading__count {
  grid-column: 3;
  justify-self: end;
  margin: 0;
  white-space: nowrap;
}

/* === Header === */
.site-header {
  background: var(--color-white);
}

.site-header__topbar {
  padding: 24px 0 16px;
}

.topbar-inner {
  display: table;
  width: 100%;
  table-layout: auto;
}

.topbar-logo {
  display: table-cell;
  vertical-align: middle;
  width: 310px;
}

.topbar-logo img {
  height: 45px;
  width: auto;
  max-width: 300px;
}

.topbar-actions {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  white-space: nowrap;
}

.topbar-actions > * {
  margin-left: 8px;
  vertical-align: middle;
}

.btn-logout {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 32px;
  border-radius: 8px;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  line-height: 1.42857143;
}

.btn-logout:hover,
.btn-logout:focus {
  background: var(--color-hover);
  color: var(--color-white);
  border-color: var(--color-hover);
  text-decoration: none;
}

.btn-logout img {
  vertical-align: middle;
  margin-left: 6px;
  transition: filter 0.2s;
}

.btn-logout:hover img,
.btn-logout:focus img {
  filter: brightness(0) invert(1);
}

/* Navigation Bar */
.site-nav {
  background: var(--color-navy);
  position: relative;
}

/* PC: togglebarは非表示 */
.site-nav__togglebar {
  display: none;
}

/* PC: SPメニューアクションボタンは非表示 */
.site-nav__actions {
  display: none;
}

.site-nav__togglebar-logo img {
  height: 36px;
  width: auto;
}

.site-nav__togglebar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
}

.site-nav__search-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* PC: toggleボタンは非表示 */
.site-nav__toggle {
  display: none;
  background: var(--color-navy);
  border: none;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 700;
  padding: 10px 14px;
  cursor: pointer;
  line-height: 1;
}

.site-nav__toggle-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.site-nav__toggle-close {
  display: none;
}

.site-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: table;
  width: 100%;
  height: 65px;
}

.site-nav__item {
  display: table-cell;
  text-align: center;
  position: relative;
}

.site-nav__item > a {
  display: block;
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  padding: 16px 8px 12px;
  text-decoration: none;
  position: relative;
}

.site-nav__item > a:hover,
.site-nav__item > a:focus {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #C7E1EF;
  padding-bottom: 8px;
}

.site-nav__item > a:hover::after,
.site-nav__item > a:focus::after {
  content: '';
  display: block;
  height: 4px;
  margin-top: 8px;
}

.site-nav__item.active > a {
  padding-bottom: 8px;
}

.site-nav__item.active > a::after {
  content: '';
  display: block;
  height: 4px;
  background: var(--color-white);
  margin-top: 8px;
}

/* === Breadcrumb === */
.page-heading {
    padding-top: 0px;
}

.breadcrumb-section {
  background: var(--color-white);
  padding: 8px 0;
}

.breadcrumb-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-nav li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.breadcrumb-nav li a {
  color: var(--color-primary);
  text-decoration: none;
}

.breadcrumb-nav li a:hover {
  text-decoration: underline;
}

.breadcrumb-nav li.current {
  color: var(--color-text);
}

.breadcrumb-nav .breadcrumb-sep {
  display: inline-block;
  width: 18px;
  text-align: center;
  vertical-align: middle;
}

.breadcrumb-nav .breadcrumb-sep img {
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

/* === H1 Banner === */
.h1-banner {
  background: var(--color-banner);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.h1-banner--with-overlay {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.h1-banner--with-overlay .h1-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(215, 220, 239, 0.92);
  z-index: 1;
}

.h1-banner__content {
  position: relative;
  z-index: 2;
  padding: 40px 0 48px;
}

.h1-banner__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 8px;
}

.h1-banner__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.h1-banner__caption {
  position: absolute;
  bottom: 8px;
  right: 24px;
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text);
  z-index: 2;
}

/* === Hero Carousel === */
.hero-carousel-section {
  background: var(--color-white);
  padding: 24px 0 48px;
}

.hero-carousel-wrap {
  max-width: 842px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
}

.hero-carousel-wrap .carousel-inner {
  border-radius: 16px;
  overflow: hidden;
}

.hero-carousel-wrap .carousel-inner .item img {
  width: 100%;
  border-radius: 16px;
}

.hero-carousel-wrap .carousel-control {
  width: 40px;
  height: 40px;
  top: 50%;
  margin-top: -20px;
  opacity: 1;
  background: var(--color-white);
  box-shadow: 0px 0px 6px 0px var(--color-shadow);
  border-radius: 50%;
  background-image: none;
}

.hero-carousel-wrap .carousel-control.left {
  left: -54px;
}

.hero-carousel-wrap .carousel-control.right {
  right: -54px;
}

.hero-carousel-wrap .carousel-control img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px;
}

.hero-carousel-wrap .carousel-indicators {
  bottom: -32px;
}

.hero-carousel-wrap .carousel-indicators li {
  width: 8px;
  height: 8px;
  background: var(--color-divider);
  border: none;
  margin: 1px 4px;
}

.hero-carousel-wrap .carousel-indicators li.active {
  background: var(--color-primary);
  width: 8px;
  height: 8px;
  margin: 1px 4px;
}

/* === News Section === */
.section-news {
  background: var(--color-white);
  padding: 40px 0;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 890px;
}

/* トグルボタン */
.news-list__item {
  border-bottom: 1px solid var(--color-divider);
  display: block;
  width: 100%;
}

.news-list__item:first-child {
  border-top: 1px solid var(--color-divider);
}

.news-list__date {
  display: table-cell;
  vertical-align: middle;
  width: 120px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
  padding-right: 16px;
}

.news-list__text {
  display: table-cell;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;
}

.news-list__text a {
  color: var(--color-primary);
  text-decoration: none;
}

.news-list__text a:hover {
  text-decoration: underline;
}

.news-list__arrow {
  display: table-cell;
  vertical-align: middle;
  width: 24px;
  text-align: right;
}

.news-list__arrow img {
  vertical-align: middle;
}

.news-list__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  text-align: left;
  min-width: 0;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.news-list__toggle:hover,
.news-list__toggle:focus {
  text-decoration: none;
}

.news-list__toggle:hover .news-list__text,
.news-list__toggle:focus .news-list__text {
  text-decoration: underline;
  color: var(--color-hover);
}

.news-list__toggle .news-list__date {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  white-space: nowrap;
  margin: auto 0px;
}

.news-list__toggle .news-list__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-toggle-icon-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-toggle-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
  background: url('/images/icon_chevron_right.svg') no-repeat center / contain;
}

.news-list__toggle[aria-expanded="true"] .news-toggle-icon {
  transform: rotate(90deg);
}

/* hover / focusで差し替え */
.news-list__toggle:hover .news-toggle-icon,
.news-list__toggle:focus .news-toggle-icon {
  background-image: url('/images/icon_chevron_right_blue.svg');
}

/* 詳細エリア */
.news-list__detail {
  padding: 8px 0 12px 136px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.7;
}

.news-list__detail p {
  margin: 0;
}

.news-viewall {
  text-align: center;
  margin-top: 8px;
}

/* === Contents Section (4-up cards) === */
.section-contents {
  background: var(--color-bg-light);
  padding: 40px 0;
}

.contents-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0px 0px 6px 0px rgba(21, 21, 79, 0.15);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 40px;
}

.contents-card__img {
  overflow: hidden;
  height: 180px;
}

.contents-card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.contents-card__body {
  padding: 24px 16px 8px;
}

.contents-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 4px;
}

.contents-card__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.contents-card__link {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  text-align: right;
  text-decoration: none;
  position: absolute;
  bottom: 12px;
  right: 16px;
}

.contents-card__link:hover {
  text-decoration: underline;
  color: var(--color-text);
}

.contents-card__link img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 2px;
  margin-bottom: 4px;
}

/* --- p01: Contents Card Link --- */
.p01-contents-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
}

.p01-contents-card-link:hover,
.p01-contents-card-link:focus {
  text-decoration: none;
  color: inherit;
}

.p01-contents-card-link:hover .contents-card__title,
.p01-contents-card-link:focus .contents-card__title {
  color: var(--color-hover);
}

.p01-contents-card-link:hover .contents-card__link,
.p01-contents-card-link:focus .contents-card__link {
  color: var(--color-hover);
  text-decoration: underline;
}

.p01-contents-card-link:hover .contents-card__desc,
.p01-contents-card-link:focus .contents-card__desc {
  color: var(--color-hover);
}

/* === Other Section (3 link cards) === */
.section-other {
  background: var(--color-white);
  padding: 40px 0;
}

.link-card {
  display: table;
  width: 100%;
  background: var(--color-bg-light);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  margin-bottom: 0;
  min-height: 77px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.link-card:hover,
.link-card:focus {
  background: var(--color-hover);
  text-decoration: none;
  outline: none;
}

.link-card:hover .link-card__label,
.link-card:focus .link-card__label {
  color: var(--color-white);
}

.link-card:hover .link-card__icon-cell img,
.link-card:focus .link-card__icon-cell img,
.link-card:hover .link-card__arrow img,
.link-card:focus .link-card__arrow img {
  filter: brightness(0) invert(1);
}

.link-card__icon-cell {
  display: table-cell;
  vertical-align: middle;
  width: 48px;
}

.link-card__icon-cell img {
  width: 24px;
  height: 24px;
}

.link-card__label {
  display: table-cell;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
}

.link-card__arrow {
  display: table-cell;
  vertical-align: middle;
  width: 24px;
  text-align: right;
}

.link-card__arrow img {
  width: 16px;
  height: 16px;
}

/* === P02 Section Cards (2-up) === */
.section-cards-p02 {
  background: var(--color-white);
  padding: 40px 0;
}

.page-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0px 0px 6px 0px rgba(21, 21, 79, 0.15);
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 0px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.page-card-space {
  height: 150px;
}

.page-card:hover,
.page-card:focus {
  text-decoration: none;
  /*box-shadow: 0px 0px 16px 0px rgba(21, 21, 79, 0.25);*/
  outline: none;
}

.page-card:hover .page-card__title,
.page-card:focus .page-card__title,
.page-card:hover .page-card__desc,
.page-card:focus .page-card__desc {
  color: var(--color-hover);
}

.page-card:hover .btn-outline-blue,
.page-card:focus .btn-outline-blue {
  background: var(--color-hover);
  color: var(--color-white);
  border-color: var(--color-hover);
}

.page-card__img {
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.page-card__img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.page-card__body {
  padding: 24px 24px 8px;
}

.page-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 8px;
}

.page-card__desc {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.page-card-viewall {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
}

/* === P03 Intro Section === */
.section-intro {
  background: var(--color-white);
  padding: 40px 0;
}

.intro-row {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.intro-col-image {
  display: table-cell;
  vertical-align: top;
  width: 48%;
  padding-right: 40px;
}

.intro-col-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.intro-col-text {
  display: table-cell;
  vertical-align: top;
  width: 52%;
}

.intro-label {
  display: inline-block;
  background: var(--color-label-blue);
  border-radius: 4px;
  padding: 4px 8px 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

.intro-text {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

/* === P03 Backnumber Table Section === */
.section-backnumber {
  background: var(--color-bg-light);
  padding: 40px 0;
}

.backnumber-table-wrapper {
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-white);
}

.backnumber-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}

.backnumber-table thead th {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding: 8px 24px;
  border: none;
}

.table>tbody>tr>td.col-date {
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.backnumber-table tbody tr {
  border-bottom: 1px solid var(--color-divider);
}

.backnumber-table tbody tr:last-child {
  border-bottom: none;
}

.backnumber-table > tbody > tr > td {
  padding: 16px 24px;
  vertical-align: middle;
  color: var(--color-text);
  font-size: 16px;
  border: none;
}

.backnumber-table .col-issue {
  width: 140px;
  font-weight: 700;
  white-space: nowrap;
}

.backnumber-table .col-date {
  width: 120px;
  font-weight: 700;
  white-space: nowrap;
}

.table>tbody>tr>td>div.col-date {
  font-size: 12px;
  font-weight: 100;
  white-space: nowrap;
}

.backnumber-table .col-content {
  font-size: 16px;
  font-weight: 700;
}

.backnumber-table .col-download {
  text-align: center;
  width: 120px;
  white-space: nowrap;
}

.label-new {
  display: inline-block;
  background: var(--color-new);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
  border-radius: 4px;
  padding: 0 4px;
  margin-left: 0px;
  vertical-align: middle;
}

.pdf-btn {
  display: block;
  background: var(--color-primary);
  border-radius: 8px;
  width: 100px;
  padding: 8px 8px;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  color: var(--color-white);
}

.pdf-btn:hover,
.pdf-btn:focus {
  background: var(--color-hover);
  color: var(--color-white);
  text-decoration: none;
}

.pdf-btn__inner {
  display: block;
}

.pdf-btn__icon {
  width: 20px;
  height: 20px;
  margin-right: 2px;
  vertical-align: middle;
}

.pdf-btn__label {
  font-size: 16px;
  font-weight: bold;
  vertical-align: middle;
}

.pdf-btn__size {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
  margin-top: 2px;
}

/* === Footer === */
.site-footer {
  background: var(--color-white);
}

.site-footer__body {
  padding: 80px 0 40px;
}

.footer-adobe {
  margin-bottom: 32px;
  display: block;
  width: 100%;
}

.footer-adobe__icon {
  display: block;
  padding-right: 24px;
  width: 200px;
  white-space: nowrap;
  margin-bottom: 8px;
}

.footer-adobe__icon img {
  width: 158px;
  height: 39px;
}

.footer-adobe__text {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
}

.footer-company__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 8px;
}

.footer-company__details {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 630px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid var(--color-divider);
  margin: 16px 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: table;
  width: 100%;
}

.footer-links li {
  display: table-cell;
  vertical-align: middle;
  padding-right: 16px;
}

.footer-links li:last-child {
  padding-right: 0;
  text-align: right;
}

.footer-links li a {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.footer-links__ext-icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-left: 4px;
}

.footer-copyright {
  background: var(--color-navy);
  padding: 16px 0;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.6;
}

/* ===========================================
   Site Search Bar
=========================================== */

/* 虫眼鏡ボタンのラッパー（ポップアップ基準点） */
.search-wrap {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

/* PC: ポップアップ（初期非表示） */
.site-search {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: -228px;
  z-index: 300;
  background: var(--color-white);
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--color-shadow);
  padding: 10px;
  width: 280px;
}

.site-search.is-open {
  display: block;
}

.site-search__inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-search__input {
  flex: 1;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-white);
}

.site-search__input:focus {
  border-color: var(--color-primary);
}

.site-search__input::placeholder {
  color: #aaa;
}

.site-search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.site-search__btn img {
  filter: brightness(0) invert(1);
}

.site-search__btn:hover {
  background: var(--color-hover);
}

/* スマホ用検索バー（初期非表示） */
.site-search-sp {
  display: none;
  padding: 10px 16px;
  background: var(--color-white);
  border-top: 1px solid var(--color-divider);
}

.site-search-sp.is-open {
  display: block;
}

/* === Scroll to Top Button === */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 24px;
  background: var(--color-primary);
  border-radius: 16px;
  width: 80px;
  height: 80px;
  text-align: center;
  text-decoration: none;
  z-index: 1000;
  display: none;
  padding-top: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.scroll-top.is-visible {
  display: block;
}

.scroll-top:hover,
.scroll-top:focus {
  background: var(--color-hover);
  text-decoration: none;
}

.scroll-top__icon {
  display: block;
  width: 16px;
  height: 8px;
  margin: 4px auto 8px auto;
}

.scroll-top__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
}

/* === Visibility Utilities === */
.pc-only { display: block; }
.sp-only { display: none; }

/* === P02 H1 Banner (plain variant — no overlay/bg-image) === */
.h1-banner--plain .h1-banner__content {
  padding: 16px 0 24px;
}

/* ===========================================
   Submenu（PC・スマホ共通）
=========================================== */
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.has-submenu.is-open .submenu,
.has-submenu:hover .submenu {
  display: block;
}

/* PC: ドロップダウン */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  background: var(--color-navy);
  min-width: 200px;
  white-space: nowrap;
}

.submenu li a {
  display: block;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-base);
  padding: 12px 40px;
  text-decoration: none;
  border-top: 0px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.submenu li:first-child a {
  position: relative;
  padding: 12px 20px;
}

.submenu li:first-child a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0px;
  height: 1px;
  background: var(--color-divider);
}

.submenu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #C7E1EF;
}

/* トグルアイコン: PC非表示 */
.submenu-toggle__icon {
  display: none;
}

/* ===========================
   P04 Publication Card Select
=========================== */
.section-pub-select {
  padding: 40px 0;
  background: var(--color-white);
}

.pub-card-period {
  display: inline-block;
  background: var(--color-label-blue);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.pub-card__expand {
  text-align: center;
  padding: 4px 16px 4px;
  margin-top: auto;
  background: var(--neutral-gray-lv4, #F3F3F3);
}

.table>tbody>tr>td {
  border-top: 0px solid #ddd;
}

.pub-card__expand img {
  width: 24px;
  height: 24px;
}

/* ===========================
   P09 FAQ Page
=========================== */

/* -- よくある質問 ボタン アクティブ状態 -- */
.btn-outline-blue.btn-active {
  background: var(--color-white);
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
}

/* -- Section: カテゴリ選択カード -- */
.section-faq-cards {
  background: var(--color-white);
  padding: 40px 0;
}

.section-faq-cards .section-heading {
  margin-bottom: 32px;
}

.faq-card {
  display: block;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 0 6px 0 var(--color-shadow);
  text-decoration: none;
  color: var(--color-text);
  overflow: hidden;
  margin-bottom: 24px;
}

.faq-card:hover,
.faq-card:focus-visible {
  text-decoration: none;
  color: var(--color-hover);
  opacity: 0.85;
}

.faq-card:hover .faq-card__icon,
.faq-card:focus-visible .faq-card__icon,
.faq-card:hover .faq-card__footer img,
.faq-card:focus-visible .faq-card__footer img {
  -webkit-filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(5867%) hue-rotate(238deg) brightness(81%) contrast(102%);
  filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(5867%) hue-rotate(238deg) brightness(81%) contrast(102%);
}

.faq-card__inner {
  display: table;
  width: 100%;
  height: 172px;
}

.faq-card__body {
  display: table-cell;
  vertical-align: top;
  text-align: center;
  padding: 24px 16px;
}

.faq-card__icon {
  display: block;
  margin: 0 auto 12px;
  width: 40px;
  height: 40px;
}

.faq-card__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

.faq-card__footer {
  background: var(--color-bg-light);
  height: 28px;
  text-align: center;
  line-height: 28px;
}

.faq-card__footer img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* -- Section: FAQアコーディオン -- */
.section-faq {
  background: var(--color-bg-light);
  padding: 40px 0;
}

.faq-h2 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: var(--color-text);
  margin: 0 0 32px;
}

.faq-h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
  border-left: 8px solid var(--color-navy);
  padding-left: 16px;
  margin: 40px 0 16px;
  border-radius: 0 0 0 2px;
}

.faq-accordion {
  margin-bottom: 8px;
}

.faq-item {
  margin-bottom: 16px;
}

.faq-item__q {
  display: block;
  width: 100%;
  background: var(--color-label-blue);
  border: none;
  border-radius: 16px;
  padding: 16px 64px 16px 32px;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: var(--font-base);
  line-height: 1.6;
}

.faq-item__q:hover,
.faq-item__q:focus-visible {
  opacity: 0.85;
  outline: none;
  color: var(--color-hover);
}

.faq-item.is-open .faq-item__q {
  border-radius: 16px 16px 0 0;
}

.faq-item__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: block;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: black;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
}

/* 横線 */
.faq-item__icon::before {
  width: 10px;
  height: 1px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* 縦線（開いているときに消えて「-」になる） */
.faq-item__icon::after {
  width: 1px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::after {
  display: none;
}

.faq-item__a {
  background: var(--color-white);
  border-radius: 0 0 16px 16px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.6;
  display: none;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

.faq-item__a p {
  margin: 0 0 8px;
}

.faq-item__a a {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

/* -- Section: お問い合わせフォーム CTA -- */
.p09-section-contact {
  background: var(--color-bg-light);
  padding: 0 0 40px;
}

.p09-contact-box {
  background: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.p09-contact-box__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px;
}

.p09-contact-box__subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 24px;
}

.p09-contact-btn {
  font-size: 20px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 8px;
}

.p09-faq-card-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* カードが3個のときだけ col-sm-4 相当（33.33%）にする */
.p09-faq-card-row > [class*="col-"]:first-child:nth-last-child(3),
.p09-faq-card-row > [class*="col-"]:first-child:nth-last-child(3) ~ [class*="col-"] {
  width: 33.33333333%;
}

/* カードが2個のときは50%幅 */
.p09-faq-card-row > [class*="col-"]:first-child:nth-last-child(2),
.p09-faq-card-row > [class*="col-"]:first-child:nth-last-child(2) ~ [class*="col-"] {
  width: 50%;
}

/* ============================================
   P05 法改正情報
============================================ */
/* (PC styles are inherited from shared components) */

/* ============================================
   P06 従業員向け資料
============================================ */

/* パンくずリスト (p06固有クラス) */
.section-breadcrumb {
  background: #FFFFFF;
  padding: 8px 0;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list__item {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 700;
  color: #333333;
}

.breadcrumb-list__item + .breadcrumb-list__item::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url('/images/icon_chevron_right_blue.svg') no-repeat center / contain;
  vertical-align: middle;
  margin: 0 4px;
}

.breadcrumb-list__item a {
  color: #08287F;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb-list__item a:hover {
  text-decoration: underline;
}

.breadcrumb-list__item--current {
  color: #333333;
}

/* H1バナー (p06固有クラス) */
.section-h1-banner {
  background: #D7DCEF;
  padding: 16px 0 24px;
  text-align: center;
}

.h1-banner__sub {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}

/* ページトップボタン (p06: btn-scroll-top) */
.btn-scroll-top {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 72px;
  height: 64px;
  background: #08287F;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  padding-top: 10px;
  padding-bottom: 8px;
  z-index: 100;
}

.btn-scroll-top.is-visible {
  display: block;
}

.btn-scroll-top:hover,
.btn-scroll-top:focus {
  background: #0a3499;
  text-decoration: none;
}

.btn-scroll-top__icon {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto 2px;
}

.btn-scroll-top__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
}

/* カテゴリカードセクション */
.section-doc-cards {
  padding: 40px 0;
  background: #FFFFFF;
}

.doc-cards__heading {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 8px;
  text-align: center;
}

.doc-cards__sub {
  font-size: 18px;
  color: #333333;
  text-align: center;
  margin-bottom: 32px;
}

/* カード */
.p06-doc-card {
  display: block;
  text-decoration: none;
  color: #333333;
  margin-bottom: 16px;
}

.p06-doc-card:hover {
  text-decoration: none;
  color: var(--color-hover);
}

.p06-doc-card:hover .p06-doc-card__title,
.p06-doc-card:hover .p06-doc-card__desc {
  color: var(--color-hover);
}


.p06-doc-card:hover .p06-doc-card__icon {
  -webkit-filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(5867%) hue-rotate(238deg) brightness(81%) contrast(102%);
  filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(5867%) hue-rotate(238deg) brightness(81%) contrast(102%);
}

.p06-doc-card:hover .p06-doc-card__arrow {
  -webkit-filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(5867%) hue-rotate(238deg) brightness(81%) contrast(102%);
  filter: brightness(0) saturate(100%) invert(12%) sepia(89%) saturate(5867%) hue-rotate(238deg) brightness(81%) contrast(102%);
}


.p06-doc-card__inner {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(21, 21, 79, 0.15);
  overflow: hidden;
}

.p06-doc-card:hover .p06-doc-card__inner {
  /*box-shadow: 0 6px 16px rgba(21, 21, 79, 0.25);*/
}

.p06-doc-card__body {
  padding: 24px 16px 16px;
  text-align: center;
  min-height: 218px !important;
}

.p06-doc-card__icon {
  width: 40px;
  height: 40px;
  margin: 0px auto 12px;
}

.p06-doc-card__title {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 8px;
}

.p06-doc-card__desc {
  font-size: 18px;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

.p06-doc-card__footer {
  background: #F3F3F3;
  text-align: center;
  padding: 4px 0;
}

.p06-doc-card__arrow {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
}

/* 資料一覧セクション */
.section-doc-list {
  background: #F3F3F3;
  padding: 40px 0 60px;
}

.doc-list-h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 32px;
}

.doc-list-h2__count {
  font-size: 16px;
  font-weight: normal;
  color: #333333;
  margin-left: 12px;
}

/* サブセクション見出し */
.doc-h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  border-left: 8px solid #000066;
  padding-left: 12px;
  margin: 40px 0 16px;
  line-height: 1.4;
}

.doc-h3__count {
  font-size: 14px;
  font-weight: normal;
  color: #333333;
  margin-left: 12px;
}

/* 資料リスト */
.doc-list {
  list-style: none;
  padding: 16px;
  margin: 0;
  background: #FFFFFF;
  border-radius: 4px;
}

.doc-item {
  padding: 16px 20px;
  border-bottom: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  align-items: center;
}

.doc-item:last-child {
  border-bottom: none;
}

/* PC: サムネイル（左端） */
.doc-item__thumb {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  min-width: 100px;
  height: 100px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}

/* PC: 文章（中央・残り幅） */
.doc-item__info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

/* PC: ボタン（右端・固定幅） */
.doc-item__action {
  float: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
  margin-left: 0;
}

.doc-item__date {
  font-size: 14px;
  color: #666666;
  margin: 0 0 4px;
}

.doc-item__title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 6px;
  line-height: 1.5;
}

.doc-item__desc {
  font-size: 14px;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

/* PPT ダウンロードボタン */
.ppt-btn {
  display: block;
  background: #08287F;
  color: #FFFFFF;
  text-align: center;
  padding: 8px 4px;
  border-radius: 8px;
  text-decoration: none;
  line-height: 1.4;
}

.ppt-btn:hover,
.ppt-btn:focus {
  background: var(--color-hover);
  color: #FFFFFF;
  text-decoration: none;
}

.ppt-btn__inner {
  display: block;
}

.ppt-btn__icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}

.ppt-btn__label {
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
}

.ppt-btn__size {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

/* === P06 Global Overrides === */
.doc-item__title {
  font-size: 14px;
}

.doc-item__desc {
  font-size: 12px;
}

.doc-item__date {
  font-size: 12px;
}

.doc-h3__count {
  font-size: 12px;
}

.breadcrumb-list__item {
  font-size: 12px;
}

.h1-banner__sub {
  font-size: 14px;
}

/* ============================================
   P08 各種お申込み
============================================ */

/* コンテンツセクション */
.section-p08-content {
  background: #FFFFFF;
  padding: 40px 0 60px;
}

/* H2: セクション大見出し */
.p08-section-h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  margin: 0 0 32px;
}

/* コンテンツボックス */
.p08-content-box {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 24px;
}

/* ボックス内見出し */
.p08-box-heading {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 16px;
}

/* ボックス内テキスト */
.p08-box-text {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 16px;
}

/* ボックス内区切り線 */
.p08-box-divider {
  border: 0;
  border-top: 1px solid #E6E6E6;
  margin: 24px 0;
}

/* お申込みボタン */
.p08-form-btn {
  display: inline-block;
  background: #08287F;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 32px;
  border-radius: 8px;
  text-decoration: none;
  line-height: 1.6;
}

.p08-form-btn:hover,
.p08-form-btn:focus {
  background: #0F0AD1;
  color: #FFFFFF;
  text-decoration: none;
}

.p08-form-btn__icon {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 4px;
}

/* メールアドレス */
.p08-email {
  margin: 16px 0;
  font-size: 18px;
  color: #333333;
}

.p08-email__label {
  font-weight: bold;
  margin-right: 8px;
}

.p08-email__value {
  color: #08287F;
  text-decoration: none;
}

.p08-email__value:hover {
  text-decoration: underline;
}

/* セミナー画像 */
.p08-seminar-img {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* 留意事項 */
.p08-caution {
  margin: 0 0 16px;
}

.p08-caution__heading {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 8px;
}

.p08-caution__prefix {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  margin: 0 0 8px;
}

.p08-caution__list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.p08-caution__list li {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 4px;
}

/* ファイルダウンロードリスト */
.p08-file-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p08-file-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.p08-file-item + .p08-file-item {
  border-top: 1px solid #E6E6E6;
}

.p08-file-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.p08-file-icon--navy {
  background: #000066;
}

.p08-file-icon--red {
  background: #C8000A;
}

.p08-file-icon img {
  width: 16px;
  height: 16px;
}

.p08-file-info {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-width: 0;
}

.p08-file-name {
  font-size: 16px;
  font-weight: bold;
  color: #08287F;
  text-decoration: none;
  display: block;
  line-height: 1.5;
}

.p08-file-name:hover {
  text-decoration: underline;
  color: #0F0AD1;
}

.p08-file-meta {
  font-size: 14px;
  color: #333333;
  margin: 2px 0 0;
}

/* === Focus === */
:focus-visible {
  outline: 0px solid var(--color-primary);
}

/* ===========================================
   Responsive: スマホ (767px以下) — 統合ブロック
=========================================== */
@media (max-width: 767px) {

  /* --- Visibility --- */
  .pc-only { display: none !important; }
  .sp-only { display: block !important; }

  /* --- Search --- */
  .search-wrap {
    display: none;
  }

  /* --- Header / Navigation --- */
  .site-header__topbar { display: none; }

  .site-nav {
    background: var(--color-white);
  }

  .site-nav__toggle-icon {
    display: block;
    width: 24px;
    height: 24px;
  }

  .site-nav__toggle {
    background: var(--color-white);
    color: var(--color-navy);
  }

  .site-nav__item > a {
    color: var(--color-text);
    padding: 12px 16px;
    font-size: 16px;
  }

  .site-nav__item > a:hover,
  .site-nav__item > a:focus {
    text-decoration: none;
    color: var(--color-text);
  }

  .site-nav__search-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(0);
  }

  /* Togglebar表示 */
  .site-nav__togglebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
  }

  /* Toggle（ハンバーガー）ボタン表示 */
  .site-nav__togglebar .site-nav__toggle {
    display: block;
    width: auto;
  }

  /* ナビリストは初期非表示 */
  .site-nav__list {
    display: none;
  }

  .site-nav__list.is-open {
    display: block;
    height: auto;
  }

  .site-nav__item {
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .site-nav__item:last-child {
    border-bottom: none;
  }

  /* ドロップダウンメニュー */
  .site-nav__item.dropdown .dropdown-menu {
    background: var(--color-navy);
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 200px;
    margin: 0;
  }

  .site-nav__item.dropdown .dropdown-menu > li > a {
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 16px;
    font-family: var(--font-base);
  }

  .site-nav__item.dropdown .dropdown-menu > li > a:hover,
  .site-nav__item.dropdown .dropdown-menu > li > a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
  }

  .site-nav__item.dropdown .dropdown-menu .divider {
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0;
  }

  /* 親リンクのアイコン非表示（caretを使わない場合） */
  .site-nav__item.dropdown .caret {
    display: none;
  }

  .site-nav__item.active > a { padding-bottom: 12px; }
  .site-nav__item.active > a::after { display: none; }

  /* --- Submenu SP --- */
  .submenu li:first-child a::after {
    height: 0px;
  }

  .submenu li:first-child a {
    padding: 10px 24px;
  }

  .has-submenu:hover .submenu {
    display: none;
  }

  .has-submenu.is-open .submenu {
    display: block;
  }

  .submenu {
    position: static;
    background: rgba(0, 0, 0, 0.0);
    min-width: unset;
    white-space: normal;
  }

  .submenu li a {
    color: var(--color-text);
    border-top-color: rgba(0, 0, 0, 0.06);
    padding: 10px 24px;
  }

  .submenu li a .submenu-toggle__icon {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    transform: rotate(0deg);
  }

  .submenu li a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-text);
  }

  /* トグルアイコン: スマホのみ表示 */
  .submenu-toggle__icon {
    display: inline-block;
    float: right;
    width: 16px;
    height: 16px;
    margin-top: 8px;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
  }

  .has-submenu.is-open .submenu-toggle__icon {
    transform: rotate(90deg);
  }

  .has-submenu.is-open .submenu .submenu-toggle__icon {
    transform: rotate(0deg);
  }

  /* --- H1 Banner / Heading --- */
  .h1-banner__title { font-size: 24px; }
  .h1-banner__subtitle { font-size: 14px; }
  .section-heading__title { font-size: 20px; }
  .section-heading__subtitle { font-size: 14px; }

  /* --- Breadcrumb SP --- */
  .breadcrumb-nav li {
    font-size: 11px;
  }

  .breadcrumb-nav .breadcrumb-sep img {
    width: 10px;
    height: 10px;
  }

  /* --- News Section SP --- */
  .news-list__item {
    display: block;
    padding: 0;
  }

  .news-list {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .news-list__arrow { display: none; }

  /* スマホ用トグルボタン */
  .news-list__toggle {
    padding: 10px 0;
    gap: 8px;
  }

  .news-list__toggle .news-list__date {
    font-size: 12px;
    width: auto;
    padding-right: 0;
  }

  .news-list__toggle .news-list__text {
    font-size: 14px;
    display: block;
    width: auto;
    padding-right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    transition: white-space 0.1s;
    width: 90%;
  }

  .news-list__toggle.is-expanded .news-list__text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .news-list__toggle.is-expanded .news-toggle-icon {
    transform: rotate(90deg);
  }

  .news-toggle-icon {
    width: 16px;
    height: 16px;
  }

  /* --- Hero Carousel SP --- */
  .hero-carousel-wrap .carousel-control.right {
    right: -20px;
  }

  .hero-carousel-wrap .carousel-control.left {
    left: -20px;
  }

  /* --- Contents Card SP --- */
  .section-contents .col-xs-6 {
    padding-left: 6px;
    padding-right: 6px;
  }

  .section-contents .row {
    margin-left: -6px;
    margin-right: -6px;
  }

  .contents-card {
    margin-bottom: 12px;
  }

  .section-contents .row:after {
    content: '';
    display: table;
    clear: both;
  }

  .section-contents .col-xs-6:nth-child(2n+1) {
    clear: left;
  }

  .contents-card__img {
    height: 120px;
  }

  .contents-card__img img {
    height: 120px;
  }

  .contents-card__body {
    padding: 12px;
  }

  .contents-card__title {
    font-size: 16px;
  }

  .contents-card__desc {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .contents-card__link {
    font-size: 12px;
  }

  /* --- Link Card SP --- */
  .link-card {
    margin-bottom: 12px;
  }

  .link-card__label {
    font-size: 16px;
  }

  .link-card__icon-cell img {
    width: 20px;
    height: 20px;
  }

  .link-card__icon-cell {
    width: 28px;
    padding-bottom: 4px;
  }

  /* --- Buttons SP --- */
  .btn-outline-dark {
    font-size: 14px;
  }

  /* --- P03 Intro SP --- */
  .intro-row { display: block; }

  .intro-col-image,
  .intro-col-text {
    display: block;
    width: 100%;
    padding-right: 0;
    margin-bottom: 16px;
  }

  /* --- Backnumber Table SP --- */
  .backnumber-table { font-size: 13px; }
  .backnumber-table thead { display: none; }

  .backnumber-table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 2px solid var(--color-divider);
  }

  .backnumber-table > tbody > tr > td {
    padding: 4px 8px;
    white-space: normal;
    width: auto;
  }

  /* 左列上：号数 */
  .backnumber-table .col-issue {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    font-size: 13px;
  }

  /* 右列（issue・dateの横）：コンテンツ */
  .backnumber-table .col-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    font-size: 13px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }

  /* 左列下：日付 */
  .backnumber-table .col-date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    font-size: 12px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100px;
  }

  /* ダウンロード：全幅で下 */
  .backnumber-table .col-download {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: left;
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  /* --- Footer SP --- */
  .footer-links { display: block; }

  .footer-links li {
    display: block;
    padding-right: 0;
    margin-bottom: 8px;
  }

  .footer-links li:last-child {
    text-align: left;
  }

  .footer-links li a {
    font-size: 11px;
  }

  .footer-adobe { display: block; }

  .footer-adobe__icon,
  .footer-adobe__text {
    display: block;
    width: 100%;
    padding-right: 0;
    margin-bottom: 8px;
    white-space: normal;
  }

  .footer-adobe__text {
    font-size: 12px;
  }

  .footer-company__name {
    font-size: 16px;
  }

  .footer-company__details {
    max-width: 100%;
    font-size: 12px;
  }

  /* --- Scroll to Top SP --- */
  .scroll-top {
    position: fixed;
    bottom: 24px;
    right: 56px;
    width: 72px;
    height: 64px;
  }

  .scroll-top__label {
    font-size: 12px;
  }

  /* --- P02 H1 Banner SP --- */
  .h1-banner--plain {
    text-align: center;
  }

  .h1-banner--plain .h1-banner__content {
    padding: 16px 16px 24px;
  }

  /* --- P02 Page Cards SP --- */
  .page-card__img {
    height: 132px;
  }

  .page-card__img img {
    height: 132px;
  }

  .page-card__title {
    font-size: 16px;
  }

  .page-card__desc {
    font-size: 14px;
  }

  .page-card__body {
    padding: 16px;
  }

  .page-card .btn-outline-blue {
    font-size: 14px;
    padding: 8px 24px;
  }

  /* =========================================
     P01 SP 固有スタイル
  ========================================= */

  /* ヘッダー: トグルバー 高さ56px・border-bottom */
  body.p01-page .site-nav__togglebar {
    height: 56px;
    padding: 0 16px;
    border-bottom: 1px solid #E6E6E6;
    background: #FFFFFF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* H1バナー(オーバーレイあり): SPパディング・キャプション */
  .p01-h1-banner .h1-banner__content {
    padding: 16px 16px 24px;
  }

  .p01-h1-banner .h1-banner__caption {
    font-size: 8px;
    right: 16px;
    bottom: 8px;
  }

  /* カルーセル: SPサイズ調整 */
  .p01-carousel-section .hero-carousel-wrap {
    max-width: 100%;
    padding: 0 40px;
  }

  .p01-carousel-section .hero-carousel-wrap .carousel-inner .item img {
    height: 75px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
  }

  .p01-carousel-section .hero-carousel-wrap .carousel-control {
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }

  .p01-carousel-section .hero-carousel-wrap .carousel-control img {
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
  }

  .p01-carousel-section .hero-carousel-wrap .carousel-control.left {
    left: -16px;
  }

  .p01-carousel-section .hero-carousel-wrap .carousel-control.right {
    right: -16px;
  }

  .p01-carousel-section .hero-carousel-wrap .carousel-indicators {
    /*bottom: -28px;*/
  }

  /* ニュース: 日付を1行目（全幅）に配置 */
  .p01-section-news .news-list__toggle {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2px 8px;
    padding: 12px 0;
  }

  .p01-section-news .news-list__toggle .news-list__date {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    display: block;
  }

  .p01-section-news .news-list__toggle .news-list__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .p01-section-news .news-toggle-icon-wrap {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  /* コンテンツカード: 画像高さ123px・ボディpadding */
  .p01-section-contents .contents-card__img {
    height: 123px;
  }

  .p01-section-contents .contents-card__img img {
    height: 123px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p01-section-contents .contents-card__body {
    padding: 16px 8px;
  }

  /* その他コンテンツ: padding 16px・margin 16px */
  .p01-section-other .link-card {
    padding: 16px;
    margin-bottom: 16px;
  }

  /* メニュー開閉アイコン: 展開時はcancel(×)アイコンに切替 */
  body.p01-page .site-nav__toggle-close {
    display: none;
    width: 24px;
    height: 24px;
  }

  body.p01-page .site-nav__toggle[aria-expanded="true"] .site-nav__toggle-icon {
    display: none;
  }

  body.p01-page .site-nav__toggle[aria-expanded="true"] .site-nav__toggle-close {
    display: block;
  }

  /* メニューアクションボタン: メニュー展開時に表示 */
  .site-nav__list.is-open ~ .p01-nav-actions {
    display: block;
    padding: 24px 0;
    text-align: center;
  }

  .p01-nav-btn {
    display: block;
    font-family: var(--font-base);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    padding: 8px 32px;
    margin-bottom: 16px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .p01-nav-btn:last-child {
    margin-bottom: 0;
  }

  .p01-nav-btn--faq {
    background: #FFFFFF;
    color: #08287F;
    border: 1px solid #08287F;
  }

  .p01-nav-btn--faq:hover,
  .p01-nav-btn--faq:focus {
    background: var(--color-hover);
    color: #FFFFFF;
    text-decoration: none;
    border-color: var(--color-hover);
  }

  .p01-nav-btn--contact {
    background: #08287F;
    color: #FFFFFF;
    border: 1px solid #08287F;
  }

  .p01-nav-btn--contact:hover,
  .p01-nav-btn--contact:focus {
    background: var(--color-hover);
    color: #FFFFFF;
    text-decoration: none;
    border-color: var(--color-hover);
  }

  .p01-nav-btn--signout {
    display: inline-block;
    background: #FFFFFF;
    color: #333333;
    border: 1px solid #333333;
  }

  .p01-nav-btn--signout:hover,
  .p01-nav-btn--signout:focus {
    background: var(--color-hover);
    color: #FFFFFF;
    text-decoration: none;
    border-color: var(--color-hover);
  }

  .p01-nav-btn--signout:hover .p01-nav-btn__icon,
  .p01-nav-btn--signout:focus .p01-nav-btn__icon {
    filter: brightness(0) invert(1);
  }

  .p01-nav-btn__icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
  }

  /* =========================================
     P03 SP Overrides
  ========================================= */
  .p03-intro .intro-label {
    font-size: 12px;
  }

  .p03-intro .intro-col-image {
    margin-bottom: 24px;
  }

  .p03-intro .intro-text {
    font-size: 14px;
  }

  .p03-intro .intro-col-text {
    margin-bottom: 24px;
  }

  /* =========================================
     P04 Publication Card Select SP
  ========================================= */
  .section-pub-select {
    padding: 40px 16px;
  }

  .pub-card-period {
    font-size: 12px;
  }

  .section-pub-select .page-card {
    margin-bottom: 16px;
  }

  .section-pub-select .row > div:last-child .page-card {
    margin-bottom: 0;
  }

  /* SP: カード画像高さ 69px（バナー型）*/
  .section-pub-select .page-card__img {
    height: 69px;
  }

  .section-pub-select .page-card__img img {
    height: 69px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .section-heading__count {
    font-size: 12px;
  }

  .section-count__icon {
    width: 14px;
    height: 14px;
  }

  /* =========================================
     P04 SP Magazine Table
     （2列ヘッダー維持・カード型レイアウト）
  ========================================= */

  /* テーブル全体をブロック表示に変換 */
  .p04-mag-table.backnumber-table {
    display: block;
  }

  /* thead: global の display:none を上書きして表示（2列のみ） */
  .p04-mag-table.backnumber-table thead {
    display: block;
  }

  .p04-mag-table.backnumber-table thead tr {
    display: block;
    overflow: hidden;
  }

  .p04-mag-table.backnumber-table thead th {
    float: left;
    font-size: 12px;
    padding: 8px 16px;
  }

  .p04-mag-table.backnumber-table thead th.col-issue {
    width: 25%;
  }

  .p04-mag-table.backnumber-table thead th.col-date {
    width: 75%;
  }

  /* 内容・ダウンロード列ヘッダーは非表示 */
  .p04-mag-table.backnumber-table thead th.col-content,
  .p04-mag-table.backnumber-table thead th.col-download {
    display: none;
  }

  /* tbody */
  .p04-mag-table.backnumber-table tbody {
    display: block;
  }

  .p04-mag-table.backnumber-table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-divider);
    width: 100%;
  }

  .p04-mag-table.backnumber-table tbody tr:last-child {
    border-bottom: none;
  }

  .p04-mag-table.backnumber-table tbody td {
    display: block;
    float: none;
    padding: 4px 8px;
    width: inherit;
    max-width: none;
    white-space: normal;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* 左列：号数（sp-onlyで日付を内包） */
  .p04-mag-table.backnumber-table tbody td.col-issue {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 30%;
    width: 30%;
    order: 0;
    font-size: 13px;
    font-weight: 700;
  }

  /* 右列：コンテンツ（残り全て） */
  .p04-mag-table.backnumber-table tbody td.col-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    width: auto;
    min-width: 0;
    overflow: hidden;
    order: 1;
    font-size: 14px;
    font-weight: 700;
  }

  /* col-date(pc-only)はスマホで非表示 */
  .p04-mag-table.backnumber-table tbody td.col-date {
    display: none;
  }

  /* ダウンロード：全幅で下 */
  .p04-mag-table.backnumber-table tbody td.col-download {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100%;
    width: 100%;
    order: 2;
    float: none;
    text-align: center;
    padding: 8px 16px;
  }

  /* SP用PDFボタン: 幅240px・余白調整 */
  .p04-mag-table .pdf-btn {
    width: 240px;
    max-width: 100%;
    padding: 6px 8px 8px 8px;
    margin: 0 auto;
  }

  .p04-mag-table .pdf-btn__icon {
    width: 20px;
    height: 20px;
  }

  .p04-mag-table .pdf-btn__label {
    font-size: 14px;
  }

  .p04-mag-table .pdf-btn__inner {
    display: inline;
  }

  .p04-mag-table .pdf-btn__size {
    display: inline;
    font-size: 11px;
  }

  /* =========================================
     P05 法改正情報 SP
  ========================================= */
  .p05-h1-banner .h1-banner__content {
    padding: 16px 16px 24px;
    text-align: left;
  }

  .p05-intro .intro-col-image {
    margin-bottom: 24px;
  }

  .p05-intro .intro-label {
    font-size: 12px;
  }

  .p05-intro .intro-text {
    font-size: 14px;
  }

  /* =========================================
     P06 従業員向け資料 SP
  ========================================= */

  /* カード */
  .section-doc-cards {
    padding: 24px 0;
  }

  .doc-cards__heading {
    font-size: 20px;
  }

  .doc-cards__sub {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .p06-doc-card__body {
    padding: 16px 24px;
    min-height: 0!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    gap: 24px;
  }

  .p06-doc-card__icon {
    width: 40px;
    height: 40px;
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  /* タイトルと説明をまとめて右列に */
  .p06-doc-card__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
  }

  .p06-doc-card__title,
  .p06-doc-card__desc {
    display: block;
  }

  .p06-doc-card__title {
    margin-bottom: 4px;
    line-height: 160%;
  }

  .p06-doc-card__desc {
    margin: 0;
  }

  /* 資料一覧 */
  .section-doc-list {
    padding: 24px 0 40px;
  }

  .doc-list-h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .doc-h3 {
    font-size: 18px;
    margin: 32px 0 12px;
  }

  /* doc-item: SP flexboxレイアウト */
  .doc-item {
    padding: 16px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 0;
  }

  /* SP: サムネイル（order:1） */
  .doc-item__thumb {
    display: block;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 12px;
    margin-top: 24px;
  }

  /* SP: 情報エリア（order:2） */
  .doc-item__info {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    overflow: visible;
  }

  /* SP: ボタンを下に出す（order:3） */
  .doc-item__action {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    float: none;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
  }

  .ppt-btn {
    display: inline-block;
    width: 240px;
    padding: 10px 8px;
  }

  .ppt-btn__inner {
    display: inline;
  }

  .ppt-btn__size {
    display: inline;
  }

  /* =========================================
     P09 FAQ Page SP
  ========================================= */

  /* H1バナー: SP左寄せ */
  .p09-h1-banner {
    text-align: center;
  }

  .p09-h1-banner .h1-banner__content {
    text-align: center;
  }

  /* カテゴリカード: 縦積み、アイコン左＋テキスト右 */
  .p09-faq-card-row .col-sm-3 {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }



  .faq-card__inner {
    display: block;
    height: auto;
    overflow: hidden;
  }

  .faq-card__body {
    display: block;
    overflow: hidden;
    text-align: left;
    padding: 16px;
  }

  .faq-card__icon {
    float: left;
    margin: 0 12px 0 0;
    width: 40px;
    height: 40px;
    display: block;
  }

  .faq-card__title {
    font-size: 16px;
    overflow: hidden;
    margin: 0;
    padding-top: 7px;
    text-align: left;
  }

  .faq-h2 {
    font-size: 20px;
  }

  .faq-h3 {
    font-size: 18px;
    margin-top: 32px;
  }

  .faq-item__q {
    font-size: 16px;
    padding: 16px 48px 16px 16px;
  }

  .faq-item__icon {
    right: 16px;
  }

  .faq-item__a {
    font-size: 14px;
    padding: 16px;
  }

  .faq-item__a a {
    font-size: 14px;
  }

  .p09-contact-box {
    padding: 32px 16px;
  }

  .p09-contact-box__title {
    font-size: 20px;
  }

  .p09-contact-box__subtitle {
    font-size: 16px;
  }

  .p09-contact-btn {
    font-size: 16px;
    padding: 8px 32px;
    width: 100%;
  }

  /* =========================================
     P08 各種お申込み SP
  ========================================= */
  .section-p08-content {
    padding: 24px 0 40px;
  }

  .p08-section-h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  /* SP: ボックスの白背景・ボーダーを除去（SP JSONにbg/border指定なし、paddingX: 0） */
  .p08-content-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 24px 0;
  }

  .p08-box-heading {
    font-size: 18px;
  }

  .p08-box-text {
    font-size: 16px;
  }

  /* SP: 区切り線マージン縮小（gap: 16に合わせる） */
  .p08-box-divider {
    margin: 16px 0;
  }

  .p08-form-btn {
    display: block;
    text-align: center;
  }

  .p08-email {
    font-size: 16px;
  }

  .p08-seminar-img {
    max-width: 100%;
  }

  .p08-caution__heading {
    font-size: 16px;
  }

  .p08-caution__prefix {
    font-size: 16px;
  }

  .p08-caution__list li {
    font-size: 16px;
  }

  /* SP: ファイルアイコン統一サイズ */
  .p08-file-icon {
    width: 32px;
    height: 32px;
  }

  /* SP: ファイルアイコン色を統一（SP JSONで全てbgColor:#000066） */
  .p08-file-icon--red {
    background: #000066;
  }

  /* =========================================
     P07 DCご担当者向け資料 SP
  ========================================= */

  /* H1バナー: SP左揃え */
  .p07-h1-banner {
    text-align: left;
  }

  .p07-h1-banner .h1-banner__content {
    text-align: left;
  }

  /* H2件数バッジ: SPサイズ */
  .p07-doc-list .doc-list-h2__count {
    font-size: 12px;
  }

  /* H3件数バッジ: SPサイズ */
  .p07-doc-list .doc-h3__count {
    font-size: 12px;
  }

  /* doc-item サムネイル位置調整 */
  .p07-doc-list .doc-item__thumb {
    margin-top: 0;
  }

  /* doc-item テキスト: P07固有のSPサイズ */
  .p07-doc-list .doc-item__title {
    font-size: 14px;
  }

  .p07-doc-list .doc-item__desc {
    font-size: 12px;
  }

  .p07-doc-list .doc-item__date {
    font-size: 12px;
  }
}
