@charset "UTF-8";
/**
 * CMMB Vite entry
 *
 * 新規改修用のスタイルをここから読み込みます。
 * 既存の styles.css は上書きしません。
 */
/**
 * Global site header redesign
 */
:root {
  --cmmb-header-primary-height: 72px;
  --cmmb-header-nav-height: 36px;
  --cmmb-header-height: 108px;
}

.cmmb-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #1a1a1a;
}

.admin-bar .cmmb-header {
  top: 32px;
}

.cmmb-header__primary {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: var(--cmmb-header-primary-height);
  margin-inline: auto;
  padding: 0 36px 0 41px;
}

.cmmb-header__primary::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #d5d5d5;
  content: "";
}

.cmmb-header__logo-link {
  --cmmb-header-logo-width: clamp(220px, 20vw, 280px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  flex: 0 1 var(--cmmb-header-logo-width);
  width: var(--cmmb-header-logo-width);
  color: inherit;
  text-decoration: none;
}

.cmmb-header__logo {
  display: block;
  width: 100%;
}

.cmmb-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.cmmb-header__site-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  margin-top: 2px;
  padding: 3px 10px;
  border-radius: 999px;
  background-color: #0091d5;
  color: #fff;
  font-size: clamp(9px, 0.8vw, 12px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-align: center;
}

.cmmb-header__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  height: 100%;
  margin-left: auto;
  font-size: 0.8125rem;
}

.cmmb-header-action {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 6px;
  padding: 0 17px;
  border-top: 1px solid #009bdd;
  border-bottom: 1px solid #009bdd;
  border-left: 1px solid #009bdd;
  background-color: #fff;
  color: #0091d5;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.cmmb-header-action:hover {
  background-color: #eef9fe;
  opacity: 1;
}

.cmmb-header-action--primary {
  background-color: #009bdd;
  color: #fff;
}

.cmmb-header-action--primary:hover {
  background-color: #007fb7;
  color: #fff;
}

.cmmb-header-action__icon {
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  transform: translateY(1px);
}

.cmmb-header-action__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cmmb-menu-toggle {
  position: relative;
  z-index: 1200;
  display: block;
  align-self: center;
  flex: 0 0 37px;
  width: 37px;
  height: 37px;
  margin-left: 24px;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.cmmb-menu-toggle__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 37px;
  height: 2px;
  background-color: #7e7e7e;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cmmb-menu-toggle__line:nth-child(1) {
  transform: translate(-50%, calc(-50% - 9px));
}

.cmmb-menu-toggle__line:nth-child(2) {
  transform: translate(-50%, -50%);
}

.cmmb-menu-toggle__line:nth-child(3) {
  transform: translate(-50%, calc(-50% + 9px));
}

.cmmb-menu-toggle[aria-expanded=true] .cmmb-menu-toggle__line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cmmb-menu-toggle[aria-expanded=true] .cmmb-menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cmmb-menu-toggle[aria-expanded=true] .cmmb-menu-toggle__line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cmmb-menu-toggle:focus-visible,
.cmmb-header a:focus-visible {
  outline: 2px solid #007fb7;
  outline-offset: -3px;
}

.cmmb-header-spacer {
  height: var(--cmmb-header-height);
}

body.cmmb-menu-open {
  overflow: hidden;
}

body.cmmb-menu-open .cmmb-header__actions {
  z-index: auto;
}

@media screen and (min-width: 1060px) {
  .cmmb-header__actions {
    --cmmb-header-action-width: clamp(140px, 10.5vw, 160px);
  }
  .cmmb-header-action {
    flex: 0 0 var(--cmmb-header-action-width);
    width: var(--cmmb-header-action-width);
    min-width: 0;
  }
}
@media screen and (max-width: 1059px) {
  :root {
    --cmmb-header-primary-height: 64px;
    --cmmb-header-nav-height: 0px;
    --cmmb-header-height: 64px;
  }
  .cmmb-header__primary {
    padding: 0 13px 0 17px;
  }
  .cmmb-header__logo-link {
    --cmmb-header-logo-width: clamp(185px, 47vw, 250px);
  }
  .cmmb-header__site-label {
    padding: 3px 10px;
    font-size: clamp(8px, 2.3vw, 10px);
  }
  .cmmb-header-action {
    display: none;
  }
  .cmmb-header-action--primary {
    display: flex;
    height: 100%;
    padding-inline: clamp(12px, 3vw, 24px);
  }
  .cmmb-menu-toggle {
    margin-left: clamp(12px, 3vw, 24px);
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .cmmb-header {
    top: 46px;
  }
}
@media screen and (max-width: 480px) {
  .cmmb-header__primary {
    padding-right: 0;
    padding-left: 8px;
  }
  .cmmb-header__logo-link {
    --cmmb-header-logo-width: clamp(140px, 44vw, 170px);
  }
  .cmmb-header-action--primary {
    min-width: 0;
    gap: 5px;
    padding-inline: 8px;
    font-size: clamp(11px, 3.2vw, 13px);
    white-space: nowrap;
  }
  .cmmb-header-action--primary .cmmb-header-action__icon {
    display: none;
  }
  .cmmb-menu-toggle {
    flex: 0 0 var(--cmmb-header-primary-height);
    width: var(--cmmb-header-primary-height);
    height: var(--cmmb-header-primary-height);
    margin-left: 0;
  }
  .cmmb-menu-toggle__line {
    width: 28px;
  }
  .cmmb-header__site-label {
    padding: 2px 5px;
    font-size: clamp(7px, 2.4vw, 9px);
    white-space: nowrap;
  }
}
/**
 * Global navigation redesign
 */
.cmmb-global-nav {
  height: var(--cmmb-header-nav-height);
  border-bottom: 1px solid #d5d5d5;
  background-color: #fff;
}

.cmmb-global-nav__list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, auto));
  align-items: stretch;
  justify-content: center;
  gap: clamp(24px, 4vw, 70px);
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  list-style: none;
}

.cmmb-global-nav__list li {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.cmmb-global-nav__list a,
.cmmb-global-nav__list span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.cmmb-global-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #009bdd;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cmmb-global-nav__list a:hover {
  color: #008fd3;
  opacity: 1;
}

.cmmb-global-nav__list a:hover::after,
.cmmb-global-nav__list a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.cmmb-global-nav__list span[aria-disabled=true] {
  color: #777;
  cursor: default;
}

