@charset "UTF-8";

/* ========================================
  Reset & Base
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

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

/* ========================================
  Common
======================================== */
.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.section-heading__icon {
  display: block;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  background-color: #000;
}

.section-heading__title {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 22px;
}

.section-heading__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  color: #000;
}

.section-heading__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #3a4853;
}

.section-heading--white .section-heading__icon {
  background-color: #fff;
}

.section-heading--white .section-heading__en,
.section-heading--white .section-heading__ja {
  color: #fff;
}

/* Button */
.btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 301px;
  height: 51px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.btn--dark {
  background-color: #333;
  border: 1px solid #828282;
  color: #fff;
}

/* ========================================
  Header
======================================== */
.header {
  background-color: #fff;
  width: 100%;
  z-index: 999;
}

.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: headerSlideDown 0.4s ease forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.header__logo a {
  line-height: 0;
}

.header__logo-img {
  width: 129px;
  height: auto;
}

.header__company-name {
  font-size: 14px;
  line-height: 1.2;
  color: #000;
}

/* Hamburger (SPのみ表示) */
.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
  padding: 0;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger-line:nth-child(1) { top: 0; }
.header__hamburger-line:nth-child(2) { top: 11px; }
.header__hamburger-line:nth-child(3) { top: 22px; }

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}

.header__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.header__nav-sub {
  display: flex;
  gap: 22px;
  font-size: 12px;
  color: #333;
}

.header__nav-main {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

/* ========================================
  Hero (Swiper)
======================================== */
.hero {
  width: 100%;
  overflow: hidden;
}

.hero__slider {
  width: 100%;
}

.hero__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.hero__slide-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* ========================================
  Search (製品検索)
======================================== */
.search {
  padding: 40px 20px;
  background-color: #fff;
}

.search__inner {
  max-width: 780px;
  margin: 0 auto;
}

.search__form {
  display: flex;
  align-items: center;
  gap: 34px;
  border: 1px solid #333;
  border-radius: 999px;
  height: 68px;
  padding: 0 30px;
}

.search__icon {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  padding: 0;
}

.search__icon img {
  width: 100%;
  height: 100%;
}

.search__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #333;
  letter-spacing: 2.8px;
  background: transparent;
}

.search__input::placeholder {
  color: #666;
}

/* ========================================
  Product (製品一覧)
======================================== */
.product {
  padding: 80px 20px;
}

.product__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 56px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.product-card--disabled {
  pointer-events: none;
}

.product-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
}

.product-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
}

.product-card__image--placeholder {
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image--placeholder img {
  width: 50%;
  height: auto;
  object-fit: contain;
  opacity: 0.35;
}

.product-card__text {
  display: flex;
  flex-direction: column;
}

.product-card__category {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #3a4853;
}

.product-card__name {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Product Modifier - グレー背景 */
.product--bg {
  background-color: #f6f6f6;
  padding: 160px 20px;
}

/* ========================================
  Support (サポート)
======================================== */
.support {
  padding: 80px 20px 160px;
}

.support__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 35px;
}

.support-card {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 60px;
  padding: 0 22px;
  border: 1px solid #333;
  background-color: #fff;
  transition: opacity 0.3s;
  position: relative;
}

.support-card--disabled {
  pointer-events: none;
}

.support-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.support-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 22px;
}

.support-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-card__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* ========================================
  Service (事業内容)
======================================== */
.service {
  position: relative;
  padding: 160px 20px;
}

.service__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__overlay {
  position: absolute;
  inset: 0;
  background-color: #505050;
  mix-blend-mode: multiply;
}

.service__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service__content {
  border: 1px solid #fff;
  padding: 40px;
  background-color: transparent;
}

.service__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}

.service__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
}

.service__list {
  list-style: disc;
  padding-left: 24px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

.service__list li {
  margin-bottom: 4px;
}

/* ========================================
  Case Study (納入事例)
======================================== */
.case-study {
  padding: 160px 20px;
}

.case-study__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-study__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.case-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 4px;
}

