@charset "UTF-8";
/** 文字の定義**/
/** Colorの定義**/
.oswald {
  font-family: "Oswald", sans-serif;
}

.topics__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ea0437;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 14px 50px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .topics__more-btn:hover {
    color: #fff;
  }
}

.product-search__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ea0437;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.75px;
  padding: 14px 50px;
  border-radius: 100px;
  text-decoration: none;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .product-search__more-btn:hover {
    color: #fff;
    opacity: 0.8;
  }
}

.aboutus__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ea0437;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 40px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 30px;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .aboutus__btn {
    font-size: 14px;
    display: flex;
    margin: 30px auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (hover: hover) {
  .aboutus__btn:hover {
    opacity: 0.8;
    color: #fff;
  }
}

.aboutus__btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .aboutus__btn-icon {
    width: 12px;
    height: 12px;
    margin-left: 5px;
  }
}

.btn-back {
  display: block;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #eee;
  border: solid 1px #999;
  color: #111;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 14px 50px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
  max-width: 200px;
  margin-top: 50px;
}
.btn-back::before {
  content: "";
  position: absolute;
  left: 20px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #111;
  border-bottom: 1.5px solid #111;
  transform: rotate(135deg);
}
@media (hover: hover) {
  .btn-back:hover {
    color: #111;
  }
}

/* ==============================

  Header

============================== */
.header {
  position: relative;
  width: 100%;
  z-index: 100;
}

.header__top {
  height: 6.125rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__top {
    height: 5rem;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .header__top {
    height: 3.75rem;
  }
}

.header__top-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.875rem;
  gap: 1.25rem;
}
@media screen and (max-width: 1400px) {
  .header__top-inner {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 1200px) {
  .header__top-inner {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .header__top-inner {
    border-top: solid 0.1875rem #161a85;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .header__top-inner {
    padding: 0 0.625rem;
  }
}

.header__logo {
  flex-shrink: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.header__logo-link {
  display: block;
  width: 10rem;
  aspect-ratio: 160/32;
  height: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .header__logo-link {
    width: 8.75rem;
  }
}

.header__logo-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 160/32;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__anniversary {
  flex-shrink: 0;
  width: 1rem;
  height: auto;
  display: block;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .header__anniversary {
    display: none;
  }
}

/* Search */
.header__search {
  display: flex;
  align-items: stretch;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 6.25rem;
  overflow: hidden;
  background: #fff;
  flex-shrink: 1;
  min-width: 0;
  width: 400px;
}
@media screen and (max-width: 1400px) {
  .header__search {
    width: 380px;
  }
}
@media screen and (max-width: 1200px) {
  .header__search {
    width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .header__search {
    height: 36px;
  }
}
@media screen and (max-width: 834px) {
  .header__search {
    display: none;
  }
}

.header__search-field {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 12px;
}
@media screen and (max-width: 1100px) {
  .header__search-field {
    width: calc(100% - 20px);
  }
}

.header__search-input {
  flex: 1;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  min-width: 0;
}
.header__search-input:focus {
  outline: none;
}
.header__search-input::-moz-placeholder {
  color: #999;
}
.header__search-input::placeholder {
  color: #999;
}

.header__search-btn {
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.header__search-btn img {
  width: 15px;
  height: 15px;
}

/* Phone */
.header__phone {
  flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .header__phone {
    display: none;
  }
}

.header__phone-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__phone-icon {
  width: 20px;
  height: 20px;
  transform: rotate(13.19deg);
}

.header__phone-number {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) {
  .header__phone-number {
    font-size: 1.625rem;
  }
}

.header__phone-time {
  font-size: 10px;
  font-weight: 500;
  color: #111;
  margin-top: 6px;
  white-space: nowrap;
}

/* CTA */
.header__cta {
  display: flex;
  align-self: flex-start;
  flex-shrink: 0;
  gap: 6px;
  margin-left: auto;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .header__cta {
    width: 50%;
    background-color: #eee;
  }
}
@media screen and (max-width: 834px) {
  .header__cta {
    display: none;
  }
}

.header__cta-contact,
.header__cta-cad {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 79px;
  padding: 0 12px;
  border-radius: 0.375rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.45);
  color: #fff;
  gap: 2px;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__cta-contact,
  .header__cta-cad {
    width: 50%;
    height: 60px;
  }
}

.header__cta-contact {
  background: #161a85;
}

.header__cta-cad {
  background: #ea0437;
}

.header__cta-contact-icon,
.header__cta-cad-icon {
  flex-shrink: 0;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__cta-contact-icon {
  width: auto;
  height: 22px;
}
@media screen and (max-width: 1024px) {
  .header__cta-contact-icon {
    height: 20px;
  }
}

.header__cta-cad-icon {
  width: auto;
  height: 30px;
  filter: invert(1);
}
@media screen and (max-width: 1024px) {
  .header__cta-cad-icon {
    height: 20px;
  }
}

.header__cta-contact-text,
.header__cta-cad-member,
.header__cta-cad-title {
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.header__cta-contact-text,
.header__cta-cad-title {
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .header__cta-contact-text,
  .header__cta-cad-title {
    font-size: 14px;
  }
}

.header__cta-cad-member {
  font-size: 11px;
  letter-spacing: 0.6px;
}

.header__cta-cad-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  min-height: 22px;
}
@media screen and (max-width: 1024px) {
  .header__cta-cad-main {
    min-height: 20px;
  }
}
.header__cta-cad-main.header__cta-contact-main {
  gap: 0 20px;
}

.header__cta-cad-sub {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

/* Navigation */
.header__nav {
  background: #161a80;
  height: 3.25rem;
  position: relative;
  z-index: 99;
  transition: 0.4s;
}
@media screen and (min-width: 52.1875rem) {
  .header.is-nav-fixed .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.4);
  }
}
@media screen and (max-width: 834px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 92%;
    max-width: 18.75rem;
    height: 100vh;
    height: 100dvh;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    padding-top: 4.75rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
@media screen and (max-width: 834px) and (max-width: 600px) and (orientation: portrait) {
  .header__nav {
    padding-top: 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .header__nav.is-open {
    left: 0;
  }
}

/* fixed 時に main が跳ねないようナビ分の高さを確保（52.1875rem 以上のみ） */
.header__nav-scroll-placeholder {
  display: none;
}
@media screen and (min-width: 52.1875rem) {
  .header__nav-scroll-placeholder {
    display: block;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: height 0.15s ease;
  }
}

@media screen and (min-width: 52.1875rem) {
  .header.is-nav-fixed .header__nav-scroll-placeholder {
    height: 3.25rem;
  }
}

.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1.875rem;
}
@media screen and (max-width: 1200px) {
  .header__nav-inner {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .header__nav-inner {
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
    padding: 0 1rem 1.5rem;
    box-sizing: border-box;
    height: auto;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1400px) {
  .header__nav-list {
    gap: 1rem;
  }
}
@media screen and (max-width: 834px) {
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
}

@media screen and (max-width: 834px) {
  .header__nav-item {
    width: 100%;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15);
  }
}

.header__nav-item--drawer-only {
  display: none;
}
@media screen and (max-width: 834px) {
  .header__nav-item--drawer-only {
    display: block;
  }
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: visible;
  transition: opacity 0.3s ease;
  height: 51px;
  border-bottom: solid 1.5px #161a85;
  transition: 0.4s;
}
@media screen and (max-width: 1500px) {
  .header__nav-link {
    font-size: 13px;
  }
}
.header__nav-link.current {
  border-bottom: solid 1.5px #ea0437;
}
@media screen and (max-width: 834px) {
  .header__nav-link.current {
    border: none;
  }
}
@media (hover: hover) {
  .header__nav-link:hover {
    color: #fff;
    border-bottom: solid 0.0938rem #ea0437;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-link {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 834px) {
  .header__nav-link {
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 1.125rem 0.25rem 1.125rem 0;
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
    border-bottom: none;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 834px) and (hover: hover) {
  .header__nav-link:hover {
    border-bottom: none;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .header__nav-link {
    padding: 0.9375rem 0.25rem 0.9375rem 0;
    font-size: 0.8125rem;
  }
}

.header__nav-arrow {
  width: 0.375rem;
  height: 0.625rem;
  transform: rotate(90deg);
  margin-left: 0.3125rem;
  display: block;
}
@media screen and (max-width: 834px) {
  .header__nav-arrow {
    margin-left: 0;
    margin-right: 0;
  }
}

.header__nav-mega-row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .header__nav-mega-row {
    width: 100%;
  }
}

@media screen and (max-width: 834px) {
  .header__nav-item--mega .header__nav-link {
    flex: 1 1 auto;
    width: auto;
  }
}

.header__nav-mega-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .header__nav-mega-toggle {
    align-self: stretch;
    min-width: 2.75rem;
    padding: 0 0.625rem 0 0.5rem;
  }
}

@media screen and (max-width: 834px) {
  .header__nav-item--mega.is-megaopen .header__nav-mega-toggle .header__nav-arrow {
    transform: rotate(-90deg);
  }
}

.header__nav-external {
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 0.1875rem;
}

.header__nav-right {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 834px) {
  .header__nav-right {
    margin-top: 0;
    width: 100%;
    padding-top: 0;
  }
}

.header__nav-sitemap {
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  overflow: visible;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 834px) {
  .header__nav-sitemap {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 1.125rem 0.25rem 1.125rem 0;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .header__nav-sitemap {
    font-size: 0.8125rem;
    font-weight: normal;
  }
}
@media (hover: hover) {
  .header__nav-sitemap:hover {
    opacity: 0.7;
    color: #fff;
  }
}

/* スマホドロワー下部：会社・本社情報 */
.header__nav-company {
  display: none;
}
@media screen and (max-width: 834px) {
  .header__nav-company {
    display: block;
    margin-top: auto;
    flex-shrink: 0;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    padding: 1.375rem 1rem 6.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.12);
  }
}

.header__nav-company__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.header__nav-company__logo {
  flex-shrink: 0;
  height: 1.5rem;
  width: auto;
  display: block;
}

.header__nav-company__name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.header__nav-company__label {
  margin: 0 0 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.header__nav-company__addr {
  margin: 0 0 0.625rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.625rem;
}

.header__nav-company__addr-text {
  flex: 1 1 192px;
  min-width: 0;
}

.header__nav-company__map {
  display: inline-block;
  flex-shrink: 0;
  background: #ea0437;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  line-height: 1.3;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header__nav-company__map:hover {
    opacity: 0.88;
    color: #fff;
  }
}

.header__nav-company__tel {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.header__nav-company__tel a {
  color: #fff;
}

/* Hamburger */
/* SP Search Icon */
.header__sp-search {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 834px) {
  .header__sp-search {
    display: flex;
    margin-left: auto;
    margin-right: 3.125rem;
  }
}
.header__sp-search img {
  width: 1.375rem;
  height: 1.375rem;
}

/* Hamburger */
.header__hamburger {
  display: none;
  position: fixed;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0.125rem solid #161a85;
  border-radius: 0.1875rem;
  background: #161a85;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
}
@media screen and (max-width: 834px) {
  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0.625rem;
  }
}

.header__hamburger-line {
  display: block;
  width: 1.25rem;
  height: 0.0938rem;
  background: #fff;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.header__hamburger-line:nth-child(1) {
  top: 0.625rem;
}
.header__hamburger-line:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__hamburger-line:nth-child(3) {
  bottom: 0.625rem;
}

.header__hamburger.is-active {
  background: #fff;
  border-color: #fff;
}
.header__hamburger.is-active .header__hamburger-line {
  background: #161a85;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* Overlay */
.header__overlay {
  display: none;
}
@media screen and (max-width: 834px) {
  .header__overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }
}

/* Search Drawer */
.header__search-drawer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1100;
  padding: 0.625rem 0.9375rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.header__search-drawer.is-open {
  transform: translateY(0);
}

.header__search-drawer-form {
  display: flex;
  align-items: center;
  height: 2.75rem;
  border: 0.0625rem solid #ccc;
  border-radius: 6.25rem;
  overflow: hidden;
  background: #fff;
}

.header__search-drawer-category {
  display: flex;
  align-items: center;
  background: #161a85;
  height: 100%;
  padding: 0 0.625rem 0 1rem;
  border-radius: 6.25rem 0 0 6.25rem;
  flex-shrink: 0;
}
.header__search-drawer-category select {
  color: #fff;
  font-size: 0.6875rem;
  font-weight: bold;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1.0125L1.0125 0L5 3.9781L8.9875 0L10 1.0125L5 6Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 0.5rem 0.3125rem;
  border: none;
  padding-right: 0.875rem;
  cursor: pointer;
}
.header__search-drawer-category select option {
  color: #111;
  background-color: #fff;
}

.header__search-drawer-input {
  flex: 1;
  border: none;
  font-size: 0.875rem;
  color: #111;
  padding: 0 0.625rem;
  min-width: 0;
}
.header__search-drawer-input::-moz-placeholder {
  color: #999;
}
.header__search-drawer-input::placeholder {
  color: #999;
}

.header__search-drawer-btn {
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__search-drawer-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.375rem;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.25rem;
}

/* ==============================

  Mega Menu

============================== */
.header__nav-item--mega {
  position: static;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(128.24deg, rgb(22, 26, 133) 30.55%, rgb(5, 6, 31) 106.84%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.625rem);
  /*transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;*/
  z-index: 900;
  padding: 2.1875rem 0 2.8125rem;
}
@media screen and (max-width: 834px) {
  .megamenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0.9375rem 0;
    background: rgba(22, 26, 133, 0.3);
  }
}

.header__nav-item--mega.is-megaopen > .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 834px) {
  .header__nav-item--mega.is-megaopen > .megamenu {
    display: block;
  }
}

.megamenu__close {
  position: absolute;
  top: 0.9375rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: none;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .megamenu__close:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 834px) {
  .megamenu__close {
    display: none;
  }
}

.megamenu__container {
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .megamenu__container {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .megamenu__container {
    padding: 0;
  }
}

.megamenu__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 1200px) {
  .megamenu__inner {
    gap: 0;
  }
}
@media screen and (max-width: 834px) {
  .megamenu__inner {
    grid-template-columns: 1fr;
  }
}

.megamenu__footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 1200px) {
  .megamenu__footer {
    gap: 0;
  }
}
@media screen and (max-width: 834px) {
  .megamenu__footer {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-top: 1rem;
    padding: 0 0.9375rem 0;
  }
}

.megamenu__footer-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.125rem;
  padding: 0.875rem 1.125rem;
  border-radius: 0.375rem;
  background: #fff;
  color: #161a85;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.0313rem;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .megamenu__footer-btn:hover {
    opacity: 0.85;
    color: #161a85;
  }
}
@media screen and (max-width: 1200px) {
  .megamenu__footer-btn {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
}
@media screen and (max-width: 834px) {
  .megamenu__footer-btn {
    min-height: 2.875rem;
  }
}
.megamenu__footer-btn:nth-child(1) {
  grid-column: 1;
}
.megamenu__footer-btn:nth-child(2) {
  grid-column: 2;
}
@media screen and (max-width: 834px) {
  .megamenu__footer-btn:nth-child(1), .megamenu__footer-btn:nth-child(2) {
    grid-column: auto;
  }
}

.megamenu__footer-arrow {
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  margin-top: -0.0625rem;
  transform: rotate(45deg);
  border-top: 0.125rem solid #161a85;
  border-right: 0.125rem solid #161a85;
}

.megamenu__col {
  padding: 1.875rem;
  border-radius: 0.625rem;
  background-color: rgba(255, 255, 255, 0.1);
}
.megamenu__col:last-child {
  border-right: none;
  padding-right: 0;
}
@media screen and (max-width: 1200px) {
  .megamenu__col {
    padding: 0 1.25rem;
  }
}
@media screen and (max-width: 834px) {
  .megamenu__col {
    padding: 0.625rem 0.9375rem;
    border-right: none;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
  }
  .megamenu__col:first-child {
    padding-left: 0.9375rem;
  }
}
@media screen and (max-width: 834px) and (max-width: 600px) and (orientation: portrait) {
  .megamenu__col:first-child {
    padding-left: 0rem;
  }
}
@media screen and (max-width: 834px) {
  .megamenu__col:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .megamenu__col {
    padding: 1.25rem 0;
  }
}

.megamenu__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 834px) {
  .megamenu__head {
    margin-bottom: 0.625rem;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .megamenu__head {
    background-color: rgba(0, 0, 0, 0.12);
  }
}

.megamenu__thumb {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 0.375rem;
  flex-shrink: 0;
  padding: 0.3125rem;
}
@media screen and (max-width: 1200px) {
  .megamenu__thumb {
    width: 3.75rem;
    height: 2.8125rem;
  }
}
.megamenu__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.megamenu__title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.0313rem;
  line-height: 1.4;
}
@media screen and (max-width: 1200px) {
  .megamenu__title {
    font-size: 0.875rem;
  }
}
.megamenu__title a {
  color: #fff;
}

.megamenu__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.megamenu__category-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.0313rem;
  overflow: visible;
  transition: opacity 0.3s ease;
}
.megamenu__category-link::before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 0.0625rem;
  background: #fff;
  flex-shrink: 0;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .megamenu__category-link::before {
    width: 0.625rem;
  }
}
@media (hover: hover) {
  .megamenu__category-link:hover {
    opacity: 0.7;
    color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .megamenu__category-link {
    font-size: 0.8125rem;
  }
}

.megamenu__sub-list {
  padding: 0.375rem 0 0 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.megamenu__sub-list li {
  position: relative;
  padding-left: 0.875rem;
}
.megamenu__sub-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%);
}
.megamenu__sub-list a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  overflow: visible;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .megamenu__sub-list a:hover {
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.85);
  }
}
@media screen and (max-width: 1200px) {
  .megamenu__sub-list a {
    font-size: 0.75rem;
  }
}

#back-top {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 9999;
}

.footer {
  background: #161a85;
  padding-top: 24px;
}

.footer__nav {
  padding: 20px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 834px) {
  .footer__nav-list {
    justify-content: flex-start;
    padding: 0 20px;
  }
}

.footer__nav-link {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.7px;
  transition: opacity 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 834px) {
  .footer__nav-link {
    font-size: 12px;
    font-weight: 500;
  }
}
@media (hover: hover) {
  .footer__nav-link:hover {
    opacity: 0.7;
    color: #fff;
  }
}

.footer__nav-arrow-down {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
  margin-top: -4px;
  margin-left: 2px;
}

.footer__nav-external {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
  margin-left: 2px;
}
@media screen and (max-width: 834px) {
  .footer__nav-external {
    width: 10px;
    height: 10px;
  }
}