@media screen and (max-width: 1200px) and (min-width: 1060px) {
  .cmmb-global-nav__list {
    gap: 24px;
    padding-inline: 20px;
  }
  .cmmb-global-nav__list a,
  .cmmb-global-nav__list span {
    font-size: 12px;
  }
}
@media screen and (max-width: 1059px) {
  .cmmb-global-nav {
    display: none;
  }
}
/**
 * Drawer / mega menu redesign
 */
.cmmb-mega-menu[hidden] {
  display: none;
}

.cmmb-mega-menu {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100dvh;
  overflow-y: auto;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}

.cmmb-mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.cmmb-mega-menu__panel {
  position: relative;
  width: 100%;
  min-height: 100%;
  max-height: none;
  overflow: visible;
  padding: 16px 0;
  border: 0;
  background-color: #fff;
  background-image: url("/assets/images/common/drawer-bg-sp.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: none;
}

.cmmb-mega-menu__header,
.cmmb-mega-menu__body {
  width: calc(100% - 40px);
  max-width: 710px;
  margin-inline: auto;
}

.cmmb-mega-menu__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cmmb-mega-menu__logo-link {
  --cmmb-mega-menu-logo-width: clamp(230px, 25vw, 330px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: var(--cmmb-mega-menu-logo-width);
  color: inherit;
  text-decoration: none;
}

.cmmb-mega-menu__logo-link img {
  display: block;
  width: 100%;
  height: auto;
}

.cmmb-mega-menu__logo-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin-top: 6px;
  padding: 6px 18px;
  border-radius: 999px;
  background-color: #009bdd;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.cmmb-mega-menu__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  column-gap: clamp(20px, 2.5vw, 40px);
  margin-top: 56px;
}

.cmmb-mega-menu__main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 3.5vw, 56px);
}

.cmmb-mega-menu__column,
.cmmb-mega-menu__utility {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cmmb-mega-menu__column {
  display: grid;
  align-content: start;
  gap: 24px;
}

.cmmb-mega-menu__column a,
.cmmb-mega-menu__disabled {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #111;
  text-decoration: none;
}

.cmmb-mega-menu__column a:hover {
  color: #008fd3;
  opacity: 1;
}

.cmmb-mega-menu__column strong {
  font-size: clamp(1rem, 0.727rem + 1.36vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
}

.cmmb-mega-menu__column small {
  margin-top: 4px;
  color: #777;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.cmmb-mega-menu__disabled {
  color: #777;
}

.cmmb-mega-menu__aside {
  padding-left: 24px;
  border-left: 1px solid #d5d5d5;
}

.cmmb-mega-menu__utility {
  display: grid;
  gap: 10px;
}

.cmmb-mega-menu__utility a {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.cmmb-mega-menu__utility a:hover {
  color: #008fd3;
  opacity: 1;
}

.cmmb-mega-menu__actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.cmmb-mega-menu__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 12px;
  border: 1px solid #009bdd;
  background-color: #fff;
  color: #008fd3;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.cmmb-mega-menu__action-icon {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  transform: translateY(1px);
}

.cmmb-mega-menu__action-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cmmb-mega-menu__actions a:hover {
  background-color: #eef9fe;
  opacity: 1;
}

.cmmb-mega-menu__actions .cmmb-mega-menu__action-primary {
  background-color: #009bdd;
  color: #fff;
}

.cmmb-mega-menu__actions .cmmb-mega-menu__action-primary:hover {
  background-color: #007fb7;
  color: #fff;
}

.cmmb-mega-menu a:focus-visible {
  outline: 2px solid #007fb7;
  outline-offset: 3px;
}

.cmmb-mega-menu__external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cmmb-mega-menu__external-icon {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.cmmb-mega-menu__external-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-bar .cmmb-mega-menu {
  top: 32px;
  height: calc(100dvh - 32px);
}

@media screen and (min-width: 768px) {
  .cmmb-mega-menu__header,
  .cmmb-mega-menu__body {
    width: calc(100% - 50px);
    max-width: 1180px;
  }
}
@media screen and (min-width: 1130px) {
  .cmmb-mega-menu__panel {
    padding: 61px 0 84px;
    background-image: url("/assets/images/common/drawer-bg.webp");
  }
}
@media screen and (max-width: 1059px) {
  .cmmb-mega-menu__header {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    padding-right: 13px;
    padding-left: 17px;
  }
  .cmmb-mega-menu__logo-link {
    --cmmb-mega-menu-logo-width: clamp(185px, 47vw, 250px);
  }
  .cmmb-mega-menu__logo-link span {
    min-width: 0;
    margin-top: 2px;
    padding: 3px 10px;
    font-size: clamp(8px, 2.3vw, 10px);
  }
  .cmmb-mega-menu__body {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 32px;
  }
  .cmmb-mega-menu__main {
    column-gap: 28px;
  }
  .cmmb-mega-menu__aside {
    padding-top: 28px;
    padding-left: 0;
    border-top: 1px solid #d5d5d5;
    border-left: 0;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .cmmb-mega-menu {
    top: 46px;
    height: calc(100dvh - 46px);
  }
}
@media screen and (max-width: 600px) {
  .cmmb-mega-menu__panel {
    padding-top: 12px;
  }
  .cmmb-mega-menu__body {
    width: 100%;
    max-width: none;
    gap: 20px;
    margin-top: 16px;
  }
  .cmmb-mega-menu__main {
    column-gap: 0;
  }
  .cmmb-mega-menu__column {
    gap: 0;
  }
  .cmmb-mega-menu__column li {
    border-right: 1px solid #d5d5d5;
    border-bottom: 1px solid #d5d5d5;
  }
  .cmmb-mega-menu__column:first-child li {
    border-left: 1px solid #d5d5d5;
  }
  .cmmb-mega-menu__column li:first-child {
    border-top: 1px solid #d5d5d5;
  }
  .cmmb-mega-menu__column a,
  .cmmb-mega-menu__disabled {
    box-sizing: border-box;
    justify-content: center;
    min-height: 62px;
    padding: 8px 24px;
  }
  .cmmb-mega-menu__column strong {
    font-size: 16px;
    line-height: 1.3;
  }
  .cmmb-mega-menu__column small {
    display: none;
  }
  .cmmb-mega-menu__aside {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 10px 20px 0;
    border-top: 0;
  }
  .cmmb-mega-menu__actions {
    order: 1;
    width: min(100%, 280px);
    margin: 0 auto;
    gap: 16px;
  }
  .cmmb-mega-menu__actions a {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 15px;
  }
  .cmmb-mega-menu__utility {
    order: 2;
    gap: 0;
    margin-top: 24px;
  }
  .cmmb-mega-menu__utility a {
    display: flex;
    align-items: center;
    min-height: 50px;
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 480px) {
  .cmmb-mega-menu__header {
    padding-right: 0;
    padding-left: 8px;
  }
  .cmmb-mega-menu__logo-link {
    --cmmb-mega-menu-logo-width: clamp(140px, 44vw, 170px);
  }
  .cmmb-mega-menu__logo-link span {
    margin-top: 2px;
    padding: 2px 5px;
    font-size: clamp(7px, 2.4vw, 9px);
    white-space: nowrap;
  }
}
/**
 * Front page hero redesign
 */
.cmmb-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.cmmb-hero__slider {
  width: 100%;
  margin: 0;
  transform: none;
}

.cmmb-hero__slider .swiper-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
}

.cmmb-hero__slide {
  width: 100%;
  max-width: none;
}

.cmmb-hero__link,
.cmmb-hero__picture {
  display: block;
  width: 100%;
}

.cmmb-hero__slide .cmmb-hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 268/363;
  object-fit: cover;
}

.cmmb-hero__pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 11px;
  margin-top: 14px;
  padding-bottom: 12px;
}

.cmmb-hero + .layout-top-sixstrength {
  margin-top: 12px;
}

.cmmb-hero__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 3px;
}

.cmmb-hero__pagination .swiper-pagination-bullet-active {
  background-color: #008fd3;
}

@media screen and (min-width: 768px) {
  .cmmb-hero__slide .cmmb-hero__image {
    aspect-ratio: 16/5;
    object-fit: contain;
  }
  .cmmb-hero__pagination {
    margin-top: 10px;
    padding-bottom: 8px;
  }
  .cmmb-hero + .layout-top-sixstrength {
    margin-top: 20px;
  }
}
/**
 * Global site footer redesign
 */
.cmmb-footer {
  background-color: #e5f4fb;
  color: #111;
}

.cmmb-footer__inner {
  width: calc(100% - 50px);
  max-width: 1180px;
  margin-inline: auto;
  padding: 56px 0 24px;
}

.cmmb-footer__logo-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: clamp(230px, 25vw, 330px);
  color: inherit;
  text-decoration: none;
}