.case-card__image--placeholder {
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__image--placeholder img {
  width: 50%;
  height: auto;
  object-fit: contain;
  opacity: 0.35;
}

.case-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-card__category {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  color: #3a4853;
}

.case-card__name {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.case-card__meta {
  font-size: 12px;
  line-height: 1.6;
  color: #555;
}

/* ========================================
  Downloads Banner (ダウンロード誘導バナー)
======================================== */
.dl-banner {
  background-color: #333;
}

.dl-banner__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px;
  color: #fff;
}

.dl-banner__link:hover {
  opacity: 1;
}

.dl-banner__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  animation: dlBannerBounce 2s ease-in-out infinite;
}

.dl-banner__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.dl-banner__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  animation: dlBannerBounce 2s ease-in-out infinite;
}

@keyframes dlBannerBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ========================================
  Downloads (PDFダウンロード)
======================================== */
.downloads {
  padding: 120px 20px;
  background-color: #fff;
  scroll-margin-top: 80px;
}

.downloads__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.downloads__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.dl-block {
  border-radius: 8px;
  overflow: hidden;
}

.dl-block__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  color: #fff;
}

.dl-block__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.dl-block__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.dl-block__list {
  list-style: none;
}

.dl-block__list li {
  background-color: #f7f7f7;
}

.dl-block__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.dl-block__link:hover {
  background-color: #fafafa;
  opacity: 1;
}

.dl-block__list li:last-child .dl-block__link {
  border-bottom: none;
}

.dl-block__pdf-icon {
  width: 10px;
  height: 12px;
  flex-shrink: 0;
}

.dl-block__name {
  flex: 1;
  min-width: 0;
}

.dl-block__dl-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #8b8b8b;
  transition: color 0.2s;
}

.dl-block__link:hover .dl-block__dl-icon {
  color: #333;
}

.dl-block--catalog .dl-block__header {
  background-color: #333;
  padding: 24px 28px;
}

.dl-block--catalog .dl-block__title {
  font-size: 20px;
}

.dl-block--catalog .dl-block__link {
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 500;
}

.dl-block--manual .dl-block__header {
  background-color: #3a4853;
}

.dl-block--spec .dl-block__header {
  background-color: #8b8b8b;
}

.dl-block--spec .dl-block__title {
  font-size: 16px;
}

.dl-block--spec .dl-block__link {
  padding: 14px 28px;
  font-size: 13px;
}

.dl-block--ies .dl-block__header {
  background-color: #a0a0a0;
}

.dl-block--ies .dl-block__title {
  font-size: 15px;
}

.dl-block--ies .dl-block__link {
  padding: 12px 28px;
  font-size: 13px;
}

.dl-block__file-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 20px;
  padding: 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #7b8a96;
  border-radius: 3px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

/* ========================================
  Search Results (検索結果)
======================================== */
.search-results {
  padding: 60px 20px 120px;
}

.search-results__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.search-results__message {
  font-size: 15px;
  line-height: 1.8;
  color: #8b8b8b;
  text-align: center;
  padding: 40px 0;
}

.search-results__count {
  font-size: 14px;
  color: #8b8b8b;
  margin-bottom: 24px;
}

.search-results__list {
  display: flex;
  flex-direction: column;
}

.search-results__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: opacity 0.3s;
}

.search-results__item:first-child {
  border-top: 1px solid #e0e0e0;
}

.search-results__item:hover {
  opacity: 0.7;
}

.search-results__item-info {
  flex: 1;
  min-width: 0;
}

.search-results__item-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

.search-results__item-category {
  font-size: 13px;
  line-height: 1.4;
  color: #8b8b8b;
  margin-top: 4px;
}

.search-results__item-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #8b8b8b;
}

/* ========================================
  Back Link (戻るリンク)
======================================== */
.back-link {
  padding: 0 20px 80px;
  text-align: center;
}

.back-link__anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  transition: opacity 0.3s;
}

.back-link__anchor:hover {
  opacity: 0.7;
}

.back-link__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ========================================
  CTA (お問い合わせ)
======================================== */
.cta {
  position: relative;
  padding: 80px 20px;
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.41);
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 680px;
  padding: 30px 20px;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
  line-height: 1.6;
  transition: background-color 0.3s, opacity 0.3s;
}