.footer__content {
  display: flex;
  gap: 20px;
  padding: 30px 50px;
}
@media screen and (max-width: 1024px) {
  .footer__content {
    flex-direction: column;
    padding: 30px 30px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .footer__content {
    padding: 20px 15px;
  }
}

.footer__col-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col-right {
  flex: 1;
}

.footer__box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px 24px;
}

.footer__box-title {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 23px;
}
.footer__box-title a {
  color: #fff;
  text-decoration: none;
}

.footer__box-arrow {
  border-color: #fff;
}

.footer__box-grid {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .footer__box-grid {
    flex-direction: column;
    gap: 0;
  }
}

.footer__box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 10px;
}
.footer__box-list li {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 22px;
  padding-left: 14px;
  position: relative;
}
.footer__box-list li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__box-list li a:hover {
    opacity: 0.7;
    color: #fff;
  }
}
.footer__box-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.footer__box-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}

.footer__product-list {
  margin-top: 10px;
}
.footer__product-list a {
  color: #fff;
  text-decoration: none;
}
.footer__product-list dt {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 26px;
  padding-left: 14px;
  position: relative;
}
.footer__product-list dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}
.footer__product-list dd {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 26px;
  margin-left: 14px;
}

.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 50px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 1024px) {
  .footer__bottom {
    flex-direction: column;
    gap: 30px;
    padding: 24px 30px 30px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .footer__bottom {
    padding: 20px 15px 25px;
  }
}

.footer__bottom-left {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 834px) {
  .footer__bottom-left {
    flex-direction: column;
    gap: 16px;
  }
}

.footer__logo {
  flex-shrink: 0;
  height: 27px;
  width: auto;
}

.footer__address-label {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 23px;
  letter-spacing: 0.39px;
}

.footer__address-text {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 23px;
  letter-spacing: 0.39px;
}
.footer__address-text a {
  color: #fff;
}

.footer__map-link {
  display: inline-block;
  background: #ea0437;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 0 10px;
  line-height: 17px;
  text-decoration: none;
  margin-left: 8px;
  vertical-align: middle;
  transition: opacity 0.3s ease;
}
.footer__map-link:hover {
  opacity: 0.8;
}

.footer__bottom-right {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__bottom-right {
    text-align: left;
  }
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .footer__bottom-links {
    justify-content: flex-start;
  }
}

.footer__bottom-link {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  line-height: 21px;
  transition: opacity 0.3s ease;
}
.footer__bottom-link:hover {
  opacity: 0.7;
}

.footer__copyright {
  font-size: 11px;
  font-weight: 400;
  color: #cbcbcb;
  letter-spacing: 1.1px;
  line-height: 21px;
  margin-top: 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .footer__copyright {
    font-size: 10px;
  }
}

/* ==============================

	  共通

  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071bc;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    color: #666;
  }
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.red {
  color: #c00;
}

ul li {
  list-style: none;
}

.alpha {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .alpha:hover {
    opacity: 0.7;
  }
}

.wrap-alpha a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .wrap-alpha a:hover {
    opacity: 0.7;
  }
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.6) 0%);
  font-weight: bold;
}

.bd-02 {
  background: linear-gradient(transparent 60%, rgba(228, 0, 3, 0.4) 0%);
  font-weight: bold;
}

.bd-03 {
  background: linear-gradient(transparent 60%, rgba(0, 65, 219, 0.5) 0%);
  font-weight: bold;
}

.cursor {
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

.link a {
  color: #0071bc;
}
.link a:hover {
  color: #ffb700;
}

@media screen and (max-width: 600px) and (orientation: portrait) {
  .pc-only {
    display: none;
  }
}

/** ***********************************************

COMMON

*********************************************** **/
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 1rem;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  body {
    font-size: 0.875rem;
  }
}
body {
  letter-spacing: 0.5px;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

#wrapper {
  position: relative;
}

.inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.wrap-flex {
  display: flex;
}
.wrap-flex .col {
  width: 50%;
}
.wrap-flex.flex-3 .col {
  width: 33.3333333333%;
}
.wrap-flex.flex-4 .col {
  width: 25%;
}

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

@media screen and (max-width: 834px) {
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }
}
/* ==============================

  Hero

============================== */
.hero {
  position: relative;
  background: #e8eef2;
}

.hero__slider {
  height: 710px;
  max-height: calc(100dvh - 190px);
}
@media screen and (max-width: 1024px) {
  .hero__slider {
    height: 550px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slider {
    height: 420px;
  }
}
.hero__slider .slick-list {
  height: 100%;
}
.hero__slider .slick-track {
  height: 100%;
}

.hero__slide {
  position: relative;
  height: 710px;
  outline: none;
}
@media screen and (max-width: 1024px) {
  .hero__slide {
    height: 550px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slide {
    height: 420px;
  }
}

.hero__slide-img {
  position: absolute;
  top: 30px;
  right: 30px;
  bottom: 10px;
  left: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 40px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
  display: block;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slide-img {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-radius: 8px;
  }
}

.hero__slide-overlay {
  position: absolute;
  inset: 0;
  margin: 30px 30px 10px;
  border-radius: 10px;
  background: linear-gradient(90.29deg, rgba(22, 26, 133, 0.85) 12.96%, rgba(22, 26, 133, 0.15) 55.9%);
  pointer-events: none;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slide-overlay {
    margin: 15px;
    border-radius: 8px;
    background: linear-gradient(90.29deg, rgba(22, 26, 133, 0.6) 20%, rgba(22, 26, 133, 0.6) 75%);
  }
}

.hero__slide-content {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  max-width: 640px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .hero__slide-content {
    left: 60px;
    max-width: 480px;
  }
}
@media screen and (max-width: 1024px) {
  .hero__slide-content {
    left: 50px;
    max-width: 420px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slide-content {
    left: 30px;
    right: 30px;
    max-width: none;
  }
}

.hero__slide-title {
  font-size: 46px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 2.76px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1400px) {
  .hero__slide-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 1024px) {
  .hero__slide-title {
    font-size: 30px;
    letter-spacing: 1.5px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slide-title {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
}

.hero__slide-text {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 0.8px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .hero__slide-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slide-text {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}

.hero__slide-btn {
  display: flex;
  max-width: 300px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 60px;
  padding: 0 35px;
  background: #ea0437;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 100px;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: visible;
  position: relative;
}
.hero__slide-btn:hover {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .hero__slide-btn {
    height: 56px;
    padding: 0 28px;
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slide-btn {
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
  }
}

.hero__slide-btn-arrow {
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L10 10L2 18' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  top: calc(50% - 7.5px);
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__slide-btn-arrow {
    width: 10px;
    height: 16px;
  }
}

.slider-ctrl {
  position: relative;
}
.slider-ctrl.is-ctrl-hidden {
  display: none;
}

.slider-ctrl__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
}

.slider-ctrl__prev,
.slider-ctrl__next {
  width: 30px;
  height: 30px;
  border: 1px solid #999;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
@media (hover: hover) {
  .slider-ctrl__prev:hover,
  .slider-ctrl__next:hover {
    border-color: #333;
    background-color: #fff;
  }
}
.slider-ctrl__prev::after,
.slider-ctrl__next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #666;
  border-right: 1.5px solid #666;
}

.slider-ctrl__prev::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.slider-ctrl__next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}

.slider-ctrl__toggle-auto {
  width: 30px;
  height: 30px;
  border: 1px solid #999;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  padding: 0;
  transition: 0.3s;
}
@media (hover: hover) {
  .slider-ctrl__toggle-auto:hover {
    border-color: #333;
    background-color: #fff;
  }
}
.slider-ctrl__toggle-auto::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 10px;
  background: #666;
  transform: translate(calc(-50% - 3px), -50%);
  box-shadow: 6px 0 0 #666;
}
.slider-ctrl__toggle-auto.is-paused::before {
  width: 0;
  height: 0;
  background: none;
  box-shadow: none;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #666;
  transform: translate(-35%, -50%);
}

.slider-ctrl__counter {
  font-size: 13px;
  color: #111;
  letter-spacing: 0.65px;
  margin-left: 4px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .slider-ctrl__counter {
    font-size: 11px;
    display: none;
  }
}

.slider-ctrl__dots {
  position: absolute;
  top: 50%;
  left: calc(50% - 60px);
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .slider-ctrl__dots {
    left: calc(50% - 30px);
  }
}
.slider-ctrl__dots ul {
  display: flex !important;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}
.slider-ctrl__dots ul li {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}
.slider-ctrl__dots ul li button {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #aaa;
  border: none;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-ctrl__dots ul li.slick-active button {
  width: 30px;
  border-radius: 5px;
  background: #ea0437;
}

/* Hero Controls (overrides) */
.hero__controls {
  padding: 12px 30px 20px;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .hero__controls {
    padding: 8px 15px 15px;
  }
}

.news-section {
  padding: 60px 0 80px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .news-section {
    padding: 40px 0 50px;
  }
}

.news-section__inner {
  display: flex;
  gap: 100px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .news-section__inner {
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .news-section__inner {
    padding: 0 15px;
    gap: 40px;
  }
}

.news-section__left {
  flex: 0 0 46%;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .news-section__left {
    flex: none;
    width: 100%;
  }
}

.news-section__right {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .news-section__right {
    width: 100%;
  }
}

.news-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.news-section__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #111;
  letter-spacing: 0.9px;
}

.news-section__link {
  font-size: 0.8125rem;
  font-weight: bold;
  color: #161a85;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.news-section__link:hover {
  opacity: 0.7;
}

.link-arrow {
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  border-top: solid 1px #161a85;
  border-right: solid 1px #161a85;
  margin-right: 5px;
  margin-left: 2px;
  margin-top: -2px;
  display: inline-block;
  vertical-align: middle;
}

.news-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #111;
  margin-top: 10px;
}

.news-section__item {
  padding: 18px 8px 18px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .news-section__item {
    padding: 10px 8px 10px;
  }
}

.news-section__item-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
}

.news-section__date {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.65px;
  line-height: 16px;
  margin-right: 5px;
}

.icon-new {
  display: inline-block;
  background: #ea0437;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding: 1px 10px;
}

.icon-cat {
  display: block;
}
.icon-cat a {
  color: #111;
  display: block;
  border: solid 0.5px #111;
  border-radius: 3px;
  color: #111;
  font-size: 10px;
  font-weight: bold;
  padding: 1px 10px;
}
@media (hover: hover) {
  .icon-cat a:hover {
    background-color: #f5f5f5;
  }
}

.news-section__item-title {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #161a85;
  letter-spacing: 1px;
  line-height: 1.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .news-section__item-title:hover {
    opacity: 0.7;
  }
}

.pickup {
  margin-top: 12px;
  border-top: 1px solid #111;
  padding-top: 30px;
}

.pickup__slider .slick-list {
  margin: 0 -8px;
}
.pickup__slider .slick-slide {
  padding: 0 8px;
}

.pickup__card {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.pickup__card:hover {
  opacity: 0.8;
}

.pickup__card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.pickup__card-name {
  font-size: 15px;
  font-weight: bold;
  color: #111;
  letter-spacing: 0.65px;
  line-height: 16px;
  text-align: center;
  padding: 10px;
}

/* Pickup Controls (overrides) */
.pickup__controls {
  margin-top: 16px;
}

.topics {
  background: #e8eef2;
  padding: 50px 0 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .topics {
    padding: 40px 0 20px;
  }
}

.topics__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .topics__inner {
    padding: 0 15px;
  }
}

.topics__header {
  display: flex;
  align-items: baseline;
  gap: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #111;
}
@media screen and (max-width: 834px) {
  .topics__header {
    flex-direction: column;
    gap: 8px;
  }
}

.topics__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .topics__title {
    font-size: 1.25rem;
  }
}

.topics__desc {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.75px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .topics__desc {
    font-size: 0.875rem;
  }
}

.topics__slider {
  margin-top: 30px;
}
.topics__slider .slick-list {
  margin: 0 -10px;
}
.topics__slider .slick-slide {
  padding: 0 10px;
}

.topics__card {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.topics__card:hover {
  opacity: 0.8;
}

.topics__card-thumb {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .topics__card-thumb {
    height: 200px;
  }
}
.topics__card-thumb.tip-articles__thumb {
  aspect-ratio: auto;
  margin: 0;
  border: none;
}
.topics__card-thumb.no-img {
  background-color: #fff;
  background-image: url(../images/logomark.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80px;
}

.topics__card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.topics__card-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #ea0437;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.6px;
  padding: 2px 14px;
  line-height: 22px;
  border-radius: 6px 0 0 0;
}

.topics__card-date {
  display: block;
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.topics__card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.8px;
  line-height: 26px;
  margin-top: 6px;
}

/* Topics Controls (overrides) */
.topics__controls {
  margin-top: 34px;
}

.topics__more {
  text-align: center;
  margin-top: 30px;
  transform: translateY(40px);
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .topics__more {
    margin-top: 0px;
  }
}

.topics__more-arrow {
  border-color: #fff;
  border-width: 1.5px;
  width: 8px;
  height: 8px;
  margin-top: 0;
}

.product-search {
  padding: 80px 0 80px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search {
    padding: 60px 0 50px;
  }
}

.product-search__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__inner {
    padding: 0 15px;
  }
}

.product-search__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
  letter-spacing: 1.2px;
  padding-bottom: 16px;
  border-bottom: 1px solid #111;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__title {
    font-size: 1.25rem;
  }
}

.product-search__box {
  margin-top: 50px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 25px 30px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__box {
    padding: 15px;
    margin-top: 30px;
  }
}

.product-search__form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  height: 56px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__form {
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.product-search__category {
  flex-shrink: 0;
}
.product-search__category select {
  height: 100%;
  padding: 0 30px 0 20px;
  background-color: #161a85;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 1.0125L1.0125 0L5 3.9781L8.9875 0L10 1.0125L5 6Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 7px 0 0 7px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.product-search__category select option {
  color: #111;
  background: #fff;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__category select {
    width: 100%;
    max-width: 100px;
    border-radius: 7px;
    border-right: 1px solid #ccc;
    height: 48px;
    font-size: 12px;
    padding: 0 20px 0 10px;
  }
}

.product-search__input {
  flex: 1;
  min-width: 0;
  padding: 0 20px;
  border: 1px solid #ccc;
  border-left: none;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  background: #fff;
  border-radius: 0 7px 7px 0;
}
.product-search__input::-moz-placeholder {
  color: #999;
  letter-spacing: 0.8px;
}
.product-search__input::placeholder {
  color: #999;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__input::-moz-placeholder {
    font-size: 12px;
  }
  .product-search__input::placeholder {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 7px;
    height: 48px;
    font-size: 14px;
    padding: 0 10px;
  }
}

.product-search__submit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  background: #111;
  border: none;
  border-radius: 7px;
  color: #fff;
  margin-left: 20px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .product-search__submit:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__submit {
    width: 100%;
    height: 48px;
    margin-left: 0;
    font-size: 14px;
  }
}

.product-search__tabs {
  display: flex;
  gap: 8px;
  margin-top: 50px;
  justify-content: center;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__tabs {
    gap: 4px;
    margin-top: 30px;
  }
}

.product-search__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 72px;
  background: #161a85;
  border: none;
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.9px;
  cursor: pointer;
  transition: background 0.3s ease;
  max-width: 350px;
  position: relative;
  transform: translateY(-4px);
}
@media (hover: hover) {
  .product-search__tab:hover {
    opacity: 0.9;
  }
}
.product-search__tab.is-active {
  background: #ea0437;
  transform: translateY(0px);
}
@media screen and (max-width: 834px) {
  .product-search__tab {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__tab {
    height: auto;
    padding: 10px;
    font-size: 11px;
    line-height: 1.4;
    display: block;
  }
}

.product-search__tab-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 8%;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__tab-arrow {
    display: none;
  }
}

.product-search__panel {
  display: none;
  padding-top: 10px;
  border-top: 4px solid #ea0437;
}
.product-search__panel.is-active {
  display: block;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-search__panel {
    border-top: 3px solid #ea0437;
  }
}

.product-search__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .product-search__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .product-search__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .product-search__grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  display: block;
  text-decoration: none;
  border: 1px solid #d9d9d9;
  transition: 0.3s ease;
  border-radius: 4px;
}
@media (hover: hover) {
  .product-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    opacity: 1;
    border: 1px solid #111;
  }
}

.product-card__thumb {
  width: 100%;
  height: 172px;
  background: #e8eef2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.product-card__name {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  letter-spacing: 0.9px;
  line-height: 31px;
  padding: 12px 16px 0;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .product-card__name {
    font-size: 15px;
    line-height: 20px;
  }
}

.product-card__arrow {
  margin-left: 4px;
  margin-top: -3px;
}

.product-card__desc {
  font-size: 14px;
  font-weight: 400;
  color: #111;
  letter-spacing: 0.7px;
  line-height: 22px;
  padding: 6px 16px 16px;
}

.product-search__more {
  text-align: center;
  margin-top: 50px;
}

.product-search__more-arrow {
  border-color: #fff;
  border-width: 1.5px;
  width: 8px;
  height: 8px;
  margin-top: 0;
}