.cmmb-footer__logo-link img {
  display: block;
  width: 100%;
  height: auto;
}

.cmmb-footer__logo-link > span {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin-top: 6px;
  padding: 6px 18px;
  border-radius: 999px;
  background-color: #009bdd;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.cmmb-footer__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  column-gap: clamp(24px, 3vw, 48px);
  margin-top: 48px;
}

.cmmb-footer__main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 5vw, 72px);
}

.cmmb-footer__column,
.cmmb-footer__utility {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cmmb-footer__column {
  display: grid;
  align-content: start;
  gap: 24px;
}

.cmmb-footer__column a,
.cmmb-footer__disabled {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #111;
  text-decoration: none;
}

.cmmb-footer__column a:hover {
  color: #008fd3;
  opacity: 1;
}

.cmmb-footer__column strong {
  font-size: clamp(18px, 1.7vw, 27px);
  font-weight: 700;
  line-height: 1.35;
}

.cmmb-footer__column small {
  margin-top: 4px;
  color: #777;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.cmmb-footer__disabled {
  color: #777;
}

.cmmb-footer__aside {
  padding-left: 24px;
  border-left: 1px solid #c8d9e0;
}

.cmmb-footer__utility {
  display: grid;
  gap: 10px;
}

.cmmb-footer__utility a {
  color: #333;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.cmmb-footer__utility a:hover {
  color: #008fd3;
  opacity: 1;
}

.cmmb-footer__external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cmmb-footer__external-icon {
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.cmmb-footer__external-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cmmb-footer__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.cmmb-footer__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #009bdd;
  background-color: #fff;
  color: #008fd3;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.cmmb-footer__actions a:hover {
  background-color: #eef9fe;
  opacity: 1;
}

.cmmb-footer__actions .cmmb-footer__action-primary {
  background-color: #009bdd;
  color: #fff;
}

.cmmb-footer__actions .cmmb-footer__action-primary:hover {
  background-color: #007fb7;
  color: #fff;
}

.cmmb-footer__action-icon {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  transform: translateY(1px);
}

.cmmb-footer__action-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cmmb-footer__x-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.cmmb-footer__x-link:hover {
  color: #008fd3;
  opacity: 1;
}

.cmmb-footer__x-link img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.cmmb-footer a:focus-visible {
  outline: 2px solid #007fb7;
  outline-offset: 3px;
}

.cmmb-footer__copyright {
  margin: 48px 0 0;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cmmb-footer__inner {
    width: 100%;
    padding: 12px 0 20px;
  }
  .cmmb-footer__logo-link {
    width: clamp(185px, 47vw, 250px);
    margin-left: 17px;
  }
  .cmmb-footer__logo-link > span {
    margin-top: 2px;
    padding: 3px 10px;
    font-size: clamp(8px, 2.3vw, 10px);
  }
  .cmmb-footer__body {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 16px;
  }
  .cmmb-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
  }
  .cmmb-footer__column {
    gap: 0;
  }
  .cmmb-footer__column li {
    border-right: 1px solid #c8d9e0;
    border-bottom: 1px solid #c8d9e0;
  }
  .cmmb-footer__column:first-child li {
    border-left: 1px solid #c8d9e0;
  }
  .cmmb-footer__column li:first-child {
    border-top: 1px solid #c8d9e0;
  }
  .cmmb-footer__column a,
  .cmmb-footer__disabled {
    box-sizing: border-box;
    justify-content: center;
    min-height: 62px;
    padding: 8px 24px;
  }
  .cmmb-footer__column strong {
    font-size: 16px;
    line-height: 1.3;
  }
  .cmmb-footer__column small {
    display: none;
  }
  .cmmb-footer__aside {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 10px 20px 0;
    border-top: 0;
    border-left: 0;
  }
  .cmmb-footer__actions {
    order: 1;
    width: min(100%, 280px);
    margin: 0 auto;
    gap: 16px;
  }
  .cmmb-footer__actions a {
    min-height: 42px;
    padding: 8px 12px;
    font-size: 15px;
  }
  .cmmb-footer__utility {
    order: 2;
    gap: 0;
    margin-top: 24px;
  }
  .cmmb-footer__utility a {
    display: flex;
    align-items: center;
    min-height: 50px;
    font-size: 14px;
    line-height: 1.4;
  }
  .cmmb-footer__x-link {
    order: 3;
    justify-content: center;
    min-height: 40px;
  }
  .cmmb-footer__copyright {
    margin-top: 32px;
    padding-inline: 20px;
  }
}
/**
 * Company page
 */
