@charset "utf-8";

/* iOS Safariが横画面で一部の段落だけ自動拡大するのを防ぐ */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root {
  --smart-header-bar-height: 5px;
  --smart-header-bar-left: #52BCDE;
  --smart-header-bar-right: #7E97A1;
  --smart-palette-wipe-height: 100%;

  /* カラーパレット - トップカラー */
  --smart-color-1-top: #52BCDE;
  --smart-color-2-top: #FEC317;
  --smart-color-3-top: #CC7426;
  --smart-color-4-top: #CC5B33;
  --smart-color-5-top: #0085CA;
  --smart-color-6-top: #F43254;
  --smart-color-7-top: #52BCDE;
  --smart-color-8-top: #9B3B65;
  --smart-color-9-top: #009370;
  --smart-color-10-top: #52BCDE;
  --smart-color-11-top: #BD85D6;
  --smart-color-12-top: #3E61A1;
  --smart-color-13-top: #E6556C;
  --smart-color-14-top: #FF5A34;
  --smart-color-15-top: #7B8F65;
  --smart-color-16-top: #6373C2;

  /* カラーパレット - ボトムカラー */
  --smart-color-1-bottom: #7E97A1;
  --smart-color-2-bottom: #EAE8F2;
  --smart-color-3-bottom: #BBB49D;
  --smart-color-4-bottom: #7E97A1;
  --smart-color-5-bottom: #D5B489;
  --smart-color-6-bottom: #BBB49D;
  --smart-color-7-bottom: #C18C22;
  --smart-color-8-bottom: #F8D28B;
  --smart-color-9-bottom: #FFB994;
  --smart-color-10-bottom: #BBB49D;
  --smart-color-11-bottom: #CC5B33;
  --smart-color-12-bottom: #ECE776;
  --smart-color-13-bottom: #F8D28B;
  --smart-color-14-bottom: #FFB994;
  --smart-color-15-bottom: #009370;
  --smart-color-16-bottom: #EAE8F2;
}

html {
  background: #fbfbfb;
}

body.smart-new-page {
  background: #fbfbfb;
}

.smart-new-page .root {
  position: relative;
  isolation: isolate;
  padding-top: 0;
  background-color: #fbfbfb;
}

.smart-new-page .root::before {
  content: none;
}

.smart-new-page .root::after {
  content: none;
}