/*
.list-purpose {
  background-color: #f5f5f5;
  padding: 30px;
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  li {
    position: relative;
  }
  a {
    font-weight: bold;
    display: block;
    border: solid 1px #ccc;
    border-radius: 5px;
    padding: 10px 30px;
    transition: 0.3s;
    background-color: #fff;
    position: relative;
    &::after {
      content: "";
      position: absolute;
      right: 10px;
      top: calc(50% - 4px);
      width: 8px;
      height: 8px;
      border-right: 1.5px solid $link-color;
      border-bottom: 1.5px solid $link-color;
      transform: rotate(-45deg);
    }
    &:hover {
      @media (hover: hover) {
        opacity: 0.8;
        color: $link-color;
      }
    }
  }
}
*/
.wrap-purpose {
  padding: 0 50px;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wrap-purpose {
    padding: 0;
  }
}
.wrap-purpose .title-purpose {
  font-weight: bold;
  margin-bottom: 15px;
  color: #161a85;
  margin-top: 30px;
  font-size: 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wrap-purpose .title-purpose {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
.wrap-purpose .list-purpose {
  background-color: #eaebfa;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wrap-purpose .list-purpose {
    padding: 10px;
    margin-top: 10px;
  }
}
.wrap-purpose .list-purpose li {
  position: relative;
}
.wrap-purpose .list-purpose a {
  font-weight: bold;
  display: block;
  border: solid 1px #ccc;
  border-radius: 5px;
  padding: 10px 30px;
  transition: 0.3s;
  background-color: #fff;
  position: relative;
}
.wrap-purpose .list-purpose a::after {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #0071bc;
  border-bottom: 1.5px solid #0071bc;
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .wrap-purpose .list-purpose a:hover {
    opacity: 0.8;
    color: #0071bc;
  }
}

.others {
  background: #e8eef2;
  padding: 60px 0;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .others {
    padding: 40px 0;
  }
}

.others__inner {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 834px) {
  .others__inner {
    gap: 16px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .others__inner {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
    gap: 20px;
  }
}

.others__card {
  position: relative;
  display: block;
  width: 298px;
  height: 298px;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .others__card {
    width: 100%;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .others__card {
    max-width: 320px;
    width: 100%;
    height: 150px;
  }
}

.others__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.others__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 26, 133, 0.7);
  transition: background 0.3s ease;
}
.others__card:hover .others__card-overlay {
  background: rgba(22, 26, 133, 0.55);
}

.others__card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.others__card-icon {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .others__card-icon {
    width: 60px;
    height: 60px;
  }
}

.others__card-label {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.9px;
  white-space: nowrap;
  margin-top: 8px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .others__card-label {
    font-size: 16px;
  }
}

.others__card-arrow {
  border-color: #fff;
}

.aboutus {
  position: relative;
  display: flex;
  min-height: 536px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .aboutus {
    flex-direction: column;
    min-height: auto;
  }
}

.aboutus__img {
  width: 62%;
  flex-shrink: 0;
}
.aboutus__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1024px) {
  .aboutus__img {
    width: 55%;
  }
}
@media screen and (max-width: 834px) {
  .aboutus__img {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .aboutus__img {
    height: 220px;
  }
}

.aboutus__overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 54%;
  height: 100%;
  background: #161a85;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .aboutus__overlay {
    width: 60%;
    padding-left: 80px;
  }
}
@media screen and (max-width: 834px) {
  .aboutus__overlay {
    position: relative;
    width: 100%;
    clip-path: none;
    padding: 50px 30px 60px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .aboutus__overlay {
    padding: 40px 15px 50px;
  }
}

.aboutus__content {
  max-width: 580px;
  padding: 0 0 0 10%;
}
@media screen and (max-width: 834px) {
  .aboutus__content {
    max-width: 600px;
    padding: 0;
  }
}

.aboutus__company {
  margin-bottom: 20px;
}

.aboutus__company-logo {
  height: 24px;
  width: auto;
  display: block;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .aboutus__company-logo {
    height: 20px;
  }
}

.aboutus__heading {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.5px;
  line-height: 54px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .aboutus__heading {
    font-size: 20px;
    line-height: 40px;
  }
}

.aboutus__text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.54px;
  line-height: 32px;
  margin-top: 24px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .aboutus__text {
    font-size: 14px;
    line-height: 28px;
  }
}

.aboutus__watermark {
  position: absolute;
  bottom: -10px;
  right: 40px;
  height: auto;
  width: 500px;
  pointer-events: none;
  display: block;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .aboutus__watermark {
    width: 100%;
    right: 0;
  }
}

.banners {
  padding: 60px 0;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .banners {
    padding: 40px 0;
  }
}

.banners__inner {
  display: flex;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .banners__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .banners__inner {
    gap: 12px;
    padding: 0 15px;
  }
}

.banners__item {
  flex: 1;
  min-width: 0;
  display: block;
  border-radius: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.banners__item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .banners__item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .banners__item {
    flex: 0 0 100%;
  }
}

.banners__img {
  width: 100%;
  height: auto;
  display: block;
}

.cta {
  background: #f5f5f5;
  padding: 60px 0 70px;
}
@media screen and (max-width: 834px) {
  .cta {
    padding: 40px 0 50px;
  }
}

.cta__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 834px) {
  .cta__inner {
    padding: 0 15px;
  }
}

.cta__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111;
  letter-spacing: 1.2px;
  text-align: center;
}

.cta__desc {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.48px;
  line-height: 28px;
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 834px) {
  .cta__desc {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .cta__desc {
    text-align: left;
  }
}

.cta__columns {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-top: 40px;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .cta__columns {
    gap: 20px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .cta__columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.cta__left {
  flex: 0 0 auto;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .cta__left {
    flex: auto;
    width: 100%;
  }
}

.cta__phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .cta__phone {
    justify-content: center;
  }
}

.cta__phone-icon {
  flex-shrink: 0;
  transform: rotate(13.19deg);
}

.cta__phone-number {
  font-size: 42px;
  color: #111;
  font-weight: bold;
  letter-spacing: 1.38px;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .cta__phone-number {
    font-size: 40px;
  }
}
.cta__phone-number a {
  color: #111;
}

.cta__phone-time {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.48px;
  margin-top: 10px;
  text-align: center;
}

.cta__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ea0437;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  height: 63px;
  padding: 0 30px 0 50px;
  text-decoration: none;
  margin-top: 20px;
  transition: opacity 0.3s ease;
  position: relative;
  border-radius: 4px;
}
@media screen and (max-width: 834px) {
  .cta__contact-btn {
    width: 100%;
    font-size: 15px;
  }
}
.cta__contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media (hover: hover) {
  .cta__contact-btn:hover {
    opacity: 0.8;
    color: #fff;
  }
}

.cta__contact-icon {
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  position: absolute;
  top: 50%;
  left: 20px;
  width: 30px;
  height: auto;
  transform: translateY(-50%);
}

.cta__divider {
  width: 1px;
  background: #ccc;
  align-self: stretch;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .cta__divider {
    width: 100%;
    height: 1px;
  }
}

.cta__right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  min-width: 370px;
  gap: 30px;
  padding-top: 5px;
}
@media screen and (max-width: 834px) {
  .cta__right {
    min-width: 40%;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .cta__right {
    min-width: 0;
    width: 100%;
    gap: 15px;
  }
}

.cta__link-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #ccc;
  height: 63px;
  padding: 0 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative;
  border-radius: 4px;
}
.cta__link-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #111;
  border-right: solid 1.5px #111;
  transform: rotate(45deg) translateY(-50%);
}
@media (hover: hover) {
  .cta__link-btn:hover {
    background: #f0f0f0;
  }
}

.cta__link-icon {
  flex-shrink: 0;
  width: 46px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.cta__link-icon-svg {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}

.cta__link-text {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #222;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .cta__link-text {
    font-size: 0.875rem;
  }
}

.cta__btn-arrow {
  font-size: 16px;
  color: #111;
  flex-shrink: 0;
}

.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #111;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  opacity: 0.8;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 15px;
  }
}
@media screen and (max-width: 834px) {
  .page-top {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    right: 15px;
    z-index: 1003;
  }
}

.sp-footer-bar {
  display: none;
}
@media screen and (max-width: 834px) {
  .sp-footer-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #161a80;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
  }
}

.sp-footer-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  min-height: 60px;
}

.sp-footer-bar__item {
  flex: 1;
  min-width: 0;
  background: #161a80;
}
.sp-footer-bar__item--accent {
  background: #ea0437;
}

.sp-footer-bar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 60px;
  padding: 6px 2px;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .sp-footer-bar__link:hover {
    opacity: 0.88;
    color: #fff;
  }
}

.sp-footer-bar__icon {
  flex-shrink: 0;
  display: block;
}

.sp-footer-bar__label {
  display: block;
  max-width: 100%;
  word-break: keep-all;
}

.products-hero {
  width: 100%;
  background: #fff;
  margin-bottom: 100px;
}

.products-hero__heading {
  position: absolute;
  top: clamp(96px, 12.78vw, 184px);
  left: clamp(20px, 4.65vw, 67px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.78vw, 40px);
}

.products-hero__title {
  margin: 0;
  line-height: 1;
  font-size: clamp(24px, 5vw, 80px);
  font-weight: 500;
  color: #111;
  text-transform: capitalize;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-hero__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }
}

.products-hero__subtitle {
  margin-top: 20px;
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #111;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-hero__subtitle {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
  }
}

.products-hero__media {
  position: absolute;
  top: clamp(24px, 3.47vw, 50px);
  right: 0;
  width: 66.18%;
  height: 81.12%;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-hero__media {
    position: relative;
    top: auto;
    right: auto;
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    background-color: #000;
  }
}

.products-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-hero__img {
    opacity: 0.8;
  }
}

.products-hero__inner {
  position: relative;
  margin: 0 auto;
  min-height: clamp(380px, 37.15vw, 535px);
  background: linear-gradient(to right, #f0f0f0 0, #f0f0f0 55.833%, transparent 55.833%);
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-hero__inner {
    min-height: 0;
  }
}
.products-hero__inner.no-img {
  min-height: 0;
  background: #fff;
  padding: 16px 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-hero__inner.no-img {
    padding: 16px 20px;
  }
}
.products-hero__inner.no-img .products-hero__breadcrumb {
  position: static;
}

/*** ページタイトル ***/
.page-hero {
  background-color: #eaebfa;
  position: relative;
}
.page-hero .inner {
  position: relative;
  max-width: inherit;
  padding: 0;
  display: flex;
  gap: 50px;
  align-items: center;
}
.page-hero .page-title-h1 {
  line-height: 1;
  font-size: clamp(24px, 8vw, 70px);
  font-weight: 500;
  color: #111;
  text-transform: capitalize;
  color: #111;
  width: 40%;
  padding-left: 5%;
}
@media screen and (max-width: 834px) {
  .page-hero .page-title-h1 {
    font-size: 40px;
    width: 30%;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-hero .page-title-h1 {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 10px));
    left: 5%;
    color: #eee;
    font-size: 40px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
}
.page-hero .page-title-h1 .page-subtitle {
  display: block;
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #111;
  margin-top: 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-hero .page-title-h1 .page-subtitle {
    color: #eee;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 500;
  }
}
.page-hero .wrap-img {
  width: 60%;
  min-height: 300px;
}
@media screen and (max-width: 834px) {
  .page-hero .wrap-img {
    min-height: 200px;
    width: 70%;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-hero .wrap-img {
    min-height: 150px;
    width: 100%;
  }
}
.page-hero .wrap-img .title-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 834px) {
  .page-hero .wrap-img .title-img {
    height: 250px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-hero .wrap-img .title-img {
    height: 200px;
  }
}
@media screen and (max-width: 834px) {
  .page-hero.no-img .page-title-h1 {
    color: #111;
    text-shadow: none;
  }
}
@media screen and (max-width: 834px) {
  .page-hero.no-img .page-title-h1 .page-subtitle {
    color: #111;
  }
}

.b-nav {
  margin: 20px 0 50px 5%;
  color: #999;
}
@media screen and (max-width: 834px) {
  .b-nav {
    margin: 10px 0 50px 5%;
  }
}
.b-nav > span {
  display: flex;
  gap: 5px;
}
.b-nav span {
  display: flex;
  gap: 5px;
  font-size: 12px;
  color: #999;
}
@media screen and (max-width: 834px) {
  .b-nav span {
    font-size: 11px;
  }
}
.b-nav span.breadcrumb_last {
  font-weight: 700;
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.b-nav span.breadcrumb_last::after {
  display: none;
}
.b-nav span a {
  font-size: 12px;
  color: #0071bc;
}
@media screen and (max-width: 834px) {
  .b-nav span a {
    font-size: 11px;
  }
}

/* --- left content (breadcrumb + heading) --- */
.products-hero__content {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-hero__content {
    order: 2;
    background: #f0f0f0;
    padding: 10px 10px;
  }
}

.products-hero__breadcrumb {
  position: absolute;
  top: 16px;
  left: 40px;
  font-size: 0.6875rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #999;
}
@media screen and (max-width: 1024px) {
  .products-hero__breadcrumb {
    left: clamp(16px, 2.78vw, 40px);
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-hero__breadcrumb {
    position: static;
    font-size: 11px;
  }
}

.products-hero__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products-hero__breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.products-hero__breadcrumb-link {
  color: #999;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .products-hero__breadcrumb-link:hover {
    opacity: 0.7;
    color: #666;
  }
}

.products-hero__breadcrumb-sep {
  margin: 0 8px;
  color: #c8c8c8;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.products-hero__breadcrumb-current {
  color: #111;
}

.products-nav {
  width: 100%;
  max-width: 1280px;
  margin: clamp(40px, 5.5vw, 80px) auto 0;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .products-nav {
    padding: 0 24px;
  }
}
@media screen and (max-width: 834px) {
  .products-nav {
    padding: 0 16px;
  }
}

.products-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 834px) {
  .products-nav__list {
    flex-wrap: wrap;
    gap: 16px 12px;
  }
}

.products-nav__item {
  flex: 1 1 0;
  min-width: 0;
  background-color: #eee;
  border-radius: 4px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .products-nav__item {
    flex: 0 0 calc((100% - 12px) / 2);
  }
}

.products-nav__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  padding: 8px 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition: opacity 0.2s ease;
  position: relative;
  color: #111;
}
@media (hover: hover) {
  .products-nav__link:hover {
    opacity: 0.7;
  }
  .products-nav__link:hover .products-nav__arrow {
    transform: translateY(3px);
  }
}
@media screen and (max-width: 834px) {
  .products-nav__link {
    gap: 5px;
    padding: 8px 10px 8px 0;
    justify-content: flex-start;
  }
}
.products-nav__link br {
  display: none;
}
@media screen and (max-width: 834px) {
  .products-nav__link br {
    display: block;
  }
}

.products-nav__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(68px, 7.85vw, 113px);
  height: clamp(60px, 6.94vw, 100px);
}

.products-nav__img {
  display: block;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.products-nav__label {
  font-size: clamp(14px, 1.39vw, 16px);
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .products-nav__label {
    white-space: normal;
    font-size: 13px;
  }
}

.products-nav__arrow {
  display: inline-block;
  width: 13px;
  height: 8px;
  flex-shrink: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'><path d='M1 1L6.5 6.5L12 1' stroke='%23111111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center/contain;
  transition: transform 0.2s ease;
}
@media screen and (max-width: 834px) {
  .products-nav__arrow {
    width: 10px;
    height: 6px;
    position: absolute;
    right: 5px;
    top: calc(50% - 3px);
  }
}

/* ==========================================================================
   ページ内リンクのスムーススクロール + sticky header 分のオフセット
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

/* ユーザーの好みで動きを減らす設定のときは無効化 */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* 各カテゴリーセクションは sticky な .header__nav (52px) + α を避けて停止 */
[id=cat-sumpus],
[id=cat-guardrail],
[id=cat-gutter],
[id=cat-other] {
  scroll-margin-top: 72px;
}
@media screen and (max-width: 834px) {
  [id=cat-sumpus],
  [id=cat-guardrail],
  [id=cat-gutter],
  [id=cat-other] {
    scroll-margin-top: 72px;
  }
}

.pd-cat {
  width: 100%;
  margin-top: clamp(48px, 6.94vw, 100px);
}

.pd-cat__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .pd-cat__inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 834px) {
  .pd-cat__inner {
    padding: 0 16px;
  }
}

.pd-cat__head {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 2.78vw, 40px);
  padding-bottom: 16px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-cat__head {
    gap: 12px;
    padding-bottom: 12px;
  }
}

.pd-cat__title {
  margin: 0;
  font-size: clamp(18px, 1.94vw, 28px);
  font-weight: 700;
  color: #111;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.pd-cat__en {
  margin: 0;
  font-size: clamp(13px, 1.11vw, 16px);
  font-weight: 400;
  color: #999;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.pd-cat__desc {
  margin: clamp(32px, 4.4vw, 64px) 0 0;
  padding: 0 4px;
  font-size: clamp(13px, 0.97vw, 14px);
  line-height: 1.9;
  color: #111;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .pd-cat__desc {
    margin-top: 24px;
    line-height: 1.8;
  }
}

.pd-cat__grid {
  display: grid;
  gap: clamp(24px, 3vw, 44px) clamp(16px, 1.9vw, 28px);
  margin-top: clamp(32px, 4.4vw, 60px);
}

.pd-cat__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-cat__grid--2 {
    grid-template-columns: 1fr;
  }
}

.pd-cat__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 834px) {
  .pd-cat__grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-cat__grid--3 {
    grid-template-columns: 1fr;
  }
}

/* --- pd-cat-item (1 製品ブロック) --- */
.pd-cat-item {
  display: flex;
  flex-direction: column;
}

.pd-cat-item__image {
  width: 100%;
  aspect-ratio: 500/320;
  overflow: hidden;
  background: #eaeaea;
}
.pd-cat-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pd-cat-item__image--contain {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #ddd;
  padding: 10px;
  aspect-ratio: 1.6/0.8;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-cat-item__image--contain {
    aspect-ratio: auto;
  }
}
.pd-cat-item__image--contain img {
  display: block;
  width: auto;
  height: auto;
  max-width: 300px;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pd-cat-item__title {
  margin: clamp(18px, 2vw, 28px) 0 0;
  text-align: center;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 700;
  color: #161a85;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.pd-cat-item__title a {
  text-decoration: none;
  color: #161a85;
}

.pd-cat-item__en {
  margin: 6px 0 0;
  text-align: center;
  font-size: clamp(12px, 0.97vw, 14px);
  font-weight: 400;
  color: #999;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.pd-cat-item__list {
  margin-top: clamp(16px, 1.6vw, 22px);
  padding: clamp(18px, 1.9vw, 24px) clamp(20px, 2.4vw, 32px);
  background: #f0f0f0;
}

.pd-cat-item__list-heading {
  margin: 0 0 clamp(8px, 1vw, 14px);
  font-size: clamp(13px, 0.97vw, 14px);
  font-weight: 700;
  color: #111;
  letter-spacing: 0.04em;
}

.pd-cat-item__list-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.83vw, 12px);
}
.pd-cat-item__list-items li {
  position: relative;
  padding-left: 16px;
  font-size: clamp(13px, 0.97vw, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.pd-cat-item__list-items li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #161a85;
}
.pd-cat-item__list-items a {
  color: #161a85;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .pd-cat-item__list-items a:hover {
    text-decoration: underline;
    opacity: 0.8;
  }
}

/* ==========================================================================
   pd-search (製品検索セクション) / Figma 730:233
   ========================================================================== */
.pd-search {
  width: 100%;
  margin-top: clamp(48px, 6.94vw, 100px);
  margin-bottom: 100px;
}

.pd-search__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .pd-search__inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 834px) {
  .pd-search__inner {
    padding: 0 16px;
  }
}