.company {
  padding: 64px 0 88px;
}

.company__inner {
  width: min(100% - 80px, 1000px);
  margin-inline: auto;
}

.company__mission-title {
  margin: 0;
  color: #009bdd;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.company__content {
  width: 100%;
  margin-top: 53px;
  color: #404040;
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.company__content > h2 {
  margin: 0 0 0.8em;
  color: #404040;
  font-size: inherit;
  font-weight: 800;
  line-height: inherit;
  text-align: center;
}

.company__content > .company__mission-heading {
  font-size: clamp(28px, 3vw, 36px);
}

.company__content > p {
  margin: 0 0 1.5em;
  color: #404040;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  text-align: center;
}

.company__content > h2:not(:first-child) {
  margin-top: 80px;
  margin-bottom: 64px;
  color: #009bdd;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  color: #404040;
  font-size: inherit;
  font-weight: 600;
  line-height: 1.55;
}

.company-table tr {
  border-top: 2px solid #cfd7d9;
}

.company-table tr:first-child {
  border-top: 0;
}

.company-table tr:last-child {
  border-bottom: 2px solid #cfd7d9;
}

.company-table th,
.company-table td {
  padding: 28px 0;
  vertical-align: top;
}

.company-table th {
  position: relative;
  width: 32%;
  padding-left: 10%;
  font-weight: 700;
  text-align: left;
}

.company-table th::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: #009bdd;
  content: "";
}

.company-table td {
  padding-left: 36px;
  font-weight: 600;
}

.company-table ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-table a {
  color: inherit;
  text-decoration: none;
}

.company-table__external-link {
  display: inline;
}

.company-table__external-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 2px;
  vertical-align: -3px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media screen and (max-width: 767px) {
  .company {
    padding: 28px 0 52px;
  }
  .company__inner {
    width: calc(100% - 32px);
  }
  .company__mission-title {
    font-size: 34px;
    line-height: 1.2;
  }
  .company__content {
    margin-top: 29px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.8;
  }
  .company__content > h2 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.5;
  }
  .company__content > .company__mission-heading {
    font-size: 24px;
  }
  .company__content > p {
    margin-bottom: 1.25em;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
  }
  .company__content > h2:not(:first-child) {
    margin-top: 56px;
    margin-bottom: 32px;
    font-size: 32px;
    line-height: 1.3;
  }
  .company-table,
  .company-table tbody {
    display: block;
    width: 100%;
  }
  .company-table {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.75;
  }
  .company-table tr,
  .company-table tr:first-child {
    display: block;
    padding: 18px 0;
    border-top: 0;
    border-bottom: 1px solid #d7e0e5;
  }
  .company-table tr:first-child {
    padding-top: 0;
  }
  .company-table tr:last-child {
    border-bottom: 1px solid #d7e0e5;
  }
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 0;
    overflow-wrap: anywhere;
  }
  .company-table th {
    color: #009bdd;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
  .company-table th::after {
    display: none;
  }
  .company-table td {
    margin-top: 7px;
    font-weight: 500;
  }
}
/* 美濃部_書籍ページ */
.book-radio-section {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  padding: 20px 0;
}

.book-radio-section__line {
  border-top: 1px solid #ccc;
}

.book-radio-section__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-around;
  gap: 60px;
  margin: 0 auto;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.book-radio-section__image img {
  display: block;
  width: 310px;
  max-width: 100%;
  height: auto;
}

.book-radio-section__content {
  flex: 1;
  min-width: 300px;
}

.book-radio-section__title {
  margin: 0 0 0.8rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
}

.book-radio-section__title span {
  color: #000;
}

.book-radio-section__note {
  margin-bottom: 2em;
  color: #555;
  font-size: 0.9rem;
}

.book-radio-section__buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.book-radio-section__btn {
  display: inline-block;
  width: 240px;
  padding: 16px 32px;
  border-radius: 10px;
  background-color: #005b2c;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book-radio-section__btn:hover {
  background-color: #a3fdce;
  color: #005b2c;
}

.book-radio-section__btn:focus {
  outline: 2px solid #a3fdce;
  outline-offset: 4px;
}

@media screen and (max-width: 767px) {
  .book-radio-section {
    max-width: 100%;
    padding: 20px 0;
  }
  .book-radio-section__inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .book-radio-section__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .book-radio-section__content {
    width: 100%;
  }
  .book-radio-section__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .book-radio-section__btn {
    width: 100%;
    max-width: 320px;
  }
}
/* PC/SP表示切り替え */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*  お役立ち記事　目次 ====== */
.knowledge-contents__bg {
  margin-bottom: 3.125rem;
  padding: 0.5rem 1.5rem;
  border-left: 9px solid #6e0054;
}

.knowledge-contents__bg .title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.knowledge-contents__bg .title > div {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 5px 0;
  font-size: 18px;
}

.knowledge-contents__bg .title h2 img {
  width: 100%;
  max-width: 9.375rem;
  height: auto;
}

.knowledge-contents__bg .title label {
  display: none;
}

.knowledge-contents__bg ul {
  overflow: hidden;
  margin: 0;
}

.knowledge-contents__title-content {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
}

.knowledge-contents__title--en {
  width: 100%;
  max-width: 9.875rem;
}

.knowledge-contents__title--ja {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
}

.knowledge-contents__list {
  display: block;
  visibility: visible;
  height: auto;
  margin-top: 2.3125rem;
  opacity: 1;
}

.knowledge-contents__list-title {
  position: relative;
  margin-top: 0;
  padding-left: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
}

.knowledge-contents__list-title::before {
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  flex-shrink: 0;
}

.knowledge-contents__list .knowledge-contents__list-title a {
  color: #1c1c1c;
  text-decoration: none;
}

.knowledge-contents__bg ul ul {
  padding-left: 1.5rem;
}

.knowledge-contents__list-sub-title {
  position: relative;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  text-indent: -1.5rem;
}

.knowledge-contents__list .knowledge-contents__list-sub-title a {
  color: #1c1c1c;
  text-decoration: none;
}

.knowledge-contents__list-sub-title::before {
  background-image: none;
}

.knowledge-contents__list li.knowledge-contents__list-sub-title {
  list-style: disc;
}

.knowledge-contents__list li.knowledge-contents__list-sub-title::marker {
  color: #6e0054;
}