.cta__button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

/* ========================================
  Footer
======================================== */
.footer__main {
  background-color: #fff;
  padding: 60px 20px;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__company {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  width: 129px;
  height: auto;
}

.footer__company-name {
  font-weight: 700;
  font-size: 20px;
  color: #333;
}

.footer__address {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.32px;
}

.footer__nav {
  display: flex;
  gap: 80px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__nav-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.32px;
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__nav-list a {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 0.3px;
}

.footer__copyright {
  background-color: #000;
  padding: 6px 20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.footer__copyright p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  text-align: center;
}

/* ========================================
  Breadcrumb (パンくずリスト)
======================================== */
.breadcrumb {
  padding: 6px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.6;
  color: #3a4853;
}

.breadcrumb__item a {
  color: #3a4853;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  margin: 0 6px;
  color: #3a4853;
}

/* ========================================
  Page Title (ページタイトル)
======================================== */
.page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 70px 20px;
  background-color: #fff;
}

.page-title__ja {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.6;
  color: #333;
  letter-spacing: 7.2px;
  text-align: center;
}

.page-title__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #3a4853;
  letter-spacing: 1.6px;
  text-align: center;
}

/* ========================================
  Contact Form (お問い合わせフォーム)
======================================== */
.contact {
  padding: 80px 20px 160px;
}

.contact__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Form --- */
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
}

.form__badge--required {
  background-color: #333;
}

.form__badge--optional {
  background-color: #bbb;
}

.form__input {
  width: 100%;
  padding: 16px;
  border: 1px solid #cacaca;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.form__input:focus {
  border-color: #333;
}

.form__input::placeholder {
  color: #cacaca;
}

.form__select-wrap {
  position: relative;
}

.form__select {
  width: 100%;
  padding: 16px;
  padding-right: 48px;
  border: 1px solid #cacaca;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s;
}

.form__select:focus {
  border-color: #333;
}

.form__select:invalid {
  color: #cacaca;
}

.form__select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 4px;
  background-color: #333;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.form__textarea {
  width: 100%;
  min-height: 136px;
  padding: 16px;
  border: 1px solid #cacaca;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s;
}

.form__textarea:focus {
  border-color: #333;
}

.form__textarea::placeholder {
  color: #cacaca;
}

.form__group--checkbox {
  flex-direction: row;
  align-items: center;
}

.form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.form__checkbox {
  width: 22px;
  height: 22px;
  border: 1px solid #000;
  appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.form__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form__checkbox-text {
  font-weight: 500;
}

.form__link {
  color: #00a6ff;
  text-decoration: underline;
  font-weight: 500;
}

.form__link:hover {
  opacity: 0.7;
}

/* --- CF7互換 --- */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.wpcf7-form .form__group--checkbox .wpcf7-form-control-wrap,
.wpcf7-form .form__group--checkbox .wpcf7-acceptance,
.wpcf7-form .form__group--checkbox .wpcf7-list-item {
  display: contents;
}

.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #e74c3c;
  margin-top: 4px;
}

.wpcf7-response-output {
  text-align: center;
  padding: 16px;
  margin: 20px 0 0;
  font-size: 14px;
}

.wpcf7-spinner {
  display: none;
}

/* 送信ボタン */
.btn--submit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn--submit:hover {
  opacity: 0.7;
}

/* ========================================
  Policy (社是)
======================================== */
.policy {
  padding: 80px 20px;
  scroll-margin-top: 80px;
}

.policy__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.policy__slogan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.policy__slogan-text {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  letter-spacing: 8px;
}

.policy__slogan-reflection {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.4;
  color: #f0f0f0;
  letter-spacing: 8px;
  transform: scaleY(-1);
  pointer-events: none;
  user-select: none;
}

.policy__description {
  font-size: 16px;
  line-height: 2;
  color: #000;
  letter-spacing: 3.2px;
}

/* ========================================
  Company Info (会社概要)
======================================== */
.company-info {
  padding: 80px 20px;
  scroll-margin-top: 80px;
}

.company-info__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company-info__body {
  display: flex;
  gap: 80px;
  align-items: center;
}