.pd-search__form {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: clamp(28px, 3.5vw, 50px);
  padding: clamp(20px, 2.5vw, 36px) clamp(16px, 2.4vw, 40px);
  background: #f0f0f0;
  border-radius: 6px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-search__form {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.pd-search__category {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-search__category {
    flex: 0 0 100%;
  }
}

.pd-search__select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  height: 100%;
  min-height: 56px;
  padding: 0 42px 0 24px;
  background: #161a85 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 18px center/12px 8px;
  color: #fff;
  border: 0;
  border-radius: 6px 0 0 6px;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-search__select {
    border-radius: 6px;
    width: 100%;
  }
}
.pd-search__select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.pd-search__input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 56px;
  padding: 0 20px;
  background: #fff;
  color: #111;
  border: solid 1px #ddd;
  border-left: none;
  border-radius: 0 6px 6px 0;
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.02em;
  margin-right: 20px;
}
.pd-search__input::-moz-placeholder {
  color: #b0b0b0;
}
.pd-search__input::placeholder {
  color: #b0b0b0;
}
.pd-search__input:focus-visible {
  outline: 2px solid #161a85;
  outline-offset: -2px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-search__input {
    flex: 1 1 100%;
    border: solid 1px #ddd;
    border-radius: 6px;
    margin-right: 0;
  }
}

.pd-search__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 24px;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: clamp(14px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .pd-search__btn:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-search__btn {
    flex: 0 0 100%;
  }
}

.pd-search__btn-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.title-page {
  background-color: #eaebfa;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .title-page {
    flex-wrap: wrap;
    font-size: 18px;
  }
}
.title-page .sub {
  margin-left: 0px;
  margin-right: 10px;
  font-size: 1rem;
}
.title-page .link {
  background-color: #fff;
  padding: 3px 10px;
  border: solid 1px #111;
  border-radius: 4px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  color: #111;
  display: bock;
}
.title-page .link:first-child {
  margin-left: 10px;
}

/* =========================================
 * Product detail block (section-pd-block)
 * ========================================= */
.section-pd-block {
  margin-top: 32px;
}

.pd-detail {
  display: grid;
  grid-template-columns: minmax(0, 528fr) minmax(0, 678fr);
  gap: clamp(24px, 3.5vw, 56px);
  align-items: start;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.pd-detail__gallery {
  min-width: 0;
}

/* ---------- Gallery ---------- */
.pd-gallery {
  display: block;
  position: relative;
}

.pd-gallery__stage {
  position: relative;
}

.pd-gallery__frame {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
}

.pd-gallery__main {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pd-gallery__main.slick-initialized {
  opacity: 1;
}

.pd-gallery__slide {
  position: relative;
  aspect-ratio: 1.6/1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pd-gallery__slide--video {
  cursor: auto;
}

.pd-gallery__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .pd-gallery__img {
    cursor: zoom-in;
  }
}

/* 画像拡大ライトボックス（common.js で表示） */
.pd-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.88);
  -webkit-overflow-scrolling: touch;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  /* visibility は opacity の後で切り替わるようほぼ同じ秒数で */
}

.pd-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .pd-gallery-lightbox {
    transition-duration: 0.01ms;
  }
}
.pd-gallery-lightbox__close {
  position: absolute;
  top: -40px;
  right: -10px;
  transform: translate(calc(100% + 10px), 0);
  z-index: 5;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  pointer-events: auto;
}
@media (hover: hover) {
  .pd-gallery-lightbox__close:hover {
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
  }
}
.pd-gallery-lightbox__close {
  /* 横幅が狭く右に出せないときは画像の直上（画像の外側）へ */
}
@media screen and (max-width: 700px) {
  .pd-gallery-lightbox__close {
    top: auto;
    bottom: calc(100% + 10px);
    right: 0;
    transform: none;
  }
}

.pd-gallery-lightbox__close-x {
  display: block;
  line-height: 0.9;
  font-weight: 300;
}

.pd-gallery-lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* 画像＋閉じるボタン（ボタンは画像枠の外すぐ側：PCは右側、狭い画面は直上） */
.pd-gallery-lightbox__photo {
  position: relative;
  display: inline-block;
  max-width: min(800px, 100%);
  max-height: 80dvh;
  line-height: 0;
  pointer-events: auto;
}

.pd-gallery-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 80dvh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

/* 動画時は inline-block だと非表示 img だけで幅が 0 になるため block で幅を確保 */
.pd-gallery-lightbox__photo.is-video {
  display: block;
  width: 800px;
  max-width: 800px;
  min-width: 280px;
}
@media screen and (max-width: 834px) {
  .pd-gallery-lightbox__photo.is-video {
    width: 100%;
    max-width: 100%;
  }
}
.pd-gallery-lightbox__photo.is-video .pd-gallery-lightbox__img {
  display: none;
}

.pd-gallery-lightbox__video {
  display: block;
  width: 100%;
  line-height: 0;
}
.pd-gallery-lightbox__video[hidden] {
  display: none !important;
}

.pd-gallery-lightbox__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  min-height: 200px;
  background: #000;
}
.pd-gallery-lightbox__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pd-gallery__slide-caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pd-gallery__video {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-gallery__video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.pd-gallery__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pd-gallery__arrow {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 3;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.pd-gallery__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (hover: hover) {
  .pd-gallery__arrow:hover {
    transform: translateY(-50%) scale(1.05);
  }
}

.pd-gallery__arrow--prev {
  left: -15px;
}

.pd-gallery__arrow--next {
  right: -15px;
}

.pd-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  min-height: 34px;
  line-height: 18px;
}
.pd-gallery__caption.is-empty {
  display: none;
}

/* ---------- Thumbs ---------- */
.pd-gallery__thumbs-wrap {
  position: relative;
  margin-top: 8px;
}

.pd-gallery__thumbs {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pd-gallery__thumbs.slick-initialized {
  opacity: 1;
}
.pd-gallery__thumbs .slick-list {
  margin: 0;
  padding: 2px;
  overflow: hidden;
}
.pd-gallery__thumbs .slick-track {
  transition-timing-function: ease-out;
}
.pd-gallery__thumbs .slick-slide {
  box-sizing: border-box;
}

.pd-gallery__thumb {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (hover: hover) {
  .pd-gallery__thumb:hover {
    border-color: rgba(234, 4, 55, 0.5);
  }
}

.pd-gallery__thumb.is-current {
  border-color: #ea0437;
}

.pd-gallery__thumb--video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.pd-gallery__thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.pd-gallery__thumb-play img {
  width: 36px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Thumb slider arrows - only visible when navigable */
.pd-gallery__thumb-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 1px solid #111;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.pd-gallery__thumb-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1.6px solid #111;
  border-right: 1.6px solid #111;
  transform-origin: center;
}
.pd-gallery__thumb-arrow.slick-disabled {
  opacity: 0.3;
  cursor: default;
}
@media (hover: hover) {
  .pd-gallery__thumb-arrow:hover:not(.slick-disabled) {
    background: #111;
  }
  .pd-gallery__thumb-arrow:hover:not(.slick-disabled)::before {
    border-color: #fff;
  }
}

.pd-gallery__thumb-arrow--prev {
  left: -8px;
}
.pd-gallery__thumb-arrow--prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.pd-gallery__thumb-arrow--next {
  right: -8px;
}
.pd-gallery__thumb-arrow--next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.pd-gallery__thumbs-wrap.is-navigable {
  padding: 0 18px;
}
.pd-gallery__thumbs-wrap.is-navigable .pd-gallery__thumb-arrow {
  display: block;
}

/* ---------- Caption footer note ---------- */
.pd-gallery__note {
  margin: 16px 0 0;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pd-gallery__note-icon {
  width: 12px;
  height: 12px;
  display: block;
  margin-right: 3px;
}

/* =========================================
 * Right column (product info)
 * ========================================= */
.pd-detail__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-detail__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #111;
}

.pd-features {
  border: 1px solid #e7d28a;
  background: #fffbea;
  padding: 14px;
}

.pd-features__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-features__icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.pd-features__list {
  margin: 0 0 0 30px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-features__list li {
  font-size: 15px;
  line-height: 1.7;
  color: #111;
}

/* ---------- Action buttons ---------- */
.pd-detail__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #f5f5f5;
  padding: 22px;
}

.pd-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media screen and (max-width: 834px) {
  .pd-btn {
    font-size: 15px;
  }
}
@media (hover: hover) {
  .pd-btn:hover {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-1px);
  }
}

.pd-btn__label {
  color: inherit;
}

.pd-btn__arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-btn__arrow img {
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(0) invert(1);
}

.pd-btn--green {
  background: #1a7b62;
}

.pd-btn--orange {
  background: #c3601b;
}

/* ---------- Area ---------- */
.pd-area {
  margin-top: 14px;
  padding: 20px 10px;
  background-color: #f5f5f5;
}

.pd-area__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-area__icon {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}

.pd-area__body {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-left: 40px;
}

.pd-area__region {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.pd-area__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  color: #161a85;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
@media (hover: hover) {
  .pd-area__link:hover {
    opacity: 0.8;
  }
}

.pd-area__arrow {
  display: inline-flex;
  width: 10px;
  height: auto;
}
.pd-area__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Download ---------- */
.pd-download {
  background: #f5f5f5;
  padding: 22px;
  margin-top: 14px;
}

.pd-download__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-download__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.pd-download__note {
  margin: 0 0 14px 36px;
  font-size: 13px;
  line-height: 1.7;
  color: #333;
}

.pd-download__link {
  color: #161a85;
  text-decoration: underline;
}

.pd-download__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-download__buttons {
    grid-template-columns: 1fr;
  }
}

.pd-dl-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 14px;
  position: relative;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex: 0 1 calc(33.3333333333% - 6.6666666667px);
  min-width: calc(33.3333333333% - 6.6666666667px);
  max-width: 100%;
  width: auto;
}
@media screen and (max-width: 834px) {
  .pd-dl-btn {
    flex: 0 1 calc(50% - 5px);
    min-width: calc(50% - 5px);
    font-size: 14px;
  }
}
@media (hover: hover) {
  .pd-dl-btn:hover {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-1px);
  }
}
.pd-dl-btn .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 24px;
}

.pd-dl-btn__tag--cad {
  color: #c52c2c;
}

.pd-dl-btn--navy {
  background: #1b4fb0;
}

.pd-dl-btn--olive {
  background: #a68e2b;
}

.pd-dl-btn--red {
  background: #d9232f;
}

.pd-dl-btn--gray {
  background: #ccc;
}
.pd-dl-btn--gray .icon {
  filter: grayscale(100%);
}

.pd-dl-login-tooltip {
  position: fixed;
  z-index: 10060;
  max-width: 240px;
  padding: 8px 12px;
  background-color: #f5f5f5;
  color: #111;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s ease;
}
.pd-dl-login-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
}
.pd-dl-login-tooltip[hidden] {
  display: none !important;
}

.pd-feat-sec {
  margin-bottom: 50px;
}

/* =========================================
 * Figma section-features (737-346) 製品下ブロック
 * ========================================= */
.section-pd-features {
  margin-top: clamp(40px, 5vw, 64px);
}

.section-pd-features__inner {
  /* 親 .pd-cat__inner の max-width / 余白に合わせる */
  max-width: none;
  margin: 0;
  padding: 0;
}

.pd-feat-sec + .pd-feat-sec {
  margin-top: clamp(40px, 4.5vw, 56px);
}

.pd-feat-sec__head {
  border-bottom: 1px solid #111;
  margin: 0 0 clamp(20px, 2.5vw, 28px);
  padding-bottom: 12px;
}

.pd-feat-sec__title {
  margin: 0;
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.pd-size__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(20px, 2.2vw, 32px);
  align-items: start;
}
@media screen and (max-width: 834px) {
  .pd-size__row {
    grid-template-columns: 1fr;
  }
}

.pd-size__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.pd-size__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-size__specs {
    grid-template-columns: 1fr;
  }
}

.pd-size__panel {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  padding: 16px 14px 18px;
  min-height: 120px;
}

.pd-size__panel-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}

.pd-size__panel-list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.pd-size__panel-list li + li {
  margin-top: 0.4em;
}

.pd-load__row {
  display: flex;
  gap: clamp(20px, 2.2vw, 32px);
  align-items: start;
}
@media screen and (max-width: 834px) {
  .pd-load__row {
    flex-direction: column;
  }
}
.pd-load__row.img-left {
  flex-direction: row-reverse;
}
.pd-load__row.img-bottom {
  display: block !important;
}
.pd-load__row.img-bottom .pd-load__col {
  width: 100% !important;
}
.pd-load__row .pd-load__col {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .pd-load__row .pd-load__col {
    width: 100%;
  }
}
.pd-load__row {
  /* 片方の列だけのとき全幅 */
}
.pd-load__row .pd-load__col:only-child {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
}

.pd-load__col--text {
  width: 50%;
}
.pd-load__col--text p {
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-load__col--text p {
    font-size: 14px;
  }
}

.pd-load__col--image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* 特長ブロック：複数画像（img / img_2 / img_3） */
.pd-load__slider-wrap {
  position: relative;
  margin: 0 0 2rem;
}
.pd-load__slider-wrap .slick-dots {
  bottom: -38px;
  margin: 0;
}
.pd-load__slider-wrap .slick-dots li button:before {
  font-size: 8px;
  opacity: 0.35;
}
.pd-load__slider-wrap .slick-dots li.slick-active button:before {
  opacity: 0.85;
}

.pd-load__slider {
  position: relative;
  margin: 0;
  padding: 0 2.25rem;
}
.pd-load__slider .slick-arrow {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 0;
  padding: 0;
}
.pd-load__slider .slick-arrow::before {
  display: none;
}
.pd-load__slider {
  /* .slick-arrow（_option.scss）が後勝ちで top / margin-top / left / right を奪うため詳細度を上げる */
}
.pd-load__slider .pd-load-slider__arrow {
  position: absolute;
  top: calc(50% + 0px);
  margin-top: 0;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.pd-load__slider .pd-load-slider__arrow svg {
  display: block;
  width: 30px;
  height: 30px;
}
@media (hover: hover) {
  .pd-load__slider .pd-load-slider__arrow:hover:not(.slick-disabled) {
    transform: translateY(-50%) scale(1.05);
  }
}
.pd-load__slider .pd-load-slider__arrow.slick-disabled {
  opacity: 0.35;
  cursor: default;
}
.pd-load__slider .pd-load-slider__arrow--prev {
  left: -0.125rem;
}
.pd-load__slider .pd-load-slider__arrow--next {
  right: -0.125rem;
}
@media screen and (max-width: 834px) {
  .pd-load__slider {
    padding: 0;
  }
}

.pd-load__slider-slide img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 834px) {
  .pd-load__slider .slick-arrow {
    display: none !important;
  }
}
.pd-load__sub {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.pd-load__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.pd-load__table-wrap {
  border: 1px solid #c5d0dc;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.pd-load__table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pd-load__table-wrap table th,
.pd-load__table-wrap table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid #dee6ee;
}
.pd-load__table-wrap table th {
  background: #e4edf6;
  font-weight: 700;
  color: #111;
}
.pd-load__table-wrap table td {
  background-color: #fff;
}
.pd-load__table-wrap table tr:last-child td,
.pd-load__table-wrap table tr:last-child th {
  border-bottom: 0;
}

.pd-feat-gal__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 834px) {
  .pd-feat-gal__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-feat-gal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pd-feat-gal__item {
  min-width: 0;
}

.pd-feat-gal__figure {
  margin: 0;
}

.pd-feat-gal__thumb {
  display: block;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  line-height: 0;
  background: #f4f4f4;
  aspect-ratio: 1/1;
}

.pd-feat-gal__thumb .pd-feat-gal__img,
.pd-feat-gal__thumb .pd-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.pd-feat-gal__caption {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.pd-feat-gal__note {
  margin-top: 16px;
}

.pd-cases__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-cases__thumbs {
    justify-content: center;
  }
}
.pd-cases__thumbs {
  /* スマホ：1行のまま横スクロール */
}
@media screen and (max-width: 600px) {
  .pd-cases__thumbs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    margin-bottom: 20px;
    padding-bottom: 4px;
    /* 最後のサムネまで余裕を */
    padding-right: 4px;
    scrollbar-width: thin;
  }
  .pd-cases__thumbs::-webkit-scrollbar {
    height: 6px;
  }
  .pd-cases__thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
}

.pd-cases__thumb-item {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  width: calc(20% - 10px);
  min-width: 120px;
  max-width: 260px;
}
@media screen and (max-width: 834px) {
  .pd-cases__thumb-item {
    width: calc(33.333% - 8px);
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-cases__thumb-item {
    width: calc(50% - 6px);
  }
}
@media screen and (max-width: 600px) {
  .pd-cases__thumb-item {
    width: 132px;
    min-width: 132px;
    max-width: none;
    scroll-snap-align: start;
  }
}

.pd-cases__thumb {
  display: block;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  line-height: 0;
}
.pd-cases__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .pd-cases__thumb:hover img {
    opacity: 0.9;
  }
}

.pd-cases__cta-wrap {
  text-align: center;
  margin: 0;
}

.pd-cases__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
  min-width: 220px;
  padding: 14px 28px;
  background: #ea0437;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: opacity 0.2s, transform 0.2s;
}
@media (hover: hover) {
  .pd-cases__cta:hover {
    opacity: 0.95;
    color: #fff;
  }
}
.pd-cases__cta img {
  display: block;
  filter: brightness(0) invert(1);
  width: 16px;
  height: auto;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.pd-related__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.pd-related__card {
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 13.3333333333px);
}
@media screen and (max-width: 834px) {
  .pd-related__card {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-related__card {
    width: 100%;
  }
}

.pd-related__image {
  overflow: hidden;
  margin-bottom: 15px;
}

.pd-related__img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.6/1;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-related__img {
    aspect-ratio: 1.6/0.8;
  }
}

.pd-related__name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #161a85;
  text-decoration: none;
  line-height: 1.3;
}

.pd-related__chev {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}
.pd-related__chev img {
  display: block;
  width: 14px;
  height: auto;
}

.pd-related__desc {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 5.1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-overflow: ellipsis;
  word-break: break-word;
}

.pd-related__card--no-dls .pd-related__desc {
  flex: 0 1 auto;
}

.txt-dl {
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pd-related__dls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 5px;
  align-items: center;
}
.pd-related__dls .pd-dl-btn--compact {
  flex: 0 0 auto;
  min-height: 36px;
  height: 36px;
  padding: 6px 10px 6px 8px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
  min-width: 0;
  text-align: center;
}
.pd-related__dls .pd-dl-btn--compact .icon {
  position: static;
  transform: none;
  flex-shrink: 0;
  width: auto;
  height: 18px;
}

.pd-problem {
  position: relative;
  margin-top: 100px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  padding: 28px 0;
  background: #eaebfa;
  border-radius: 6px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-problem {
    flex-direction: column;
    padding: 20px 18px;
  }
}

.pd-problem__content {
  flex: 1 1 auto;
  min-width: 0;
}

.pd-problem__head {
  display: block;
  margin-bottom: 8px;
  padding-left: 40px;
}

.pd-problem__kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #161a85;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #111;
}
.pd-problem__kicker img {
  display: block;
  width: auto;
  height: 40px;
}