/* お役立ち記事 目次ここまで　*/
/*  お役立ち記事　プロフィール ====== */
.article-author,
.group-box-1 {
  width: 100%;
  margin: 40px auto;
  padding: 2.5rem;
  background-color: #f1e9ef;
}

.article-author-inner {
  display: flex;
}

.article-author_content .article-author-inner p {
  margin-top: 0;
}

.article-author__ttl-wrap {
  flex: 1;
  padding-left: 1.875rem;
}

.article-author__ttl {
  margin-bottom: 0.9375rem;
  padding: 3px 10px 3px 5px;
  border-radius: 4px;
  background-color: #6e0054;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
}

.article-author__img img {
  width: 130px;
  height: 130px;
}

.article-author p.article-author__name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.article-author .article-author__name-furigana {
  margin: 0;
  padding: 10px 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}

.article-author .article-author_text p {
  margin-top: 1rem;
  font-size: 0.875rem;
  text-align: justify;
}

.article-author_book_area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 1.25rem;
}

.article-author_book_area img {
  width: 100px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .article-author__ttl {
    display: block;
    margin-bottom: 1.875rem;
    padding: 6px 10px;
    font-size: 14px;
  }
  .article-author__img img {
    width: 150px;
    height: 150px;
  }
  .article-author p.article-author__name {
    font-size: 1.5rem;
    margin-top: 0;
  }
  .article-author .article-author__name-furigana {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .article-author,
  .group-box-1 {
    padding: 1.5rem;
  }
  .article-author_content .article-author-inner p {
    margin-bottom: 0;
  }
  .article-author__ttl-wrap {
    padding-left: 1rem;
  }
}
/*  お役立ち記事 追加ボタン ====== */
.button__article {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.button__article__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
}

a.button__article__inquiry,
a.button__article__download,
a.button__article__quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 260px;
  height: 80px;
  padding: 20px 20px 20px 75px;
  border-radius: 10px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

a.button__article__inquiry::before,
a.button__article__download::before,
a.button__article__quote::before {
  position: absolute;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background-repeat: no-repeat;
  content: "";
}

a.button__article__inquiry span,
a.button__article__download span,
a.button__article__quote span {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

a.button__article__inquiry span span,
a.button__article__download span span,
a.button__article__quote span span {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 400;
}

/* お問い合わせ */
a.button__article__inquiry {
  background-color: #d09500;
}

a.button__article__inquiry::before {
  top: 55%;
  left: 25px;
  background-image: url("/wp-content/uploads/2024/07/button_icon_01.png");
  background-size: 50px;
}

a.button__article__inquiry:hover {
  background-color: #ffc107;
  opacity: 1;
}

/* 「企業出版戦略」とは */
a.button__article__download {
  background-color: #46876f;
}

a.button__article__download::before {
  top: 60%;
  left: 20px;
  background-image: url("/wp-content/uploads/2024/07/button_icon_02.png");
  background-size: 45px;
}

a.button__article__download span span.btn__text__small {
  display: inline-block;
  font-size: 14px;
}

a.button__article__download:hover {
  background-color: #6cc4a1;
  opacity: 1;
}

/* お見積もり依頼 */
a.button__article__quote {
  background-color: #0171BD;
}

a.button__article__quote::before {
  top: 60%;
  left: 20px;
  background-image: url("/wp-content/uploads/2024/07/button_icon_03.png");
  background-size: 45px;
}

a.button__article__quote:hover {
  background-color: #55AAFF;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  a.button__article__inquiry,
  a.button__article__download,
  a.button__article__quote {
    text-decoration: none !important;
  }
}
@media screen and (max-width: 768px) {
  .button__article__container {
    display: inline-block;
    margin: 0 auto;
  }
  a.button__article__inquiry,
  a.button__article__download,
  a.button__article__quote {
    margin: 30px 0;
  }
}
/*  お役立ち記事 追加ボタン ここまで */
/*  About_企業出版　*/
.about__mv-title--en {
  max-width: 18rem;
}

.about__mv-bg__02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.25rem 0;
  background-color: #eaf1fa;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
}

.about__mv-bg__02 .about__mv-text {
  font-size: 1.125rem;
  letter-spacing: 0;
}

p span.fs_about {
  font-size: 1.375rem;
}

.about__mv-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about__mv-flex p {
  padding-right: 30px;
  font-weight: bold;
}

p span.marker-blue {
  color: #0077B4;
}

.about__mv-flex img {
  width: 200px;
  height: auto;
}

.bg_blue {
  padding: 10px 25px;
  background-color: #0077B4;
}

.button_flex {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}

.section__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.about_cta {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 100px;
}

h3.banner_title {
  margin: 60px 0 15px;
  font-size: 24px;
  text-align: center;
}

.banner__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  row-gap: 50px;
}

.banner__flex img {
  width: 450px;
  height: auto;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  font-family: inherit;
  appearance: none;
  cursor: pointer;
}

a.buttonBasic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 85px;
  padding: 8px 24px;
  border-radius: 15px;
  background-color: #ffffff;
  color: #0077B4;
  font-family: sans-serif;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  overflow-wrap: anywhere;
  transition: background-color 0.3s;
}

a.buttonBasic span {
  display: inline-grid;
}

a.buttonBasic span span {
  font-size: 1rem;
}

a.buttonBasic:hover {
  background-color: #ffff99;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .about__mv-title--en {
    max-width: 30rem;
  }
  .about__mv-bg {
    margin-top: 1.9375rem;
    padding: 5.875rem 0 8.875rem;
  }
}
@media screen and (max-width: 768px) {
  .about__mv-flex {
    display: block;
  }
  .about__mv-flex img {
    width: 160px;
    margin: 20px 0 0 110px;
  }
  .about__mv-flex p {
    padding-right: 0;
  }
  .bg_blue {
    padding: 0 15px;
    background-color: #0077B4;
  }
  .section__inner {
    margin: 0 auto;
    text-align: center;
  }
  .button_flex {
    display: inline-block;
    margin: 0 auto;
  }
  .about_cta {
    margin: 0 auto;
    text-align: center;
  }
  .banner__flex {
    display: block;
  }
  .banner__flex img {
    width: 300px;
    height: auto;
    margin: 0 auto 30px;
  }
  .button_flex a {
    max-width: 350px;
    margin: 30px 0;
    padding: 8px 78px;
    font-size: 18px;
  }
  h3.banner_title {
    margin: 30px 0 10px;
    font-size: 19px;
  }
}
/* About 企業出版 ここまで */
/* セミナーエリア　====== */
.seminar__box {
  width: 100%;
  margin: 2.5rem auto;
  padding: 2.5rem;
  background-color: #eef6ff;
}