/* 情報テーブル */
.info-table {
  flex: 1;
  min-width: 0;
}

.info-table__row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.info-table__row:first-child {
  padding-top: 0;
}

.info-table__label {
  width: 120px;
  flex-shrink: 0;
  font-weight: 500;
}

.info-table__value {
  flex: 1;
  min-width: 0;
}

/* 地図 */
.company-info__map {
  width: 500px;
  height: 440px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.company-info__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================================
  FAQ (よくある質問)
======================================== */
.faq {
  padding: 80px 20px 160px;
  scroll-margin-top: 80px;
}

.faq__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* タブ */
.faq__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
}

.faq__tab {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #8b8b8b;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.faq__tab:hover {
  color: #000;
}

.faq__tab.is-active {
  color: #000;
  border-bottom-color: #000;
}

/* カテゴリ */
.faq__category {
  display: none;
}

.faq__category.is-active {
  display: block;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* アコーディオンアイテム */
.faq__item {
  border-bottom: 1px solid #e0e0e0;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: "";
}

.faq__q-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #3a4853;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3a4853;
  border-radius: 50%;
}

.faq__q-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  flex: 1;
  min-width: 0;
}

/* 開閉トグルアイコン */
.faq__toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: auto;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #8b8b8b;
  transition: transform 0.3s;
}

.faq__toggle::before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 回答 */
.faq__answer {
  display: flex;
  gap: 20px;
  padding: 0 0 24px;
  animation: faqFadeIn 0.3s ease;
}

.faq__a-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3a4853;
  border-radius: 50%;
}

.faq__a-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  flex: 1;
  min-width: 0;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
  Case Archive (納入事例一覧)
======================================== */
.case-archive {
  padding: 80px 20px 160px;
}

.case-archive__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
}

/* ========================================
  Case Detail (納入事例詳細)
======================================== */
.case-hero {
  width: 100%;
  height: 461px;
  overflow: hidden;
}

.case-hero--placeholder {
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-hero--placeholder img {
  width: 20%;
  height: auto;
  object-fit: contain;
  opacity: 0.35;
}

.case-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-detail {
  padding: 80px 20px;
}

.case-detail__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.case-detail__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid #8b8b8b;
}

.case-detail__description {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.case-detail__spec {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-detail__spec-row {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 2;
}

.case-detail__spec-label {
  width: 289px;
  flex-shrink: 0;
  color: #8b8b8b;
}

.case-detail__spec-value {
  flex: 1;
  min-width: 0;
  color: #333;
}

/* ========================================
  Product Hero (カテゴリヒーロー)
======================================== */
.product-hero {
  position: relative;
  width: 100%;
  height: 461px;
  overflow: hidden;
}

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

.product-hero__label {
  position: absolute;
  left: 60px;
  bottom: 0;
  padding: 20px 30px;
  color: #fff;
}

.product-hero__label::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #595959;
  mix-blend-mode: multiply;
}

.product-hero__label-en {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}

.product-hero__label-ja {
  position: relative;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 400;
}

/* ========================================
  Product List (製品アイテム一覧)
======================================== */
.product-list {
  padding: 160px 20px;
  background-color: #fff;
}

.product-list__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.product-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}

/* 製品アイテムカード */
.product-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-item--link {
  transition: opacity 0.3s;
}

.product-item--link:hover {
  opacity: 0.7;
}

.product-item__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f6f6f6;
}

.product-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-item__text {
  display: flex;
  flex-direction: column;
}

.product-item__series {
  font-size: 13px;
  line-height: 1.4;
  color: #3a4853;
}

.product-item__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.product-item__docs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.product-item__doc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  text-decoration: underline;
}

.product-item__doc-icon {
  width: 9.76px;
  height: 12px;
  flex-shrink: 0;
}

/* ========================================
  Responsive - Tablet (768px以下)
======================================== */
/* ========================================
  Privacy Policy (プライバシーポリシー)
======================================== */
.privacy {
  padding: 80px 20px;
}

.privacy__inner {
  max-width: 800px;
  margin: 0 auto;
}