.smart-new-page--bar-top .root::before {
  --smart-palette-wipe-height: 100%;
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  height: var(--smart-header-bar-height);
  background: linear-gradient(90deg, var(--smart-header-bar-left, #52BCDE) 0 50%, var(--smart-header-bar-right, #7E97A1) 50% 100%);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% var(--smart-palette-wipe-height);
  box-shadow: 0 12px 18px rgba(20, 32, 52, .18);
  content: "";
  pointer-events: none;
}

.smart-new-page--bar-top .root.is-palette-animating::before {
  background-image:
    linear-gradient(90deg, var(--smart-header-bar-next-left, #52BCDE) 0 50%, var(--smart-header-bar-next-right, #7E97A1) 50% 100%),
    linear-gradient(90deg, var(--smart-header-bar-left, #52BCDE) 0 50%, var(--smart-header-bar-right, #7E97A1) 50% 100%);
  background-size: 0 var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
  animation: smartPaletteWipe .84s cubic-bezier(.65, 0, .35, 1) forwards;
}

.smart-new-header {
  --strike-blue: #0a3291;
  --strike-orange: #ed9022;
  --strike-gray: #9f9f9f;
  --smart-header-bar-left: #52BCDE;
  --smart-header-bar-right: #7E97A1;
  --smart-header-bar-next-left: #52BCDE;
  --smart-header-bar-next-right: #7E97A1;
  position: sticky;
  top: 0;
  z-index: 60;
  margin-bottom: 0;
  border-bottom: 1px solid #e4e8f0;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(12px);
  color: #142034;
  letter-spacing: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: background-color .34s ease, border-color .34s ease, box-shadow .34s ease, backdrop-filter .34s ease, opacity .24s ease, transform .34s ease, visibility .24s ease;
}

.smart-new-header.is-scrolled {
  box-shadow: 0 6px 18px rgba(10, 50, 145, .06);
}

.smart-new-page--bar-top .smart-new-header {
  margin-bottom: 0;
  padding-top: var(--smart-header-bar-height);
}

.smart-new-page--bar-subnav .smart-new-header {
  margin-bottom: var(--smart-header-bar-height);
}

.smart-new,
.breadcrumbs,
.smart-new-footer-visual,
.smart-new-footer-visual ~ .footer {
  position: relative;
  z-index: 1;
}

.smart-new-page .root > .breadcrumbs ul {
  padding-bottom: 12px;
}

.smart-top-page .root > .breadcrumbs ul {
  padding-top: 12px;
}

.smart-new-header.is-search-modal-open {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

@keyframes smartPaletteWipe {
  0% {
    background-size: 0 var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
  }

  50% {
    background-size: 50% var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
  }

  100% {
    background-size: 100% var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
  }
}

.smart-new-header *,
.smart-new-header *::before,
.smart-new-header *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.smart-new-header [hidden] {
  display: none !important;
}

.smart-new-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 72px;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: transform .42s cubic-bezier(.65, 0, .35, 1), opacity .28s ease;
}

.smart-new-header__brand-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.smart-new-header__corp-logo {
  display: block;
  flex: 0 0 auto;
  width: 132px;
}

.smart-new-header__corp-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.smart-new-header__brand-divider {
  display: block;
  flex: 0 0 auto;
  width: 1px;
  height: 36px;
  background: #d9dfeb;
}

.smart-new-header__product {
  display: grid;
  flex: 0 0 auto;
  gap: 2px;
  color: #142034;
}

.smart-new-header__product img {
  display: block;
  width: 92px;
  height: auto;
}

.smart-new-header__product span {
  display: block;
  color: #5f6d80;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.smart-new-header__mobile-controls {
  display: none;
}

.smart-new-header__subnav {
  position: relative;
  z-index: 1;
  border-top: 1px solid #edf1f6;
  background: rgba(255, 255, 255, .96);
  transition: transform .42s cubic-bezier(.65, 0, .35, 1), opacity .28s ease;
}

.smart-new-header__subnav::after {
  content: none;
}

.smart-new-page--bar-subnav .smart-new-header__subnav::after {
  --smart-palette-wipe-height: 100%;
  position: absolute;
  z-index: 3;
  top: 100%;
  left: 0;
  right: 0;
  height: var(--smart-header-bar-height);
  background: linear-gradient(90deg, var(--smart-header-bar-left, #52BCDE) 0 50%, var(--smart-header-bar-right, #7E97A1) 50% 100%);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% var(--smart-palette-wipe-height);
  box-shadow: 0 8px 16px rgba(20, 32, 52, .1);
  content: "";
  pointer-events: none;
}

.smart-new-page--bar-subnav .root.is-palette-animating .smart-new-header__subnav::after {
  background-image:
    linear-gradient(90deg, var(--smart-header-bar-next-left, #52BCDE) 0 50%, var(--smart-header-bar-next-right, #7E97A1) 50% 100%),
    linear-gradient(90deg, var(--smart-header-bar-left, #52BCDE) 0 50%, var(--smart-header-bar-right, #7E97A1) 50% 100%);
  background-size: 0 var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
  animation: smartPaletteWipe .84s cubic-bezier(.65, 0, .35, 1) forwards;
}

.smart-new-header__subnav-inner {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.smart-new-header__subnav-link,
.smart-new-header__mega summary {
  position: relative;
  display: grid;
  gap: 2px;
  min-height: 42px;
  align-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #142034;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  list-style: none;
  transition: color .2s ease, opacity .2s ease;
}

.smart-new-header__subnav-link[aria-current="page"] {
  color: var(--strike-blue);
}

.smart-new-header__subnav-link--with-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.smart-new-header__subnav-link--with-badge > span:first-child {
  font-weight: 700;
}

.smart-new-header__subnav-link--with-badge > strong {
  font-weight: 700;
}

.smart-new-header__subnav-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border-radius: 2px;
  background: rgba(237, 144, 34, .14);
  color: var(--strike-orange);
  padding: 3px 7px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
}

.smart-new-header__mega summary {
  cursor: pointer;
}

.smart-new-header__mega summary:focus {
  outline: none;
}

.smart-new-header__mega summary:focus-visible {
  outline: none;
}

.smart-new-header__mega summary::-webkit-details-marker {
  display: none;
}

.smart-new-header__subnav-link::after,
.smart-new-header__mega summary::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--strike-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .2s ease;
}

.smart-new-header__subnav-link:hover,
.smart-new-header__mega summary:hover,
.smart-new-header__mega[open] summary {
  opacity: 1;
  color: var(--strike-blue);
}

.smart-new-header__subnav-link:hover::after,
.smart-new-header__subnav-link:focus-visible::after,
.smart-new-header__subnav-link[aria-current="page"]::after,
.smart-new-header__mega summary:hover::after,
.smart-new-header__mega summary:focus-visible::after,
.smart-new-header__mega[open] summary::after {
  transform: scaleX(1);
}

.smart-new-header__mega-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.smart-new-header__mega-label::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.smart-new-header__mega[open] .smart-new-header__mega-label::after {
  transform: translateY(2px) rotate(225deg);
}

.smart-new-header__mega-panel {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  right: 0;
  /* 項目が画面に収まらないときはページではなくパネル内をスクロールできるようにする */
  max-height: calc(100vh - 160px);
  max-height: calc(100dvh - 160px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-top: 1px solid #e4e8f0;
  border-bottom: 1px solid #d9dfeb;
  background: #fff;
  box-shadow: 0 22px 34px rgba(20, 32, 52, .12);
}

.smart-new-page--bar-subnav .smart-new-header__mega-panel {
  top: calc(100% + var(--smart-header-bar-height));
  max-height: calc(100vh - 160px - var(--smart-header-bar-height));
  max-height: calc(100dvh - 160px - var(--smart-header-bar-height));
}

.smart-new-header__mega-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 24px 32px 26px;
}

.smart-new-header__mega-title {
  margin: 0 0 13px;
  color: #959595;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
}

.smart-new-header__mega-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.smart-new-header__mega-list--industry {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.smart-new-header__mega-list--area {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.smart-new-header__mega-list a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e1e6f0;
  background: #fff;
  color: #142034;
  padding: 9px 12px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
  transition: border-color .2s ease;
}

.smart-new-header__mega-list--industry a {
  min-height: 48px;
}

.smart-new-header__mega-list--area a {
  min-height: 72px;
  align-items: flex-start;
}

.smart-new-header__mega-industry-main {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.smart-new-header__mega-industry-main > span:last-child {
  min-width: 0;
}

.smart-new-header__mega-industry-icon {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: opacity .2s ease, transform .2s ease;
}

.smart-new-header__mega-text {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.smart-new-header__mega-prefectures {
  color: #66758a;
  font-size: .68rem;
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
}

.smart-new-header__mega-count {
  flex: 0 0 auto;
  color: #66758a;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1;
}

.smart-new-header__mega-list a:hover {
  opacity: 1;
  border-color: var(--strike-blue);
}

.smart-new-header__knowledge-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.smart-new-header__knowledge-lead {
  margin: 0;
  color: #5f6d80;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.7;
}

.smart-new-header__knowledge-all {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 38px;
  align-items: center;
  border: 1px solid #d9dfeb;
  background: #fff;
  color: #142034;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.smart-new-header__knowledge-all:hover {
  opacity: 1;
  border-color: var(--strike-blue);
  background: #f5f8ff;
  color: var(--strike-blue);
}

.smart-new-header__knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.smart-new-header__knowledge-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  border: 1px solid #e1e6f0;
  background: #fff;
  color: #142034;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.smart-new-header__knowledge-card:hover {
  opacity: 1;
  border-color: var(--strike-blue);
  color: var(--strike-blue);
  transform: translateY(-2px);
}

.smart-new-header__knowledge-card figure {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: #edf1f6;
}

.smart-new-header__knowledge-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease;
}

.smart-new-header__knowledge-card:hover img {
  transform: scale(1.04);
}

.smart-new-header__knowledge-card span,
.smart-new-header__knowledge-card strong,
.smart-new-header__knowledge-card em {
  display: block;
  margin-right: 14px;
  margin-left: 14px;
}

.smart-new-header__knowledge-card span {
  margin-top: 14px;
  color: var(--strike-blue);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.3;
}

.smart-new-header__knowledge-card strong {
  margin-top: 6px;
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.45;
}

.smart-new-header__knowledge-card em {
  margin-top: 8px;
  margin-bottom: 16px;
  color: #5f6d80;
  font-size: .78rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}

.smart-new-header__search {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  max-width: none;
  min-width: 240px;
  min-height: 40px;
  align-items: stretch;
  margin-left: 0;
  border: 1px solid #d9dfeb;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.smart-new-header__search::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 15px;
  height: 15px;
  background: url("/assets/images/common/icon_search.svg") center / contain no-repeat;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}

.smart-new-header__search:focus-within {
  border-color: var(--strike-blue);
  box-shadow: 0 0 0 3px rgba(10, 50, 145, .1);
}

.smart-new-header__search label {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
}

.smart-new-header__search input[type="search"] {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 16px 0 42px;
  background: transparent;
  color: #142034;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
  outline: 0;
}

.smart-new-header__search input[type="search"]::placeholder {
  color: #6b7688;
  font-weight: 700;
}

.smart-new-header__actions {
  display: flex;
  flex: 0 1 840px;
  width: min(59vw, 840px);
  align-items: center;
  gap: 12px;
  margin-left: auto;
  min-width: 0;
}

.smart-new-header__phone,
.smart-new-header__login,
.smart-new-header__consult,
.smart-new-header__bookmark {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #142034;
  padding: 9px 12px;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  transition: opacity .3s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.smart-new-header__phone {
  display: grid;
  min-width: 188px;
  gap: 2px;
  border: 0;
  background: transparent;
  color: var(--strike-blue);
  line-height: 1.1;
}

.smart-new-header__phone-label {
  color: #142034;
  font-size: .64rem;
  font-weight: 700;
}

.smart-new-header__phone-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--strike-blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.smart-new-header__phone-number::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("/assets/images/common/icon_tel.svg") center / contain no-repeat;
  content: "";
}

.smart-new-header__phone:hover {
  opacity: 1;
  background: transparent;
  color: var(--strike-blue);
}

.smart-new-header__login {
  border-color: #d9dfeb;
  background: #fff;
  color: #142034;
}

.smart-new-header__login:hover,
.smart-new-header__login:focus-visible {
  opacity: 1;
  border-color: var(--strike-blue);
  background: var(--strike-blue);
  color: #fff;
}

.smart-new-header__consult {
  border-color: var(--strike-orange);
  background: var(--strike-orange);
  color: #fff;
}

.smart-new-header__consult:hover,
.smart-new-header__consult:focus-visible {
  opacity: .7;
  border-color: var(--strike-orange);
  background: var(--strike-orange);
  color: #fff;
}

.smart-new-header__bookmark {
  gap: 6px;
  border-color: #d9dfeb;
  background: #fff;
  color: #142034;
}

.smart-new-header__bookmark-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  background: url("/assets/images/smart/bookmark_icon_off.svg") center / contain no-repeat;
}

.smart-new-header__bookmark:hover,
.smart-new-header__bookmark:focus-visible {
  opacity: 1;
  border-color: var(--strike-blue);
  background: var(--strike-blue);
  color: #fff;
}

.smart-new-header__mobile-link--bookmark {
  gap: 7px;
  border-color: #d9dfeb;
  background: #fff;
  color: #142034;
}

.smart-new-header__mobile-link--bookmark:hover,
.smart-new-header__mobile-link--bookmark:focus-visible {
  border-color: var(--strike-blue);
  background: var(--strike-blue);
  color: #fff;
}

#search,
#knowledge,
#newsletter,
#about,
#cases,
#success-stories,
#faq {
  scroll-margin-top: 138px;
}

@media (max-width: 1320px) {
  .smart-new-header__inner {
    gap: 10px 18px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .smart-new-header__search {
    flex: 1 1 auto;
    max-width: none;
    min-width: 180px;
    margin-left: 0;
  }

  .smart-new-header__actions {
    margin-left: auto;
  }

  .smart-new-header__corp-logo {
    width: 138px;
  }

  .smart-new-header__product {
    gap: 2px;
  }

  .smart-new-header__product img {
    width: 100px;
  }
}

@media (max-width: 1024px) {
  .smart-new-header__inner {
    gap: 8px 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .smart-new-header__corp-logo {
    width: 110px;
  }

  .smart-new-header__product img {
    width: 80px;
  }

  .smart-new-header__product span {
    font-size: .52rem;
  }

  .smart-new-header__search {
    flex: 1 1 auto;
    min-width: 140px;
  }

  .smart-new-header__actions {
    flex: 0 1 auto;
    width: auto;
    gap: 8px;
  }

  .smart-new-header__phone {
    min-width: 150px;
    gap: 1px;
  }

  .smart-new-header__phone-label {
    font-size: .6rem;
  }

  .smart-new-header__phone-number {
    font-size: .9rem;
    gap: 4px;
  }

  .smart-new-header__login,
  .smart-new-header__consult,
  .smart-new-header__bookmark {
    padding: 8px;
    font-size: .65rem;
  }

  .smart-new-header__subnav-inner {
    gap: 24px;
  }

  .smart-new-header__subnav-link,
  .smart-new-header__mega summary {
    font-size: .6rem;
  }
  .smart-new-header__mega-label {
    font-size: .64rem;
  }
}

.smart-new {
  --strike-blue: #0a3291;
  --smart-ink: #142034;
  --smart-navy: #0a3291;
  --smart-blue: #00afec;
  --smart-orange: #ed9022;
  --smart-sun: #52BCDE;
  --smart-lavender: #7E97A1;
  --smart-line: #cfd6e2;
  --smart-soft: #fbfbfb;
  --smart-mist: #eef5f8;
  --smart-white: #fff;
  --smart-button-min-height: 52px;
  --smart-button-min-width: 180px;
  --smart-button-padding: 13px 26px;
  --smart-button-border-width: 2px;
  --smart-button-transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  color: var(--smart-ink);
  background: var(--smart-white);
  letter-spacing: 0;
}

.smart-new *,
.smart-new *::before,
.smart-new *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

.smart-new__hero {
  background: #fbfbfb;
  padding: 0 0 64px;
  overflow: hidden;
}

.smart-new__hero-inner {
  position: relative;
  min-height: 500px;
}

.smart-new__hero-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.smart-new__hero-copy {
  width: 65%;
  max-width: 780px;
  padding: 96px 0;
  position: relative;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
}

.smart-new__hero-character {
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 1;
  width: min(30vw, 420px);
  max-width: none;
  pointer-events: none;
  transform: translateY(-50%);
}

.smart-new__hero-character img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  opacity: .96;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .75) 16%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .75) 16%, #000 34%, #000 100%);
}

.smart-new__hero-character--platform {
  right: -18px;
  width: min(43vw, 620px);
}

.smart-new__hero-character--platform img {
  aspect-ratio: 1448 / 1086;
  object-fit: contain;
  opacity: .72;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .32) 12%, rgba(0, 0, 0, .86) 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .32) 12%, rgba(0, 0, 0, .86) 28%, #000 100%);
}

.smart-new h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.35;
  font-weight: 700;
}

.smart-new__headline-line {
  display: block;
}

.smart-new__headline-line--product {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: .2em;
}

.smart-new__headline-logo {
  display: block;
  flex: 0 0 auto;
  position: relative;
  width: clamp(124px, 11.5vw, 184px);
  cursor: pointer;
  line-height: 0;
  white-space: nowrap;
}

.smart-new__headline-logo:focus-visible {
  outline: 2px solid var(--smart-header-bar-left, #52BCDE);
  outline-offset: 8px;
}

.smart-new__headline-logo::after {
  --smart-palette-wipe-height: 100%;
  position: absolute;
  right: 2.826%;
  bottom: -16px;
  left: 2.355%;
  height: 8px;
  background: linear-gradient(90deg, var(--smart-headline-line-left, #fff) 0 50%, var(--smart-headline-line-right, #fff) 50% 100%);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% var(--smart-palette-wipe-height);
  box-shadow: 0 8px 16px rgba(20, 32, 52, .1);
  content: "";
  pointer-events: none;
}

.smart-new-page .root.is-palette-animating .smart-new__headline-logo::after {
  background-image:
    linear-gradient(90deg, var(--smart-header-bar-next-left, #52BCDE) 0 50%, var(--smart-header-bar-next-right, #7E97A1) 50% 100%),
    linear-gradient(90deg, var(--smart-headline-line-left, #fff) 0 50%, var(--smart-headline-line-right, #fff) 50% 100%);
  background-size: 0 var(--smart-palette-wipe-height), 100% var(--smart-palette-wipe-height);
  animation: smartPaletteWipe .84s cubic-bezier(.65, 0, .35, 1) forwards;
}

.smart-new__headline-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.smart-new__lead {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.9;
}

.smart-new__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.smart-new__actions--center {
  justify-content: center;
}

.smart-new__button,
.smart-new__media-all,
.smart-new__newsletter-field button,
.smart-new__cases .smart__item .c-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--smart-button-min-width);
  min-height: var(--smart-button-min-height);
  border: var(--smart-button-border-width) solid var(--smart-ink);
  border-radius: 0;
  padding: var(--smart-button-padding);
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: var(--smart-button-transition);
}

.smart-new__button--primary,
.smart-new__newsletter-field button,
.smart-new__cases .smart__item .c-button a {
  color: #fff;
  background: var(--smart-ink);
}

.smart-new__hero-inner .smart-new__actions .smart-new__button--primary,
.smart-new__hero-inner .smart-new__actions .smart-new__button--secondary {
  min-width: 280px;
}

.smart-new__button--secondary {
  color: var(--smart-ink);
  background: #fff;
}

.smart-new__need-action {
  position: relative;
  display: inline-flex;
  min-width: 180px;
  overflow: visible;
}

.smart-new__need-action .smart-new__button {
  width: 100%;
}

.smart-new__button-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  z-index: 5;
  width: min(420px, calc(100vw - 48px));
  border: 1px solid var(--smart-line);
  background: #fff;
  box-shadow: 0 12px 26px rgba(20, 32, 52, .14);
  color: #26364d;
  padding: 14px 16px;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.75;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease;
  white-space: normal;
}

.smart-new__button-tooltip::after {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--smart-line);
  border-bottom: 1px solid var(--smart-line);
  background: #fff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.smart-new__need-action:hover .smart-new__button-tooltip,
.smart-new__button--need:focus-visible + .smart-new__button-tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.smart-new__need-detail {
  display: none;
}

.smart-new__relay-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 660px;
  margin-top: 22px;
  border: 2px solid var(--smart-ink);
  background: #fff;
  box-shadow: none;
  color: var(--smart-ink);
  padding: 22px 24px;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}

.smart-new__relay-card:hover,
.smart-new__relay-card:focus-visible {
  border-color: var(--smart-navy);
  box-shadow: none;
  color: var(--smart-navy);
}

.smart-new__relay-logo {
  display: block;
  border-right: 1px solid #e4ebf3;
  padding-right: 18px;
}

.smart-new__relay-logo img {
  display: block;
  width: 94px;
  height: auto;
}

.smart-new__relay-copy {
  display: grid;
  gap: 5px;
}

.smart-new__relay-label {
  color: #009370;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
}

.smart-new__relay-catch {
  color: var(--smart-ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.smart-new__relay-text {
  color: #4a5a70;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.65;
}

.smart-new__relay-section {
  background: var(--smart-soft);
  padding: 0 0 56px;
}

.smart-new__relay-section .smart-new__relay-card {
  max-width: 820px;
  margin: 0 auto;
}

.smart-new__button:hover,
.smart-new__media-all:hover,
.smart-new__media-all:focus-visible,
.smart-new__newsletter-field button:hover,
.smart-new__newsletter-field button:focus-visible,
.smart-new__cases .smart__item .c-button a:hover,
.smart-new__cases .smart__item .c-button a:focus-visible {
  opacity: 1;
  color: #fff;
  border-color: var(--smart-navy);
  background: var(--smart-navy);
}

.smart-new__hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
  border: 2px solid var(--smart-ink);
  background: #fff;
  padding: 34px 30px 30px;
}

.smart-new__hero-visual::before {
  position: absolute;
  content: "";
  inset: 12px -12px -12px 12px;
  border-right: 2px solid rgba(20, 32, 52, .2);
  border-bottom: 2px solid rgba(20, 32, 52, .2);
  z-index: -1;
}

.smart-new__signal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--smart-line);
  padding-bottom: 18px;
  margin-bottom: 4px;
}

.smart-new__signal span {
  color: #667287;
  font-size: .9rem;
  font-weight: 700;
}

.smart-new__signal strong {
  color: var(--smart-navy);
  font-size: 2.65rem;
  line-height: 1;
}

.smart-new__mini-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  border: 1px solid var(--smart-line);
  background: #fff;
  padding: 16px;
}

.smart-new__mini-card--active {
  border-color: var(--smart-navy);
  background: #f4f7fd;
}

.smart-new__mini-card p {
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
}

.smart-new__mini-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--smart-line);
  background: #fff;
}

.smart-new__mini-icon img {
  width: 24px;
  max-height: 26px;
  object-fit: contain;
}

.smart-new__hero-updates {
  margin-top: 0;
  border-top: 1px solid #dbe3ed;
  border-bottom: 1px solid #dbe3ed;
  padding: 22px 0 24px;
}

.smart-new__hero-updates-list {
  display: flex;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(31, 45, 66, .28) transparent;
  scrollbar-width: thin;
}

.smart-new__seminar-carousel {
  --smart-success-carousel-gap: 18px;
  --smart-success-carousel-button-size: 42px;
}

.smart-new__seminar-carousel .smart-new__hero-updates-list {
  scrollbar-width: none;
}

.smart-new__seminar-carousel .smart-new__hero-updates-list::-webkit-scrollbar {
  display: none;
}

.smart-new__hero-update {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 260px;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d8e3ed;
  border-radius: 8px;
  background: #fff;
  color: var(--smart-ink);
  scroll-snap-align: start;
  box-shadow: 0 3px 10px rgba(15, 29, 47, .07);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.smart-new__hero-update:hover,
.smart-new__hero-update:focus-visible {
  border-color: rgba(0, 62, 162, .32);
  box-shadow: 0 7px 16px rgba(15, 29, 47, .1);
  opacity: 1;
  transform: translateY(-1px);
}

.smart-new__hero-update::after {
  display: none;
}

.smart-new__hero-update-body {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.smart-new__hero-update-label {
  display: block;
  width: fit-content;
  margin-bottom: 7px;
  border: 1px solid rgba(0, 62, 162, .28);
  background: rgba(255, 255, 255, .9);
  color: var(--strike-blue);
  padding: 3px 7px;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.25;
}

.smart-new__hero-update strong {
  display: block;
  margin: 0;
  color: var(--smart-ink);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.42;
}

.smart-new__hero-update-meta {
  display: block;
  overflow: hidden;
  color: #6b7890;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-new__hero-update-meta {
  margin-top: 8px;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.3;
}

.smart-new__hero-update-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  background: #fff;
  color: #334155;
  padding: 11px 12px 0;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.smart-new__hero-update-topline b {
  color: var(--strike-blue);
  font: inherit;
}

.smart-new__hero-update-place {
  overflow: hidden;
  color: #64748b;
  font-size: .68rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-new__hero-update-place::before {
  margin-right: 6px;
  color: #a6b2c3;
  content: "/";
}

.smart-new__hero-update-name {
  display: -webkit-box;
  overflow: hidden;
  min-height: calc(1.45em * 2 + 18px);
  padding: 6px 12px 12px;
  color: var(--smart-ink);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.smart-new__hero-updates-list--seminars .smart-new__hero-update {
  flex-basis: calc((100% - 36px) / 3);
  min-width: 300px;
}

/* セミナーカード右下の「あと◯日」バッジ */
.smart-new__hero-update-days {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  border-radius: 999px;
  background: var(--smart-navy, #0a3291);
  color: #fff;
  padding: 4px 12px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
}

.smart-new__hero-update-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 20 / 11;
  background: #f7f1ec;
}

.smart-new__hero-update-thumb--image {
  overflow: hidden;
  background: #f7f1ec;
}

.smart-new__hero-update-thumb--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NEWS */
.smart-new__news-card {
  width: 35%;
  margin-left: 90px;
}

.smart-new__news-card a {
  display: inline-block;
  max-width: 400px;
  padding: 24px;
  background-color: #ffffff;
  /* background-color: rgba(255, 255, 255, 0.95); */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.smart-new__news-card a:hover {
  box-shadow: 0 10px 22px rgba(15, 29, 47, .12);
  opacity: 1;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.smart-new__news-thumbnail {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  border: 1px solid var(--smart-mist);
}

.smart-new__news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.smart-new__news-category {
  font-weight: bold;
  font-size: 0.95rem;
  color: var(--smart-ink);
  display: inline-flex;
  align-items: center;
}

.smart-new__news-category::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 3px;
  background-color: var(--smart-ink);
  margin-right: 8px;
}

.smart-new__news-date {
  font-size: 0.95rem;
  color: var(--smart-lavender);
  font-weight: 500;
}

.smart-new__news-title {
  margin: 0;
  font-size: 1rem;
  color: var(--smart-ink);
}

@media (max-width: 1024px) {
  .smart-new__hero-inner .smart-new__actions .smart-new__button--primary,
  .smart-new__hero-inner .smart-new__actions .smart-new__button--secondary {
    min-width: 210px;
  }

  .smart-new__news-card {
    margin-left: 40px;
  }

  .smart-new__news-card a {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .smart-new__hero-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .smart-new__hero-copy {
    width: 100%;
    max-width: none;
  }

  .smart-new__news-card {
    width: 100%;
    margin-left: 0;
    margin: 25px 0;
  }
}

.smart-new__hero-search {
  margin-top: 42px;
}

.smart-new__hero-search .smart-new__section-head {
  margin-bottom: 18px;
}

.smart-new__hero-media {
  margin-top: 0;
  border-top: 1px solid var(--smart-line);
  padding-top: 94px;
  padding-bottom: 56px;
  /* ヒーローの内側で全幅の白帯にする */
  background: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  clip-path: inset(0 -100vmax);
}

.smart-new__hero-newsletter {
  margin-top: 0;
  border-top: 1px solid var(--smart-line);
  padding-top: 94px;
}

.smart-new__hero-newsletter .smart-new__section-head {
  margin-bottom: 18px;
}

.smart-new__media-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 24px;
}

.smart-new__media-head h2 {
  margin: 0;
  color: var(--smart-ink);
  font-size: 1.75rem;
  line-height: 1.45;
  font-weight: 700;
}

.smart-new__media-head p:not(.smart-new__eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  line-height: 1.85;
}

.smart-new__media-subsection {
  margin-top: 30px;
}

.smart-new__media-subsection + .smart-new__media-subsection {
  margin-top: 42px;
  border-top: 1px solid var(--smart-line);
  padding-top: 34px;
}

.smart-new__media-subsection + .smart-new__media-subsection--seminars {
  margin-top: 28px;
  border-top: 0;
  padding-top: 0;
}

.smart-new__media-subhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.smart-new__media-subhead h3 {
  margin: 0;
  color: var(--smart-ink);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.5;
}

.smart-new__media-status {
  display: inline-flex;
  flex: 0 0 auto;
  border: 1px solid var(--smart-line);
  background: #fff;
  color: #5f6d80;
  padding: 8px 14px;
  font-size: .86rem;
  font-weight: 700;
}

.smart-new__media-all {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 40px;
  border: 1px solid var(--smart-line);
  background: #fff;
  color: #24344f;
  padding: 8px 14px;
  font-size: .84rem;
}

.smart-new__media-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.smart-new__media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.smart-new__media-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--smart-line);
  background: #fff;
  color: var(--smart-ink);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.smart-new__media-card:hover {
  opacity: 1;
  border-color: var(--smart-navy);
  box-shadow: 0 18px 34px rgba(20, 32, 52, .12);
  transform: translateY(-3px);
}

/* COMING SOONカードはiPad以下では非表示(情報がないカードでスペースを取らない) */
@media (max-width: 1024px) {
  .smart-new__media-card--coming-soon {
    display: none;
  }
}

.smart-new__media-card--coming-soon {
  cursor: default;
}

.smart-new__media-card--coming-soon:hover {
  border-color: var(--smart-line);
  box-shadow: none;
  transform: none;
}

.smart-new__media-card--coming-soon figure::after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a7aebb;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
  content: "COMING SOON";
}

.smart-new__media-card--coming-soon h3 {
  color: #7d8797;
}

.smart-new__media-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #dfe6ee;
  /* ナレッジ記事サムネイル(1280x670)のアスペクト比に合わせる */
  aspect-ratio: 1280 / 670;
}

.smart-new__media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.smart-new__media-card:hover img {
  transform: scale(1.035);
}

.smart-new__media-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.smart-new__media-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.smart-new__media-card-category {
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--smart-navy);
  color: var(--smart-navy);
  padding: 4px 10px;
  font-size: .78rem;
  font-weight: 700;
}

.smart-new__media-card-meta time {
  color: #667287;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.5;
}

.smart-new__media-card-body h3 {
  margin: 15px 0 0;
  color: var(--smart-ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
}

.smart-new__media-card-body p {
  margin: 10px 0 0;
  color: #42506a;
  line-height: 1.75;
}

.smart-new__industry-trends {
  margin-top: 30px;
  border-top: 1px solid var(--smart-line);
  border-bottom: 1px solid var(--smart-line);
  padding: 24px 0;
}

.smart-new__industry-trends-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
  margin-bottom: 10px;
}

.smart-new__industry-trends-head p {
  margin: 0;
  color: var(--smart-ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.smart-new__industry-trends-head span {
  margin: 0;
  color: #6f7b91;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.4;
}

.smart-new__industry-trend-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}

.smart-new__industry-trend-list li {
  position: relative;
  overflow: visible;
}

.smart-new__industry-trend-list a {
  position: relative;
  display: grid;
  min-height: 58px;
  grid-template-columns: 30px minmax(0, 1fr) max-content;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--smart-line);
  background: #fff;
  color: var(--smart-ink);
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.smart-new__industry-trend-list a:hover,
.smart-new__industry-trend-list a:focus-visible {
  border-color: rgba(10, 50, 145, .42);
  box-shadow: 0 12px 24px rgba(20, 32, 52, .08);
  opacity: 1;
  transform: translateY(-2px);
}

.smart-new__industry-trend-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 50, 145, .16);
  background: #f7faff;
}

.smart-new__industry-trend-icon > img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.smart-new__industry-trend-name {
  min-width: 0;
  color: var(--smart-ink);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.smart-new__industry-trend-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  white-space: nowrap;
}

.smart-new__industry-trend-new {
  position: absolute;
  top: -9px;
  right: -9px;
  z-index: 2;
  display: inline-flex;
  min-width: 42px;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(237, 144, 34, .22);
  background: #fdf0df;
  box-shadow: none;
  color: var(--smart-orange);
  padding: 2px 8px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
}

.smart-new__industry-trend-date {
  display: block;
  color: #6f7b91;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
}

.smart-new__annotation {
  margin: 18px 0 0;
  color: #667287;
  font-size: .86rem;
  line-height: 1.7;
}

/* ニュースレターは.smart-new外(業種別ページ等)でも使うため、必要なCSS変数を自前で持つ */
.smart-new__newsletter {
  --smart-ink: #142034;
  --smart-navy: #0a3291;
  --smart-blue: #00afec;
  --smart-orange: #ed9022;
  --smart-line: #cfd6e2;
  --smart-button-min-height: 52px;
  --smart-button-min-width: 180px;
  --smart-button-padding: 13px 26px;
  --smart-button-border-width: 2px;
  --smart-button-transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.smart-new__newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
  gap: 32px;
  align-items: center;
  padding: 0;
}

.smart-new__newsletter-copy h3 {
  margin: 0;
  color: var(--smart-ink);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.45;
}

.smart-new__newsletter-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.smart-new__newsletter-title > span:last-child {
  min-width: 0;
}

.smart-new__newsletter-title-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 1.15em;
  background: currentColor;
  -webkit-mask: url("/assets/images/smart/knowledge/icon-paper-airplane.svg") center / contain no-repeat;
  mask: url("/assets/images/smart/knowledge/icon-paper-airplane.svg") center / contain no-repeat;
  transform: translateY(.03em);
}

@media (min-width: 1024px) {
  .smart-new__newsletter-title > span:last-child {
    white-space: nowrap;
  }
}

.smart-new__newsletter-copy,
.smart-new__newsletter-form {
  min-width: 0;
}

.smart-new__newsletter-copy p {
  margin: 12px 0 0;
  color: #35445c;
  line-height: 1.85;
}

.smart-new__newsletter-copy .smart-new__newsletter-campaign-note {
  border-left: 3px solid rgba(237, 144, 34, .5);
  padding-left: 12px;
  font-size: .88rem;
}

.smart-new__newsletter-campaign-note strong {
  color: #b96a16;
  font-weight: 800;
}

.smart-new__newsletter-campaign-note a {
  display: inline-flex;
  margin-left: .45em;
  color: var(--smart-navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.smart-new__newsletter-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.smart-new__newsletter-copy li {
  border: 1px solid #8b8b8b;
  border-radius: 999px;
  background: #fff;
  color: #666;
  padding: 4px 10px;
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.25;
}

.smart-new__newsletter-form {
  border: 1px solid var(--smart-line);
  background: #fff;
  padding: 20px;
}

.smart-new__newsletter-count {
  display: inline-flex;
  width: fit-content;
  margin-top: 0;
  color: #ed9022;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.smart-new__newsletter-form label {
  display: block;
  color: var(--smart-ink);
  font-size: .88rem;
  font-weight: 700;
}

.smart-new__newsletter-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.smart-new__newsletter-field input {
  min-width: 0;
  border: 1px solid var(--smart-line);
  border-radius: 0;
  background: #fff;
  color: var(--smart-ink);
  padding: 13px 14px;
  font: inherit;
}

.smart-new__newsletter-field input::placeholder {
  color: #8a96aa;
}

.smart-new__newsletter-field button {
  width: 100%;
  min-width: 0;
  white-space: nowrap;
}

.smart-new__newsletter-form .smart-new__newsletter-alert {
  display: block;
  margin: 10px 0 0;
  color: #b42318;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.6;
}

.smart-new__newsletter-form .smart-new__newsletter-alert:empty {
  display: none;
}

.smart-new__newsletter-form p {
  margin: 10px 0 0;
  color: #667287;
  font-size: .78rem;
  line-height: 1.6;
}

.smart-new__newsletter-form .smart-new__newsletter-privacy {
  color: #536178;
  font-size: .76rem;
  line-height: 1.65;
}

.smart-new__newsletter-form .smart-new__newsletter-privacy a {
  color: var(--smart-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: .24em;
}

.smart-new__newsletter-form .smart-new__newsletter-campaign-note {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 16px;
  border-top: 1px solid rgba(20, 32, 52, .12);
  padding: 14px 0 0;
  color: #4d5a70;
  font-size: .78rem;
  line-height: 1.65;
}

.smart-new__newsletter-campaign-book {
  display: block;
}

.smart-new__newsletter-campaign-book img {
  display: block;
  width: 58px;
  height: auto;
  border: 1px solid rgba(20, 32, 52, .1);
  box-shadow: 3px 4px 0 rgba(237, 144, 34, .08);
}

.smart-new__newsletter-form .smart-new__newsletter-campaign-note p {
  margin: 0;
}

.smart-new__newsletter-form .smart-new__newsletter-campaign-note a {
  margin-left: 0;
}

.smart-new__search-section,
.smart-new__steps,
.smart-new__faq,
.smart-new__listing {
  padding: 72px 0;
}

/* 安心して検討できる理由は白背景にする */
.smart-new__reasons {
  background: #fff;
}

.smart-new__steps {
  background: #f8fbfd;
}

.smart-new__faq {
  background: #fbfbfb;
}

.smart-new__listing {
  background: #fff;
}

.smart-new__intro {
  background: #fff;
  padding: 78px 0;
}

.smart-new__reasons {
  padding: 78px 0;
}

.smart-new__cases {
  padding: 76px 0;
  /* ヒーローと同じ薄い青(ヒーロー背景を継承)。以降のセクションは白/青の交互 */
  background: transparent;
}

.smart-new__success {
  background: #fbfbfb;
  padding: 78px 0;
}

.smart-new__section-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.smart-new__section-head--left {
  margin-left: 0;
  text-align: left;
}

.smart-new__section-title-row {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-content: start;
  column-gap: 14px;
}

.smart-new__section-title-row::after {
  content: "";
  display: block;
  grid-column: 1 / -1;
  width: 72px;
  height: 2px;
  margin-top: 16px;
  background: var(--smart-ink);
}

.smart-new__eyebrow {
  margin: 0 0 8px;
  color: #959595;
  font-size: .78rem;
  font-weight: 700;
}

.smart-new__section-head h2,
.smart-new__intro-box h2,
.smart-new__listing-box h2,
.smart-new__cta-card h2 {
  margin: 0;
  color: var(--smart-ink);
  font-size: 1.75rem;
  line-height: 1.45;
  font-weight: 700;
}

.smart-new__section-head h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--smart-ink);
}

.smart-new__section-title-row h2::after {
  content: none;
}

.smart-new__section-head--left h2::after {
  margin-left: 0;
}

.smart-new__search-card {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(0, 1fr)) 160px;
  gap: 12px;
  border: 3px solid var(--smart-ink);
  background: #fff;
  padding: 22px;
}

.smart-new__keyword-field {
  display: block;
  min-height: 72px;
  border: 1px solid var(--smart-line);
  background: #fff;
  padding: 12px 16px;
}

.smart-new__search-card .input_area {
  position: relative;
  min-height: 72px;
  border: 1px solid var(--smart-line);
  background: #fff;
  padding: 12px 42px 12px 16px;
  cursor: pointer;
}

.smart-new__search-card .input_area::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  right: 18px;
  top: 50%;
  border-right: 2px solid var(--smart-ink);
  border-bottom: 2px solid var(--smart-ink);
  transform: translateY(-65%) rotate(45deg);
}

.smart-new__keyword-field b,
.smart-new__search-card .input_area b {
  display: block;
  margin-bottom: 8px;
  color: var(--smart-ink);
  font-size: .82rem;
}

.smart-new__keyword-field input {
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--smart-ink);
  font-size: .95rem;
  line-height: 1.4;
  outline: 0;
}

.smart-new__keyword-field input::placeholder {
  color: #7c8798;
}

.smart-new__search-card .input_area > span {
  display: block;
  overflow: hidden;
  color: #5d687a;
  font-size: .95rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-new__search-card .search-form__condition {
  display: none;
}

.smart-new__search-card .input_submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 72px;
  border: 2px solid var(--smart-ink);
  background: var(--smart-ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.smart-new__search-card .input_submit:hover,
.smart-new__search-card .input_submit:focus-visible {
  border-color: var(--smart-navy);
  background: var(--smart-navy);
  color: #fff;
}

.smart-new__search-card .input_submit img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.smart-new__search-card .input_submit span {
  white-space: nowrap;
  word-break: keep-all;
}

.smart-new__focus-search .smart-new__search-card {
  grid-template-columns: minmax(0, 1fr) 176px;
  gap: 14px;
  border: 0;
  background: transparent;
  padding: 0;
}

.smart-new__focus-search {
  --smart-search-detail-offset: 100px;
  position: relative;
  z-index: 1;
  transition: background-color .22s ease, box-shadow .22s ease, padding .22s ease, transform .22s ease;
}

.smart-new__hero-search.is-search-detail-open {
  isolation: isolate;
  position: relative;
  z-index: 80;
}

.smart-new__hero-search.is-search-detail-open::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(8, 16, 32, .22);
  content: "";
  pointer-events: none;
  animation: smartSearchBackdropFade .18s ease-out both;
}

.smart-new__hero-search.is-search-detail-open .smart-new__section-head {
  position: relative;
  z-index: 82;
}

.smart-new__focus-search.is-search-detail-open {
  isolation: isolate;
  z-index: 80;
}

.smart-new__focus-search.is-search-detail-open::before {
  position: absolute;
  top: -154px;
  left: -38px;
  right: -38px;
  z-index: 1;
  height: min(calc(var(--smart-search-detail-offset) + 490px), calc(100vh - 48px));
  border: 1px solid rgba(10, 50, 145, .14);
  background: #fff;
  box-shadow: 0 26px 70px rgba(15, 35, 70, .16);
  content: "";
  pointer-events: none;
  transform-origin: top center;
  animation: smartSearchPanelFloat .24s cubic-bezier(.2, .8, .2, 1) both;
}

@media (max-width: 1200px) {
  .smart-new__focus-search.is-search-detail-open::before {
    height: min(calc(var(--smart-search-detail-offset) + 580px), calc(100vh - 36px));
  }
}

.smart-new__focus-search.is-search-detail-open .smart-new__search-card {
  position: relative;
  z-index: 2;
}

.smart-new__search-dialog-close {
  position: absolute;
  top: -136px;
  right: -20px;
  z-index: 84;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--smart-navy);
  cursor: pointer;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  transition: color .18s ease, transform .18s ease;
}

.smart-new__focus-search.is-search-detail-open .smart-new__search-dialog-close {
  display: flex;
}

.smart-new__search-dialog-close:hover,
.smart-new__search-dialog-close:focus-visible {
  color: var(--smart-ink);
}

.smart-new__search-dialog-close:focus-visible {
  outline: 2px solid var(--smart-navy);
  outline-offset: 4px;
}

.smart-new__focus-search .smart-new__keyword-field {
  position: relative;
  box-sizing: border-box;
  min-height: 76px;
  border: 3px solid var(--smart-ink);
  padding: 14px 28px 14px 66px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  gap: 8px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.smart-new__focus-search .smart-new__keyword-field:focus-within,
.smart-new__focus-search.is-search-detail-open .smart-new__keyword-field {
  border-color: var(--smart-navy);
}

.smart-new__focus-search .smart-new__keyword-field::before {
  position: absolute;
  top: 50%;
  left: 28px;
  width: 22px;
  height: 22px;
  background: url("/assets/images/common/icon_search.svg") center / contain no-repeat;
  content: "";
  pointer-events: none;
  transform: translateY(-50%);
}

.smart-new__focus-search .smart-new__keyword-field b {
  display: none;
}

.smart-new__focus-search .smart-new__keyword-field input {
  flex: 1 1 220px;
  width: auto;
  min-width: 180px;
  border: 0;
  background: transparent;
  padding: 0;
  outline: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.smart-new__focus-search .smart-new__keyword-field input::placeholder {
  color: #9aa2ae;
}

.smart-new__search-selected-tags {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  min-width: 0;
  max-width: 100%;
}

.smart-new__search-selected-tags.is-multi-row {
  flex-basis: 100%;
}

.smart-new__focus-search .smart-new__keyword-field.has-many-search-tags input {
  flex-basis: 100%;
  min-width: 100%;
}

.smart-new__search-selected-tags:empty {
  display: none;
}

.smart-new__search-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(10, 50, 145, .18);
  background: #f3f6fb;
  color: var(--smart-navy);
  padding: 5px 6px 5px 11px;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  gap: 8px;
}

.smart-new__search-tag-icon {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  object-fit: contain;
}

.smart-new__search-tag-label {
  display: inline-block;
  overflow: hidden;
  max-width: 220px;
  text-overflow: ellipsis;
}

.smart-new__search-tag-remove {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(10, 50, 145, .18);
  background: #fff;
  color: var(--smart-navy);
  font-size: .86rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.smart-new__search-tag-remove:hover,
.smart-new__search-tag-remove:focus-visible {
  border-color: var(--smart-navy);
  background: var(--smart-navy);
  color: #fff;
  outline: 0;
}

.smart-new__focus-search .smart-new__search-card .input_submit {
  box-sizing: border-box;
  grid-column: auto;
  height: 76px;
  min-height: 0;
  border-color: var(--smart-ink);
  background: var(--smart-ink);
  font-size: 1.18rem;
  line-height: 1;
  padding: 0 22px;
}

.smart-new__focus-search .smart-new__search-card .input_submit:hover,
.smart-new__focus-search .smart-new__search-card .input_submit:focus-visible {
  border-color: var(--smart-navy);
  background: var(--smart-navy);
}

.smart-new__focus-search .smart-new__search-card .input_submit img {
  width: 22px;
}

.smart-new__focus-search .smart-new__search-card .input_area {
  display: none;
}

.smart-new__popular-keywords {
  margin-top: 24px;
  padding-left: 28px;
}

.smart-new__popular-keywords p {
  margin: 0 0 18px;
  color: var(--smart-ink);
  font-size: .9rem;
  font-weight: 700;
}

.smart-new__popular-keywords ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 44px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smart-new__popular-keywords a {
  position: relative;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  color: var(--smart-navy);
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
  gap: 10px;
  transition: color .2s ease;
}

.smart-new__popular-keywords a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1.8px solid #8c96a6;
  border-radius: 50%;
  box-sizing: border-box;
}

.smart-new__popular-keywords a::after {
  position: absolute;
  left: 11px;
  top: 50%;
  content: "";
  width: 6px;
  height: 1.8px;
  border-radius: 999px;
  background: #8c96a6;
  transform: translateY(3px) rotate(45deg);
  transform-origin: left center;
}

.smart-new__popular-keywords a:hover,
.smart-new__popular-keywords a:focus-visible {
  color: var(--strike-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.smart-new__focus-search.is-search-detail-open .smart-new__popular-keywords {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.smart-new__focus-search.is-search-detail-open .smart-new__search-card {
  grid-template-columns: minmax(0, 1fr) 176px;
}

.smart-new__focus-search.is-search-detail-open .smart-new__keyword-field {
  grid-column: auto;
}

.smart-new__focus-search.is-search-detail-open .smart-new__search-card .input_submit {
  grid-column: auto;
}

.smart-new__focus-search.is-search-detail-open .smart-new__search-card .input_area {
  display: none;
}

.smart-new__search-detail {
  --smart-ink: #142034;
  --smart-navy: #0a3291;
  --smart-line: #cfd6e2;
  display: none;
  position: absolute;
  top: var(--smart-search-detail-offset);
  left: -38px;
  right: -38px;
  z-index: 3;
  max-height: min(430px, calc(100vh - var(--smart-search-detail-offset) - 114px));
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: auto;
  padding: 0 38px 34px;
  animation: smartSearchDetailFade .18s ease-out .05s both;
}

.smart-new__focus-search.is-search-detail-open .smart-new__search-detail {
  display: block;
}

.smart-new__search-detail-count {
  margin: 0 0 18px;
  color: var(--smart-ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.smart-new__search-detail-count strong {
  margin-left: 12px;
  color: var(--smart-navy);
  font-size: 1.3rem;
}

.smart-new__search-detail-tabs {
  position: relative;
}

.smart-new__search-tab-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  opacity: 0;
  white-space: nowrap;
}

.smart-new__search-tab-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin: 0 0 24px;
}

.smart-new__search-tab-labels label {
  border-bottom: 2px solid #d9deea;
  padding: 0 0 14px;
  color: #111821;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}

#smart-search-detail-tab-gyosyus:checked ~ .smart-new__search-tab-labels label[for="smart-search-detail-tab-gyosyus"],
#smart-search-detail-tab-areas:checked ~ .smart-new__search-tab-labels label[for="smart-search-detail-tab-areas"],
#smart-search-detail-tab-sales:checked ~ .smart-new__search-tab-labels label[for="smart-search-detail-tab-sales"] {
  border-color: var(--smart-navy);
  color: var(--smart-navy);
}

.smart-new__search-detail-panel {
  display: none;
}

#smart-search-detail-tab-gyosyus:checked ~ .smart-new__search-detail-panels .smart-new__search-detail-panel--gyosyus,
#smart-search-detail-tab-areas:checked ~ .smart-new__search-detail-panels .smart-new__search-detail-panel--areas,
#smart-search-detail-tab-sales:checked ~ .smart-new__search-detail-panels .smart-new__search-detail-panel--sales {
  display: block;
}

.smart-new__search-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.smart-new__search-option-list label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid #d8deea;
  background: #fbfcff;
  padding: 8px 14px;
  color: var(--smart-ink);
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  gap: 10px;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.smart-new__search-option-list label.is-selected {
  border-color: rgba(10, 50, 145, .44);
  background: #f3f6fb;
  color: var(--smart-navy);
}

.smart-new__search-option-all {
  font-weight: 800;
}

.smart-new__search-option-list input {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid #cbd3df;
  border-radius: 0;
  appearance: none;
  background: #fff;
  box-sizing: border-box;
}

.smart-new__search-option-list input::after {
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}

.smart-new__search-option-list input:checked {
  border-color: var(--smart-navy);
  background: var(--smart-navy);
}

.smart-new__search-option-list input:checked::after {
  opacity: 1;
}

.smart-new__search-option-list input:focus-visible {
  outline: 2px solid rgba(10, 50, 145, .36);
  outline-offset: 2px;
}

.smart-new__search-option-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

@keyframes smartSearchBackdropFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes smartSearchPanelFloat {
  from {
    opacity: 0;
    transform: scale(.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes smartSearchDetailFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes smartSearchPanelLift {
  from {
    opacity: .92;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.smart-search-results {
  background: #f6f9fc;
}

.smart-search-results__filters.smart-new__hero-search {
  margin-top: 0;
}

.smart-search-results__filters {
  padding: 34px 0 34px;
}

.smart-search-results__form.smart-new__focus-search {
  z-index: 1;
}

.smart-search-results__form .smart-new__search-card .input_submit[data-smart-search-detail-toggle] {
  gap: 10px;
}

.smart-search-results__form .smart-new__search-card .input_submit[data-smart-search-detail-toggle]::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.smart-search-results__form .smart-new__search-card .input_submit[data-smart-search-detail-toggle][aria-expanded="true"]::after {
  transform: translateY(3px) rotate(225deg);
}

.smart-search-results__filters.smart-new__hero-search.is-search-detail-open::before,
.smart-search-results__form.smart-new__focus-search.is-search-detail-open::before {
  content: none;
  display: none;
}

.smart-search-results__form .smart-new__search-dialog-close,
.smart-search-results__form.smart-new__focus-search.is-search-detail-open .smart-new__search-dialog-close {
  display: none;
}

.smart-search-results__form .smart-new__search-detail {
  display: none;
  position: static;
  top: auto;
  right: auto;
  left: auto;
  z-index: 1;
  max-height: none;
  overflow: visible;
  margin-top: 22px;
  padding: 0;
  animation: smartSearchDetailFade .18s ease-out both;
}

.smart-search-results__form.smart-new__focus-search.is-search-detail-open .smart-new__search-detail {
  display: block;
}

.smart-search-results__form.smart-new__focus-search.is-search-detail-open .smart-new__search-card {
  grid-template-columns: minmax(0, 1fr) 176px;
}

.smart-search-results__compact-head {
  margin-bottom: 22px;
}

.smart-search-results__compact-head h1 {
  margin: 0;
  color: var(--smart-ink);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.35;
  font-weight: 700;
}

.smart-search-results__compact-head h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 16px 0 0;
  background: var(--smart-ink);
}

.smart-search-results__filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.smart-search-results__filter-head h2 {
  margin: 0;
  color: var(--smart-ink);
  font-size: 1.18rem;
}

.smart-search-results__filter-head a {
  color: var(--smart-navy);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.smart-search-results__filter-form {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(0, 1fr)) 150px;
  gap: 12px;
  border: 3px solid var(--smart-ink);
  background: #fff;
  padding: 18px;
}

.smart-search-results__keyword,
.smart-search-results__condition summary {
  min-height: 70px;
  border: 1px solid var(--smart-line);
  background: #fff;
  color: var(--smart-ink);
}

.smart-search-results__keyword {
  display: block;
  padding: 12px 16px;
}

.smart-search-results__keyword span,
.smart-search-results__condition summary {
  font-weight: 700;
}

.smart-search-results__keyword span {
  display: block;
  margin-bottom: 8px;
  font-size: .82rem;
}

.smart-search-results__keyword input {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--smart-ink);
  font-size: .95rem;
  outline: 0;
}

.smart-search-results__condition {
  position: relative;
}

.smart-search-results__condition summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  cursor: pointer;
  list-style: none;
}

.smart-search-results__condition summary::-webkit-details-marker {
  display: none;
}

.smart-search-results__condition summary span {
  overflow: hidden;
  color: #5d687a;
  font-size: .86rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-search-results__checkboxes {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  max-height: 320px;
  overflow: auto;
  border: 1px solid var(--smart-line);
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 32, 52, .12);
  padding: 10px;
}

.smart-search-results__checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px;
  color: var(--smart-ink);
  font-size: .86rem;
  font-weight: 700;
}

.smart-search-results__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border: 2px solid var(--smart-ink);
  background: var(--smart-ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}

.smart-search-results__submit:hover,
.smart-search-results__submit:focus-visible {
  border-color: var(--smart-navy);
  background: var(--smart-navy);
}

.smart-search-results__cases {
  padding: 44px 0 92px;
}

.smart-search-results__live-region[aria-busy="true"] {
  opacity: .68;
  transition: opacity .16s ease;
}

.smart-search-highlight {
  border-radius: 3px;
  background: rgba(254, 195, 23, .38);
  color: inherit;
  font-weight: inherit;
  padding: 0 .08em;
}

.smart-search-results__snippets {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.smart-search-results__snippet {
  border-left: 3px solid rgba(10, 50, 145, .28);
  background: rgba(246, 249, 252, .78);
  padding: 9px 12px;
}

.smart-search-results__snippet span {
  display: block;
  margin-bottom: 4px;
  color: var(--smart-navy);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.4;
}

.smart-search-results__snippet p {
  margin: 0;
  color: var(--smart-ink);
  font-size: .9rem;
  line-height: 1.7;
}

.smart-search-results__result-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  border-top: 1px solid var(--smart-line);
  padding-top: 32px;
}

.smart-search-results__title-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.smart-search-results__title-area .smart-new__eyebrow {
  flex: 0 0 100%;
}

.smart-search-results__title-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
}

.smart-search-results__sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.smart-search-results__result-head h2 {
  margin: 0;
  color: var(--smart-ink);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.smart-search-results__count {
  margin: 0;
  color: #647084;
  font-weight: 700;
  white-space: nowrap;
}

.smart-search-results__count-number {
  margin-right: 5px;
  color: var(--smart-navy);
  font-size: 2.8rem;
  line-height: 1;
}

.smart-search-results__count-unit {
  margin-left: 0;
  color: #647084;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.smart-search-results__mail-alert {
  box-sizing: border-box;
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(10, 50, 145, .18);
  background: #f7f8fb;
  color: #102034;
  padding: 9px 12px;
  font: inherit;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.smart-search-results__mail-alert img {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.smart-search-results__mail-alert-copy {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 .25em;
  align-items: baseline;
}

.smart-search-results__mail-alert-copy span {
  color: #102034;
  font-weight: 500;
}

.smart-search-results__mail-alert-copy strong {
  color: #0a3291;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.smart-search-results__mail-alert:hover .smart-search-results__mail-alert-copy strong,
.smart-search-results__mail-alert:focus-visible .smart-search-results__mail-alert-copy strong {
  text-decoration: none;
}

.smart-case-list-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 16px;
}

.smart-industry__cases .smart-case-list-tools {
  justify-content: space-between;
  margin-bottom: 18px;
}

.smart-case-list-tools .smart-industry__case-count {
  margin: 0;
  color: #647084;
  font-weight: 700;
}

.smart-case-list-tools .smart-industry__case-count span {
  margin-right: 5px;
  color: var(--smart-navy);
  font-size: 2.8rem;
  line-height: 1;
}

.smart-case-list-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.smart-case-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  min-height: 42px;
  padding: 0 14px;
  font-family: inherit;
  border: 1px solid #c9d3e1;
  border-radius: 4px;
  background: #fff;
  color: var(--smart-ink, #142034);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

/* 検索結果ページ: モバイル用の絞り込みボタンと検索ボタン、件数バーは通常時は出さない */
.smart-search-results__filter-open,
.smart-new__focus-search .smart-new__search-card .smart-search-results__dialog-submit,
.smart-search-results__form .smart-new__search-detail-count {
  display: none;
}

.smart-case-filter-link__icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  /* .smart-new外のページでも色が出るようフォールバック付き */
  background: var(--smart-navy, #0a3291);
  mask: url('/assets/images/smart/icon-filter-mixer.svg') center / contain no-repeat;
  -webkit-mask: url('/assets/images/smart/icon-filter-mixer.svg') center / contain no-repeat;
}

.smart-case-filter-link:hover,
.smart-case-filter-link:focus-visible {
  border-color: var(--smart-navy, #0a3291);
  background: #f6f9fc;
  color: var(--smart-navy, #0a3291);
}

.smart-case-sort {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  color: var(--smart-ink, #142034);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
}

.smart-case-sort__button {
  box-sizing: border-box;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  white-space: nowrap;
  border: 1px solid #c9d3e1;
  border-radius: 4px;
  background: #fff;
  color: var(--smart-ink);
  font: inherit;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.smart-case-sort__button:hover,
.smart-case-sort__button:focus-visible,
.smart-case-sort__button[aria-expanded="true"] {
  border-color: var(--smart-navy);
  background: #f6f9fc;
  color: var(--smart-navy);
}

.smart-case-sort__icon {
  color: var(--smart-navy);
  font-size: 1rem;
}

.smart-case-sort__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 180px;
  padding: 6px 0;
  border: 1px solid #c9d3e1;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 32, 52, .15);
}

.smart-case-sort__menu button {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 0;
  background: transparent;
  color: var(--smart-ink);
  font: inherit;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
}

.smart-case-sort__menu button:hover,
.smart-case-sort__menu button:focus-visible,
.smart-case-sort__menu button[aria-current="true"] {
  background: #eef4fb;
  color: var(--smart-navy);
}

.smart-industry-card__category {
  display: inline;
  color: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

a.smart-industry-card__category:hover,
a.smart-industry-card__category:focus-visible {
  color: var(--smart-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.smart-industry-card__category-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 7px;
  object-fit: contain;
  vertical-align: -3px;
}

.smart-industry-card__category-text {
  display: inline;
}

.smart-search-results__case-kicker {
  display: block;
  text-align: center;
}

.smart-search-results__case-icon {
  display: none;
}

.smart-search-results .smart-new__cases .smart__num,
.smart-search-results__cases .smart__num {
  margin: 0;
  padding-left: 0;
}

.smart-search-results__empty {
  border: 1px solid var(--smart-line);
  background: #fff;
  padding: 34px;
}

.smart-search-results__empty h3 {
  margin: 0 0 12px;
  color: var(--smart-ink);
  font-size: 1.35rem;
}

.smart-search-results__empty p {
  margin: 0 0 22px;
  color: #42506a;
  line-height: 1.8;
}

.smart-bookmarks {
  background: #f6f9fc;
}

.smart-bookmarks__hero {
  padding: 72px 0 36px;
}

.smart-bookmarks__hero h1 {
  margin: 10px 0 18px;
  color: var(--smart-ink);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.18;
}

.smart-bookmarks__hero p:not(.smart-new__eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #43546b;
  font-weight: 400;
  line-height: 1.9;
}

.smart-bookmarks__content {
  padding: 0 0 90px;
}

.smart-bookmarks__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #dbe3ee;
  padding-top: 34px;
  margin-bottom: 24px;
}

.smart-bookmarks__head h2 {
  margin: 6px 0 0;
  color: var(--smart-ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
}

/* 案件カード一覧(検索結果ページのグリッドを流用するため、セクション用の余白は打ち消す) */
.smart-bookmarks__cases {
  padding: 0 0 72px;
  background: transparent;
}

/* 受付終了案件の状態チップ */
.smart-bookmarks__closed {
  display: inline-block;
  margin-left: 8px;
  border-radius: 999px;
  background: #66758a;
  color: #fff;
  padding: 2px 10px;
  font-size: .68rem;
  font-weight: 700;
  vertical-align: 2px;
}

.smart-bookmarks__empty {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(31, 57, 92, 0.14);
  border-radius: 8px;
  background: #fff;
}

.smart-bookmarks__empty h3 {
  margin: 0;
  color: #153963;
  font-size: 1.35rem;
  line-height: 1.5;
}

.smart-bookmarks__empty p {
  margin: 0;
  color: #4f6072;
  line-height: 1.8;
}

.smart-bookmarks__empty a,
.smart-bookmarks__empty-actions a {
  width: fit-content;
  min-width: 180px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #153963;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.smart-bookmarks__empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.smart-bookmarks__empty-actions a + a {
  border: 1px solid #153963;
  background: #fff;
  color: #153963;
}



.smart-new__intro-box {
  border-top: 2px solid var(--smart-ink);
  border-bottom: 2px solid var(--smart-ink);
  padding: 44px 7%;
  text-align: center;
}

.smart-new__intro-box p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.9;
}

.smart-new__intro-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 48px;
  margin-top: 28px;
  border: 2px solid var(--smart-ink);
  background: #fff;
  color: var(--smart-ink);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, opacity .2s ease;
}

.smart-new__intro-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.smart-new__intro-link:hover,
.smart-new__intro-link:focus-visible {
  border-color: var(--smart-navy);
  color: var(--smart-navy);
}

/* FLOWセクションは.smart-new外(SMARTとは?ページ)でも使うため、必要なCSS変数を自前で持つ */
.smart-new__steps {
  --smart-ink: #142034;
  --smart-navy: #0a3291;
}

.smart-new__step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
}

.smart-new__step-list li {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  border: 1px solid var(--smart-line);
  background: #fff;
  padding: 28px;
}

.smart-new__step-list span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--smart-ink);
  color: var(--smart-ink);
  font-weight: 700;
}

.smart-new__step-list h3 {
  margin: 22px 0 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.smart-new__step-list p {
  margin: 14px 0 0;
  line-height: 1.8;
}

.smart-new__step-list a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--smart-navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.smart-new__cases .new-result__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.smart-new__cases .smart-industry-card {
  width: calc((100% - 40px) / 3);
  margin: 40px 0 0 20px;
  border: 1px solid #cfcfcf;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box;
  padding: 24px 24px 90px;
  position: relative;
}

.smart-new__cases .smart-industry-card__bookmark.bookmark-btn-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  top: 18px;
  right: 18px;
  z-index: 3;
}

.smart-new__cases .smart-industry-card__bookmark .bookmark-btn {
  padding: 6px;
  border-radius: 50%;
  background: #fff;
}

.smart-new__cases .smart-industry-card__bookmark .bookmark-btn:hover,
.smart-new__cases .smart-industry-card__bookmark .bookmark-btn:focus-visible {
  background: #f6f9fc;
  opacity: 1;
}

.smart-new__cases .smart-industry-card__bookmark .bookmark-icon {
  width: 24px;
  height: 24px;
}

.smart-new__cases .smart-industry-card__bookmark .bookmark-btn::after {
  top: -34px;
}

.smart-new__cases .smart-industry-card:nth-child(3n+1) {
  margin-left: 0;
}

.smart-new__cases .smart-industry-card__head {
  display: block;
  padding: 0 36px;
  text-align: center;
}

.smart-new__cases .smart-industry-card__head p {
  display: block;
  margin: 0;
  color: #0a3291;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.smart-new__cases .smart-industry-card__icon {
  display: none;
}

.smart-new__cases .smart-industry-card__new {
  display: inline-flex;
  position: absolute;
  top: -27px;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border-radius: 50%;
  background: #0a3291;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
}

.smart-new__cases .smart-industry-card h3 {
  margin: 8px 0 0;
  color: #0a3291;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.smart-new__cases .smart-industry-card__summary {
  margin: 20px 0 0;
  padding-top: 22px;
  border-top: 1px solid #cfcfcf;
  color: #102034;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.8;
}

.smart-new__cases .smart-industry-card__data {
  display: block;
  margin: 20px 0 26px;
  border-top: 0;
}

.smart-new__cases .smart-industry-card__data div {
  display: flex;
  gap: 0;
  padding: 0;
  border-bottom: 0;
}

.smart-new__cases .smart-industry-card__data div + div {
  margin-top: 14px;
}

.smart-new__cases .smart-industry-card__data dt,
.smart-new__cases .smart-industry-card__data dd {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
}

.smart-new__cases .smart-industry-card__data dt {
  flex: 0 0 90px;
  box-sizing: border-box;
  padding-right: 20px;
  color: #102034;
  font-weight: 700;
}

.smart-new__cases .smart-industry-card__data dd {
  flex: 1 1 auto;
  min-width: 0;
  color: #102034;
  font-weight: 500;
}

.smart-new__cases .smart-industry-card .c-button {
  position: absolute;
  right: 0;
  bottom: 36px;
  left: 0;
  margin: auto;
  text-align: center;
}

.smart-new__cases .smart-industry-card .c-button a {
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 10px 46px;
  border-color: var(--strike-blue);
  border-radius: 999px;
  background: #fff;
  color: var(--strike-blue);
}

.smart-new__cases .smart-industry-card .c-button a span {
  color: inherit;
}

.smart-new__cases .smart-industry-card .c-button a:hover,
.smart-new__cases .smart-industry-card .c-button a:focus-visible {
  border-color: var(--strike-blue);
  background: var(--strike-blue);
  color: #fff;
}

.smart-new__success .smart-new__section-head p:not(.smart-new__eyebrow) {
  margin: 14px 0 0;
  color: #42506a;
  line-height: 1.8;
}

.smart-new__success-carousel {
  --smart-success-carousel-gap: 22px;
  --smart-success-carousel-button-size: 46px;
  position: relative;
}

.smart-new__success-carousel-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.smart-new__success-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.smart-new__success-grid {
  display: grid;
  grid-auto-columns: calc((100% - (var(--smart-success-carousel-gap) * 2)) / 3);
  grid-auto-flow: column;
  gap: var(--smart-success-carousel-gap);
}

.smart-new__success-carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: var(--smart-success-carousel-button-size);
  height: var(--smart-success-carousel-button-size);
  place-items: center;
  border: 1px solid rgba(16, 29, 50, .18);
  background: rgba(255, 255, 255, .94);
  color: var(--smart-ink);
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
  transform: translateY(-50%);
}

.smart-new__success-carousel-button::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.smart-new__success-carousel-button--prev {
  left: calc((var(--smart-success-carousel-button-size) / -2) - 8px);
}

.smart-new__success-carousel-button--prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.smart-new__success-carousel-button--next {
  right: calc((var(--smart-success-carousel-button-size) / -2) - 8px);
}

.smart-new__success-carousel-button--next::before {
  transform: translateX(-2px) rotate(45deg);
}

.smart-new__success-carousel-button:hover,
.smart-new__success-carousel-button:focus-visible {
  border-color: var(--smart-blue);
  background: var(--smart-blue);
  color: #fff;
  outline: none;
}

.smart-new__success-carousel-button:disabled {
  opacity: .28;
  pointer-events: none;
}

.smart-new__success-card {
  display: flex;
  overflow: hidden;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--smart-line);
  background: #fff;
  color: var(--smart-ink);
  scroll-snap-align: start;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.smart-new__success-card:hover,
.smart-new__success-card:focus-visible {
  border-color: rgba(10, 50, 145, .42);
  box-shadow: 0 18px 34px rgba(20, 32, 52, .1);
  opacity: 1;
  transform: translateY(-3px);
}

.smart-new__success-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #e9eef5;
}

.smart-new__success-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-new__success-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.smart-new__success-number {
  color: var(--smart-navy);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.smart-new__success-body h3 {
  margin: 12px 0 0;
  color: var(--smart-ink);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.6;
}

.smart-new__success-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
}

.smart-new__success-tags li {
  border: 1px solid #8b8b8b;
  border-radius: 999px;
  background: #fff;
  color: #666;
  padding: 4px 9px;
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.25;
}

.smart-new__success-latest {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.smart-new__success-latest a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--smart-navy);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
}

.smart-new__success-latest a::after {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.smart-new__success-latest a:hover,
.smart-new__success-latest a:focus-visible {
  color: #0a3291;
  outline: none;
}

.smart-new__success-body p {
  margin: 16px 0 0;
  color: #42506a;
  line-height: 1.75;
}

.smart-new__success-industries {
  margin-top: 34px;
  border-top: 1px solid var(--smart-line);
  padding: 24px 0;
}

.smart-new__success-industries + .smart-new__success-industries {
  margin-top: 24px;
}

.smart-new__success-industries-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.smart-new__success-industries-head p {
  margin: 0;
  color: var(--smart-ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.smart-new__success-industries-head span {
  color: #6f7b91;
  font-size: .82rem;
  font-weight: 700;
}

.smart-new__success-industry-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smart-new__success-industry-list--prefecture {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.smart-new__success-industry-list > li {
  display: flex;
}

.smart-new__success-industry-list a {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--smart-line);
  background: #fff;
  color: var(--smart-ink);
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color .2s ease;
}

.smart-new__success-industry-list--prefecture a {
  min-height: 48px;
  padding: 10px 12px;
}

.smart-new__success-industry-list a:hover,
.smart-new__success-industry-list a:focus-visible {
  border-color: rgba(10, 50, 145, .42);
  opacity: 1;
}

.smart-new__success-industry-main {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.smart-new__success-industry-icon {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.smart-new__success-industry-name {
  min-width: 0;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.smart-new__success-industry-list strong {
  flex: 0 0 auto;
  color: var(--smart-navy);
  font-size: .82rem;
  font-weight: 800;
}

/* モバイル専用の「すべて表示」トグル(デスクトップでは常に全件表示) */
.smart-new__success-industry-toggle {
  display: none;
}

.smart-new__reason-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.smart-new__reason-list li {
  min-height: 230px;
  border: 1px solid var(--smart-line);
  background: #fff;
  padding: 28px 22px;
  text-align: center;
}

.smart-new__reason-list img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.smart-new__reason-list h3 {
  margin: 20px 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  /* 見出しの折り返しは<wbr>とスペース位置のみに制限する */
  word-break: keep-all;
  overflow-wrap: normal;
}

/* 「19,000社以上」などの数値+単位はカンマ後でも折り返さない */
.smart-new__nobr {
  white-space: nowrap;
  /* common.cssのspanリセット(400)に負けて見出し内で数字だけ細くなるのを防ぐ */
  font-weight: inherit;
}

.smart-new__reason-list p {
  margin: 12px 0 0;
  line-height: 1.75;
  text-align: left;
}

.smart-new__faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.smart-new__faq-list details {
  border: 1px solid var(--smart-line);
  background: #fff;
}

.smart-new__faq-list details + details {
  margin-top: 12px;
}

.smart-new__faq-list summary {
  position: relative;
  display: block;
  padding: 18px 58px 18px 22px;
  font-weight: 700;
  cursor: pointer;
}

.smart-new__faq-list summary::before,
.smart-new__faq-list summary::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 24px;
  width: 14px;
  height: 2px;
  background: var(--smart-ink);
}

.smart-new__faq-list summary::after {
  transform: rotate(90deg);
}

.smart-new__faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.smart-new__faq-list p {
  margin: 0;
  border-top: 1px solid var(--smart-line);
  padding: 18px 22px 22px;
  line-height: 1.8;
}

.smart-new__bottom-cta {
  background: var(--smart-soft);
  padding: 72px 0;
}

.smart-new__bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.smart-new__cta-card {
  border: 3px solid var(--smart-ink);
  background: #fff;
  padding: 42px 34px;
  text-align: center;
}

.smart-new__cta-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.smart-new__cta-card h2 {
  margin-top: 22px;
  font-size: 1.35rem;
}

.smart-new__cta-card p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.smart-new__cta-card .smart-new__button {
  margin-top: 24px;
}

.smart-new__listing-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.smart-new__listing-box p {
  margin: 16px auto 0;
  line-height: 1.85;
}

.smart-new__listing-box .smart-new__button {
  margin-top: 28px;
}

.smart-new-footer-prelude {
  position: relative;
  overflow: hidden;
  height: clamp(42px, 6vw, 76px);
  pointer-events: none;
}

.smart-new-footer-visual {
  border-top: 0;
  border-bottom: 0;
  background-color: #4b4b4b;
}

.smart-new-footer-visual *,
.smart-new-footer-visual *::before,
.smart-new-footer-visual *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.smart-new-footer-visual__panel {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.smart-new-footer-visual__logo {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: block;
  width: 240px !important;
  max-width: 240px;
  min-width: 170px;
  height: auto;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
}

.smart-new-footer-visual__logo-link {
  display: contents;
}

.smart-new-footer-visual__logo-link:focus-visible {
  outline: none;
}

.smart-new-footer-visual__logo-link:focus-visible .smart-new-footer-visual__logo {
  outline: 2px solid #fff;
  outline-offset: 8px;
}

.smart-new-footer-visual ~ .footer {
  position: relative;
  overflow: hidden;
  background-color: #4b4b4b;
  color: #111821;
}

.smart-new-footer-visual ~ .footer > * {
  position: relative;
  z-index: 1;
}

.smart-new-footer-visual ~ .footer a,
.smart-new-footer-visual ~ .footer span,
.smart-new-footer-visual ~ .footer p {
  color: #fff;
}

.smart-new-footer-visual ~ .footer .footer__sitemap__box ul a,
.smart-new-footer-visual ~ .footer .footer__links a,
.smart-new-footer-visual ~ .footer .footer__links p,
.smart-new-footer-visual ~ .footer .jpx-detail {
  color: #8f8f8f;
}

.smart-new-footer-visual ~ .footer .footer__sitemap__company-info,
.smart-new-footer-visual ~ .footer .footer__links,
.smart-new-footer-visual ~ .footer .footer__links .copyright {
  border-color: #8f8f8f;
}

.smart-new-footer-visual ~ .footer .footer__links__items li + li::before,
.smart-new-footer-visual ~ .footer .footer__links__items_first li:nth-child(2)::before {
  background-color: #8f8f8f;
}

.smart-new-footer-visual ~ .footer .icon_external_link,
.smart-new-footer-visual ~ .footer .company-info__sns img {
  filter: brightness(0) invert(1);
}

.smart-new-footer-visual ~ .footer .footer__links .backToTop {
  background-color: #3d3d3d;
}

@media (max-width: 1024px) {
  .smart-new__hero {
    padding: 0 0 56px;
  }

  .smart-new__hero-inner {
    min-height: 0;
  }

  .smart-new h1 {
    font-size: 2.3rem;
  }

  .smart-new__lead {
    font-size: 0.9rem;
  }

  .smart-new__hero-character {
    position: relative;
    right: auto;
    top: auto;
    max-width: 520px;
    justify-self: start;
    width: 100%;
    margin-top: 32px;
    transform: none;
  }

  .smart-new__hero-character--platform {
    max-width: 620px;
  }

  .smart-new__hero-visual {
    max-width: 640px;
  }

  .smart-new-header__mega-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .smart-new-header__mega-list--industry,
  .smart-new-header__mega-list--area {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .smart-new__search-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-new__search-card .input_submit {
    grid-column: 1 / -1;
  }

  .smart-new__cases .smart-industry-card {
    width: calc((100% - 20px) / 2);
    margin-left: 20px;
  }

  .smart-new__cases .smart-industry-card:nth-child(3n+1) {
    margin-left: 20px;
  }

  .smart-new__cases .smart-industry-card:nth-child(2n+1) {
    margin-left: 0;
  }

  .smart-new__popular-keywords ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 30px;
  }

  .smart-new__reason-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-new__success-grid {
    grid-auto-columns: calc((100% - var(--smart-success-carousel-gap)) / 2);
  }

  .smart-new__success-industry-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .smart-new__industry-trend-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .smart-new__media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-new__newsletter {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 24px;
  }

  .smart-new__newsletter-field {
    grid-template-columns: 1fr;
  }

  .smart-new__newsletter-field button {
    min-height: var(--smart-button-min-height);
  }

  .smart-new__hero-updates {
    margin-top: 0;
  }

  .smart-new__hero-updates-list {
    gap: 18px;
  }

  .smart-new__hero-update {
    flex-basis: calc((100% - 18px) / 2);
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .smart-new-page .root > .breadcrumbs ul {
    padding-bottom: 2.4vw;
  }

  .smart-top-page .root > .breadcrumbs ul {
    padding-top: 2.4vw;
  }

  .smart-new-header {
    --smart-mobile-header-height: 100px;
    position: sticky;
  }

  .smart-new-header__inner {
    display: flex;
    grid-template-columns: none;
    gap: 6px;
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    padding: 12px 8px 10px;
  }

  .smart-new-header__brand-group {
    flex: 1 1 auto;
    max-width: calc(100% - 122px);
    gap: 6px;
    justify-content: flex-start;
  }

  .smart-new-header__corp-logo {
    width: 92px;
  }

  .smart-new-header__brand-divider {
    height: 34px;
  }

  .smart-new-header__product {
    display: grid;
    gap: 1px;
  }

  .smart-new-header__product img {
    width: 78px;
  }

  .smart-new-header__product span {
    display: block;
    max-width: none;
    color: #5f6d80;
    font-size: .52rem;
    font-weight: 700;
    line-height: 1.25;
    white-space: nowrap;
  }

  .smart-new-header__mobile-controls {
    position: absolute;
    top: 12px;
    right: 18px;
    display: flex;
    width: 72px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    margin-left: 0;
  }

  .smart-new-header__mobile-panel {
    position: static;
  }

  .smart-new-header__mobile-panel > summary {
    position: relative;
    display: grid;
    width: 32px;
    height: 34px;
    place-items: center;
    border: 1px solid #d9dfeb;
    background: #fff;
    color: #142034;
    cursor: pointer;
    list-style: none;
  }

  .smart-new-header__mobile-panel > summary::-webkit-details-marker {
    display: none;
  }

  .smart-new-header__mobile-panel > summary span {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    white-space: nowrap;
  }

  .smart-new-header__mobile-panel--search > summary::before {
    width: 17px;
    height: 17px;
    background: url("/assets/images/common/icon_search.svg") center / contain no-repeat;
    content: "";
  }

  .smart-new-header__mobile-panel--menu > summary::before,
  .smart-new-header__mobile-panel--menu > summary::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .smart-new-header__mobile-panel--menu > summary::before {
    box-shadow: 0 6px 0 currentColor;
    transform: translate(-50%, -6px);
  }

  .smart-new-header__mobile-panel--menu > summary::after {
    transform: translate(-50%, 6px);
  }

  .smart-new-header__mobile-panel[open] > summary {
    border-color: var(--strike-blue);
    color: var(--strike-blue);
  }

  .smart-new-header__mobile-panel--menu[open] > summary::before {
    box-shadow: 0 0 0 transparent;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .smart-new-header__mobile-panel--menu[open] > summary::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .smart-new-header__mobile-panel > summary:focus {
    outline: none;
  }

  .smart-new-header__mobile-panel > summary:focus-visible {
    outline: 2px solid var(--strike-blue);
    outline-offset: 2px;
  }

  .smart-new-header__mobile-drawer {
    position: fixed;
    z-index: 20;
    box-sizing: border-box;
    top: var(--smart-mobile-header-height);
    left: 0;
    right: 0;
    width: 100%;
    overflow-y: auto;
    max-height: calc(100vh - var(--smart-mobile-header-height));
    border-top: 1px solid #edf1f6;
    border-bottom: 1px solid #d9dfeb;
    background: #fff;
    box-shadow: 0 18px 28px rgba(20, 32, 52, .16);
  }

  .smart-new-header__mobile-search {
    display: grid;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 14px;
  }

  .smart-new-header__mobile-search label {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    white-space: nowrap;
  }

  .smart-new-header__mobile-search input[type="search"] {
    min-width: 0;
    min-height: 46px;
    border: 1px solid #d9dfeb;
    background: #fff;
    color: #142034;
    padding: 0 14px;
    font-size: .9rem;
    font-weight: 700;
    outline: 0;
  }

  .smart-new-header__mobile-search input[type="search"]:focus {
    border-color: var(--strike-blue);
    box-shadow: 0 0 0 3px rgba(10, 50, 145, .1);
  }

  .smart-new-header__mobile-search button {
    min-height: 46px;
    border: 1px solid #142034;
    background: #142034;
    color: #fff;
    width: 100%;
    padding: 0 10px;
    font-size: .82rem;
    font-weight: 700;
  }

  .smart-new-header__mobile-nav {
    display: grid;
    box-sizing: border-box;
    width: 100%;
    max-width: 100vw;
    padding: 8px 18px 18px;
  }

  .smart-new-header__mobile-link,
  .smart-new-header__mobile-accordion > summary,
  .smart-new-header__mobile-phone {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #edf1f6;
    color: #142034;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
  }

  .smart-new-header__mobile-link--badge em {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    background: rgba(237, 144, 34, .14);
    color: var(--strike-orange);
    padding: 3px 7px;
    font-size: .68rem;
    font-style: normal;
    line-height: 1;
    white-space: nowrap;
  }

  .smart-new-header__mobile-link--badge {
    justify-content: flex-start;
    gap: 10px;
  }

  .smart-new-header__mobile-link--primary {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
    background: var(--strike-orange);
    color: #fff;
  }

  .smart-new-header__mobile-link--primary:hover,
  .smart-new-header__mobile-link--primary:focus-visible {
    opacity: .7;
    color: #fff;
  }

  .smart-new-header__mobile-link--bookmark {
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    margin-top: 14px;
    border: 1px solid #142034;
    border-radius: 999px;
  }

  .smart-new-header__mobile-phone {
    display: grid;
    justify-content: center;
    gap: 4px;
    min-height: 58px;
    border-bottom: 0;
    color: var(--strike-blue);
    text-align: center;
  }

  .smart-new-header__mobile-phone span {
    color: #142034;
    font-size: .72rem;
  }

  .smart-new-header__mobile-phone strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1.08rem;
  }

  .smart-new-header__mobile-phone strong::before {
    width: 15px;
    height: 15px;
    background: url("/assets/images/common/icon_tel.svg") center / contain no-repeat;
    content: "";
  }

  .smart-new-header__mobile-accordion {
    border-bottom: 1px solid #edf1f6;
  }

  .smart-new-header__mobile-accordion > summary {
    border-bottom: 0;
    cursor: pointer;
    list-style: none;
  }

  .smart-new-header__mobile-accordion > summary::-webkit-details-marker {
    display: none;
  }

  .smart-new-header__mobile-accordion > summary:focus {
    outline: none;
  }

  .smart-new-header__mobile-accordion > summary:focus-visible {
    outline: 2px solid var(--strike-blue);
    outline-offset: -2px;
  }

  .smart-new-header__mobile-accordion > summary::after {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
  }

  .smart-new-header__mobile-accordion[open] > summary::after {
    transform: translateY(2px) rotate(225deg);
  }

  .smart-new-header__mobile-list {
    display: grid;
    min-width: 0;
    margin: 0 0 14px;
    padding: 0;
    gap: 8px;
    list-style: none;
  }

  .smart-new-header__mobile-list a {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    border: 1px solid #e1e6f0;
    background: #fff;
    color: #142034;
    padding: 10px 12px;
    font-size: .82rem;
    font-weight: 700;
  }

  .smart-new-header__mobile-list--area a {
    min-height: 62px;
    align-items: flex-start;
  }

  .smart-new-header__mobile-industry-main {
    display: inline-flex;
    flex: 0 1 auto;
    min-width: 0;
    align-items: center;
    gap: 9px;
  }

  .smart-new-header__mobile-industry-main > span:last-child {
    min-width: 0;
  }

  .smart-new-header__mobile-industry-icon {
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .smart-new-header__mobile-area-main {
    display: grid;
    flex: 0 1 auto;
    min-width: 0;
    gap: 4px;
  }

  .smart-new-header__mobile-area-main small {
    color: #66758a;
    font-size: .68rem;
    font-weight: 500;
    line-height: 1.45;
  }

  .smart-new-header__mobile-list strong {
    flex: 0 0 auto;
    margin-left: 0;
    color: #66758a;
    font-size: .74rem;
    line-height: 1;
  }

  .smart-new-header__actions {
    display: none;
  }

  .smart-new-header__subnav {
    display: block;
    border-top: 1px solid #edf1f6;
    background: rgba(255, 255, 255, .98);
  }

  .smart-new-header__subnav-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    width: 100vw;
    max-width: none;
    min-height: 42px;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .smart-new-header__subnav-inner > .smart-new-header__subnav-link:not(.smart-new-header__subnav-link--with-badge),
  .smart-new-header__subnav-inner > .smart-new-header__mega:not(.smart-new-header__mega--industry):not(.smart-new-header__mega--area) {
    display: none;
  }

  .smart-new-header__subnav-inner > .smart-new-header__mega {
    min-width: 0;
  }

  .smart-new-header__subnav-inner::-webkit-scrollbar {
    display: none;
  }

  .smart-new-header__subnav-link,
  .smart-new-header__mega summary {
    width: 100%;
    min-height: 54px;
    align-content: center;
    justify-content: center;
    padding: 0 4px;
    font-size: .95rem;
    text-align: center;
    scroll-snap-align: start;
  }

  .smart-new-header__subnav-link--with-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .smart-new-header__subnav-badge {
    min-height: 18px;
    padding: 2px 5px;
    font-size: .54rem;
  }

  .smart-new-header__mega-label {
    justify-content: center;
    gap: 5px;
    font-size: .86rem;
    white-space: nowrap;
  }

  .smart-new-header__mega-label::after {
    width: 6px;
    height: 6px;
  }

  .smart-new-header__subnav-link[data-mobile-label],
  .smart-new-header__mega-label[data-mobile-label] {
    font-size: 0;
  }

  .smart-new-header__subnav-link[data-mobile-label]::before,
  .smart-new-header__mega-label[data-mobile-label]::before {
    content: attr(data-mobile-label);
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .smart-new-header__subnav-link::after,
  .smart-new-header__mega summary::after {
    bottom: 0;
  }

  .smart-new-header__mega-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    overflow-y: auto;
    /* iOS Safariのツールバー表示中はvhだと下端がツールバー裏に隠れるため、dvhで実際の可視高さに合わせる */
    max-height: calc(100vh - 112px);
    max-height: calc(100dvh - 112px);
    margin-top: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 18px 28px rgba(20, 32, 52, .14);
  }

  .smart-new-header__mega-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .smart-new-header__mega-list--industry,
  .smart-new-header__mega-list--area {
    grid-template-columns: 1fr;
  }

  .smart-new-header__knowledge-head {
    display: block;
    margin-bottom: 14px;
  }

  .smart-new-header__knowledge-all {
    margin-top: 12px;
  }

  .smart-new-header__knowledge-grid {
    grid-template-columns: 1fr;
  }

  .smart-new-header__knowledge-card {
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: stretch;
  }

  .smart-new-header__knowledge-card figure {
    grid-row: 1 / span 3;
    aspect-ratio: auto;
    min-height: 124px;
  }

  .smart-new-header__knowledge-card span,
  .smart-new-header__knowledge-card strong,
  .smart-new-header__knowledge-card em {
    margin-right: 12px;
    margin-left: 12px;
  }

  .smart-new-header__knowledge-card span {
    margin-top: 12px;
  }

  .smart-new-header__knowledge-card strong {
    font-size: .9rem;
  }

  .smart-new-header__knowledge-card em {
    margin-bottom: 12px;
    font-size: .74rem;
  }

  .smart-new-header__mega-list a {
    min-height: 36px;
    padding: 8px 10px;
    font-size: .78rem;
  }

  .smart-new-header__mega-list--industry a {
    min-height: 44px;
  }

  .smart-new-header__mega-industry-icon {
    width: 20px;
    height: 20px;
  }

  .smart-new-header__search {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 38px;
    margin-left: 0;
  }

  .smart-new-header__search input[type="search"] {
    padding-right: 14px;
    padding-left: 40px;
    font-size: .78rem;
  }

  #search,
  #knowledge,
  #about,
  #cases,
  #success-stories,
  #faq {
    scroll-margin-top: 16px;
  }

  .smart-new-page .follow__btn_sp {
    display: none;
  }

  .smart-new__hero,
  .smart-new__search-section,
  .smart-new__intro,
  .smart-new__steps,
  .smart-new__cases,
  .smart-new__success,
  .smart-new__reasons,
  .smart-new__faq,
  .smart-new__bottom-cta,
  .smart-new__listing {
    padding: 48px 0;
  }

  .smart-new h1 {
    font-size: 1.7rem;
  }

  .smart-new__hero-copy {
    padding: 0;
  }

  .smart-new__hero-character img {
    opacity: 1;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .smart-new__hero-character--platform {
    margin-top: 24px;
  }

  .smart-new__hero-character--platform img {
    opacity: .86;
  }

  .smart-new__actions,
  .smart-new__actions--center {
    display: grid;
    grid-template-columns: 1fr;
  }

  .smart-new__button {
    width: 100%;
    min-width: 0;
  }

  .smart-new__need-action {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 12px;
  }

  .smart-new__hero .smart-new__actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }

  .smart-new__hero .smart-new__need-action {
    display: contents;
  }

  .smart-new__hero .smart-new__button {
    min-height: 54px;
    padding: 14px 10px;
    font-size: clamp(.82rem, 3vw, .9rem);
    white-space: normal;
  }

  .smart-new__hero-inner .smart-new__actions .smart-new__button--primary,
  .smart-new__hero-inner .smart-new__actions .smart-new__button--secondary {
    min-width: auto;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
  }

  .smart-new__hero .smart-new__need-detail {
    grid-column: 1 / -1;
  }

  .smart-new__button-tooltip {
    display: none;
  }

  .smart-new__button-tooltip::after {
    content: none;
  }

  .smart-new__need-detail {
    display: grid;
    gap: 10px;
  }

  .smart-new__need-detail > summary {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    color: var(--strike-blue);
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    list-style: none;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .smart-new__info-icon {
    position: relative;
    display: inline-grid;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    place-items: center;
    border: 1.5px solid currentColor;
    border-radius: 50%;
  }

  .smart-new__info-icon::before {
    position: absolute;
    top: 3px;
    left: 50%;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    transform: translateX(-50%);
  }

  .smart-new__info-icon::after {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 2px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform: translateX(-50%);
  }

  .smart-new__need-detail > summary::-webkit-details-marker {
    display: none;
  }

  .smart-new__need-detail > summary:focus {
    outline: none;
  }

  .smart-new__need-detail > summary:focus-visible {
    outline: 2px solid var(--strike-blue);
    outline-offset: 3px;
  }

  .smart-new__need-detail p {
    position: relative;
    margin: 0;
    border: 1px solid #d9dfeb;
    background: #fff;
    box-shadow: 0 8px 18px rgba(20, 32, 52, .08);
    color: #42526a;
    padding: 13px 14px;
    font-size: .86rem;
    font-weight: 500;
    line-height: 1.75;
  }

  .smart-new__need-detail p::before {
    position: absolute;
    top: -7px;
    left: 22px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #d9dfeb;
    border-left: 1px solid #d9dfeb;
    background: #fff;
    content: "";
    transform: rotate(45deg);
  }

  .smart-new__relay-card {
    grid-template-columns: 96px minmax(0, 1fr);
    max-width: none;
    margin-top: 18px;
    padding: 14px;
    gap: 14px;
  }

  .smart-new__relay-logo {
    padding-right: 14px;
  }

  .smart-new__relay-logo img {
    width: 78px;
  }

  .smart-new__hero-visual {
    padding: 24px 18px;
  }

  .smart-new__hero-visual::before {
    display: none;
  }

  .smart-new__hero-updates {
    margin-top: 32px;
  }

  .smart-new__hero-updates-list {
    gap: 14px;
  }

  .smart-new__seminar-carousel {
    --smart-success-carousel-button-size: 40px;
  }

  .smart-new__hero-update {
    flex-basis: min(84vw, 340px);
    min-width: 270px;
    min-height: 0;
  }

  /* 「あと◯日」バッジがタイトル末行に重ならないよう、バッジ1行分の余白を確保する */
  .smart-new__hero-update:has(.smart-new__hero-update-days) .smart-new__hero-update-name {
    padding-bottom: 46px;
  }

  .smart-new__mini-card {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .smart-new__mini-icon {
    width: 40px;
    height: 40px;
  }

  .smart-new__hero-search {
    margin-top: 32px;
  }

  .smart-new__hero-media {
    margin-top: 0;
    padding-top: 64px;
  }

  .smart-new__hero-newsletter {
    margin-top: 0;
    padding-top: 64px;
  }

  .smart-new__media-head {
    display: block;
  }

  .smart-new__media-head h2 {
    font-size: 1.45rem;
  }

  .smart-new__media-subsection {
    margin-top: 24px;
  }

  .smart-new__media-subsection + .smart-new__media-subsection {
    margin-top: 32px;
    padding-top: 28px;
  }

  .smart-new__media-subsection + .smart-new__media-subsection--seminars {
    margin-top: 22px;
    padding-top: 0;
  }

  .smart-new__media-subhead {
    display: block;
    margin-bottom: 16px;
  }

  .smart-new__media-subhead h3 {
    font-size: 1.22rem;
  }

  .smart-new__media-status {
    margin-top: 18px;
  }

  .smart-new__media-all {
    margin-top: 14px;
  }

  .smart-new__media-grid {
    grid-template-columns: 1fr;
  }

  .smart-new__media-card-body {
    padding: 18px;
  }

  .smart-new__industry-trends {
    margin-top: 22px;
    padding: 18px;
  }

  .smart-new__industry-trends-head {
    display: block;
  }

  .smart-new__industry-trends-head span {
    display: block;
    margin-top: 6px;
  }

  .smart-new__industry-trend-list {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .smart-new__industry-trend-list a {
    min-height: 56px;
    grid-template-columns: 28px minmax(0, 1fr) max-content;
    gap: 9px;
    padding: 10px 12px;
  }

  .smart-new__industry-trend-icon {
    width: 28px;
    height: 28px;
  }

  .smart-new__industry-trend-icon > img {
    width: 17px;
    height: 17px;
  }

  .smart-new__industry-trend-new {
    top: -7px;
    right: -7px;
    min-width: 38px;
    min-height: 20px;
    font-size: .62rem;
  }

  .smart-new__industry-trend-date {
    font-size: .7rem;
  }

  .smart-new__newsletter {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .smart-new__newsletter-copy h3 {
    font-size: 1.25rem;
  }

  .smart-new__section-title-row {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .smart-new__newsletter-count {
    white-space: normal;
  }

  .smart-new__newsletter-copy ul {
    gap: 6px;
  }

  .smart-new__newsletter-copy li {
    padding: 4px 9px;
    font-size: .75rem;
  }

  .smart-new__newsletter-field {
    grid-template-columns: 1fr;
  }

  .smart-new__newsletter-field button {
    min-height: 48px;
    font-size: 0.8rem;
    white-space: normal;
    padding: 13px 6px;
  }

  .smart-new__section-head {
    margin-bottom: 26px;
  }

  .smart-new__section-head h2,
  .smart-new__intro-box h2,
  .smart-new__listing-box h2 {
    font-size: 1.45rem;
  }

  .smart-new__search-card {
    grid-template-columns: 1fr;
    border-width: 2px;
    padding: 16px;
  }

  .smart-new__intro-box {
    padding: 34px 0;
  }

  .smart-new__step-list,
  .smart-new__bottom-grid,
  .smart-new__success-industry-list,
  .smart-new__industry-trend-list,
  .smart-new__reason-list {
    grid-template-columns: 1fr;
  }

  .smart-new__success-carousel {
    --smart-success-carousel-gap: 16px;
    --smart-success-carousel-button-size: 40px;
  }

  .smart-new__success-grid {
    grid-auto-columns: minmax(250px, 84%);
  }

  .smart-new__success-carousel-button--prev {
    left: 8px;
  }

  .smart-new__success-carousel-button--next {
    right: 8px;
  }

  .smart-new__success-industries-head {
    display: block;
  }

  .smart-new__success-industries-head span {
    display: block;
    margin-top: 6px;
  }

  .smart-new-footer-visual__logo {
    width: 174px !important;
    max-width: 174px;
    min-width: 0;
  }

  .smart-new__step-list li,
  .smart-new__reason-list li {
    min-height: 0;
  }

  .smart-new__step-list {
    gap: 14px;
  }

  .smart-new__step-list li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    padding: 18px 20px 20px;
  }

  .smart-new__step-list span {
    width: 30px;
    height: 30px;
    font-size: .85rem;
  }

  .smart-new__step-list h3 {
    margin: 0;
    font-size: 1.05rem;
  }

  .smart-new__step-list p {
    grid-column: 2;
    margin: 8px 0 0;
    font-size: .92rem;
    line-height: 1.75;
  }

  .smart-new__step-list a {
    grid-column: 2;
    margin-top: 0;
    padding-top: 10px;
    font-size: .92rem;
  }

  .smart-new__success-industry-list {
    gap: 8px;
  }

  .smart-new__success-industry-list a {
    min-height: 0;
    gap: 8px;
    padding: 9px 12px;
  }

  .smart-new__success-industry-icon {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }

  .smart-new__success-industry-name {
    font-size: .84rem;
  }

  .smart-new__success-industry-list strong {
    font-size: .76rem;
  }

  .smart-new__success-industry-list--prefecture {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-new__success-industry-list--prefecture a {
    padding: 8px 10px;
  }

  .smart-new__success-industry-list.is-collapsed li:not(.is-primary) {
    display: none;
  }

  .smart-new__success-industry-toggle {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    border: 1px solid var(--smart-line);
    background: #fff;
    color: var(--smart-navy);
    padding: 11px 12px;
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
  }

  .smart-new__cases .new-result__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .smart-new__cases .smart-industry-card {
    width: 100%;
    margin-left: 0;
    padding: 24px 20px 84px;
  }

  .smart-new__cases .smart-industry-card:nth-child(3n+1),
  .smart-new__cases .smart-industry-card:nth-child(2n+1) {
    margin-left: 0;
  }

  .smart-new__success-body {
    padding: 20px;
  }

  .smart-new__cta-card {
    border-width: 2px;
    padding: 34px 22px;
  }
}

@media (max-width: 1024px) {
  .smart-search-results__filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-search-results__submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .smart-bookmarks__hero {
    padding: 46px 0 24px;
  }

  .smart-bookmarks__content {
    padding-bottom: 62px;
  }

  .smart-bookmarks__head {
    display: block;
    padding-top: 24px;
  }



  .smart-new__focus-search.is-search-detail-open {
    padding: 0;
  }

  .smart-new__focus-search .smart-new__search-card,
  .smart-new__focus-search.is-search-detail-open .smart-new__search-card {
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 8px;
  }

  .smart-new__focus-search .smart-new__keyword-field,
  .smart-new__focus-search.is-search-detail-open .smart-new__keyword-field {
    grid-column: 1;
  }

  .smart-new__focus-search .smart-new__search-card .input_submit,
  .smart-new__focus-search.is-search-detail-open .smart-new__search-card .input_submit {
    grid-column: 2;
  }

  .smart-new__focus-search .smart-new__keyword-field,
  .smart-new__focus-search .smart-new__search-card .input_submit {
    height: 60px;
    min-height: 0;
  }

  .smart-new__focus-search .smart-new__keyword-field {
    height: auto;
    min-height: 60px;
    border-width: 2px;
    padding: 10px 12px 10px 46px;
  }

  .smart-new__search-tag {
    min-height: 28px;
    padding: 4px 5px 4px 9px;
    font-size: .82rem;
  }

  .smart-new__search-tag-icon {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .smart-new__search-tag-label {
    max-width: 180px;
  }

  .smart-new__search-tag-remove {
    width: 20px;
    height: 20px;
    font-size: .78rem;
  }

  .smart-new__focus-search .smart-new__keyword-field input {
    min-width: 130px;
    font-size: .95rem;
  }

  .smart-new__focus-search .smart-new__keyword-field::before {
    left: 16px;
    width: 18px;
    height: 18px;
  }

  .smart-new__focus-search .smart-new__search-card .input_submit {
    font-size: 1rem;
  }

  .smart-new__popular-keywords {
    margin-top: 18px;
    padding-left: 10px;
  }

  .smart-new__popular-keywords p {
    margin-bottom: 12px;
  }

  .smart-new__popular-keywords ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .smart-new__popular-keywords a {
    font-size: .9rem;
  }

  .smart-new__focus-search.is-search-detail-open::before {
    top: -130px;
    left: -14px;
    right: -14px;
    height: min(760px, 82vh);
  }

  .smart-new__search-dialog-close {
    top: -116px;
    right: -2px;
    width: 40px;
    height: 40px;
  }

  .smart-new__search-detail {
    top: 142px;
    left: -14px;
    right: -14px;
    max-height: min(460px, 58vh);
    padding: 0 18px 24px;
  }

  .smart-new__search-detail-count {
    margin-bottom: 14px;
  }

  .smart-new__search-tab-labels {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 18px;
  }

  .smart-new__search-tab-labels label {
    padding: 12px 0;
    text-align: left;
  }

  .smart-new__search-option-list {
    gap: 8px;
  }

  .smart-new__search-option-list label {
    min-height: 36px;
    padding: 7px 10px;
    font-size: .9rem;
  }

  .smart-search-results__filters {
    padding: 26px 0 28px;
  }

  .smart-search-results__filters.smart-new__hero-search {
    margin-top: 0;
  }

  .smart-search-results__compact-head {
    margin-bottom: 18px;
  }

  .smart-search-results__compact-head h1 {
    font-size: 1.65rem;
  }

  .smart-search-results__filter-head,
  .smart-search-results__result-head {
    display: block;
  }

  .smart-case-list-tools {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .smart-case-list-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }

  .smart-case-filter-link {
    width: 100%;
    justify-content: center;
  }

  .smart-search-results__filter-open {
    display: inline-flex;
  }

  /* 検索結果ページのダイアログ: 「詳細検索」トグルの代わりに「検索」(送信)を下部バーに出す */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-card [data-smart-search-detail-toggle] {
    display: none;
  }

  .smart-new__hero-search.is-search-detail-open .smart-new__search-card .smart-search-results__dialog-submit {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .smart-search-results__title-area {
    align-items: flex-start;
  }

  .smart-search-results__mail-alert {
    width: 100%;
    justify-content: center;
  }

  .smart-case-sort,
  .smart-case-sort__button {
    width: 100%;
  }

  .smart-case-sort__button {
    justify-content: center;
  }

  .smart-case-sort__menu {
    right: auto;
    left: 0;
    width: 100%;
  }

  .smart-search-results__filter-head a {
    display: inline-block;
    margin-top: 8px;
  }

  .smart-search-results__filter-form {
    grid-template-columns: 1fr;
    border-width: 2px;
    padding: 16px;
  }

  .smart-search-results__checkboxes {
    position: static;
    margin-top: 8px;
    box-shadow: none;
  }

  .smart-search-results__case-kicker {
    justify-content: flex-start;
  }

  .smart-search-results__cases .smart__num {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .smart-new__focus-search .smart-new__search-card,
  .smart-new__focus-search:focus-within .smart-new__search-card {
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .smart-new__focus-search .smart-new__keyword-field,
  .smart-new__focus-search:focus-within .smart-new__keyword-field {
    grid-column: 1;
  }

  .smart-new__focus-search .smart-new__search-card .input_submit,
  .smart-new__focus-search:focus-within .smart-new__search-card .input_submit {
    grid-column: 2;
  }
}

.smart-new__footer-conversion {
  --smart-ink: #142034;
  --smart-navy: #0a3291;
  --smart-blue: #00afec;
  --smart-orange: #ed9022;
  --smart-line: #cfd6e2;
  --smart-soft: #fbfbfb;
  --smart-white: #fff;
  --smart-button-min-height: 52px;
  --smart-button-min-width: 180px;
  --smart-button-padding: 13px 26px;
  --smart-button-border-width: 2px;
  --smart-button-transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  background: var(--smart-soft);
  color: var(--smart-ink);
  letter-spacing: 0;
}

.smart-new__footer-conversion *,
.smart-new__footer-conversion *::before,
.smart-new__footer-conversion *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.smart-new__footer-conversion .smart-new__bottom-cta {
  background: var(--smart-soft);
  padding: 72px 0;
}

.smart-new__footer-conversion .smart-new__bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.smart-new__footer-conversion .smart-new__cta-card {
  border: 3px solid var(--smart-ink);
  background: #fff;
  padding: 42px 34px;
  text-align: center;
}

.smart-new__footer-conversion .smart-new__cta-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.smart-new__footer-conversion .smart-new__consultant-avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 3px solid var(--smart-ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(24, 42, 70, .14);
  outline: none;
}

.smart-new__footer-conversion .smart-new__cta-card .smart-new__consultant-photo {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  object-fit: cover;
}

.smart-new__footer-conversion .smart-new__consultant-profile {
  position: absolute;
  z-index: 5;
  bottom: calc(100% + 12px);
  left: 50%;
  width: min(280px, 72vw);
  padding: 14px 16px;
  border: 1px solid #d9e1ec;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(24, 42, 70, .18);
  color: #304158;
  font-size: .84rem;
  line-height: 1.65;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease;
}

.smart-new__footer-conversion .smart-new__consultant-profile::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 1px solid #d9e1ec;
  border-bottom: 1px solid #d9e1ec;
  background: #fff;
  transform: translate(-50%, -6px) rotate(45deg);
}

.smart-new__footer-conversion .smart-new__consultant-profile strong {
  display: block;
  margin-bottom: 4px;
  color: var(--smart-ink);
  font-size: .9rem;
  line-height: 1.4;
}

.smart-new__footer-conversion .smart-new__consultant-profile span {
  display: block;
}

.smart-new__footer-conversion .smart-new__consultant-avatar:hover .smart-new__consultant-profile,
.smart-new__footer-conversion .smart-new__consultant-avatar:focus-visible .smart-new__consultant-profile {
  opacity: 1;
  transform: translate(-50%, 0);
}

.smart-new__footer-conversion .smart-new__consultant-avatar:focus-visible {
  box-shadow: 0 0 0 4px rgba(42, 84, 160, .18), 0 10px 24px rgba(24, 42, 70, .14);
}

.smart-new__footer-conversion .smart-new__cta-card h2 {
  margin: 22px 0 0;
  color: var(--smart-ink);
  font-size: 1.35rem;
  line-height: 1.45;
}

.smart-new__footer-conversion .smart-new__cta-card p {
  margin: 12px 0 0;
  color: #4a5a70;
  line-height: 1.7;
}

.smart-new__footer-conversion .smart-new__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--smart-button-min-width);
  min-height: var(--smart-button-min-height);
  margin-top: 24px;
  border: var(--smart-button-border-width) solid var(--smart-ink);
  border-radius: 0;
  padding: var(--smart-button-padding);
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: var(--smart-button-transition);
}

.smart-new__footer-conversion .smart-new__button--primary {
  color: #fff;
  background: var(--smart-ink);
}

.smart-new__footer-conversion .smart-new__button--secondary {
  color: var(--smart-ink);
  background: #fff;
}

.smart-new__footer-conversion .smart-new__button:hover,
.smart-new__footer-conversion .smart-new__button:focus-visible {
  opacity: 1;
  color: #fff;
  border-color: var(--smart-navy);
  background: var(--smart-navy);
}

.smart-new__footer-conversion .smart-new__relay-section {
  background: var(--smart-soft);
  padding: 0 0 56px;
}

.smart-new__footer-conversion .smart-new__relay-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  border: 2px solid var(--smart-ink);
  background: #fff;
  box-shadow: none;
  color: var(--smart-ink);
  padding: 22px 24px;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}

.smart-new__footer-conversion .smart-new__relay-card:hover,
.smart-new__footer-conversion .smart-new__relay-card:focus-visible {
  border-color: var(--smart-navy);
  color: var(--smart-navy);
}

.smart-new__footer-conversion .smart-new__relay-logo {
  display: block;
  border-right: 1px solid #e4ebf3;
  padding-right: 18px;
}

.smart-new__footer-conversion .smart-new__relay-logo img {
  display: block;
  width: 94px;
  height: auto;
}

.smart-new__footer-conversion .smart-new__relay-copy {
  display: grid;
  gap: 5px;
}

.smart-new__footer-conversion .smart-new__relay-label {
  color: #009370;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.smart-new__footer-conversion .smart-new__relay-catch {
  color: var(--smart-ink);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.45;
}

.smart-new__footer-conversion .smart-new__relay-text {
  color: #4a5a70;
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.65;
}

.smart-new__footer-conversion .smart-new__listing {
  background: #fff;
  border-top: 1px solid #e2e8f1;
  padding: 72px 0;
}

.smart-top-page .smart-new__footer-conversion .smart-new__listing {
  padding-bottom: 32px;
}

.smart-new__footer-conversion .smart-new__listing-box {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.smart-new__footer-conversion .smart-new__listing-box h2 {
  margin: 0;
  color: var(--smart-ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.45;
}

.smart-new__footer-conversion .smart-new__listing-box p {
  margin: 16px auto 0;
  color: #26364d;
  line-height: 1.85;
}

.smart-new__listing-lead > span {
  display: block;
}

.smart-new__listing-lead > span + span {
  margin-top: .85em;
}

.smart-new__listing-inline-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.smart-new__listing-note-tooltip {
  position: relative;
  display: inline-flex;
  align-items: baseline;
}

.smart-new__listing-note-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--strike-blue);
  font: inherit;
  font-weight: 700;
  cursor: help;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.smart-new__listing-note-link:hover,
.smart-new__listing-note-link:focus-visible {
  opacity: 1;
  color: var(--smart-blue);
  outline: none;
}

.smart-new__listing-note-balloon {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: min(390px, calc(100vw - 48px));
  border: 1px solid var(--smart-line);
  background: #fff;
  box-shadow: 0 12px 26px rgba(20, 32, 52, .14);
  color: #26364d;
  padding: 12px 14px;
  font-size: .84rem;
  font-weight: 500;
  line-height: 1.7;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translate(-50%, 6px);
  transition: opacity .18s ease, transform .18s ease;
  white-space: normal;
}

.smart-new__listing-note-balloon::after {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--smart-line);
  border-bottom: 1px solid var(--smart-line);
  background: #fff;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.smart-new__listing-note-tooltip:hover .smart-new__listing-note-balloon,
.smart-new__listing-note-link:focus-visible + .smart-new__listing-note-balloon {
  opacity: 1;
  transform: translate(-50%, 0);
}

.smart-new__footer-conversion .smart-new__listing-box .smart-new__button {
  margin-top: 28px;
}

.smart-new__footer-conversion .smart-new__listing-specialist {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #d9e1ec;
}

.smart-new__footer-conversion .smart-new__listing-specialist p {
  margin-top: 0;
  color: #43546b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.smart-new__footer-conversion .smart-new__listing-link-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(160px, .8fr);
  gap: 28px;
  margin-top: 20px;
  text-align: left;
}

.smart-new__footer-conversion .smart-new__listing-link-group {
  min-width: 0;
}

.smart-new__footer-conversion .smart-new__listing-link-group h3 {
  margin: 0;
  padding-bottom: 9px;
  border-bottom: 1px solid #d9e1ec;
  color: #7a8798;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .08em;
}

.smart-new__footer-conversion .smart-new__listing-specialist ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.smart-new__footer-conversion .smart-new__listing-link-group--area {
  position: relative;
  padding-left: 28px;
}

.smart-new__footer-conversion .smart-new__listing-link-group--area::before {
  content: "";
  position: absolute;
  top: calc(.82rem * 1.2 + 10px);
  bottom: 0;
  left: 0;
  width: 1px;
  background: #d9e1ec;
}

.smart-new__footer-conversion .smart-new__listing-link-group--area ul {
  grid-template-columns: 1fr;
}

.smart-new__footer-conversion .smart-new__listing-specialist a {
  display: inline;
  border: 0;
  background: transparent;
  color: var(--smart-ink);
  padding: 0;
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .22em;
  transition: color .18s ease, text-decoration-color .18s ease;
}

.smart-new__footer-conversion .smart-new__listing-specialist a.smart-new__listing-specialist-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  text-decoration: none;
}

.smart-new__footer-conversion .smart-new__listing-specialist a.smart-new__listing-specialist-link::before {
  content: ">";
  flex: 0 0 auto;
  color: #d43c32;
  font-size: .88em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.smart-new__footer-conversion .smart-new__listing-specialist a:hover,
.smart-new__footer-conversion .smart-new__listing-specialist a:focus-visible {
  color: var(--smart-navy);
  text-decoration-color: var(--smart-navy);
}

@media (max-width: 767px) {
  .smart-new__footer-conversion .smart-new__bottom-cta,
  .smart-new__footer-conversion .smart-new__listing {
    padding: 48px 0;
  }

  .smart-top-page .smart-new__footer-conversion .smart-new__listing {
    padding-bottom: 24px;
  }

  .smart-new__footer-conversion .smart-new__bottom-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .smart-new__footer-conversion .smart-new__cta-card {
    border-width: 2px;
    padding: 32px 22px;
  }

  .smart-new__footer-conversion .smart-new__button {
    width: 100%;
  }

  .smart-new__footer-conversion .smart-new__relay-section {
    padding-bottom: 44px;
  }

  .smart-new__footer-conversion .smart-new__relay-card {
    grid-template-columns: 96px minmax(0, 1fr);
    max-width: none;
    padding: 14px;
    gap: 14px;
  }

  .smart-new__footer-conversion .smart-new__relay-logo {
    padding-right: 14px;
  }

  .smart-new__footer-conversion .smart-new__relay-logo img {
    width: 78px;
  }

  .smart-new__footer-conversion .smart-new__listing-specialist {
    margin-top: 24px;
    padding-top: 20px;
  }

  .smart-new__footer-conversion .smart-new__listing-link-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 18px;
  }

  .smart-new__footer-conversion .smart-new__listing-specialist ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
  }

  .smart-new__footer-conversion .smart-new__listing-link-group--area {
    padding-top: 2px;
    padding-left: 0;
  }

  .smart-new__footer-conversion .smart-new__listing-link-group--area::before {
    content: none;
  }

  .smart-new__footer-conversion .smart-new__listing-specialist a {
    font-size: .91rem;
  }

  .smart-new__footer-conversion .smart-new__listing-specialist a.smart-new__listing-specialist-link {
    gap: 5px;
  }
}

/* TOPの各コンテンツセクション境界に、inner wideと同じ幅の区切り線を揃える */
.smart-top-page .smart-new {
  --smart-section-divider-width: min(1200px, 100%);
}

.smart-top-page .smart-new__intro,
.smart-top-page .smart-new__success,
.smart-top-page .smart-new__reasons,
.smart-top-page .smart-new__faq,
.smart-top-page .smart-new__footer-conversion {
  background-image: linear-gradient(var(--smart-line), var(--smart-line));
  background-position: center top;
  background-repeat: no-repeat;
  background-size: var(--smart-section-divider-width) 1px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  .smart-top-page .smart-new {
    --smart-section-divider-width: 93.75vw;
  }
}

@media (max-width: 767px) {
  .smart-top-page .smart-new {
    --smart-section-divider-width: 89.5833333333vw;
  }
}

/* MV背景 */
  .scene {
    position: absolute;
    top: 50%;
    left: 75%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    overflow: hidden;
    transform: translateY(-50%);
  }

  /* 各列 */
  .col {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    will-change: transform;
    transform: rotate(45deg);
    transform-origin: center center;
    gap: 65px;
    justify-content: center;
  }

  /* 3つのブロックを横並びにまとめるグループ */
  .group {
    display: flex;
    flex-direction: row;
    gap: 11px;
    flex-shrink: 0;
  }

  /* ブロック本体 */
  .block {
    width: 18px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .block .top    { flex: 1; }
  .block .bottom { flex: 1; }

  /* ── カラーバリエーション ── */
  .c1 .top    { background: var(--smart-color-1-top); }
  .c1 .bottom { background: var(--smart-color-1-bottom); }

  .c2 .top    { background: var(--smart-color-2-top); }
  .c2 .bottom { background: var(--smart-color-2-bottom); }

  .c3 .top    { background: var(--smart-color-3-top); }
  .c3 .bottom { background: var(--smart-color-3-bottom); }

  .c4 .top    { background: var(--smart-color-4-top); }
  .c4 .bottom { background: var(--smart-color-4-bottom); }

  .c5 .top    { background: var(--smart-color-5-top); }
  .c5 .bottom { background: var(--smart-color-5-bottom); }

  .c6 .top    { background: var(--smart-color-6-top); }
  .c6 .bottom { background: var(--smart-color-6-bottom); }

  .c7 .top    { background: var(--smart-color-7-top); }
  .c7 .bottom { background: var(--smart-color-7-bottom); }

  .c8 .top    { background: var(--smart-color-8-top); }
  .c8 .bottom { background: var(--smart-color-8-bottom); }

  .c9 .top    { background: var(--smart-color-9-top); }
  .c9 .bottom { background: var(--smart-color-9-bottom); }

  .c10 .top   { background: var(--smart-color-10-top); }
  .c10 .bottom { background: var(--smart-color-10-bottom); }

  .c11 .top   { background: var(--smart-color-11-top); }
  .c11 .bottom { background: var(--smart-color-11-bottom); }

  .c12 .top   { background: var(--smart-color-12-top); }
  .c12 .bottom { background: var(--smart-color-12-bottom); }

  .c13 .top   { background: var(--smart-color-13-top); }
  .c13 .bottom { background: var(--smart-color-13-bottom); }

  .c14 .top   { background: var(--smart-color-14-top); }
  .c14 .bottom { background: var(--smart-color-14-bottom); }

  .c15 .top   { background: var(--smart-color-15-top); }
  .c15 .bottom { background: var(--smart-color-15-bottom); }

  .c16 .top   { background: var(--smart-color-16-top); }
  .c16 .bottom { background: var(--smart-color-16-bottom); }

@media (max-width: 1200px) {
  .scene {
    left: 36%;
    width: 160%;
    gap: 80px;
  }

  .col {
    gap: 55px;
  }

  .group {
    gap: 10px;
  }

  .block {
    width: 16px;
    height: 70px;
  }
}

@media (max-width: 1024px) {
  .scene {
    left: 40%;
    width: 182%;
    gap: 80px;
  }

  .col {
    gap: 45px;
  }

  .group {
    gap: 8px;
  }

  .block {
    width: 14px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .scene {
    left: 0;
    width: 300%;
    gap: 60px;
  }

  .col {
    gap: 35px;
  }

  .group {
    gap: 7px;
  }

  .block {
    width: 12px;
    height: 50px;
  }
}

/* ==== モバイル縦長対策(2026-07): デスクトップは変更しない ==== */

/* モバイル専用CTA(案件カード下)。デスクトップでは表示しない */
.smart-new__case-cta-sp {
  display: none;
}

/* グローバルナビ右端の「noteでフォロー」ボタン */
.smart-new-header__subnav-inner {
  position: relative;
}

.smart-new-header__subnav-follow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(20, 32, 52, .3);
  border-radius: 8px;
  padding: 7px 13px;
  color: #142034;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

/* 中間幅(タブレット〜小型ノート)ではナビリンクと重なるため、絶対配置をやめてフロー内で折り返す */
@media (min-width: 768px) and (max-width: 1279px) {
  .smart-new-header__subnav-inner {
    flex-wrap: wrap;
    row-gap: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .smart-new-header__subnav-follow {
    position: static;
    transform: none;
  }
}

.smart-new-header__subnav-follow:hover,
.smart-new-header__subnav-follow:focus-visible {
  border-color: #142034;
  background: #142034;
  color: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  /* ヘッダー1段目: .innerの幅制限を外し、検索/メニューを右端に寄せる */
  .smart-new-header__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 12px 10px 16px;
  }

  /* グロナビのnoteフォローはモバイルではグリッドセルとして表示 */
  .smart-new-header__subnav-follow {
    position: static;
    transform: none;
    justify-self: center;
    align-self: center;
    padding: 6px 10px;
    font-size: .72rem;
  }

  /* 新着案件: セクション見出し(NEW CASES/M&A新着案件)は出さず、カードを上に詰める */
  .smart-top-page .smart-new__cases .smart-new__section-head {
    display: none;
  }

  /* 新着案件: 縦積み8枚 → 横スワイプカルーセル(トップのみ。検索結果ページは業種ページと同じ縦一覧) */
  .smart-top-page .smart-new__cases .new-result__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 2px;
    padding: 2px 2px 16px;
    scrollbar-width: none;
  }

  .smart-top-page .smart-new__cases .new-result__list::-webkit-scrollbar {
    display: none;
  }

  .smart-top-page .smart-new__cases .new-result__list .smart-industry-card {
    flex: 0 0 80%;
    max-width: 80%;
    scroll-snap-align: start;
  }

  /* 安心して検討できる理由: アイコン左置きの横型カードに圧縮 */
  .smart-new__reason-list {
    gap: 12px;
  }

  .smart-new__reason-list li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    padding: 16px;
    text-align: left;
  }

  .smart-new__reason-list img {
    grid-row: 1 / span 2;
    width: 44px;
    height: 44px;
  }

  .smart-new__reason-list h3 {
    grid-column: 2;
    margin: 0;
    font-size: 1rem;
  }

  .smart-new__reason-list p {
    grid-column: 2;
    margin: 4px 0 0;
    font-size: .85rem;
    line-height: 1.65;
  }

  /* ヒーロー末尾(メルマガ下)の黒い区切り線はモバイルでは出さない */
  .smart-new__hero {
    border-bottom: 0;
  }

  /* SMARTとは?ブロックの上下枠線もモバイルでは出さない */
  .smart-new__intro-box {
    border-top: 0;
    border-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* セクション見出し下のアンダーライン装飾はモバイルでは全て出さない */
  .smart-new__section-head h2::after,
  .smart-new__section-head--left h2::after,
  .smart-new__section-title-row h2::after {
    content: none;
  }

  /* SMARTとは?: 説明文はモバイルでは出さない(見出し+リンクのみ) */
  .smart-new__intro-box > p {
    display: none;
  }

  /* メルマガ: 説明文は省略し、受け取れる情報のタグは表示する */
  .smart-new__hero-newsletter .smart-new__newsletter-copy p {
    display: none;
  }

  .smart-new__hero-newsletter .smart-new__newsletter-copy ul {
    display: flex;
    margin-top: 12px;
  }

  /* メルマガブロックの余白圧縮 */
  .smart-new__hero-newsletter {
    margin-top: 0;
    padding-top: 50px;
  }

  .smart-new__newsletter {
    gap: 14px;
  }

  .smart-new__newsletter-copy p {
    font-size: .88rem;
    line-height: 1.75;
  }

  .smart-new__newsletter-form .smart-new__newsletter-campaign-note {
    margin-top: 12px;
    padding-top: 12px;
  }
}

@media (max-width: 768px) {
  /* お知らせバーを最上部に置くぶん、ヒーローの上パディングを詰める */
  .smart-new__hero {
    padding-top: 16px;
  }

  /* NEWSカード: モバイルではヒーロー最上部の1行バーとして表示する
     (サムネイルは出さず、NEWS+日付+タイトル1行+シェブロン) */
  .smart-new__news-card {
    order: -1;
    width: 100%;
    margin: 0 0 22px;
  }

  .smart-new__news-card a {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3px 10px;
    max-width: none;
    padding: 10px 118px 10px 14px;
    overflow: hidden;
  }

  /* HERO背景の短冊はモバイルでは表示しない(お知らせバー側で見せる) */
  .smart-new__hero .scene {
    display: none;
  }

  /* 「M&A譲渡案件を探す」セクション: モバイルでは常設表示せず、
     「案件を探す」ボタンから全画面ダイアログとして開く */
  .smart-new__hero-search {
    display: none;
  }

  .smart-new__hero-search.is-search-detail-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    width: auto;
    max-width: none;
    margin: 0;
    background: #fff;
    padding: 0 14px calc(88px + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    /* リスト端で背面へスクロールが連鎖しないようにする */
    overscroll-behavior: contain;
  }

  /* iOSのフォーカス時ズームを防ぐため16px以上にする */
  .smart-new__hero-search.is-search-detail-open #smart-search-keyword {
    font-size: 16px;
  }

  /* ダイアログ表示中は背面のページを描画しない
     (iOSでキーボード表示時にfixedシートの下から背面が露出するのを防ぐ) */
  body.is-search-modal-open .smart-new__hero > *:not(.smart-new__hero-search),
  body.is-search-modal-open .smart-new > section:not(.smart-new__hero):not(.smart-new__hero-search),
  body.is-search-modal-open .smart-new__footer-conversion,
  body.is-search-modal-open .breadcrumbs,
  body.is-search-modal-open footer {
    visibility: hidden;
  }

  /* 選択タグ: ダイアログでは小型化し、全幅を使って複数個ずつ並べる */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-selected-tags {
    width: 100%;
    flex-basis: 100%;
    gap: 6px;
    padding-top: 2px;
  }

  .smart-new__hero-search.is-search-detail-open .smart-new__search-tag {
    padding: 2px 7px;
    font-size: .72rem;
    line-height: 1.6;
  }

  /* チップ内の業種アイコンは省略して幅を詰める(リスト側で確認できる) */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-tag-icon {
    display: none;
  }

  /* 虫眼鏡アイコン: タグで欄が伸びても1行目の高さに固定する */
  .smart-new__hero-search.is-search-detail-open .smart-new__focus-search .smart-new__keyword-field::before {
    top: auto;
    bottom: 21px;
    transform: none;
  }

  .smart-new__hero-search.is-search-detail-open .smart-new__focus-search .smart-new__keyword-field:has(.smart-new__search-tag)::before {
    bottom: 15px;
  }

  /* チェックチップはタップしやすい高さ(44px)を確保する */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-option-list label {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* 全画面シートなので背面の暗幕・白パネル装飾は不要 */
  .smart-new__hero-search.is-search-detail-open::before,
  .smart-new__focus-search.is-search-detail-open::before {
    display: none;
  }

  /* iOSはフォント16px未満の入力にフォーカスすると画面をズームするため、
     モバイルでは全テキスト入力を16px以上にする */
  input[type="search"],
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    /* 個別のクラス指定より優先させる(ズーム防止はUX上の必須要件) */
    font-size: 16px !important;
  }

  /* ダイアログ表示中は背面スクロールを止め、固定ミニヘッダーも隠す */
  :root:has(body.is-search-modal-open) {
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.is-search-modal-open {
    height: 100dvh;
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
  }

  body.is-search-modal-open .smart-minimal-header--site {
    display: none;
  }

  /* 上部固定バー: タイトル+×(SEARCHアイキャッチは省略) */
  .smart-new__hero-search.is-search-detail-open .smart-new__section-head {
    position: sticky;
    top: 0;
    z-index: 95;
    display: flex;
    align-items: center;
    width: calc(100% + 28px);
    max-width: none;
    margin: 0 -14px 16px;
    border-bottom: 1px solid #e8edf4;
    background: #fff;
    padding: 15px 56px 13px 16px;
    text-align: left;
  }

  .smart-new__hero-search.is-search-detail-open .smart-new__section-head .smart-new__eyebrow {
    display: none;
  }

  .smart-new__hero-search.is-search-detail-open .smart-new__section-head h2,
  .smart-new__hero-search.is-search-detail-open .smart-new__section-head h1 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
  }

  /* ×ボタン: 右上に固定して確実に押せるようにする */
  /* ダイアログ中はフォームのisolation/z-indexを解除して、固定ヘッダー・×・
     下部バーが個々のz-indexで素直に重なるようにする(中身のスクロールはヘッダーの下へ) */
  .smart-new__hero-search.is-search-detail-open .smart-new__focus-search,
  .smart-new__hero-search.is-search-detail-open .smart-search-results__form.smart-new__focus-search {
    isolation: auto;
    z-index: auto;
  }

  .smart-new__hero-search.is-search-detail-open .smart-new__search-dialog-close,
  .smart-new__hero-search.is-search-detail-open .smart-search-results__form.smart-new__focus-search .smart-new__search-dialog-close {
    position: fixed;
    top: 4px;
    right: 6px;
    z-index: 96;
    display: flex;
    width: 44px;
    height: 44px;
  }

  /* おすすめキーワードはダイアログでは出さない(場所だけ取っていた) */
  .smart-new__hero-search.is-search-detail-open .smart-new__popular-keywords {
    display: none;
  }

  /* 絞り込みパネル: 入れ子スクロールをやめてシート1本のスクロールにする */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-detail {
    position: static;
    max-height: none;
    margin-top: 20px;
    padding: 0;
    overflow: visible;
    animation: none;
  }

  /* 該当件数: 下部固定バー(左側)。検索ボタンが右側に並ぶ */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-detail-count {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 92;
    display: flex;
    align-items: center;
    margin: 0;
    border-top: 1px solid #e2e7ef;
    background: #fff;
    box-shadow: 0 -8px 20px rgba(20, 32, 52, .06);
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
    font-size: .9rem;
  }

  /* 検索カードのz-indexを上げて、固定した検索ボタンが件数バーに潜らないようにする。
     検索ボタンは下部バーへ移動済みなので、ボタン用の列(176px)は予約しない。
     検索結果フォームはデスクトップ用ルールの詳細度が高いため、同フォームも明示して1列に戻す */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-card,
  .smart-new__hero-search.is-search-detail-open .smart-search-results__form.smart-new__focus-search.is-search-detail-open .smart-new__search-card {
    z-index: 94;
    grid-template-columns: minmax(0, 1fr);
  }

  /* 件数テキストがボタンの下に回り込まないよう右側を空ける */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-detail-count {
    padding-right: 52%;
  }

  /* 検索ボタン: 下部固定バーの右側へ移動(バー内で上下センターに揃える) */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-card .input_submit {
    position: fixed;
    right: 14px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 93;
    width: 46%;
    height: 47px;
    min-height: 0;
    padding: 0;
  }

  /* タブ: 縦積みをやめて3分割の横並びセグメントにする */
  .smart-new__hero-search.is-search-detail-open .smart-new__search-tab-labels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 16px;
    border: 0;
  }

  .smart-new__hero-search.is-search-detail-open .smart-new__search-tab-labels label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0;
    border: 1.5px solid #cfd6e2;
    border-radius: 8px;
    background: #fff;
    color: #47536a;
    padding: 6px 2px;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .smart-new__hero-search.is-search-detail-open #smart-search-detail-tab-gyosyus:checked ~ .smart-new__search-tab-labels label[for="smart-search-detail-tab-gyosyus"],
  .smart-new__hero-search.is-search-detail-open #smart-search-detail-tab-areas:checked ~ .smart-new__search-tab-labels label[for="smart-search-detail-tab-areas"],
  .smart-new__hero-search.is-search-detail-open #smart-search-detail-tab-sales:checked ~ .smart-new__search-tab-labels label[for="smart-search-detail-tab-sales"] {
    border-color: #0a3291;
    background: #0a3291;
    color: #fff;
  }

  /* FVの余白リズム: バー→見出し→リード→カードの間隔に強弱をつける */
  .smart-new__news-card {
    margin-bottom: 30px;
  }

  .smart-new__hero-copy h1 {
    line-height: 1.42;
  }

  /* SMARTロゴ下のパレットバー(-16px)と干渉しない位置までリードを離す */
  .smart-new__lead {
    max-width: 32em;
    margin-top: 26px;
    color: #3a4a63;
    font-size: .95rem;
    line-height: 1.95;
  }

  /* 正式名称の括弧書きはモバイルでは省略して2行に収める */
  .smart-new__lead-formal {
    display: none;
  }

  /* リード→カードの間(トップのみ) */
  .smart-top-page .smart-new__cases {
    padding-top: 26px;
  }

  /* ヒーロー側のCTAはSPでは案件カード下の統合CTAに置き換える */
  .smart-new__hero-copy .smart-new__actions {
    display: none;
  }

  /* 旧「全てのM&A案件を見る/新着を受け取る」行はSPでは統合CTAに集約 */
  .smart-top-page .smart-new__cases .smart-new__actions--center {
    display: none;
  }

  /* 案件カード下の統合CTA:
     1段目=探索ペア(白枠) / 2段目=買収ニーズ(濃紺・主) / 3段目=メルマガ(リンク) */
  .smart-new__case-cta-sp {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .smart-new__case-cta-sp-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
  }

  .smart-new__case-cta-sp-filter,
  .smart-new__case-cta-sp-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 48px;
    border: 1.5px solid #cfd6e2;
    background: #fff;
    color: #142034;
    padding: 8px 6px;
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
  }

  .smart-new__case-cta-sp-search-icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    background: url("/assets/images/common/icon_search.svg") center / contain no-repeat;
  }

  .smart-new__case-cta-sp-need {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    background: var(--smart-ink, #142034);
    color: #fff;
    padding: 10px;
    font-size: .96rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
  }

  .smart-new__case-cta-sp-newsletter {
    justify-self: center;
    margin-top: 2px;
    color: #0a3291;
    padding: 4px 6px;
    font-size: .84rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  /* 「買収ニーズ登録のメリットは?」は右寄せにする */
  .smart-new__hero .smart-new__need-detail > summary {
    margin-left: auto;
  }

  .smart-new__news-card a::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #8a93a5;
    font-size: 1.05rem;
    line-height: 1;
  }

  /* サムネイルは右端に小さく表示する */
  .smart-new__news-thumbnail {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 76px;
    margin: 0;
    transform: translateY(-50%);
  }

  /* 1段目: NEWS+日付 */
  .smart-new__news-meta {
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 0;
  }

  .smart-new__news-category,
  .smart-new__news-date {
    font-size: .74rem;
  }

  .smart-new__news-category::before {
    width: 8px;
    margin-right: 5px;
  }

  /* 2段目: タイトル */
  .smart-new__news-title {
    flex: 0 0 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: .82rem;
    font-weight: 700;
  }

  /* ※注記ツールチップ: 中央基準だと画面右へはみ出し、iOS Safariで
     横パン領域を作ってしまうため、モバイルでは右端基準で表示する */
  .smart-new__listing-note-balloon {
    left: auto;
    right: -8px;
    transform: translate(0, 6px);
  }

  .smart-new__listing-note-balloon::after {
    left: auto;
    right: 8px;
    transform: rotate(45deg);
  }

  .smart-new__listing-note-tooltip:hover .smart-new__listing-note-balloon,
  .smart-new__listing-note-link:focus-visible + .smart-new__listing-note-balloon {
    transform: translate(0, 0);
  }
}

/* 検索結果ページ: 適用中の検索条件チップ */
.smart-search-results__conditions {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
}

.smart-search-results__conditions-label {
  flex: 0 0 auto;
  color: #66758a;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.6;
}

.smart-search-results__conditions ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.smart-search-results__conditions li {
  border: 1px solid #cfd6e2;
  border-radius: 999px;
  background: #fff;
  color: #142034;
  padding: 3px 11px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.6;
}

/* ==== サイト共通の固定ミニヘッダー(スクロールで表示。/knowledge/ の実装がベース、中央キャプションなし) ==== */
body.is-knowledge-minimal-header .smart-new-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  visibility: hidden;
}

.smart-minimal-header--site {
  position: fixed;
  z-index: 72;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(96px, 1fr) auto minmax(96px, 1fr);
  align-items: center;
  height: 64px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(20, 32, 52, .12);
  box-shadow: 0 14px 30px rgba(20, 32, 52, .08);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    opacity .24s ease,
    transform .36s cubic-bezier(.22, 1, .36, 1),
    visibility .24s ease;
  visibility: hidden;
}

body.is-knowledge-minimal-header .smart-minimal-header--site {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.smart-minimal-header--site .smart-knowledge-minimal-header__logo {
  display: block;
  justify-self: start;
  width: 104px;
}

.smart-minimal-header--site .smart-knowledge-minimal-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.smart-minimal-header--site .smart-knowledge-minimal-header__follow {
  display: inline-flex;
  grid-column: 3;
  justify-self: end;
  align-items: center;
  border: 1px solid rgba(20, 32, 52, .3);
  border-radius: 8px;
  padding: 8px 14px;
  color: #142034;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.smart-minimal-header--site .smart-knowledge-minimal-header__follow:hover,
.smart-minimal-header--site .smart-knowledge-minimal-header__follow:focus-visible {
  border-color: #142034;
  background: #142034;
  color: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  /* html/bodyのoverflow-x:hiddenはbodyをスクロールコンテナ化してstickyを
     無効にするため、スクロールコンテナを作らないclipに置き換える
     (ミニヘッダー表示までの間はメインヘッダーがスティッキーで残る) */
  html,
  body {
    overflow-x: clip;
  }

  .smart-minimal-header--site {
    height: 54px;
    padding: 0 14px;
  }

  .smart-minimal-header--site .smart-knowledge-minimal-header__logo {
    width: 92px;
  }

  .smart-minimal-header--site .smart-knowledge-minimal-header__follow {
    padding: 7px 12px;
    font-size: 11px;
  }
}

/* 紙飛行機アイコンのギミック(smart_newsletter_plane.js) */
.smart-newsletter-plane-launchable {
  cursor: pointer;
  transition: transform .18s ease;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.smart-newsletter-plane-launchable:hover {
  transform: translateY(-2px) rotate(-8deg);
}

/* フォールバック用: つまんで振りかぶった状態(追従なし環境) */
.smart-newsletter-plane-launchable.is-grabbed {
  cursor: grabbing;
  transform: translate(-4px, 5px) rotate(16deg) scale(1.1);
  transition: transform .12s ease-out;
}

/* つまんでマウスに追従している分身のポーズ */
.smart-newsletter-plane-held {
  transform: rotate(16deg) scale(1.1);
}

/* ドラッグ中はどこにいても握った手カーソルを維持する */
html.smart-plane-grabbing,
html.smart-plane-grabbing * {
  cursor: grabbing !important;
}

.smart-newsletter-input-landing {
  animation: smartNewsletterLanding .8s ease;
}

@keyframes smartNewsletterLanding {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 50, 145, .35);
  }

  100% {
    box-shadow: 0 0 0 12px rgba(10, 50, 145, 0);
  }
}