.seminar__box .seminar__box__inner {
  margin-bottom: 1rem;
}

.seminar__box h4 {
  margin-bottom: 0.9375rem;
  border-bottom: 1px solid #0171BD;
  color: #0171BD;
}

.seminar__box .seminar__box__inner p {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  line-height: 1.7;
}

.seminar__box .seminar__box__inner p.seminar__box__text:last-child {
  margin-bottom: 2.5rem;
}

.seminar__box p.color_orange {
  color: #ff6600;
}

@media screen and (max-width: 767px) {
  .seminar__box {
    padding: 1.5rem;
  }
  .seminar__box .seminar__box__inner p {
    margin-bottom: 0;
  }
}
/* セミナーエリア　ここまで */
/* セミナー 登壇者 */
.seminar-author,
.group-box-1 {
  width: 100%;
  margin: 40px auto;
  padding: 2.5rem;
  background-color: #fffcef;
}

.seminar-author-inner {
  display: flex;
}

.seminar-author_content .seminar-author-inner p {
  margin-top: 0;
}

.seminar-author__ttl-wrap {
  flex: 1;
  padding-left: 1.875rem;
}

.seminar-author__ttl {
  margin-bottom: 0.9375rem;
  padding: 3px 10px 3px 5px;
  border-radius: 4px;
  background-color: #d0b627;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
}

.seminar-author__img img {
  width: 130px;
  height: 130px;
}

.seminar-author p.seminar-author__name {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.seminar-author .seminar-author__name-furigana {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}

.seminar-author .seminar-author_text p {
  margin-top: 1rem;
  font-size: 0.875rem;
  text-align: justify;
}

.seminar-author_book_area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 1.25rem;
}

.seminar-author_book_area img {
  width: 100px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .seminar-author__ttl {
    display: block;
    margin-bottom: 1.875rem;
    padding: 6px 10px;
    font-size: 14px;
  }
  .seminar-author__img img {
    width: 150px;
    height: 150px;
  }
  .seminar-author p.seminar-author__name {
    margin-top: 0;
    font-size: 1.5rem;
  }
  .seminar-author__name-furigana {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .seminar-author,
  .group-box-1 {
    padding: 1.5rem;
  }
  .seminar-author_content .seminar-author-inner p {
    margin-bottom: 0;
  }
  .seminar-author__ttl-wrap {
    padding-left: 1rem;
  }
}
/* セミナー登壇者 ここまで */
/*  お役立ち資料　ダウンロードページ  */
a.btn_paper {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  padding: 0.5rem 4rem;
  border: 2px solid #FF6800;
  border-radius: 100vh;
  background-color: #FF6800;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  transition: 0.5s;
}

a.btn_paper:hover {
  background-color: #fff;
  color: #FF6800;
}

a.btn_detail {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 30px auto;
  padding: 0.4rem 4rem;
  border: 2px solid #4E2E12;
  border-radius: 100vh;
  background-color: #4E2E12;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  transition: 0.5s;
}

a.btn_detail:hover {
  background-color: #fff;
  color: #4E2E12;
}

h2.title_paper {
  padding: 2.5rem 0;
  color: #0171bd;
  font-size: 30px;
}

p.text_paper {
  padding-bottom: 1rem;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1rem;
}

div.download_area {
  text-align: center;
}

h2.paper_download {
  padding: 1.5rem 0;
  color: #ff6800;
  font-size: 30px;
}

div.download_area p {
  font-size: 20px;
  font-weight: 300;
}

.wrapper_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 550px;
  height: 80px;
  margin: 0 auto;
  background: linear-gradient(180deg, #3086d0 35%, #58b8d2);
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s;
}

.service-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 550px;
  height: 80px;
  margin: 40px auto;
  background: linear-gradient(180deg, #3086d0 35%, #58b8d2);
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s;
}

.service-button:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0.3);
}

.service-button span {
  margin-right: 5px;
  font-size: 18px;
}