.privacy__lead {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 48px;
}

.privacy__section {
  margin-bottom: 40px;
}

.privacy__heading {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.privacy__text {
  font-size: 15px;
  line-height: 2;
}

.privacy__list {
  margin-top: 8px;
  padding-left: 1.5em;
  list-style: disc;
}

.privacy__list li {
  font-size: 15px;
  line-height: 2;
}

.privacy__link {
  color: #333;
  text-decoration: underline;
}

@media (max-width: 768px) {

  /* --- Common --- */
  .section-heading__en {
    font-size: 26px;
  }

  .section-heading__ja {
    font-size: 14px;
  }

  .btn {
    width: 260px;
    height: 48px;
  }

  /* --- Header --- */
  .header__inner {
    padding: 16px 15px;
  }

  .header__logo {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 6px;
  }

  .header__company-name {
    font-size: 10px;
  }

  .header__hamburger {
    display: block;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    padding: 80px 30px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav-sub,
  .header__nav-main {
    flex-direction: column;
    gap: 16px;
    font-size: 15px;
  }

  .header__nav-main {
    font-size: 15px;
  }

  /* --- Search --- */
  .search {
    padding: 24px 15px;
  }

  .search__form {
    height: 52px;
    padding: 0 20px;
    gap: 16px;
  }

  .search__input {
    font-size: 12px;
    letter-spacing: 1px;
  }

  /* --- Product --- */
  .product {
    padding: 60px 15px;
  }

  .product--bg {
    padding: 80px 15px;
  }

  .product__inner {
    gap: 30px;
  }

  .product__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .product-card__image {
    height: 140px;
  }

  .product-card__category {
    font-size: 11px;
  }

  .product-card__name {
    font-size: 15px;
  }

  /* --- Support --- */
  .support {
    padding: 60px 15px 100px;
  }

  .support__inner {
    gap: 30px;
  }

  .support__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .support-card {
    height: 54px;
    padding: 0 16px;
    gap: 10px;
  }

  .support-card__label {
    font-size: 14px;
  }

  /* --- Service --- */
  .service {
    padding: 80px 15px;
  }

  .service__inner {
    gap: 30px;
  }

  .service__content {
    padding: 24px;
  }

  .service__subtitle {
    font-size: 18px;
  }

  .service__list {
    font-size: 14px;
  }

  /* --- Case Study --- */
  .case-study {
    padding: 80px 15px;
  }

  .case-study__inner {
    gap: 30px;
  }

  .case-study__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  .case-card__image {
    height: 140px;
  }

  /* --- CTA --- */
  .cta {
    padding: 60px 15px;
  }

  .cta__button {
    width: 100%;
    max-width: 500px;
    font-size: 18px;
    padding: 24px 16px;
  }

  /* --- Footer --- */
  .footer__main {
    padding: 40px 15px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer__company-name {
    font-size: 16px;
  }

  .footer__address {
    font-size: 14px;
  }

  .footer__nav {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer__nav-heading {
    font-size: 14px;
  }

  .footer__nav-list a {
    font-size: 13px;
  }

  /* --- Page Title --- */
  .page-title {
    padding: 50px 15px;
  }

  .page-title__ja {
    font-size: 28px;
    letter-spacing: 4px;
  }

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

  /* --- Contact --- */
  .contact {
    padding: 60px 15px 100px;
  }

  .contact__inner {
    gap: 30px;
  }

  .form {
    gap: 50px;
  }

  .form__fields {
    gap: 30px;
  }

  /* --- Policy --- */
  .policy {
    padding: 60px 15px;
  }

  .policy__slogan-text,
  .policy__slogan-reflection {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .policy__description {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  /* --- Company Info --- */
  .company-info {
    padding: 60px 15px;
  }

  .company-info__body {
    flex-direction: column;
    gap: 40px;
  }

  .company-info__map {
    width: 100%;
    height: 300px;
  }

  .info-table__label {
    width: 100px;
  }

  .info-table__row {
    font-size: 14px;
  }

  /* --- FAQ --- */
  .faq {
    padding: 60px 15px 100px;
  }

  .faq__tab {
    padding: 10px 20px;
    font-size: 14px;
  }

  .faq__q-text {
    font-size: 14px;
  }

  .faq__a-text {
    font-size: 13px;
  }

  /* --- Case Archive --- */
  .case-archive {
    padding: 60px 15px 100px;
  }

  .case-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }

  /* --- Case Detail --- */
  .case-hero {
    height: 280px;
  }

  .case-detail {
    padding: 60px 15px;
  }

  .case-detail__content {
    gap: 30px;
    padding-bottom: 40px;
  }

  .case-detail__description {
    font-size: 14px;
  }

  .case-detail__spec-row {
    font-size: 14px;
  }

  .case-detail__spec-label {
    width: 160px;
  }

  /* --- Product Hero & List --- */
  .product-hero {
    height: 280px;
  }

  .product-hero__label {
    left: 15px;
    padding: 14px 20px;
  }

  .product-hero__label-ja {
    font-size: 20px;
  }

  .product-list {
    padding: 80px 15px;
  }

  .product-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  /* --- Search Results --- */
  .search-results {
    padding: 40px 15px 80px;
  }

  .search-results__item-name {
    font-size: 15px;
  }

  /* --- Back Link --- */
  .back-link {
    padding: 0 15px 60px;
  }
}

  /* --- Downloads --- */
  .dl-banner__link {
    padding: 18px 15px;
    gap: 12px;
  }

  .dl-banner__icon {
    width: 24px;
    height: 24px;
  }

  .dl-banner__text {
    font-size: 13px;
  }

  .downloads {
    padding: 80px 15px;
  }

  .dl-block__header {
    padding: 16px 20px;
  }

  .dl-block__link {
    padding: 14px 20px;
  }

  .dl-block--catalog .dl-block__header {
    padding: 18px 20px;
  }

  .dl-block--catalog .dl-block__link {
    padding: 16px 20px;
  }

  .dl-block--spec .dl-block__link {
    padding: 12px 20px;
  }

  .dl-block--ies .dl-block__link {
    padding: 12px 20px;
  }
}

/* ========================================
  Responsive - SP (480px以下)
======================================== */
@media (max-width: 480px) {

  /* --- Common --- */
  .section-heading__en {
    font-size: 22px;
  }

  .section-heading__title {
    padding-top: 16px;
    gap: 10px;
  }

  /* --- Search --- */
  .search__form {
    height: 48px;
    padding: 0 16px;
    gap: 12px;
  }

  .search__icon {
    width: 18px;
    height: 18px;
  }

  .search__input {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  /* --- Product --- */
  .product {
    padding: 40px 15px;
  }

  .product--bg {
    padding: 60px 15px;
  }

  .product__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .product-card__image {
    height: 120px;
  }

  .product-card__category {
    font-size: 10px;
  }

  .product-card__name {
    font-size: 14px;
  }

  /* --- Support --- */
  .support {
    padding: 40px 15px 80px;
  }

  .support__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .support-card {
    height: 56px;
  }

  .support-card__label {
    font-size: 15px;
  }

  /* --- Service --- */
  .service {
    padding: 60px 15px;
  }

  .service__content {
    padding: 20px;
  }

  .service__subtitle {
    font-size: 16px;
  }

  .service__list {
    font-size: 13px;
    padding-left: 20px;
  }

  /* --- Case Study --- */
  .case-study {
    padding: 60px 15px;
  }

  .case-study__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-card__image {
    height: 180px;
  }

  /* --- CTA --- */
  .cta {
    padding: 80px 15px;
  }

  .cta__button {
    font-size: 16px;
    padding: 20px 12px;
    border-width: 1px;
  }

  /* --- Footer --- */
  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  /* --- Breadcrumb --- */
  .breadcrumb {
    padding: 6px 15px;
  }

  .breadcrumb__list {
    font-size: 10px;
  }

  /* --- Page Title --- */
  .page-title {
    padding: 40px 15px;
  }

  .page-title__ja {
    font-size: 24px;
    letter-spacing: 3px;
  }

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

  /* --- Contact --- */
  .contact {
    padding: 40px 15px 60px;
  }

  .form__label {
    font-size: 14px;
    gap: 10px;
  }

  .form__badge {
    font-size: 10px;
    padding: 2px 6px;
  }

  .form__input,
  .form__select,
  .form__textarea {
    font-size: 14px;
    padding: 12px;
  }

  .form__checkbox-label {
    font-size: 14px;
    gap: 10px;
  }

  .form__checkbox {
    width: 20px;
    height: 20px;
  }

  /* --- Policy --- */
  .policy {
    padding: 40px 15px;
  }

  .policy__content {
    gap: 24px;
  }

  .policy__slogan-text,
  .policy__slogan-reflection {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .policy__description {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.8;
  }

  /* --- Company Info --- */
  .company-info {
    padding: 40px 15px;
  }

  .company-info__inner {
    gap: 30px;
  }

  .company-info__map {
    height: 220px;
  }

  .info-table__row {
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
  }

  .info-table__label {
    width: auto;
    font-size: 13px;
    color: #3a4853;
  }

  /* --- FAQ --- */
  .faq {
    padding: 40px 15px 60px;
  }

  .faq__question {
    gap: 12px;
  }

  .faq__q-text {
    font-size: 14px;
  }

  .faq__answer {
    font-size: 12px;
  }

  /* --- Case Archive --- */
  .case-archive {
    padding: 40px 15px 60px;
  }

  .case-archive__grid {
    gap: 20px 12px;
  }

  /* --- Case Detail --- */
  .case-hero {
    height: 200px;
  }

  .case-detail {
    padding: 40px 15px;
  }

  .case-detail__content {
    gap: 24px;
    padding-bottom: 30px;
  }

  .case-detail__description {
    font-size: 13px;
    line-height: 1.8;
  }

  .case-detail__spec-row {
    flex-direction: column;
    gap: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .case-detail__spec-label {
    width: auto;
    font-size: 13px;
  }

  /* --- Product Hero & List --- */
  .product-hero {
    height: 200px;
  }

  .product-hero__label {
    left: 15px;
    padding: 10px 16px;
  }

  .product-hero__label-en {
    font-size: 12px;
  }

  .product-hero__label-ja {
    font-size: 18px;
  }

  .product-list {
    padding: 60px 15px;
  }

  .product-list__grid {
    gap: 24px 12px;
  }

  .product-item__series {
    font-size: 11px;
  }

  .product-item__name {
    font-size: 15px;
  }

  .product-item__doc-link {
    font-size: 11px;
  }

  .footer__copyright p {
    font-size: 12px;
  }

  /* --- Search Results --- */
  .search-results {
    padding: 30px 15px 60px;
  }

  .search-results__item-name {
    font-size: 14px;
  }

  .search-results__item-category {
    font-size: 12px;
  }

  /* --- Back Link --- */
  .back-link {
    padding: 0 15px 40px;
  }

  .back-link__anchor {
    font-size: 13px;
  }

  /* --- Downloads --- */
  .downloads {
    padding: 60px 15px;
  }

  .downloads__grid {
    gap: 30px;
  }

  .dl-banner__link {
    flex-direction: column;
    padding: 16px 15px;
    gap: 8px;
  }

  .dl-banner__text {
    font-size: 12px;
    text-align: center;
  }

  .dl-banner__arrow {
    display: none;
  }

  .dl-block__header {
    padding: 14px 16px;
    gap: 10px;
  }

  .dl-block__title {
    font-size: 15px;
  }

  .dl-block--catalog .dl-block__title {
    font-size: 17px;
  }

  .dl-block--spec .dl-block__title {
    font-size: 14px;
  }

  .dl-block__link {
    padding: 12px 16px;
    gap: 10px;
    font-size: 13px;
  }

  .dl-block--catalog .dl-block__link {
    padding: 14px 16px;
    font-size: 14px;
  }

  .dl-block--spec .dl-block__link {
    padding: 10px 16px;
    font-size: 12px;
  }

  .dl-block--ies .dl-block__title {
    font-size: 13px;
  }

  .dl-block--ies .dl-block__link {
    padding: 10px 16px;
    font-size: 12px;
  }
}