.pd-problem__rule {
  display: block;
  height: 0;
  border-top: 1px solid #111;
  margin: 12px 0 16px;
  max-width: 100%;
}

.pd-problem__list {
  margin: 30px 0 0 60px;
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 1.5;
  color: #161a85;
  font-weight: 700;
}

.pd-problem__list li {
  position: relative;
  padding-left: 25px;
  margin-top: 20px;
}
.pd-problem__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: #0071bc;
  border-radius: 50%;
}
.pd-problem__list li:first-child {
  margin-top: 0;
}

.product-search-page .search-words {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #111;
}
.product-search-page .search-words .search-words__label {
  color: #666;
}
.product-search-page .search-words .search-word {
  color: #161a85;
  font-weight: 700;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   製品一覧（product-all.html）サイドナビ + カードグリッド
   -------------------------------------------------------------------------- */
.pd-all-index__inner {
  display: flex;
  gap: clamp(28px, 3.5vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}

.pd-all-index__sidebar {
  flex: 0 0 clamp(220px, 24vw, 260px);
  padding-right: clamp(20px, 2.5vw, 32px);
  border-right: 1px solid #d9d9d9;
}

.pd-all-index__group + .pd-all-index__group {
  margin-top: 28px;
}

.pd-all-index__group-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.pd-all-index__group-title a {
  display: block;
  padding: 10px 12px;
  background: #f8f9ff;
  color: #111;
  text-decoration: none;
  border-radius: 2px;
  box-sizing: border-box;
}
@media (hover: hover) {
  .pd-all-index__group-title a:hover {
    background: rgba(22, 26, 133, 0.08);
    color: #161a85;
  }
}

.pd-all-index__subgroup {
  margin-top: 12px;
}
.pd-all-index__subgroup + .pd-all-index__subgroup {
  margin-top: 16px;
}

.pd-all-index__subgroup-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
}
.pd-all-index__subgroup-title a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
}
.pd-all-index__subgroup-title a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #111;
  flex-shrink: 0;
}
@media (hover: hover) {
  .pd-all-index__subgroup-title a:hover {
    color: #161a85;
    text-decoration: underline;
  }
}

.pd-all-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pd-all-index__list li + li {
  margin-top: 8px;
}
.pd-all-index__list a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #111;
  text-decoration: none;
}
.pd-all-index__list a::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 0.35em;
  border-radius: 50%;
  background: #ddd;
}
@media (hover: hover) {
  .pd-all-index__list a:hover {
    color: #161a85;
    text-decoration: underline;
  }
}

.pd-all-index__list--nested {
  margin: 0;
  padding: 4px 0 0 30px;
}
.pd-all-index__list--nested li + li {
  margin-top: 6px;
}

.pd-all-index__main {
  flex: 1;
  min-width: 0;
}

.pd-all-index__head {
  margin: 0 0 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #111;
}

.pd-all-index__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
}

.pd-all-index__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
}

.pd-all-card {
  margin: 0;
}

.pd-all-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) {
  .pd-all-card__link:hover {
    border-color: rgba(22, 26, 133, 0.35);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
}
.pd-all-card__link .wrap-txt {
  padding: 0 20px 20px;
}

.pd-all-card__thumb {
  overflow: hidden;
  margin: 0 0 12px;
}

.pd-all-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.pd-all-card__badge {
  align-self: flex-start;
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
  background: #e8e6f2;
  border-radius: 2px;
}

.pd-all-card__name {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
}

.pd-all-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

@media screen and (max-width: 1024px) {
  .pd-all-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 834px) {
  .pd-all-index__inner {
    flex-direction: column;
  }
  .pd-all-index__sidebar {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 24px 0 0;
    border-right: none;
    border-top: 1px solid #d9d9d9;
    order: 2;
  }
  .pd-all-index__main {
    order: 1;
  }
  .pd-all-index__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .pd-all-index__nav {
    grid-template-columns: 1fr;
  }
  .pd-all-index__grid {
    grid-template-columns: 1fr;
  }
  .pd-all-card__img {
    aspect-ratio: 16/9;
  }
}
/* お役立ち情報・アーカイブカードグリッド */
.tip-articles {
  width: 100%;
  margin: 24px 0 0;
}
.tip-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.tip-articles__item {
  margin: 0;
  padding: 0;
  min-width: 0;
}
.tip-articles__link {
  display: block;
  color: #111;
  text-decoration: none;
  outline: none;
  transition: opacity 0.2s ease;
}
.tip-articles__link:hover {
  opacity: 0.88;
}
.tip-articles__link:focus-visible {
  outline: 2px solid #161a85;
  outline-offset: 4px;
}
.tip-articles__thumb {
  position: relative;
  overflow: hidden;
  margin: 0 0 clamp(10px, 1.4vw, 14px);
  border-radius: 4px;
  aspect-ratio: 16/9;
  background: #eaebfa;
  border: solid 1px #ddd;
}
.tip-articles__thumb.no-img {
  background-image: url(../images/logomark.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 80px;
}
.tip-articles__img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.tip-articles__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  pointer-events: none;
}
.tip-articles__badge--new {
  background: #c62828;
}
.tip-articles__date {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #666;
}
.tip-articles__title {
  margin: 0;
  font-size: clamp(13px, 1.85vw, 15px);
  font-weight: 600;
  line-height: 1.55;
  color: #111;
}

.tip-articles--on-product {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .tip-articles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .tip-articles__grid {
    grid-template-columns: 1fr;
  }
  .tip-articles__thumb {
    border-radius: 10px;
  }
}
.wrap-related-products {
  margin-top: 50px;
}
.wrap-related-products .related-products__title {
  border-bottom: solid 1px #111;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.wpdm-auth-form-header {
  margin-bottom: 30px;
}

.wpdm-auth-form-desc a {
  font-weight: 700;
  text-decoration: underline;
}

.wrap-login-form {
  padding: 50px 100px;
  background-color: #f5f5fc;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wrap-login-form {
    padding: 30px 20px;
  }
}
.wrap-login-form p {
  text-align: left;
  font-size: 14px;
  margin: 0 !important;
}
.wrap-login-form p img {
  margin: 0 !important;
}

.wpdm-auth-field {
  margin-bottom: 20px;
}
.wpdm-auth-field label {
  font-size: 14px;
  color: #111;
  display: block;
  margin-bottom: 5px;
}

.wpdm-auth-input {
  border: solid 1px #ddd;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  color: #111;
  background: #fff;
  width: 100%;
  max-width: 400px;
}
.wpdm-auth-input:focus {
  border-color: #161a85;
}

.wpdm-auth-forgot {
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

#siteguard_captcha {
  border: solid 1px #ddd;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  color: #111;
  background: #fff;
  width: 100%;
  max-width: 100px;
  margin-bottom: 30px;
}
#siteguard_captcha:focus {
  border-color: #161a85;
}

.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #161a85;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 14px 50px;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 400px;
  position: relative;
}
.btn-login::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}
@media (hover: hover) {
  .btn-login:hover {
    opacity: 0.8;
  }
}

.ibikon-dashboard-profile-info {
  margin-top: 30px;
}

.ibikon-dashboard-profile-info__header {
  background-color: #eaebfa;
  padding-right: 10px;
}
.ibikon-dashboard-profile-info__header .wpdm-btn--sm {
  font-size: 14px;
}

.wpdm-card-header {
  margin-bottom: 30px !important;
}

.ibikon-dashboard-profile-info {
  margin-bottom: 1.5rem;
}

.ibikon-dashboard-profile-info__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ibikon-dashboard-profile-info__header h3 {
  margin: 0;
}

.ibikon-dashboard-profile-info__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin: 0;
}

.ibikon-dashboard-profile-info__item {
  margin: 0;
}

.ibikon-dashboard-profile-info__item dt {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.ibikon-dashboard-profile-info__item dd {
  margin: 0;
  font-size: 0.9375rem;
  color: #0f172a;
  word-break: break-word;
}

.ibikon-dashboard-profile-info__item--full {
  grid-column: 1/-1;
}

.ibikon-dashboard-profile-info__empty {
  margin: 0;
  color: #64748b;
}

@media (max-width: 767px) {
  .ibikon-dashboard-profile-info__list {
    grid-template-columns: 1fr;
  }
}
.wpdm-stats-grid {
  display: none;
}

@media screen and (max-width: 600px) and (orientation: portrait) {
  .wpdm-table-wrap {
    width: 100%;
    overflow-x: auto;
  }
}

.wpdm-table {
  width: 100%;
  background-color: #ddd;
  border-spacing: 1px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wpdm-table {
    width: 150%;
  }
}
.wpdm-table th {
  background-color: #eaebfa;
  padding: 10px;
  font-size: 14px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wpdm-table th {
    font-size: 12px;
  }
}
.wpdm-table td {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wpdm-table td {
    font-size: 12px;
  }
}
.wpdm-table td:first-child {
  text-align: left;
  padding-left: 20px;
}
.wpdm-table tr:nth-of-type(even) td {
  background-color: #f5f5f5;
}

.wpdm-input {
  border: solid 1px #ddd;
  border-radius: 4px;
  padding: 10px;
  font-size: 16px;
  color: #111;
  background: #fff;
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
}

.wpdm-form-group label {
  font-size: 0.875rem;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wpdm-form-group label {
    font-size: 0.75rem;
  }
}

.wpdm-alert {
  color: red;
  font-size: smaller;
}

.wpdm-card .wpdm-btn--primary {
  border: none;
  background: #161a85;
  padding: 10px 40px;
  color: #fff;
  border-radius: 6px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 200px;
  font-size: 1rem;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .wpdm-card .wpdm-btn--primary {
    font-size: 0.875rem;
  }
}
.wpdm-card .wpdm-btn--primary {
  font-weight: 700;
  cursor: pointer;
}
.wpdm-card .wpdm-btn--primary:hover {
  opacity: 0.8;
}

.wrap-login-form .form-control {
  border: solid 1px #ddd;
  border-radius: 4px !important;
  padding: 10px !important;
  font-size: 16px;
  color: #111;
  background: #fff;
  width: 100% !important;
  max-width: 100% !important;
  margin: 10px 0;
}

.form-group .form-control {
  border: solid 1px #ddd;
  border-radius: 4px !important;
  padding: 10px !important;
  font-size: 16px;
  color: #111;
  background: #fff;
  width: 100% !important;
  max-width: 100% !important;
  margin: 10px 0;
}

#registerform-submit {
  margin-top: 30px;
}

.register-form__label-note {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  margin-left: 6px;
}

.register-form__required {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background: #c0392b;
  border-radius: 3px;
  vertical-align: middle;
}

.wrap-login-form .form-group > label,
#registerform .form-group > label,
#registerform .register-form__field-label {
  display: block !important;
  font-size: 14px;
  color: #111;
  margin-bottom: 5px;
}

.w3eden .wpdm-auth-right .wrap-login-form .form-group > label:first-child {
  display: block !important;
}

#registerform .input-wrapper.heading-input-wrapper .register-form__required {
  margin-left: 8px;
  vertical-align: baseline;
}

.register-form__error {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #c0392b;
}

.form-group .form-control.is-invalid,
.wpdm-auth-field .wpdm-auth-input.is-invalid,
.wpdm-form-group .form-control.is-invalid {
  border-color: #c0392b;
  background: #fff8f8;
}

.register-form__summary {
  margin-bottom: 16px;
}

#registerform .wpdm-auth-alert,
.wrap-login-form .wpdm-auth-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}
#registerform .wpdm-auth-alert svg,
.wrap-login-form .wpdm-auth-alert svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
#registerform .wpdm-auth-alert.error,
.wrap-login-form .wpdm-auth-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  cursor: pointer;
}
#registerform .wpdm-auth-alert.info,
.wrap-login-form .wpdm-auth-alert.info {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.sec-common .single-content .post-content .glossary-gojuon {
  margin: 0 0 28px;
  padding: 18px 20px;
  border-radius: 4px;
  background: #f7f8fc;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}
.sec-common .single-content .post-content .glossary-gojuon__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sec-common .single-content .post-content .glossary-gojuon__item {
  margin: 0;
}
.sec-common .single-content .post-content .glossary-gojuon__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 4px;
  background: #fff;
  color: #161a85;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .sec-common .single-content .post-content .glossary-gojuon__link:hover {
    background: #161a85;
    color: #fff;
  }
}
.sec-common .single-content .post-content .glossary-gojuon__link:focus-visible {
  outline: 2px solid #161a85;
  outline-offset: 2px;
}
.sec-common .single-content .post-content .glossary-gojuon__link.is-empty {
  background: #eceef5;
  color: #9aa0b5;
  box-shadow: none;
  cursor: default;
}
.sec-common .single-content .post-content .glossary-groups {
  display: grid;
  gap: 28px;
}
.sec-common .single-content .post-content .glossary-group__heading {
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #161a85;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #161a85;
}
.sec-common .single-content .post-content .glossary-accordion {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.sec-common .single-content .post-content .glossary-accordion__item {
  margin: 0;
}
.sec-common .single-content .post-content .glossary-accordion__item + .glossary-accordion__item {
  margin-top: 12px;
}
.sec-common .single-content .post-content .glossary-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: none;
  border-radius: 4px;
  background: #f0f2ff;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background-color 0.2s ease, border-radius 0.25s ease;
}
@media (hover: hover) {
  .sec-common .single-content .post-content .glossary-accordion__trigger:hover {
    background-color: #e6e9fc;
  }
}
.sec-common .single-content .post-content .glossary-accordion__trigger:focus-visible {
  outline: 2px solid #161a85;
  outline-offset: 2px;
}
.sec-common .single-content .post-content .glossary-accordion__item.is-open .glossary-accordion__trigger {
  border-radius: 4px 4px 0 0;
}
.sec-common .single-content .post-content .glossary-accordion__term {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #161a85;
  line-height: 1.45;
}
.sec-common .single-content .post-content .glossary-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.sec-common .single-content .post-content .glossary-accordion__icon::before, .sec-common .single-content .post-content .glossary-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #161a85;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.sec-common .single-content .post-content .glossary-accordion__icon::before {
  width: 14px;
  height: 2px;
}
.sec-common .single-content .post-content .glossary-accordion__icon::after {
  width: 2px;
  height: 14px;
}
.sec-common .single-content .post-content .glossary-accordion__item.is-open .glossary-accordion__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.sec-common .single-content .post-content .glossary-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.sec-common .single-content .post-content .glossary-accordion__item.is-open .glossary-accordion__panel {
  grid-template-rows: 1fr;
}
.sec-common .single-content .post-content .glossary-accordion__panel-inner {
  min-height: 0;
  overflow: hidden;
}
.sec-common .single-content .post-content .glossary-accordion__body {
  padding: 16px 16px 18px;
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}
.sec-common .single-content .post-content .glossary-accordion__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #111;
  font-weight: 400;
}
.sec-common .single-content .post-content .glossary-accordion__body p + p {
  margin-top: 0.85em;
}

.sec-common .single-content .post-content {
  /** ダウンロードページ */
}
.sec-common .single-content .post-content .dl-page__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__nav {
    gap: 10px;
    margin-bottom: 28px;
  }
}
.sec-common .single-content .post-content .dl-page__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  padding: 12px 24px;
  background: #f2f3f5;
  border-radius: 2px;
  color: #161a85;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__nav-btn {
    flex: 1;
    min-width: 0;
    padding: 11px 16px;
    font-size: 15px;
  }
}
@media (hover: hover) {
  .sec-common .single-content .post-content .dl-page__nav-btn:hover {
    background: #e6e9fc;
    color: #161a85;
  }
}
.sec-common .single-content .post-content .dl-page__nav-btn:focus-visible {
  outline: 2px solid #161a85;
  outline-offset: 2px;
}
.sec-common .single-content .post-content .dl-page__nav-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.sec-common .single-content .post-content .dl-page__section {
  scroll-margin-top: calc(80px + 1rem);
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__section {
    margin-bottom: 40px;
  }
}
.sec-common .single-content .post-content .dl-page__section:last-child {
  margin-bottom: 0;
}
.sec-common .single-content .post-content .dl-page__heading {
  font-size: 30px;
  font-weight: 500;
  color: #111;
  letter-spacing: 2px;
  margin: 0 0 30px;
  padding-bottom: 20px;
  border-bottom: solid 1px #ddd;
  position: relative;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__heading {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.sec-common .single-content .post-content .dl-page__heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #161a85;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.sec-common .single-content .post-content .dl-page__group {
  margin-bottom: 36px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__group {
    margin-bottom: 28px;
  }
}
.sec-common .single-content .post-content .dl-page__group:last-child {
  margin-bottom: 0;
}
.sec-common .single-content .post-content .dl-page__group-title {
  margin: 0 0 16px !important;
  padding: 2px 0 2px 16px;
  border-left: 5px solid #161a85;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: #161a85;
  background: transparent;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__group-title {
    font-size: 18px;
    padding-left: 14px;
    margin-bottom: 12px !important;
  }
}
.sec-common .single-content .post-content .dl-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f2f3f5;
  border-radius: 2px;
}
.sec-common .single-content .post-content .dl-page__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e0e3ea;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__item {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 14px;
  }
}
.sec-common .single-content .post-content .dl-page__item:last-child {
  border-bottom: none;
}
.sec-common .single-content .post-content .dl-page__link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: #161a85;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__link {
    font-size: 14px;
    gap: 10px;
  }
}
@media (hover: hover) {
  .sec-common .single-content .post-content .dl-page__link:hover {
    opacity: 0.75;
  }
}
.sec-common .single-content .post-content .dl-page__thumb {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 2px;
  background: #e0e3ea;
}
.sec-common .single-content .post-content .dl-page__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-common .single-content .post-content .dl-page__thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.sec-common .single-content .post-content .dl-page__text {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 6px;
  flex: 1;
  min-width: 0;
}
.sec-common .single-content .post-content .dl-page__size {
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__size {
    font-size: 12px;
  }
}
.sec-common .single-content .post-content .dl-page__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 22px;
  padding: 0 8px;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.sec-common .single-content .post-content .dl-page__badge--pdf {
  background: #ea0437;
}
.sec-common .single-content .post-content .dl-page__badge--cad {
  background: #ea0437;
}
.sec-common .single-content .post-content .dl-page__login-note {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.85;
  color: #333;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .dl-page__login-note {
    margin-bottom: 18px;
    font-size: 13px;
  }
}
.sec-common .single-content .post-content .dl-page__login-note a {
  color: #161a85;
  text-decoration: underline;
}
@media (hover: hover) {
  .sec-common .single-content .post-content .dl-page__login-note a:hover {
    opacity: 0.75;
  }
}
.sec-common .single-content .post-content .dl-page__section--cad.is-logged-out .dl-page__group {
  opacity: 0.45;
  pointer-events: none;
}
.sec-common .single-content .post-content .dl-page__section--cad.is-logged-out .dl-page__badge--cad {
  background: #e07a8a;
}
.sec-common .single-content .post-content .dl-page__section--cad.is-logged-out .dl-page__link {
  cursor: default;
}
@media (hover: hover) {
  .sec-common .single-content .post-content .dl-page__section--cad.is-logged-out .dl-page__link:hover {
    opacity: 1;
  }
}
.sec-common .single-content .post-content .dl-page__section--cad:not(.is-logged-out) .dl-page__login-note {
  display: none;
}