img.img_paper {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

p.text_contact {
  width: 90%;
  margin: 3rem auto 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
}

.toc_paper {
  margin: 4rem 0;
  padding: 2.5rem;
  background-color: #edf6ff;
}

.toc_paper .toc_paper_box_inner {
  padding: 1rem 0 0;
}

.toc_paper h3 {
  color: #0171bd;
  font-size: 22px;
}

.toc_paper ul {
  padding: 0 0.5em 0.5em 0;
}

.toc_paper ul li {
  padding-left: 1.1em;
  line-height: 1.5;
  text-indent: -1em;
}

.toc_paper ul li::before {
  padding-right: 0.5rem;
  content: "・";
}

@media screen and (min-width: 768px) {
  .knowledge-contents a.service-button {
    color: #fff;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  h2.title_paper {
    padding: 1.5rem 0;
    font-size: 22px;
  }
  p.text_paper {
    font-size: 18px;
  }
  h2.paper_download {
    padding: 1rem 0;
    font-size: 22px;
  }
  div.download_area p {
    font-size: 18px;
  }
  .service-button {
    width: 350px;
    height: 50px;
    font-size: 18px;
  }
  .wrapper_btn {
    width: 100%;
    margin: 50px auto;
  }
  .service-button span {
    font-size: 14px;
  }
  p.text_contact {
    font-size: 16px;
  }
}
/* ==================
   コンサルティング　資料ダウンロード
   ================== */
h2.title_consul {
  margin: 2rem 0 0;
  padding: 0 1rem;
  border-left: 6px solid #0171BD;
  color: #0171BD;
  font-size: 30px;
  line-height: 1.1em;
}

p.text_consul {
  padding-bottom: 1rem;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.1rem;
}

.toc_consul {
  margin: 2rem 0;
  padding: 1.5rem;
  background-color: #edf6ff;
}

.toc_consul .toc_consul_box_inner {
  margin: 0 auto;
  padding: 0;
}

.toc_consul .toc_consul_box_inner:first-child {
  margin: 0;
}

.toc_consul ul {
  padding: 0 0.5em 0.5em 0;
}

.toc_consul ul li {
  padding-bottom: 0.8rem;
  padding-left: 1.1em;
  line-height: 1.5;
  text-indent: -1em;
}

.toc_consul ul li:last-child {
  padding-bottom: 0;
}

.toc_consul ul li::before {
  padding-right: 0.3rem;
  content: "・";
}

h2.toc_title_consul {
  color: #0171BD;
  font-size: 30px;
}

.toc_consul_flexBox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.toc_consul_box_inner_image {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.toc_consul h3 {
  padding: 1rem 0;
  color: #0171BD;
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  h2.title_consul,
  h2.toc_title_consul {
    font-size: 22px;
  }
  p.text_consul {
    font-size: 18px;
  }
  .toc_consul_flexBox {
    flex-direction: column;
  }
}
/* コンサルティング 資料ダウンロード ここまで */
/* ==================
   Aboutページ_追加ボタン
   ================== */
.button_about {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0;
}

a.button-inquiry,
a.button-download,
a.button-quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 300px;
  height: 85px;
  padding: 20px 20px 20px 75px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

a.button-inquiry::before,
a.button-download::before,
a.button-quote::before {
  position: absolute;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background-repeat: no-repeat;
  content: "";
}

a.button-inquiry span,
a.button-download span,
a.button-quote span {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

a.button-inquiry span span,
a.button-download span span,
a.button-quote span span {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 400;
}

/* お問い合わせ */
a.button-inquiry {
  background-color: #d09500;
}

a.button-inquiry::before {
  top: 55%;
  left: 45px;
  background-image: url("/wp-content/uploads/2024/07/button_icon_01.png");
  background-size: 50px;
}

a.button-inquiry:hover {
  background-color: #ffc107;
  opacity: 1;
}

/* 無料資料請求 */
a.button-download {
  background-color: #666666;
}

a.button-download::before {
  top: 60%;
  left: 20px;
  background-image: url("/wp-content/uploads/2024/07/button_icon_02.png");
  background-size: 45px;
}

a.button-download:hover {
  background-color: #111;
  opacity: 1;
}

/* お見積もり依頼 */
a.button-quote {
  background-color: #0171bd;
}

a.button-quote::before {
  top: 60%;
  left: 35px;
  background-image: url("/wp-content/uploads/2024/07/button_icon_03.png");
  background-size: 45px;
}

a.button-quote:hover {
  background-color: #55aaff;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .button-container {
    display: inline-block;
    margin: 0 auto;
  }
  a.button-inquiry,
  a.button-download,
  a.button-quote {
    margin: 30px 0;
  }
}
/* Aboutページ 追加ボタン ここまで */
/* ==================
   ここから Aboutページ_05用
   ================== */
.content-container {
  position: relative;
  width: 100%;
  margin: 6rem auto;
  padding: 40px 20px 0;
  border: 2px solid #727171;
  border-radius: 10px;
  background-color: #fff;
}

.header-section {
  position: absolute;
  z-index: 1;
  top: -35px;
  left: 50%;
  width: calc(80% + 40px);
  padding: 15px 60px;
  transform: translateX(-50%);
  border-radius: 10px;
  background-color: #326ba8;
  color: #fff;
  text-align: center;
}

.header-title {
  font-size: 1.6em;
  font-weight: bold;
}

.main-content {
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
}

.left-content {
  width: 60%;
  padding-right: 20px;
}

.right-content {
  width: 50%;
  padding: 20px;
  border-radius: 10px;
  background-color: #fffbc7;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-title,
.effect-title {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 10px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.2em;
}

.section-title {
  background-color: #727171;
}

.effect-title {
  background-color: #f08300;
}

.section-description {
  margin-bottom: 20px;
  padding-left: 10px;
  line-height: 1.6;
}

.effect-list {
  padding-left: 0;
  list-style: none;
}

.effect-item {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 1.6;
}

.effect-item::before {
  position: absolute;
  left: 0;
  color: #333;
  content: "・";
}

.editor-comment-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-top: -70px;
  padding: 20px 20px 0;
}

.comment-icon-container {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: flex-end;
  margin-right: 20px;
}

.comment-icon {
  width: 180px;
  height: auto;
}

.comment-text-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  padding: 15px 30px;
  border-radius: 20px;
  background-color: #cae9fa;
}

.comment-text-container::before {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-width: 25px 30px 0;
  border-style: solid;
  border-color: #cae9fa transparent transparent transparent;
  border-bottom-left-radius: 50% 100%;
  content: "";
}

.comment-text {
  margin: 0;
  color: #333;
  font-size: 1em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .main-content {
    flex-direction: column;
    padding: 30px 0;
  }
  .left-content,
  .right-content {
    width: 100%;
  }
  .header-section {
    top: -40px;
    width: calc(100% - 20px);
    padding: 10px;
  }
  .header-title {
    font-size: 1.2em;
  }
  .section-title,
  .effect-title {
    padding: 5px 10px;
    font-size: 1em;
  }
  .section-description,
  .effect-item {
    font-size: 0.9em;
    line-height: 1.4;
  }
  .editor-comment-section {
    margin-top: -60px;
    padding: 20px 0 0;
  }
  .comment-icon {
    width: 130px;
  }
  .comment-text-container {
    margin-top: 0;
    margin-left: -10px;
    padding: 10px;
  }
  .comment-text {
    z-index: 10;
    font-size: 0.8em;
  }
  .comment-text-container::before {
    top: 30px;
    bottom: -30px;
    transform: translateY(0);
    border-width: 0 30px 25px;
    border-color: transparent transparent #cae9fa transparent;
    border-bottom-left-radius: 0;
    border-top-left-radius: 50% 100%;
  }
}
/* Aboutページ 05用 ここまで */
/* ==================
   ここから 広告用ダウンロード資料ページ
   ==================*/
.download__wrap {
  width: 100%;
  margin: 0 auto;
  line-height: 1.7;
}

.download__title {
  margin-bottom: 1.125rem;
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
}

.download__title span {
  font-size: 24px;
}

.image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 4.0625rem;
}

.download__cta__btn__01,
.download__cta__btn__std {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 30px auto;
  padding: 0;
  border-radius: 100vh;
  background-color: #ff6800;
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  transition: 0.5s;
}

.download__cta__btn__01 {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
  box-shadow: 5px 5px 10px 0 #777;
}

.download__cta__btn__std {
  border: 3px solid #ff6800;
}

.download__cta__btn__01:hover,
.download__cta__btn__std:hover {
  border-color: #ff6800;
  background-color: #fff;
  color: #ff6800;
}

.download__cta__btn__01:hover {
  opacity: 1;
}

.download__cta__btn__01 span,
.download__cta__btn__std span {
  font-size: 18px;
}

.toc__download {
  margin: 1.5rem auto;
  padding: 1.5rem;
  background-color: #edf6ff;
}

h3.toc__download__title {
  padding-bottom: 0.5rem;
  color: #0171bd;
}

.download__list__item,
.download__list__item2 {
  list-style: none;
}

.download__list__item {
  margin: 0 auto;
}

.download__list__item2 {
  margin: 10px auto;
}

.download__text {
  margin-bottom: 3rem;
}

.download__form__title {
  margin-top: 3rem;
  color: #ff6800;
  font-size: 21px;
  text-align: center;
}

.download__form__text {
  margin: 1rem auto;
  text-align: center;
}

@media screen and (min-width: 480px) {
  .download__title {
    margin-bottom: 3rem;
    font-size: 40px;
  }
  .download__title span {
    font-size: 30px;
  }
  .download__cta__btn__01,
  .download__cta__btn__std {
    padding: 0.5rem 1.5rem;
    font-size: 28px;
  }
  .download__cta__btn__01 span,
  .download__cta__btn__std span {
    font-size: 24px;
  }
  .download__form__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 768px) {
  .download__title {
    font-size: 50px;
  }
  .download__title span {
    font-size: 40px;
  }
  .download__cta__btn__01,
  .download__cta__btn__std {
    max-width: 600px;
    padding: 0.5rem 2rem;
    font-size: 32px;
  }
  .download__cta__btn__01 span,
  .download__cta__btn__std span {
    font-size: 28px;
  }
  .download__form__title {
    font-size: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .download__wrap {
    max-width: 1100px;
  }
  .download__title {
    font-size: 70px;
  }
  .download__title span {
    font-size: 50px;
  }
  .download__cta__btn__01 {
    bottom: -80px;
  }
  .download__cta__btn__01,
  .download__cta__btn__std {
    padding: 0.5rem 4rem;
    font-size: 40px;
  }
  .download__cta__btn__01 span,
  .download__cta__btn__std span {
    font-size: 34px;
  }
  .toc__download {
    margin: 2rem auto 3.125rem;
    padding: 1.3rem 2rem 2rem;
  }
  .download__form__title {
    margin-top: 5rem;
    font-size: 50px;
  }
}
/* 戻るボタン */
.back_button {
  margin: 20px auto;
}

.back_button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 250px;
  margin: 0 auto;
  padding: 10px 25px;
  border-radius: 3px;
  background-color: #333;
  color: #eee;
  font-family: "Noto Sans Japanese";
  font-weight: 500;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.back_button a:hover {
  background-color: #eee;
  color: #333;
}

.back_button a::before {
  position: absolute;
  top: 40%;
  left: 20px;
  width: 5px;
  height: 5px;
  transform: rotate(-135deg) translateY(-50%);
  border-top: 3px solid #eee;
  border-right: 3px solid #eee;
  border-radius: 1px;
  content: "";
  transition: 0.3s ease-in-out;
}

.back_button a:hover::before {
  border-color: #333;
}

/* 広告用ダウンロード資料ページ ここまで */
/* 固定ページ pタグ設定 */
@media screen and (min-width: 768px) {
  .layout-page-content > p {
    margin-top: 2.5rem;
    font-size: 0.9375rem;
    line-height: 30px;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 767px) {
  .layout-page-content > p {
    margin-bottom: 1.875rem;
    color: #383838;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 2;
    overflow-wrap: break-word;
  }
}
/* 固定ページ pタグ設定 ここまで */
/* SP時のみ改行 */
.br-sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .br-sp {
    display: block;
  }
}
/* SP時のみ改行 ここまで */
/* 記事内資料DLフォーム埋め込み */
.toc__download__sb {
  margin: 0 0.5rem;
  padding: 0.1rem;
  background-color: #edf6ff;
}

.download__form__title2 {
  margin-top: 3rem;
  color: #ff6800;
  font-size: 21px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .toc__download__sb {
    margin: 1rem auto 2rem;
    padding: 0.5rem 8rem;
    line-height: 2;
  }
  .download__form__title2 {
    margin-top: 5rem;
    font-size: 36px;
  }
}
/* 記事内資料DLフォーム埋め込み ここまで */
/*==================
FAQページ
==================*/
/* FAQページ全体 */
.faq-container,
.faq-single-container {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 60px;
}

.faq-section-title {
  font-size: 1.6em;
  border-bottom: 2px solid #0077B4; /* サイトのテーマカラーに合わせる */
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* 質問リスト */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-list li a {
  display: flex;
  align-items: flex-start;
  padding: 15px 10px;
  border-bottom: 1px dotted #ccc;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
}

.faq-list li a:hover {
  background-color: #f9f9f9;
}

.faq-list li:last-child a {
  border-bottom: none;
}

/* Qアイコン */
.q-icon, .a-icon {
  font-size: 1.2em;
  font-weight: bold;
  color: #0077B4; /* サイトのテーマカラーに合わせる */
  margin-right: 15px;
  flex-shrink: 0;
}

/* アコーディオン */
.accordion-item {
  margin-bottom: 10px;
}

.accordion-trigger {
  cursor: pointer;
  width: 100%;
  padding: 15px 20px;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  position: relative;
  transition: background-color 0.3s;
}

.accordion-trigger:hover {
  background-color: #efefef;
}

.accordion-trigger::after {
  content: "＋";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.accordion-trigger.active::after {
  content: "－";
}

.accordion-content {
  border: 1px solid #ddd;
  border-top: none;
  padding: 10px;
}

/* 詳細ページ */
.faq-single-container .entry-title {
  display: flex;
  align-items: flex-start;
}

.answer-wrapper {
  margin-top: 60px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 5px solid #0077B4; /* サイトのテーマカラーに合わせる */
  display: flex;
  align-items: flex-start;
}

.a-icon {
  color: #e60033; /* 回答のアイコン色 */
}

.answer-content {
  flex: 1;
}

.answer-content p:first-child {
  margin-top: 0;
}

.answer-content p:last-child {
  margin-bottom: 0;
}

.faq-back {
  margin-top: 32px;
  text-align: center; /* 右寄せ/左寄せにしたい場合は変更 */
}

.faq-back {
  margin-top: 48px;
  text-align: center;
}

.btn-back-to-list {
  display: inline-block;
  background: #0B5CAB;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(11, 92, 171, 0.2);
  transition: all 0.25s ease;
  position: relative;
}

.btn-back-to-list::after {
  content: "←";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.8;
}

.btn-back-to-list:hover {
  background: #094b92;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(11, 92, 171, 0.3);
}