/* --------------------------------------------------------------------------
   ダウンロードページ（downloads.html）タブ + サイドナビ + 製品別一覧
   -------------------------------------------------------------------------- */
.dl-page-index {
  padding: 0 0 56px;
}
.dl-page-index__inner {
  display: flex;
  gap: clamp(28px, 3.5vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 40px);
  box-sizing: border-box;
}
.dl-page-index__sidebar {
  flex: 0 0 clamp(220px, 24vw, 260px);
  padding-right: clamp(20px, 2.5vw, 32px);
  border-right: 1px solid #d9d9d9;
}
@media screen and (max-width: 1024px) {
  .dl-page-index__sidebar {
    display: none;
  }
}
.dl-page-index__main {
  flex: 1;
  min-width: 0;
}
.dl-page-index__title {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.dl-page-index__intro {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__intro {
    margin-bottom: 22px;
    font-size: 13px;
  }
}
.dl-page-index__guide {
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__guide {
    margin-bottom: 24px;
  }
}
.dl-page-index__guide-title {
  margin: 0 0 12px;
  padding: 2px 0 2px 16px;
  border-left: 5px solid #161a85;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: #161a85;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__guide-title {
    font-size: 18px;
    padding-left: 14px;
    margin-bottom: 10px;
  }
}
.dl-page-index__guide-lead {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.85;
  color: #333;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__guide-lead {
    margin-bottom: 14px;
    font-size: 13px;
  }
}
.dl-page-index__guide-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 834px) {
  .dl-page-index__guide-table-wrap {
    overflow-x: visible;
  }
}
.dl-page-index__guide-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 1px solid #e0e3ea;
  border-radius: 2px;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__guide-table {
    font-size: 13px;
  }
}
@media screen and (max-width: 834px) {
  .dl-page-index__guide-table {
    min-width: 0;
  }
}
.dl-page-index__guide-table thead {
  background: #e6e9fc;
}
.dl-page-index__guide-table th {
  padding: 12px 16px;
  border-right: 1px solid #d5daf0;
  border-bottom: 1px solid #d5daf0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #161a85;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__guide-table th {
    padding: 10px 12px;
    font-size: 13px;
  }
}
.dl-page-index__guide-table th:last-child {
  border-right: none;
}
.dl-page-index__guide-table td {
  padding: 14px 16px;
  border-right: 1px solid #e0e3ea;
  border-bottom: 1px solid #e0e3ea;
  vertical-align: top;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__guide-table td {
    padding: 12px;
  }
}
.dl-page-index__guide-table td:last-child {
  border-right: none;
}
.dl-page-index__guide-table tbody tr:last-child td {
  border-bottom: none;
}
.dl-page-index__guide-table tbody tr:nth-child(even) td {
  background: #f7f8ff;
}
.dl-page-index__guide-table td:nth-child(2) {
  font-weight: 700;
  color: #161a85;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .dl-page-index__guide-table thead {
    display: none;
  }
  .dl-page-index__guide-table tbody,
  .dl-page-index__guide-table tr,
  .dl-page-index__guide-table td {
    display: block;
    width: 100%;
  }
  .dl-page-index__guide-table tbody tr {
    margin-bottom: 12px;
    border: 1px solid #e0e3ea;
    border-radius: 2px;
    overflow: hidden;
    background: #fff;
  }
  .dl-page-index__guide-table tbody tr:last-child {
    margin-bottom: 0;
  }
  .dl-page-index__guide-table tbody tr:nth-child(even) td {
    background: #fff;
  }
  .dl-page-index__guide-table td {
    padding: 12px 14px;
    border: none;
    border-bottom: 1px solid #eee;
    white-space: normal;
  }
  .dl-page-index__guide-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #161a85;
  }
  .dl-page-index__guide-table td:last-child {
    border-bottom: none;
  }
  .dl-page-index__guide-table td:nth-child(2) {
    background: #f7f8ff;
  }
}
.dl-page-index__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__tabs {
    margin-bottom: 24px;
  }
}
.dl-page-index__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 11px 20px;
  border: none;
  border-radius: 2px;
  background: #f2f3f5;
  color: #161a85;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-index__tab {
    min-width: calc(50% - 4px);
    padding: 10px 14px;
    font-size: 14px;
  }
}
.dl-page-index__tab.is-active {
  background: #161a85;
  color: #fff;
}
@media (hover: hover) {
  .dl-page-index__tab:hover:not(.is-active) {
    background: #e6e9fc;
  }
}
.dl-page-index__panel {
  display: none;
}
.dl-page-index__panel.is-active {
  display: block;
}
.dl-page-index__empty {
  margin: 0;
  padding: 24px 0;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.dl-page-product {
  scroll-margin-top: calc(80px + 1rem);
  margin-bottom: 40px;
}
.dl-page-product:last-child {
  margin-bottom: 0;
}
.dl-page-product__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  padding: 12px 16px;
  background: #e6e9fc;
  border-radius: 2px 2px 0 0;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-product__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
  }
}
.dl-page-product__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #161a85;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-product__title {
    font-size: 16px;
  }
}
.dl-page-product__page-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #161a85;
  text-decoration: none;
  white-space: nowrap;
}
@media (hover: hover) {
  .dl-page-product__page-link:hover {
    opacity: 0.75;
  }
}
.dl-page-product__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 0 0 2px 2px;
}
.dl-page-product__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #e0e3ea;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-product__item {
    gap: 12px;
    padding: 14px;
  }
}
.dl-page-product__item:last-child {
  border-bottom: none;
}
.dl-page-product__item--locked {
  cursor: default;
}
@media (hover: none), (pointer: coarse) {
  .dl-page-product__item--locked {
    cursor: pointer;
  }
}
.dl-page-product__item--locked .dl-page-product__thumb--locked,
.dl-page-product__item--locked .dl-page-product__file-link--locked {
  opacity: 0.55;
}
.dl-page-product__thumb {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 3/2;
  padding: 0;
  border: none;
  border-radius: 2px;
  overflow: hidden;
  background: #e0e3ea;
  cursor: zoom-in;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-product__thumb {
    width: 80px;
  }
}
.dl-page-product__thumb--empty, .dl-page-product__thumb--locked {
  cursor: default;
}
.dl-page-product__thumb:not(.dl-page-product__thumb--empty):not(.dl-page-product__thumb--locked)::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3Cpath d='M11 8v6M8 11h6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  pointer-events: none;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-product__thumb:not(.dl-page-product__thumb--empty):not(.dl-page-product__thumb--locked)::after {
    right: 4px;
    bottom: 4px;
    width: 22px;
    height: 22px;
    background-size: 11px 11px;
  }
}
.dl-page-product__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.dl-page-product__thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3/2;
  color: #999;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.dl-page-product__body {
  flex: 1;
  min-width: 0;
  padding-top: 2px;
}
.dl-page-product__meta {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 8px;
}
.dl-page-product__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 22px;
  padding: 0 8px;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.dl-page-product__badge--pdf {
  background: #161a85;
}
.dl-page-product__badge--cad {
  background: #ea0437;
}
.dl-page-product__file-link {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #161a85;
  text-decoration: none;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-product__file-link {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .dl-page-product__file-link:hover {
    opacity: 0.75;
  }
}
.dl-page-product__file-link--locked {
  color: #666;
  cursor: default;
}
@media (hover: hover) {
  .dl-page-product__file-link--locked:hover {
    opacity: 1;
  }
}
.dl-page-product__size {
  font-size: 13px;
  font-weight: 400;
  color: #666;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-product__size {
    font-size: 12px;
  }
}
.dl-page-product__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
  color: #666;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .dl-page-product__desc {
    font-size: 12px;
  }
}
.dl-page-product__desc p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.dl-page-product__desc p:last-child {
  margin-bottom: 0;
}

.sec-common .single-content .post-content {
  /** 目的から探す：セクション見出し＋アコーディオン */
}
.sec-common .single-content .post-content .purpose-section {
  margin: 0 0 50px;
}
.sec-common .single-content .post-content .purpose-section__title {
  margin: 0 0 30px !important;
  padding: 2px 0 2px 16px;
  border-left: 5px solid #161a85;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: #161a85;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .purpose-section__title {
    font-size: 18px;
    padding-left: 14px;
    margin-bottom: 20px;
  }
}
.sec-common .single-content .post-content .purpose-accordion {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.sec-common .single-content .post-content .purpose-accordion__item {
  scroll-margin-top: calc(80px + 1rem);
  margin: 0;
  border-bottom: solid 1px rgb(225, 229, 239);
}
.sec-common .single-content .post-content .purpose-accordion__item:first-child {
  border-top: solid 1px rgb(225, 229, 239);
}
.sec-common .single-content .post-content .purpose-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: none;
  border-radius: 0;
  background: #f5f5fc;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background-color 0.2s ease, border-radius 0.25s ease;
}
.sec-common .single-content .post-content .purpose-accordion__trigger.on {
  background-color: #e6e9fc;
}
@media (hover: hover) {
  .sec-common .single-content .post-content .purpose-accordion__trigger:hover {
    background-color: #e6e9fc;
  }
}
.sec-common .single-content .post-content .purpose-accordion__trigger:focus-visible {
  outline: 2px solid #161a85;
  outline-offset: 2px;
}
.sec-common .single-content .post-content .purpose-accordion__item.is-open .purpose-accordion__trigger {
  border-radius: 0;
}
.sec-common .single-content .post-content .purpose-accordion__title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.sec-common .single-content .post-content .purpose-accordion__bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 50%;
  background-color: #161a85;
}
.sec-common .single-content .post-content .purpose-accordion__title {
  font-size: 15px;
  font-weight: 700;
  color: #161a85;
  line-height: 1.55;
}
.sec-common .single-content .post-content .purpose-accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.sec-common .single-content .post-content .purpose-accordion__icon::before, .sec-common .single-content .post-content .purpose-accordion__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #161a85;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.sec-common .single-content .post-content .purpose-accordion__icon::before {
  width: 14px;
  height: 2px;
}
.sec-common .single-content .post-content .purpose-accordion__icon::after {
  width: 2px;
  height: 14px;
}
.sec-common .single-content .post-content .purpose-accordion__item.is-open .purpose-accordion__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.sec-common .single-content .post-content .purpose-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.sec-common .single-content .post-content .purpose-accordion__item.is-open .purpose-accordion__panel {
  grid-template-rows: 1fr;
}
.sec-common .single-content .post-content .purpose-accordion__panel-inner {
  min-height: 0;
  overflow: hidden;
  border-left: solid 1px rgb(225, 229, 239);
  border-right: solid 1px rgb(225, 229, 239);
}
.sec-common .single-content .post-content .purpose-accordion__body {
  padding: 20px 16px 24px;
  background: #fff;
}
.sec-common .single-content .post-content .purpose-accordion__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 20px;
}
@media screen and (max-width: 700px) {
  .sec-common .single-content .post-content .purpose-accordion__images {
    grid-template-columns: 1fr;
  }
}
.sec-common .single-content .post-content .purpose-accordion__images .pd-gallery__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  max-height: none;
  border-radius: 2px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .sec-common .single-content .post-content .purpose-accordion__images .pd-gallery__img {
    cursor: zoom-in;
  }
}
.sec-common .single-content .post-content .purpose-accordion__text {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.85;
  color: #111;
}
.sec-common .single-content .post-content .purpose-accordion__text p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
}
.sec-common .single-content .post-content .purpose-accordion__text p + p {
  margin-top: 0.85em;
}
.sec-common .single-content .post-content .purpose-accordion__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sec-common .single-content .post-content .purpose-accordion__text li {
  position: relative;
  padding-left: 1.1em;
  margin: 0 0 0.5em;
  font-weight: 400;
}
.sec-common .single-content .post-content .purpose-accordion__text li:last-child {
  margin-bottom: 0;
}
.sec-common .single-content .post-content .purpose-accordion__text li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #111;
}
.sec-common .single-content .post-content .purpose-accordion__products {
  display: flex;
  align-items: stretch;
  min-height: 80px;
  border: solid 1px rgba(17, 17, 17, 0.08);
  overflow: hidden;
  border-radius: 2px;
}
.sec-common .single-content .post-content .purpose-accordion__products-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  padding: 10px 6px;
  background: #161a85;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content .purpose-accordion__products-label {
    width: 38px;
    font-size: 12px;
  }
}
.sec-common .single-content .post-content .purpose-accordion__products-list {
  flex: 1;
  margin: 0;
  padding: 14px 18px 14px 20px;
  list-style: none;
  background: #f2f3f5;
}
.sec-common .single-content .post-content .purpose-accordion__products-list li {
  position: relative;
  margin: 0 0 0.5em;
  padding-left: 1.1em;
  line-height: 1.6;
}
.sec-common .single-content .post-content .purpose-accordion__products-list li:last-child {
  margin-bottom: 0;
}
.sec-common .single-content .post-content .purpose-accordion__products-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #161a85;
}
.sec-common .single-content .post-content .purpose-accordion__products-list a {
  font-size: 15px;
  font-weight: 700;
  color: #161a85;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (hover: hover) {
  .sec-common .single-content .post-content .purpose-accordion__products-list a:hover {
    text-decoration: none;
  }
}

/** 施工方法 */
.installation-page {
  max-width: 1200px;
  margin: 0 auto;
}

.installation-section {
  margin: 0 0 50px;
}
.installation-section:last-child {
  margin-bottom: 0;
}
.installation-section__title {
  margin: 0 0 24px;
  padding: 2px 0 2px 16px;
  border-left: 5px solid #161a85;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: #161a85;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-section__title {
    font-size: 18px;
    padding-left: 14px;
    margin-bottom: 18px;
  }
}
.installation-section__box {
  display: flex;
  gap: 0 40px;
  padding: 0;
  background: #f0f5ff;
}
@media screen and (max-width: 834px) {
  .installation-section__box {
    flex-direction: column;
    align-items: stretch;
  }
}
.installation-section__media {
  flex: 0 0 40%;
  max-width: 40%;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .installation-section__media {
    flex: none;
    max-width: 100%;
    display: block;
  }
}
.installation-section__img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  margin: 0;
  max-height: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 834px) {
  .installation-section__img {
    flex: none;
    min-height: 0;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.installation-section__list {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: clamp(16px, 2vw, 24px) clamp(16px, 2vw, 32px) clamp(16px, 2vw, 24px) 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65em;
}
@media screen and (max-width: 834px) {
  .installation-section__list {
    padding: clamp(16px, 2vw, 24px);
  }
}
.installation-section__list li {
  position: relative;
  margin: 0;
  padding-left: 1.15em;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.65;
  color: #161a85;
}
.installation-section__list li a {
  color: #161a85;
}
.installation-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #161a85;
}

/** 施工方法 詳細 */
.installation-detail {
  max-width: 1000px;
  margin: 0 auto;
}
.installation-detail .title-page {
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-detail .title-page {
    font-size: 18px;
  }
}
.installation-detail__figure {
  margin: 0;
  line-height: 0;
}
.installation-detail__img {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0;
  height: auto;
}
.installation-detail__downloads {
  padding: 22px;
  background: #f5f5f5;
}
.installation-detail__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-detail__buttons {
    flex-direction: column;
  }
}
.installation-detail__btn {
  display: grid;
  grid-template-columns: 32px 1fr 16px;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  min-height: 50px;
  padding: 10px 14px;
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-detail__btn {
    flex: none;
    width: 100%;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .installation-detail__btn:hover {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-1px);
  }
}
.installation-detail__btn .icon {
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
  max-width: none;
  max-height: none;
  -o-object-fit: contain;
     object-fit: contain;
  justify-self: center;
  align-self: center;
}
.installation-detail__btn::after {
  content: "";
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.installation-detail__btn--navy {
  background: #1b4fb0;
}
.installation-detail__btn--red {
  background: #d9232f;
}
.installation-detail__btn-label {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
}
.installation-detail__btn--step {
  flex: 1 1 calc(50% - 5px);
  max-width: 280px;
  min-width: 0;
  min-height: 46px;
  font-size: 14px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-detail__btn--step {
    flex: 1 1 100%;
    max-width: none;
  }
}

/** 施工手順 */
.installation-steps {
  margin-top: 50px;
  padding: clamp(28px, 4vw, 40px) clamp(16px, 3vw, 24px);
  background: #f7f8fc;
}
.installation-steps__title {
  margin: 0 0 clamp(24px, 3vw, 32px);
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-steps__title {
    font-size: 18px;
  }
}
.installation-steps__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.installation-step {
  margin: 0;
}
.installation-step:not(:last-child) {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.installation-step:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 20px auto 28px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 16px solid #161a85;
}
.installation-step__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.installation-step__num {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #161a85;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-step__num {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.installation-step__name {
  margin: 0 !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-step__name {
    font-size: 16px;
  }
}
.installation-step__card {
  padding: clamp(20px, 3vw, 28px);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(17, 17, 17, 0.06);
}
.installation-step__card--actions-only {
  display: flex;
  justify-content: center;
}
.installation-step__card-inner {
  display: flex;
  align-items: stretch;
  gap: clamp(16px, 2.5vw, 24px);
}
@media screen and (max-width: 834px) {
  .installation-step__card-inner {
    flex-direction: column;
  }
}
.installation-step__media {
  flex: 0 0 30%;
  max-width: 30%;
  min-width: 0;
  line-height: 0;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .installation-step__media {
    flex: none;
    max-width: 100%;
  }
}
.installation-step__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}
.installation-step__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.installation-step__body--actions-only {
  justify-content: center;
}
.installation-step__text {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #111;
}
.installation-step__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  min-width: 400px;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .installation-step__actions {
    min-width: 200px;
  }
}

.sec-common .single-content .post-content .installation-section__img,
.sec-common .single-content .post-content .installation-detail__img {
  margin: 0;
  max-height: none;
}
.sec-common .single-content .post-content .installation-detail__btn .icon,
.sec-common .single-content .post-content .installation-step__img {
  margin: 0;
  max-width: none;
  max-height: none;
}
.sec-common .single-content .post-content .installation-detail__btn .icon {
  height: 24px;
}

/* ==========================================================================
   case-search（導入事例 絞り込み）
   ========================================================================== */
.case-search {
  position: relative;
  margin-bottom: 50px;
  padding: 10px 50px 50px;
  background: #f2f2f2;
  border-radius: 6px;
}
@media screen and (max-width: 834px) {
  .case-search {
    margin-bottom: 32px;
    padding: 16px 20px;
  }
}
.case-search.is-collapsed {
  padding: 10px 50px;
}

.case-search__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: clamp(16px, 2vw, 24px);
}
.case-search.is-collapsed .case-search__head {
  margin-bottom: 0;
}

.case-search__toggle {
  display: inline-flex;
  transform: translateX(40px);
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.2s, border-color 0.2s;
  min-width: 100px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-search__toggle {
    transform: translateX(0px);
  }
}
.case-search__toggle svg {
  background: #fff;
  border: solid 1px #ddd;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  padding: 4px;
}
.case-search__toggle:hover {
  background: #fafafa;
  border-color: #ccc;
}
.case-search__toggle:focus-visible {
  outline: 2px solid #161a80;
  outline-offset: 2px;
}

.case-search__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
  transform: rotate(180deg);
}
.case-search.is-collapsed .case-search__toggle-icon {
  transform: rotate(0deg);
}

.case-search.is-collapsed .case-search__body {
  display: none;
}

.case-search__form {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
}

.case-search__groups {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 20px);
}

.case-search__group {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 20px;
  align-items: start;
}
@media screen and (max-width: 834px) {
  .case-search__group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.case-search__label {
  margin: 0;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .case-search__label {
    padding-top: 0;
    font-size: 13px;
  }
}

.case-search__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-search__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 6px 14px;
  background: #fff;
  border: solid 1px #ddd;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-search__tag {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }
}
.case-search__tag:hover {
  border-color: #bbb;
}
.case-search__tag:focus-visible {
  outline: 2px solid #161a80;
  outline-offset: 2px;
}
.case-search__tag.is-selected {
  background: #161a80;
  border-color: #161a80;
  color: #fff;
  font-weight: 700;
}

.case-search__keyword {
  width: 100%;
  max-width: 800px;
  margin-left: 92px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-search__keyword {
    margin-left: 0;
  }
}

.case-search__input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  background: #fff;
  border: solid 1px #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-search__input {
    min-height: 44px;
    font-size: 16px;
  }
}
.case-search__input::-moz-placeholder {
  color: #b0b0b0;
}
.case-search__input::placeholder {
  color: #b0b0b0;
}
.case-search__input:focus-visible {
  outline-offset: 0;
  border-color: #333;
}

.case-search__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: 92px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-search__actions {
    margin-left: 0;
  }
}

.case-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  background: #333;
  border: 0;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  transition: background-color 0.2s;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-search__submit {
    width: 100%;
    min-height: 44px;
  }
}
.case-search__submit:hover {
  background: #111;
}
.case-search__submit:focus-visible {
  outline: 2px solid #161a80;
  outline-offset: 2px;
}

.case-search__reset {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-left: 10px;
}
.case-search__reset:hover {
  color: #161a80;
}
.case-search__reset:focus-visible {
  outline: 2px solid #161a80;
  outline-offset: 2px;
  border-radius: 2px;
}

.case-search__submit-icon {
  flex-shrink: 0;
}

.case-search-result-anchor {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-search-result-anchor {
    scroll-margin-top: 72px;
  }
}

.case-search-result {
  display: flex;
  justify-content: center;
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: #333;
}

.case-search-result__inner {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.case-search-result__keyword {
  font-weight: 700;
}

.case-search-result__suffix,
.case-search-result__count {
  white-space: nowrap;
}

.case-search-result__count {
  font-weight: 700;
}

/* ==========================================================================
   case-list（導入事例 一覧カード）
   ========================================================================== */
.case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
}

.case-list__empty {
  width: 100%;
  margin: 0;
  padding: 48px 0;
  text-align: center;
  color: #666;
  font-size: 16px;
}

.case-pagination {
  margin-top: 48px;
}

.case-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(33.3333333333% - 16px);
}
@media screen and (max-width: 834px) {
  .case-card {
    width: calc(50% - 12px);
    gap: 0;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-card {
    width: 100%;
  }
}

.case-card__link {
  display: block;
  width: 100%;
  color: #333;
  text-decoration: none;
  text-align: center;
}
.case-card__link:hover .case-card__img {
  opacity: 0.85;
}
.case-card__link:hover .case-card__title {
  color: #161a80;
}
.case-card__link:focus-visible {
  outline: 2px solid #161a80;
  outline-offset: 4px;
  border-radius: 4px;
}

.case-card__media {
  overflow: hidden;
  margin-bottom: 16px;
}

.case-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.6/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.2s;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-card__img {
    aspect-ratio: 16/10;
  }
}

.case-card__title {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  color: #333;
  transition: color 0.2s;
}

.case-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  width: 100%;
}

.case-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  background: #fff;
  border: solid 1px #ddd;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-card__tag {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 12px;
  }
}
.case-card__tag:hover {
  border-color: #161a80;
  color: #161a80;
}
.case-card__tag:focus-visible {
  outline: 2px solid #161a80;
  outline-offset: 2px;
}

/* ==========================================================================
   case-modal（導入事例 詳細ポップアップ）
   ========================================================================== */
html.is-case-modal-open,
body.is-case-modal-open {
  overflow: hidden;
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 10100;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.case-modal.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.case-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.case-modal__close {
  position: absolute;
  top: -24px;
  right: -24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__close {
    top: 12px;
    right: 12px;
  }
}
.case-modal__close:hover {
  background: #333;
}
.case-modal__close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.case-modal__close-x {
  display: block;
  line-height: 0.9;
  font-weight: 300;
}

.case-modal__scroll {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: max(40px, env(safe-area-inset-top) + 24px) 20px max(40px, env(safe-area-inset-bottom));
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__scroll {
    padding: 20px;
  }
}

.case-modal__panel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 56px) clamp(32px, 4vw, 56px);
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__panel {
    padding: 24px 20px 32px;
  }
}

.case-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.case-modal__tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  background: #fff;
  border: solid 1px #ddd;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.case-modal__tag:hover {
  border-color: #161a80;
  color: #161a80;
}

.case-modal__title {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.case-modal__gallery {
  margin-bottom: clamp(24px, 3vw, 36px);
}
.case-modal__gallery .pd-gallery__frame {
  background: #fff;
}
.case-modal__gallery .pd-gallery__stage {
  padding: 0 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__gallery .pd-gallery__stage {
    padding: 0 8px;
  }
}
.case-modal__gallery .pd-gallery__slide,
.case-modal__gallery .case-modal__slide {
  aspect-ratio: auto;
  min-height: 200px;
  height: clamp(220px, 48vh, 480px);
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__gallery .pd-gallery__slide,
  .case-modal__gallery .case-modal__slide {
    min-height: inherit;
    height: clamp(120px, 48vh, 180px);
  }
}
.case-modal__gallery .pd-gallery__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  cursor: default;
}
.case-modal__gallery .pd-gallery__caption {
  display: none;
}
.case-modal__gallery .pd-gallery__arrow--prev {
  left: -4px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__gallery .pd-gallery__arrow--prev {
    left: -8px;
  }
}
.case-modal__gallery .pd-gallery__arrow--next {
  right: -4px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__gallery .pd-gallery__arrow--next {
    right: -8px;
  }
}
.case-modal__gallery .pd-gallery__thumbs-wrap {
  margin-top: 12px;
  padding: 0 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__gallery .pd-gallery__thumbs-wrap {
    padding: 0 8px;
    overflow-x: auto;
    margin-top: 10px;
  }
}
.case-modal__gallery .pd-gallery__thumbs .slick-slide {
  width: 70px !important;
  margin: 0 2px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__gallery .pd-gallery__thumbs .slick-slide {
    width: 50px !important;
    margin: 0 1px;
  }
}
.case-modal__gallery .pd-gallery__thumb {
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__gallery .pd-gallery__thumb {
    width: 50px;
    height: 50px;
  }
}
.case-modal__gallery {
  /* サムネイル数が少ないときは中央揃え */
}
.case-modal__gallery .pd-gallery__thumbs-wrap:not(.is-navigable) .pd-gallery__thumbs.slick-initialized .slick-list {
  overflow: visible;
}
.case-modal__gallery .pd-gallery__thumbs-wrap:not(.is-navigable) .pd-gallery__thumbs.slick-initialized .slick-track {
  display: inline-flex !important;
  width: auto !important;
  transform: none !important;
  margin: 0 auto;
  left: 0 !important;
}
.case-modal__gallery .pd-gallery__thumbs-wrap:not(.is-navigable) .pd-gallery__thumbs {
  text-align: center;
}
.case-modal__gallery.is-single-slide .pd-gallery__arrow--prev,
.case-modal__gallery.is-single-slide .pd-gallery__arrow--next {
  display: none;
}
.case-modal__gallery.is-single-slide .pd-gallery__thumbs-wrap {
  display: none;
}
.case-modal__gallery.is-single-slide .pd-gallery__stage {
  padding: 0;
}

.case-modal__desc {
  margin-bottom: clamp(24px, 3vw, 36px);
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.case-modal__products {
  display: flex;
  align-items: stretch;
  min-height: 56px;
  border-radius: 2px;
  overflow: hidden;
}
.case-modal__products.is-empty {
  display: none;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__products {
    flex-direction: column;
  }
}

.case-modal__products-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 120px;
  padding: 12px 20px;
  background: #161a80;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .case-modal__products-label {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}

.case-modal__products-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  flex: 1 1 auto;
  padding: 12px 20px;
  background: #e8edf5;
}

.case-modal__product-link {
  font-size: 14px;
  font-weight: 600;
  color: #161a80;
  text-decoration: underline;
  text-underline-offset: 3px;
  line-height: 1.5;
}
.case-modal__product-link:hover {
  color: #0f125c;
}

/* ==========================================================================
   case-single（導入事例 詳細ページ）
   ========================================================================== */
.case-single {
  max-width: 900px;
  margin: 0 auto;
}
.case-single .case-modal__gallery .pd-gallery__main:not(.slick-initialized) {
  opacity: 1;
}

.sec-common .single-content .tips-post-nav {
  margin-top: 2rem;
  padding: 1.25rem 10px 0;
  border-top: solid 1px #ddd;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .tips-post-nav {
    padding: 1.25rem 0 0;
  }
}
.sec-common .single-content .tips-post-nav__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .tips-post-nav__row {
    grid-template-columns: 1fr;
  }
}
.sec-common .single-content .tips-post-nav__cell--next {
  text-align: right;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .tips-post-nav__cell--next {
    text-align: left;
  }
}
.sec-common .single-content .tips-post-nav__link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 100%;
  text-decoration: none;
  color: #111;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .sec-common .single-content .tips-post-nav__link:hover {
    opacity: 0.75;
  }
}
.sec-common .single-content .tips-post-nav__link--next {
  align-items: flex-end;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .tips-post-nav__link--next {
    align-items: flex-start;
  }
}
.sec-common .single-content .tips-post-nav__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #161a85;
}
.sec-common .single-content .tips-post-nav__title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
  color: #0071bc;
}

#search-results .post-content .search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 0;
}
#search-results .post-content .search-list__item {
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
}
#search-results .post-content .search-list__link {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  #search-results .post-content .search-list__link {
    padding: 18px 0;
  }
}
#search-results .post-content .search-list__link:hover {
  background-color: #f7f8fa;
}
#search-results .post-content .search-list__title {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #161a85;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  #search-results .post-content .search-list__title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
#search-results .post-content .search-list__title-label {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  #search-results .post-content .search-list__title-label {
    font-size: 12px;
  }
}
#search-results .post-content .search-list .excerpt {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  #search-results .post-content .search-list .excerpt {
    font-size: 13px;
    line-height: 1.7;
  }
}

.company-overview {
  max-width: 1000px;
  margin: 0 auto;
}
.company-overview__note {
  margin: 28px 0 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: #111;
}

.company-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 80px;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .company-table {
    margin-bottom: 40px;
  }
}
.company-table th,
.company-table td {
  padding: 24px 34px;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .company-table th,
  .company-table td {
    font-size: 0.875rem;
  }
}
.company-table th,
.company-table td {
  line-height: 1.7;
  vertical-align: top;
  text-align: left;
}
.company-table th {
  width: 28%;
  background: #f0f2ff;
  font-weight: 700;
  color: #111;
}
.company-table td {
  width: 72%;
  background: #fff;
  color: #111;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .company-table {
    display: block;
  }
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }
  .company-table th {
    border-bottom: none;
    padding: 8px 20px;
  }
  .company-table td {
    padding: 20px 20px;
  }
  .company-table tr:last-child td {
    border-bottom: none;
  }
}

.company-banner {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 0;
}
.company-banner img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

/* パートナー会社 */
.partner {
  margin: 0 auto;
}
.partner__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .partner__title {
    font-size: 18px;
  }
}
.partner__lead {
  font-size: 1rem;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .partner__lead {
    font-size: 0.875rem;
  }
}
.partner__lead {
  line-height: 1.8;
  color: #111;
  text-align: center;
  margin: 0 auto 28px;
  max-width: 760px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .partner__lead {
    text-align: left;
    margin-bottom: 20px;
  }
}
.partner__tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
  border-bottom: solid 5px #161a85;
  margin-bottom: 20px;
  overflow: hidden;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .partner__tabs {
    gap: 4px;
  }
}
.partner__tab {
  flex: 1 1 0;
  max-width: 300px;
  min-height: 56px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ddd;
  border: none;
  border-radius: 5px 5px 0 0;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  cursor: pointer;
  transform: translateY(8px);
  transition: background 0.3s ease, transform 0.2s ease, opacity 0.2s ease;
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .partner__tab:hover {
    opacity: 0.9;
  }
}
.partner__tab.is-active {
  background: #161a85;
  transform: translateY(0);
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .partner__tab {
    font-size: 13px;
    min-height: 52px;
    border-radius: 4px 4px 0 0;
  }
}
.partner__panel {
  display: none;
}
.partner__panel.is-active {
  display: block;
  position: relative;
  z-index: 2;
}
.partner__table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .partner__table-wrap {
    overflow-x: visible;
  }
}
.partner__empty {
  margin: 24px 0 0;
  padding: 28px 16px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  background: #f7f8ff;
  border-radius: 6px;
}

.partner-regions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner-region {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.partner-region__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #f7f8ff;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.partner-region__summary::-webkit-details-marker {
  display: none;
}
.partner-region__summary::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #161a85;
  border-bottom: 2px solid #161a85;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.partner-region[open] .partner-region__summary::after {
  transform: rotate(-135deg);
}
.partner-region__count {
  margin-left: auto;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
}
.partner-region__body {
  border-top: 1px solid #e5e5e5;
}

.partner-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}
.partner-table th,
.partner-table td {
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  text-align: left;
  vertical-align: top;
  color: #111;
  word-break: break-word;
}
.partner-table thead th {
  background: #161a85;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
}
.partner-table tbody tr:nth-child(even) td {
  background: #f7f8ff;
}
.partner-table td:nth-child(2) {
  font-weight: 700;
}
.partner-table td:nth-child(1),
.partner-table td:nth-child(2),
.partner-table td:nth-child(5),
.partner-table td:nth-child(6) {
  white-space: nowrap;
}
.partner-table td:nth-child(5) a {
  text-decoration: none;
  word-break: normal;
}
.partner-table__hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 6px 14px;
  background: #fff;
  border: solid 1px #161a85;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  border-radius: 100px;
  white-space: nowrap;
  transition: 0.2s ease;
  color: #161a85;
}
@media (hover: hover) {
  .partner-table__hp-btn:hover {
    color: #fff;
    background-color: #161a85;
    text-decoration: none;
  }
}
.partner-table a:not(.partner-table__hp-btn) {
  color: #161a85;
  text-decoration: underline;
  word-break: break-all;
}
@media (hover: hover) {
  .partner-table a:not(.partner-table__hp-btn):hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .partner-table {
    min-width: 0;
    display: block;
  }
  .partner-table thead {
    display: none;
  }
  .partner-table tbody,
  .partner-table tr,
  .partner-table td {
    display: block;
    width: 100%;
  }
  .partner-table tr {
    margin-bottom: 16px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    background: #fff;
  }
  .partner-table tbody tr:nth-child(even) td {
    background: #fff;
  }
  .partner-table td {
    display: block;
    gap: 12px;
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid #eee;
  }
  .partner-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #999;
    font-size: smaller;
    display: block;
  }
  .partner-table td:last-child {
    border-bottom: none;
  }
}

/** イビコンでできること — ヒーロー */
.solutions-hero {
  position: relative;
  height: calc(100vh - 9.375rem);
  height: calc(100dvh - 9.375rem);
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .solutions-hero {
    height: calc(100vh - 8.25rem);
    height: calc(100dvh - 8.25rem);
  }
}
@media screen and (max-width: 834px) {
  .solutions-hero {
    height: calc(100vh - 5rem);
    height: calc(100dvh - 5rem);
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-hero {
    height: calc(100vh - 3.75rem);
    height: calc(100dvh - 3.75rem);
    min-height: 360px;
  }
}
.solutions-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  height: 100%;
}
.solutions-hero__slider .slick-list,
.solutions-hero__slider .slick-track {
  height: 100%;
}
.solutions-hero__slide {
  position: relative;
  height: 100%;
  outline: none;
}
.solutions-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.solutions-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(8, 26, 52, 0.88) 0%, rgba(8, 26, 52, 0.72) 45%, rgba(8, 26, 52, 0.55) 100%), linear-gradient(0deg, rgba(8, 26, 52, 0.55), rgba(8, 26, 52, 0.15));
  pointer-events: none;
}
.solutions-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .solutions-hero__inner {
    padding: 32px 24px;
  }
}
.solutions-hero__eyebrow {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(24px);
  animation: solutions-hero-fade-in 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) 0.15s forwards;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-hero__eyebrow {
    font-size: 12px;
  }
}
.solutions-hero__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-hero__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.solutions-hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: solutions-hero-fade-in 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.solutions-hero__title-line:first-child {
  animation-delay: 0.3s;
}
.solutions-hero__title-line:nth-child(2) {
  animation-delay: 0.45s;
}
.solutions-hero__title-line:nth-child(3) {
  animation-delay: 0.6s;
}
.solutions-hero__lead {
  max-width: 800px;
  margin: 0;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 400;
  line-height: 2;
  color: rgba(234, 241, 250, 0.92);
  opacity: 0;
  transform: translateY(24px);
  animation: solutions-hero-fade-in 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) 0.8s forwards;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-hero__lead {
    font-size: 14px;
    line-height: 1.9;
  }
}
@media (prefers-reduced-motion: reduce) {
  .solutions-hero__eyebrow, .solutions-hero__title-line, .solutions-hero__lead {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes solutions-hero-fade-in {
  to {
    opacity: 1;
    transform: none;
  }
}
/** イビコンでできること */
.sec-common .inner.inner--solutions {
  max-width: 1200px;
}
.sec-common .inner.inner--solutions .single-content {
  max-width: 1200px;
}

.solutions-page {
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-section {
  margin: 0 0 56px;
}
.solutions-section:last-child {
  margin-bottom: 0;
}
.solutions-section__title {
  margin: 0 0 50px;
  padding: 0;
  border-left: none;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.45;
  color: #161a85;
  text-align: center;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-section__title {
    font-size: clamp(20px, 5.5vw, 28px);
    margin-bottom: 24px;
  }
}
.solutions-section__intro {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.85;
  color: #111;
  text-align: center;
}

.solutions-strength__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 834px) {
  .solutions-strength__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.solutions-strength__media {
  line-height: 0;
  overflow: hidden;
  border-radius: 6px;
}
.solutions-strength__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/2.4;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.solutions-strength__body {
  min-width: 0;
}
.solutions-strength__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: #111;
}

.solutions-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 834px) {
  .solutions-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.solutions-stats__item {
  margin: 0;
}
.solutions-stats__num {
  margin: 0 0 8px;
  font-size: 28px;
  padding: 10px;
  font-weight: bold;
  line-height: 1.3;
  color: #161a85;
  background-color: #eaebfa;
  text-align: center;
  border-radius: 100px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-stats__num {
    font-size: 18px;
  }
}
.solutions-stats__label {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #555;
  text-align: center;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-stats__label {
    font-size: 14px;
  }
}

.solutions-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (max-width: 834px) {
  .solutions-cards {
    grid-template-columns: 1fr;
  }
}
.solutions-cards__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(17, 17, 17, 0.06);
}
.solutions-cards__media {
  line-height: 0;
  overflow: hidden;
}
.solutions-cards__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.solutions-cards__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 28px);
}
.solutions-cards__tag {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: #161a85;
}
.solutions-cards__name {
  margin: 0 0 14px !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  border: none !important;
  background-color: transparent !important;
  padding: 0 !important;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-cards__name {
    font-size: 18px;
  }
}
.solutions-cards__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #111;
}
.solutions-cards__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #161a85;
  text-decoration: none;
}
.solutions-cards__link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
}
@media (hover: hover) {
  .solutions-cards__link:hover {
    opacity: 0.8;
  }
}

.solutions-capabilities {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solutions-capabilities__item {
  display: grid;
  grid-template-columns: minmax(240px, 34%) 1fr;
  align-items: start;
  gap: 28px;
  padding: 20px 24px;
  background: #f0f5ff;
  border-radius: 6px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-capabilities__item {
    display: block;
    padding: 18px;
  }
}
.solutions-capabilities__media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 520/336;
  align-self: start;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-capabilities__media {
    margin-bottom: 10px;
  }
}
.solutions-capabilities__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0;
}
.solutions-capabilities__head {
  min-width: 0;
}
.solutions-capabilities__sub {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
}
.solutions-capabilities__title {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: clamp(22px, 2.4vw, 24px) !important;
  font-weight: 700;
  line-height: 1.4;
  color: #161a85;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-capabilities__title {
    font-size: clamp(20px, 5vw, 26px);
  }
}
.solutions-capabilities__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #111;
}
.solutions-capabilities__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 100px;
  background: #fff;
  color: #161a85;
  border: solid 1px #161a85;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: all 0.3s ease;
}
.solutions-capabilities__btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
@media (hover: hover) {
  .solutions-capabilities__btn:hover {
    color: #fff;
    background-color: #161a85;
    opacity: 1;
  }
}

.solutions-rnd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 6px;
  background: #161a85;
}
@media screen and (max-width: 834px) {
  .solutions-rnd {
    grid-template-columns: 1fr;
  }
}
.solutions-rnd__media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
@media screen and (max-width: 834px) {
  .solutions-rnd__media {
    min-height: 220px;
  }
}
.solutions-rnd__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0;
}
.solutions-rnd__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
}
.solutions-rnd__label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #c8d0ff;
}
.solutions-rnd__title {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}
.solutions-rnd__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
}
.solutions-rnd__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.solutions-rnd__link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
}
@media (hover: hover) {
  .solutions-rnd__link:hover {
    opacity: 0.85;
  }
}

.solutions-contact {
  margin-top: 56px;
  padding: clamp(28px, 4vw, 40px);
  background: #f5f5f5;
  border-radius: 6px;
  text-align: center;
}
.solutions-contact__title {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  color: #111;
}
.solutions-contact__text {
  max-width: 680px;
  margin: 0 auto 24px;
  font-size: 15px;
  line-height: 1.95;
  color: #111;
}
.solutions-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(100%, 420px);
  max-width: 100%;
  min-height: 64px;
  padding: 16px 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ea0437 0%, #c9032f 100%);
  color: #fff;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-contact__btn {
    min-width: 0;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    letter-spacing: 0.02em;
    gap: 8px;
  }
}
.solutions-contact__btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  transition: transform 0.25s ease;
}
@media (hover: hover) {
  .solutions-contact__btn:hover {
    color: #fff;
  }
}
.solutions-contact__tel {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  color: #111;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .solutions-contact__tel-label {
    display: block;
  }
}

.sec-common .single-content .post-content .solutions-page img {
  margin: 0;
  max-height: none;
}
.sec-common .single-content .post-content .solutions-page .solutions-rnd__img {
  height: 100%;
  max-height: none;
}
.sec-common .single-content .post-content .solutions-page .solutions-capabilities__title {
  margin-bottom: 12px;
  padding: 0;
  border: none;
  background-color: transparent;
}
.sec-common .single-content .post-content .solutions-page .solutions-capabilities__img {
  height: 100%;
  max-height: none;
}

.sitemap {
  max-width: 1200px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sitemap {
    margin-bottom: 48px;
  }
}
.sitemap__intro {
  margin: 0 0 32px;
  font-size: 1rem;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sitemap__intro {
    font-size: 0.875rem;
  }
}
.sitemap__intro {
  line-height: 1.8;
  color: #444;
}
.sitemap__jump {
  margin-bottom: 40px;
  padding: 20px 24px;
  background: #f8f9ff;
  border: 1px solid #e4e8ff;
  border-radius: 8px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sitemap__jump {
    padding: 16px 18px;
    margin-bottom: 28px;
  }
}
.sitemap__jump-label {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #555;
}
.sitemap__jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap__jump-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d8ddf5;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.sitemap__jump-link:hover {
  background: #eef1ff;
  border-color: #b8c2f0;
  color: #111;
}
.sitemap__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .sitemap__grid {
    grid-template-columns: 1fr;
  }
}
.sitemap__section {
  background: #fff;
  border: 1px solid #eceef5;
  border-radius: 6px;
  overflow: hidden;
}
.sitemap__section--wide {
  grid-column: 1/-1;
}
.sitemap__section-head {
  padding: 18px 22px;
  background: #f0f2ff;
  border-bottom: 1px solid #e4e8ff;
}
.sitemap__section-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sitemap__section-title {
    font-size: 16px;
  }
}
.sitemap__section-title a {
  color: #111;
}
.sitemap__section-body {
  padding: 24px 40px 30px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sitemap__section-body {
    padding: 16px 18px 20px;
  }
}
.sitemap__list, .sitemap__sublist, .sitemap__childlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap__list {
  display: grid;
  gap: 10px;
}
.sitemap__list--columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 20px;
}
@media screen and (max-width: 700px) {
  .sitemap__list--columns {
    grid-template-columns: 1fr;
  }
}
.sitemap__item {
  line-height: 1.4;
}
.sitemap__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #161a85;
  text-decoration: none;
  transition: color 0.2s;
}
.sitemap__link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #161a85;
  border-radius: 50%;
  margin-right: 6px;
}
.sitemap__link--parent {
  font-size: 16px;
}
.sitemap__link--external::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../images/icon-external-link.svg") center/contain no-repeat;
  flex-shrink: 0;
}
.sitemap__sublist {
  margin-top: 10px;
  padding-left: 14px;
  display: grid;
  gap: 8px;
}
.sitemap__childlist {
  margin-top: 10px;
  padding-left: 15px;
  display: grid;
  gap: 4px;
}
.sitemap__sublink, .sitemap__childlink {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  color: #161a85;
  text-decoration: none;
}
.sitemap__sublink {
  font-weight: 700;
  display: flex;
  align-items: center;
}
.sitemap__sublink::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1.5px;
  background: #111;
  margin-right: 6px;
}
.sitemap__childlink {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sitemap__childlink::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #ddd;
  border-radius: 50%;
  margin-right: 6px;
}
.sitemap__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 20px;
}
@media screen and (max-width: 1200px) {
  .sitemap__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sitemap__columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.sitemap__col-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
}

a.glossary-link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.15em;
}

/*** ページタイトル ***/
.page-hero {
  background-color: #eaebfa;
  position: relative;
}
.page-hero .inner {
  position: relative;
  max-width: inherit;
  padding: 0;
  display: flex;
  gap: 50px;
  align-items: center;
}
.page-hero .page-title-h1 {
  line-height: 1;
  font-size: clamp(24px, 8vw, 70px);
  font-weight: 500;
  color: #111;
  text-transform: capitalize;
  color: #111;
  width: 40%;
  padding-left: 5%;
}
@media screen and (max-width: 834px) {
  .page-hero .page-title-h1 {
    font-size: 40px;
    width: 30%;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-hero .page-title-h1 {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 10px));
    left: 5%;
    color: #eee;
    font-size: 40px;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 90%;
  }
}
.page-hero .page-title-h1 .page-subtitle {
  display: block;
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #111;
  margin-top: 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-hero .page-title-h1 .page-subtitle {
    color: #eee;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 500;
  }
}
.page-hero .wrap-img {
  width: 60%;
  min-height: 300px;
}
@media screen and (max-width: 834px) {
  .page-hero .wrap-img {
    min-height: 200px;
    width: 70%;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-hero .wrap-img {
    min-height: 150px;
    width: 100%;
  }
}
.page-hero .wrap-img .title-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 834px) {
  .page-hero .wrap-img .title-img {
    height: 250px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .page-hero .wrap-img .title-img {
    height: 200px;
  }
}
@media screen and (max-width: 834px) {
  .page-hero.no-img .page-title-h1 {
    color: #111;
    text-shadow: none;
  }
}
@media screen and (max-width: 834px) {
  .page-hero.no-img .page-title-h1 .page-subtitle {
    color: #111;
  }
}

.b-nav {
  margin: 20px 0 50px 5%;
  color: #999;
}
@media screen and (max-width: 834px) {
  .b-nav {
    margin: 10px 0 50px 5%;
  }
}
.b-nav > span {
  display: flex;
  gap: 5px;
}
.b-nav span {
  display: flex;
  gap: 5px;
  font-size: 12px;
  color: #999;
}
@media screen and (max-width: 834px) {
  .b-nav span {
    font-size: 11px;
  }
}
.b-nav span.breadcrumb_last {
  font-weight: 700;
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.b-nav span.breadcrumb_last::after {
  display: none;
}
.b-nav span a {
  font-size: 12px;
  color: #0071bc;
}
@media screen and (max-width: 834px) {
  .b-nav span a {
    font-size: 11px;
  }
}

.sec-common {
  min-height: 500px;
  padding-bottom: 100px;
}
@media screen and (max-width: 834px) {
  .sec-common {
    padding-bottom: 50px;
  }
}
.sec-common .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .inner {
    padding: 0 20px;
  }
}
.sec-common .inner.two-col {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 834px) {
  .sec-common .inner.two-col {
    flex-direction: column;
  }
}
.sec-common .page-sidebar__inner {
  background-color: #fff;
  border-right: solid 1px #eee;
  padding-right: 40px;
  flex-shrink: 0;
  width: 100%;
  max-width: 200px;
}
@media screen and (max-width: 834px) {
  .sec-common .page-sidebar__inner {
    order: 2;
    padding-right: 0;
    border-right: none;
    padding: 40px;
    background-color: #f5f5f5;
  }
}
.sec-common .page-sidebar__inner .page-sidebar__box {
  margin-bottom: 30px;
}
.sec-common .page-sidebar__inner .page-sidebar__box .page-sidebar__title {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  background-color: #161a85;
  color: #fff;
  padding: 3px 10px;
}
.sec-common .page-sidebar__inner .page-sidebar__box .page-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sec-common .page-sidebar__inner .page-sidebar__box .page-sidebar__list li {
  margin-bottom: 10px;
}
.sec-common .page-sidebar__inner .page-sidebar__box .page-sidebar__list a {
  color: #111;
  text-decoration: none;
  display: block;
  font-size: 13px;
  display: flex;
  gap: 7px;
  align-items: center;
}
.sec-common .page-sidebar__inner .page-sidebar__box .page-sidebar__list a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background-color: #ddd;
  border-radius: 50%;
  flex-shrink: 0;
}
.sec-common .page-sidebar__inner .page-sidebar__box .page-sidebar__list a:hover {
  text-decoration: underline;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__item {
  margin: 0;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__item:not(:first-child) {
  margin-top: 18px;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__card {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #111;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__card:hover .page-sidebar-popular__title {
  text-decoration: underline;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__thumb-wrap {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border-radius: 6px;
  background: #e8eef4;
  box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.08);
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__thumb-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: 6px 0 0 0;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__badge--new {
  background: #ea0437;
}
.sec-common .page-sidebar__inner .page-sidebar__box.page-sidebar__box--popular .page-sidebar-popular__title {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.sec-common .single-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sec-common .single-content .news-section__item-meta {
  margin-bottom: 20px;
}
.sec-common .single-content .news-section__list {
  border-top: none;
}
.sec-common .single-content h1.title {
  font-size: 30px;
  font-weight: 500;
  color: #111;
  letter-spacing: 2px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: solid 1px #ddd;
  position: relative;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content h1.title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.sec-common .single-content h1.title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background-color: #161a85;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.sec-common .single-content .post-content {
  padding: 20px 10px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content {
    padding: 20px 0;
  }
}
.sec-common .single-content .post-content .main-area,
.sec-common .single-content .post-content h3 {
  margin-bottom: 1.5em;
  font-size: larger;
  border-left: solid 5px #161a85;
  padding: 6px 15px;
  background-color: #eaebfa;
}
.sec-common .single-content .post-content p {
  margin-bottom: 1em;
  line-height: 2;
}
.sec-common .single-content .post-content ol,
.sec-common .single-content .post-content ul {
  margin-left: 2em;
}
.sec-common .single-content .post-content ol li,
.sec-common .single-content .post-content ul li {
  line-height: 1.6;
  margin-bottom: 1em;
}
.sec-common .single-content .post-content iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .sec-common .single-content .post-content iframe {
    height: 200px;
  }
}
.sec-common .single-content .post-content a {
  font-weight: 700;
}
.sec-common .single-content .post-content img {
  display: block;
  margin: 2em auto;
  max-width: 100%;
  height: auto;
  max-height: 700px;
}
.sec-common .single-content .post-content img.alignnone {
  display: inline;
}
.sec-common .single-content .post-content .searchform {
  margin-top: 2em;
}

.pagination {
  margin: 48px auto 0;
}
.pagination .screen-reader-text {
  display: none;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
}
.pagination .page-numbers {
  width: 35px;
  height: 35px;
  display: flex;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  color: #161a85;
  background: #eaebfa;
  transition: opacity 0.2s ease;
}
.pagination .page-numbers.current {
  background: #161a85;
  color: #fff;
}
@media (hover: hover) {
  .pagination .page-numbers:hover {
    opacity: 0.75;
  }
}

.searchform {
  max-width: 500px;
}
.searchform .searchform-inner {
  display: flex;
  gap: 5px;
}
.searchform .search-input {
  width: 100%;
  font-size: 16px;
  color: #111;
  min-width: 0;
  height: 48px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
}
.searchform .search-input::-moz-placeholder {
  color: #999;
}
.searchform .search-input::placeholder {
  color: #999;
}
.searchform .search-btn {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100px;
  background-color: #111;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
}

.button_signup {
  display: block;
  margin: 30px auto 0;
  font-size: 1rem;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .button_signup {
    font-size: 0.875rem;
  }
}
.button_signup {
  text-align: center;
  padding: 20px 40px;
  background-color: #ea0437;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  max-width: -moz-fit-content;
  max-width: fit-content;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  position: relative;
}
.button_signup::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #fff;
  border-right: solid 1.5px #fff;
  transform: rotate(45deg) translateY(-50%);
}
@media (hover: hover) {
  .button_signup:hover {
    opacity: 0.75;
    color: #fff;
  }
}

/**  Slick Base  fadeする場合はslick.cssの読み込みが必要 **/
.slick {
  width: 100%;
  position: relative;
}
.slick li.slick-slide {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
}
.slick li.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/**  チラツキ防止 **/
.slick-slide,
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
  transform: translateZ(0);
  perspective: 1000;
  backface-visibility: hidden;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  font-size: 50px;
  margin-top: -50px;
  z-index: 2;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.fa-angle-left {
  width: 50px;
  height: 50px;
  display: block;
  border-top: solid 1px #333;
  border-left: solid 1px #333;
  transform: rotate(-45deg);
}

.fa-angle-right {
  width: 50px;
  height: 50px;
  display: block;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  transform: rotate(45deg);
}

.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}

.slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ddd;
  border-radius: 100%;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background-color: #0071bc;
}

/* FLEX VER
.slick-dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  width: fit-content;;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px 30px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  button{display: none;}
  li {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background-color: #eee;
    border-radius: 100%;
    cursor: pointer;
    &.slick-active {
      background-color: $color-01;
    }
  }
}
*/
/*
      Colorbox Core Style:
  */
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  font-size: 12px;
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
  overflow: visible;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#cboxOverlay {
  background: #000;
}

#colorbox {
  outline: none;
}

#cboxContent {
  margin: 0px;
  background: #fff;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxTitle {
  position: absolute;
  bottom: -30px;
  left: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

#cboxCurrent {
  position: absolute;
  bottom: -30px;
  left: 0px;
  color: #ccc;
  font-size: 12px;
}

#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: none;
}

#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}

#colorbox .slick-arrow {
  color: #fff;
  font-size: 40px;
}

#cboxPrevious .slick-arrow {
  margin-top: -25px;
  left: -40px;
}

#cboxNext .slick-arrow {
  margin-top: -35px;
  right: -40px;
}

#cboxClose {
  font-size: 40px;
  color: #fff;
  position: absolute;
  top: -60px;
  right: 0;
}/*# sourceMappingURL=common.css.map */