

/* =====================================================
   0. RESET / BASE
===================================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.fade {
    -webkit-transition: 0.2s ease-in-out;
       -moz-transition: 0.2s ease-in-out;
         -o-transition: 0.2s ease-in-out;
            transition: 0.2s ease-in-out;
}
.fade:hover {
    opacity: 0.6;
    filter: alpha(opacity=90);
}

@media (min-width: 769px) {
.pc_none{
  display:none;
}
}@media (max-width: 768px) {
  .sp_none{
    display:none;
  }
}

/* =====================================================
   1. COMMON CONTAINER SYSTEM
===================================================== */

.container,
.home-inner,
.home-wrap,
.home-news,
.page .site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}


@media (max-width: 768px) {

  .container,
  .home-inner,
  .home-wrap,
  .page .site-content {
    max-width:98%;
    padding-left: 10px;
    padding-right: 10px;
  }

}
@media (max-width: 768px) {

  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

}

/* セクション基本 */
.section {
  padding: 60px 0;
}

.section-tight {
  padding: 40px 0;
}

/* =====================================================
   2. HEADER
===================================================== */

.site-header {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.site-header-logo img,
.custom-logo {
  max-height: 50px;
  width: auto;
}

/* メニュー */
.global-nav,
.gMenu {
  font-size: 14px;
  font-weight: 500;
}

.global-nav ul,
.gMenu ul {
  display: flex;
  gap: 25px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-nav a,
.gMenu a {
  color: #333;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: 0.3s;
}

.global-nav a::after,
.gMenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.global-nav a:hover::after,
.gMenu a:hover::after {
  width: 100%;
}

/* =====================================================
   FOOTER
===================================================== */

footer{
  border:1px solid #fff;
  background:#F2F2F2;
  padding:50px 0px;
}
.footer_information{
  line-height:180%;
  margin-bottom:30px;
}

.footer_button {
  text-align: center;
  max-width: 550px;
  margin: 100px auto;
  font-size:180%;
}

.footer_button a {
  position: relative;
  overflow: hidden;
  display: flex;                /* ★これ */
  align-items: center;          /* ★縦中央 */
  justify-content: center;      /* ★横中央 */

  max-width: 550px;
  height: 100px;

  background: #BF0000;
  color: #fff;

  padding: 0 30px;              /* ★上下padding削除 */
  border-radius: 3px;

  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-align: center;

  text-decoration: none;
  transition: 0.3s ease;
}

/* キラーン */
.footer_button a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.4) 50%,
    rgba(255,255,255,0) 100%
  );

  transform: skewX(-25deg);
}

/* hoverで発動 */
.footer_button a:hover::before {
  animation: shine 0.7s;
}

/* ★これが抜けてた */
@keyframes shine {
  100% {
    left: 125%;
  }
}
.footer_button a,
.footer_button a:hover {
  color: #fff;
}
@media (max-width: 768px) {

  .footer_button {
    max-width: 100%;
    margin: 60px 15px; /* 余白調整 */
    font-size: 120%;
  }

  .footer_button a {
    max-width: 100%;
    height: 80px;
    padding: 0 20px;
  }

}
.footer_company img{
    width:200px;
    max-width:100%;
    height:auto;
    margin-bottom:20px;
}

/* =====================================================
   3. HOME COMMON
===================================================== */

.home-wrap {
  padding: 40px 0;
}

.home-title {
  font-size: 24px;
  margin-top:20px;
  margin-bottom: 10px;
}

.home-lead {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
@media (max-width: 768px) {

  .home-lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
  }

}

/* =====================================================
   4. HOME GRID SYSTEM
===================================================== */

.home-grid {
  display: grid;
  gap: 20px;
}
.home-grid a{
  text-decoration: none;
}

.home-grid-4x1 {
  grid-template-columns: repeat(4, 1fr);
}


.home-grid-2x1 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {

  .home-grid-2x1,
  .home-grid-4x1 {
    grid-template-columns: 1fr;
  }

}
/* =====================================================
   5. HOME CARD (共通)
===================================================== */

.home-card {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.home-thumb {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.home-grid-4x1 .home-thumb img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: filter 0.25s ease;
}
.home-grid-2x1 .home-thumb img {
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  transition: filter 0.25s ease;
}

.home-card a:hover .home-thumb img {
  filter: brightness(1.15);
}

.home-body {
  padding: 12px;
}

.home-body h2,
.home-body h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.home-body p {
  font-size: 13px;
  color: #444;
  margin: 0;
}
@media (max-width: 768px) {

  .home-body h2,
  .home-body h3 {
    font-size: 18px;
  }

  .home-body p {
    font-size: 16px;
  }

}

/* =====================================================
   0. BASE
===================================================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 汎用hover */
.fade {
  transition: 0.2s ease-in-out;
}
.fade:hover {
  opacity: 0.6;
}
.global-nav-list .sub-menu li a {
  padding-right:2px !important;
}
@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("/wp-content/themes/lightning/vendor/vektor-inc/font-awesome-versions/fonts/fa-solid-900.woff2") format("woff2");
  font-display: swap;
}
/* =====================================================
   1. CONTAINER
===================================================== */


/* =====================================================
   2. SLIDER TEXT
===================================================== */

media (max-width: 768px) {
  .ltg-slide-text-title {
    font-size:19.5px !important;
    line-height: 1.4;
  }

  .ltg-slide-text-caption {
    font-size: 19px !important;
    line-height: 1.5;
  }
}
/* swiper ページネーションのタップ領域拡張 */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
  position: relative;
}

/* 見えないタップ領域を広げる */
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: -16px;
  bottom: -16px;
}
/* =====================================================
   3. PAGE HEADER
===================================================== */

.custom-page-header {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 1;
  max-height: 180px;
  overflow: hidden;
}

/* 画像 */
.page-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* オーバーレイ */
.custom-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* テキスト */
.custom-page-header-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
}

/* タイトル */
.page-title {
  color: #fff !important;
  font-size: 28px;
  margin: 0;
}

/* SP */
@media (max-width: 768px) {
  .custom-page-header {
    aspect-ratio: 15 / 4;
    max-height: none;
  }
  .page-title {
    font-size:18px;
  }
}
.site-header-container {
  display: flex;
  align-items: center;
}

.global-nav {
  margin-left: auto;
}

.sns-buttons {
  display: flex;
  gap: 10px;
  margin-left: 12px;
}

.sns-buttons img {
  width: 22px;
  height: 22px;
  opacity: 0.7;
  transition: 0.2s;
  min-width: 22px;
  object-fit: contain;
}

.sns-buttons img:hover {
  opacity: 1;
}
.sns-buttons a {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 767px) {

  #site-header .site-header-container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  /* ロゴは左寄せ */
  .site-header-logo {
    margin: 0;
  }

  /* SNSを右側に寄せる */
  .sns-buttons {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right:40px; /* ←これ追加 */
  }

  /* アイコンサイズ（スマホ少し小さめ） */
  .sns-buttons svg {
    width: 18px;
    height: 18px;
  }

}
/* =====================================================
   4. HEADER
===================================================== */

.site-header {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.custom-logo {
  max-height: 50px;
}

.gMenu ul {
  display: flex;
  gap: 25px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gMenu a {
  color: #333;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: 0.3s;
}

.gMenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.gMenu a:hover::after {
  width: 100%;
}
.ltg-slide-item-img {
  width: 100%;
  height: auto;
}

/* =====================================================
   5. FOOTER
===================================================== */

footer {
  background: #F2F2F2;
  padding: 50px 0;
}

.footer_button {
  text-align: center;
  max-width: 550px;
  margin: 100px auto;
  font-size: 180%;
}

.footer_button a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 0 30px;
  background: #BF0000;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.footer_button a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0),
    rgba(255,255,255,0.4),
    rgba(255,255,255,0)
  );
  transform: skewX(-25deg);
}

.footer_button a:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% { left: 125%; }
}

.footer_button a,
.footer_button a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer_button {
    margin: 60px 15px;
    font-size: 120%;
  }
  .footer_button a {
    height: 80px;
    padding: 0 20px;
  }
}

/* =====================================================
   6. CATEGORY GRID
===================================================== */

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.home-category-img img {
  width: 100%;
    aspect-ratio: 5 / 2;
  object-fit: cover;
  transition: transform 0.4s;
}
@media (max-width: 768px) {
  .home-category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.home-category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}
.home-category-card:hover img {
  transform: scale(1.08);
}
.home-category-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  white-space: nowrap;
  font-size: clamp(18px, 2.5vw, 30px);
}

@media (max-width: 768px) {
  .home-category-text {
    font-size:20px;
  }
}
.home-category-card::after {
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.3);
  transition:0.3s;
}

.home-category-card:hover::after {
  background: rgba(0,0,0,0.15);
}

/* =====================================================
   7. NEWS
===================================================== */

.home-news {
  margin-top: 40px;
}
.home-news .home-title{
  margin:0px 0px;
}

.home-news-inner {
  margin-top:20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {

  .home-news-inner {
    grid-template-columns: 1fr;
  }

}

/* NEWS CARD */
.news-card {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
}

/* thumbnail */
.news-thumb {
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: filter 0.25s ease;
}

.news-card a:hover .news-thumb img {
  filter: brightness(1.15);
}

/* body */
.news-body {
  padding: 12px;
}

.news-cat {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.news-title {
  font-size: 16px;
  margin: 0 0 6px;
}

.news-date {
  font-size: 12px;
  color: #333;
}

.news-excerpt {
  font-size: 13px;
  color: #444;
  margin-top: 8px;
}
/* =========================
   CATEGORY LABEL
========================= */

.news-cat-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  color: #fff;
}

/* 展示会 */
.news-cat-exhibition {
  background: #d9534f; /* 赤 */
}

/* 新着 */
.news-cat-news {
  background: #5bc0de; /* 青 */
}

/* ブログ */
.news-cat-blog {
  background: #298737; /* 緑 */
}

/* FAQ */
.news-cat-faq {
  background: #2b3f6c; /* 緑 */
}

/* =========================
   記事テキスト
========================= */

.entry-content p {
  margin-top: 1.2em;
}

.entry-content img + p {
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  
}

/* PC */
.entry-content {
  font-size: 17px;
  line-height: 1.9;
}

/* スマホ */
@media (max-width: 768px) {
  .entry-content {
    font-size: 15px;
    line-height: 1.85;
  }
  .entry-body p{
    font-size: 18px !important;
  }
}
.entry-content {
  max-width: 720px;
  margin: 0 auto;
}

.addtoany_shortcode{
  margin-top:50px;
  margin-bottom:10px;
}

/* =====================================================
   8. GALLERY
===================================================== */

/* 基本 */
.post-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom:16px;
}
.blog-card{
  margin-bottom:16px;
}

/* 2カラム上書き */
.post-gallery.post-gallery-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* リンクを箱化（超重要） */
.post-gallery a {
  display: block;
  overflow: hidden;
}

/* 画像 */
.post-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* hover（枠内ズーム＋明るく） */
.post-gallery a:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* スマホ */
@media (max-width: 768px) {
  .post-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* =====================================================
   9. PAGE
===================================================== */

.page .site-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

body:not(.home) .custom-subtitle {
  font-size: 180%;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 0px 0;
}

/* =====================================================
   10. COMPANY HISTORY（★スマホ対応追加）
===================================================== */

.company-history .table_lv2-list {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}
.company-history dt {
  width: 100px;
  font-weight: bold;
}
.company-history dd {
  margin: 0;
  flex: 1;
}

/* ★スマホ改善 */
@media (max-width: 768px) {

  .company-history .table_lv2-list {
    flex-direction: column;
  }

  .company-history dt {
    width: auto;
    margin-bottom: 5px;
  }

}

/* =====================================================
   11. CEO MESSAGE（★中央調整）
===================================================== */

.ceo-message {
  padding: 60px 20px;
}

.ceo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {

  .ceo-message {
    padding: 20px 20px;
  }

}

/* =========================
   画像（丸抜き）
========================= */

.ceo-image {
  flex: 0 0 260px;
  display: flex;
  justify-content: center;
}

.ceo-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%; /* ★丸抜き */
}

/* =========================
   テキスト
========================= */

.ceo-text {
  flex: 1;
}

/* 見出し（シンプル＋色アクセント） */
.ceo-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #132143;

  /* ★ここが今回のポイント */
  display: inline-block;
  padding: 6px 12px;
  border:solid #fff 1px;
}

/* 本文 */
.ceo-text p {
  margin-bottom: 15px;
  line-height: 1.9;
}

/* 署名 */
.ceo-sign {
  margin-top: 25px;
  font-weight: 600;
  text-align: right;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .ceo-inner {
    flex-direction: column;
    gap: 20px;
  }

  .ceo-image img {
    width: 200px;
    height: 200px;
  }

  .ceo-sign {
    text-align: left;
  }
}

/* =====================================================
   12. OTHER
===================================================== */

.vk_post_imgOuter_singleTermLabel {
  display: none;
}
/* =====================================================
   12. FAQ
===================================================== */
.faq-article {
  max-width: 800px;
  margin: 0 auto;
}

.faq-question {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #172245;
}

.faq-answer-label {
  font-weight: bold;
  margin-bottom: 5px;
}

.faq-answer {
  background: #f4f6fa; /* 少し青寄りに */
  border-left: 4px solid #172245;
  padding: 18px 20px;
  margin-bottom: 30px;
  line-height: 1.9;
  font-size: 15px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* Aラベル */
.faq-answer-label {
  font-weight: bold;
  color: #172245;
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
}

/* 段落 */
.faq-answer p {
  margin-bottom: 12px;
}

/* リスト */
.faq-answer ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.faq-answer li {
  margin-bottom: 6px;
}

/* =====================================================
   13. FAQ INDEX
===================================================== */

/* =========================
   FAQ共通ベース
========================= */

.faq-archive-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #172245;
}

/* =========================
   カテゴリ（子・孫ナビ）
========================= */

.faq-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.faq-category-list a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #172245;
  border-radius: 20px;
  font-size: 14px;
  color: #172245;
  text-decoration: none;
  transition: 0.2s;
}

.faq-category-list a:hover {
  background: #172245;
  color: #fff;
}

/* =========================
   見出し（子・孫）
========================= */

.faq-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 15px;
  padding-left: 10px;
  border-left: 4px solid #172245;
  color: #172245;
}

.faq-subtitle-2 {
  font-size: 17px;
  font-weight: 600;
  margin: 25px 0 10px;
  padding-left: 10px;
  border-left: 3px solid #999;
  color: #333;
}

/* =========================
   FAQリスト
========================= */

.faq-list,
.faq-block {
  margin-bottom: 20px;
}

.faq-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.faq-item a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
}

.faq-item a:hover {
  text-decoration: underline;
}
/* 共通 */
.faq-tag {
  display: inline-block;
  font-size: 12px;
  padding:3px 8px;
  border-radius: 4px;
  margin-right: 6px;
  font-weight: 500;
  text-decoration: none;
  line-height:1.8;
}
.faq-tag a{
  color: #fff !important; /* ← これ重要 */
}
.faq-tag:hover {
  opacity: 0.85;
}
.faq-tag a:hover {
  text-decoration: none !important; /* ← これ重要 */
}

/* ■あかりシリーズ（親・一番濃い） */
.faq-tag.tag-akr-series {
  background: #1f3a5f;
}

/* ■あかり＋（中間） */
.faq-tag.tag-akr02 {
  background: #3949ab;
}

/* ■あかり（手動・一番薄い） */
.faq-tag.tag-akr01 {
  background: #42a5f5;
}

/* ■長期保存水（赤：ロゴ寄せ） */
.faq-tag.tag-akr-water {
  background: #d64541;
}

/* ■レーザー（オレンジ） */
.faq-tag.tag-laser-protect-jp {
  background: #000;
}
.faq-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.faq-filter a {
  padding: 6px 12px;
  border-radius: 20px;
  background: #f2f2f2;
  text-decoration: none;
  font-size: 14px;
}

.faq-filter a:hover {
  background: #ddd;
}
.faq-filter a.active {
  background: #333;
  color: #fff;
  font-weight: 500;
}

.faq-filter a.active:hover {
  background: #333;
}

/* =========================
   レスポンシブ
========================= */

@media (max-width: 768px) {

  .faq-title {
    font-size: 22px !important;
    font-weight: 600;
    display: inline-block;
  }

  .faq-tag {
    font-size: 13px !important;
    padding: 2px 2px;
    margin-bottom: 5px;
    border-radius: 1px;
  }

  .faq-item a {
    font-size: inherit !important;
  }

  .faq-archive-title {
    font-size: 22px;
  }

  .faq-archive-title span{
    font-size: 16px;
  }

  .faq-subtitle {
    font-size: 18px;
  }

  .faq-item a {
    font-size: 14px;
    padding: 12px;
  }

  .faq-category-list {
    gap: 8px;
  }

  .faq-category-list a {
    font-size: 13px;
    padding: 6px 12px;
  }
}
/* =====================================================
   13. product（改良版）
===================================================== */

.product-main {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.product-image {
  flex: 1;
}
.product-image img {
  width:100%;
  height:auto;
  aspect-ratio: 3 / 2; /* ←画像比率に合わせる */
}
.product-info {
  flex: 1;
}

.product-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #132143;

  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e5e5;
}

/* アクセントライン */
.product-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 3px;
  background: #BF0000;
}

.product-catch {
  font-size: 20px;
  font-weight: 700;
  color: #BF0000;
  margin-bottom: 15px;
  line-height: 1.5;
  letter-spacing: 0.03em; /* ←ちょい高級感 */
}

.product-desc {
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-price {
  font-weight: bold;
  font-size: 18px;
}

/* 見出し */
.product-heading {
  font-size: 22px;
  margin: 40px 0 20px;
  border-left: 4px solid #BF0000;
  padding-left: 10px;
}
.product-note {
  font-size: 12px;
  color: #333;
  margin-top: 15px;
}

.lpj-link {
  margin-top: 20px;
}

.lpj-link a {
  display: inline-block;
  padding: 12px 20px;
  background-color: #1f3a5f; /* 紺系（FAQと合わせると統一感◎） */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.lpj-link a:hover {
  background-color: #2c4d7a;
}

/* PCだけ少し離す */
@media (min-width: 769px) {
  .product-note {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {

  .product-title {
    font-size: 26px !important;
  }
  .product-price {
    font-size: 18px !important;
  }
  .product-catch {
    font-size: 22px !important;
  }
  .product-desc {
      font-size: 20px !important;
  }
  .lpj-link{
    text-align:center;
  }
}

/* =========================
   スペック＋フィルター横並び（安定版）
========================= */

.product-spec-filter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* 左カラム */
.product-spec-wrap {
  grid-column: 1;
}

/* 右カラム（縦に積む） */
.product-spec-sub {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 下段左 */
.product-filter-compact {
  grid-column: 1;
}

/* 下段右 */
.product-option {
  grid-column: 2;
}

/* はみ出し防止 */
.product-spec-filter > div {
  min-width: 0;
}

/* =========================
   スペック微調整
========================= */

.product-spec {
  margin-bottom: 15px;
  width: 100%;
  border-collapse: collapse;
}

.product-spec th {
  white-space: nowrap;
}

.product-spec-note h4,
.product-spec-compare h4 {
  padding: 5px 10px;
  font-size: 15px;
}

.product-spec-note li,
.product-spec-compare p {
  font-size: 14px;
}

/* =========================
   スマホ（完全1カラム化）
========================= */

@media (max-width: 768px) {

  .product-spec-filter {
    grid-template-columns: 1fr;
  }

  .product-spec-wrap,
  .product-spec-sub,
  .product-filter-compact,
  .product-option {
    grid-column: 1;
  }

  .product-spec {
    font-size: 14px;
  }
}
.filter-item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
  color: #132143;
}

.filter-item span {
  font-size: 14px;
  color: #555;
}
.product-spec th{
  white-space: nowrap;
}
/* スマホ */
@media (max-width: 768px) {

  .product-spec th{
    font-size: 13px !important;
    padding-left:5px;
    padding-right:5px;    
  }
  .product-spec td{
    font-size: 16px !important;
    padding-left:5px;
    padding-right:5px;    
  }

}
/* =========================
   オプション・消耗品
========================= */

.product-option {
  margin-top: 0;
}

.product-option-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #132143;
}

.product-option-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-option-list li {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

/* 区切り */
.option-sep {
  height: 10px;
}
/* =========================
   ギャラリー
========================= */

.product-gallery {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
}

.product-gallery-item {
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: 0.3s;
  border:1px solid #ddd;
}
/* hover */
.product-gallery img:hover {
  filter: brightness(1.1);
}
/* キャプション */
.product-gallery-caption {
  font-size: 12px;
  color: #333;
  margin-top: 5px;
}

/* =========================
   導入支援
========================= */

/* グリッド */
.product-support-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  margin-bottom:10px;
}

/* カード */
.support-card {
  background: #fff;
  border: 1px solid #eee;
  padding:10px;
}

/* 見出し */
.support-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #132143;
  line-height: 1.6;
}

/* 画像 */
.support-img {
  width: 100%;
  margin-bottom: 15px;
  height:auto;
  aspect-ratio: 5 / 3; /* 比率に合わせる */
}
/* 本文 */
.support-text {
  font-size: 14px;
  margin-bottom: 15px;
}

/* 注意書き */
.support-note {
  list-style: none;
  padding: 0;
  margin: 0;
}

.support-note li {
  font-size: 13px;
  margin-bottom: 5px;
}

/* 箇条書き */
.support-list {
  padding-left: 18px;
  font-size: 14px;
}

/* 補足 */
.support-sub {
  font-size: 12px;
  color: #333;
  margin-top: 10px;
}

/* ギャラリー */
.support-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-bottom: 15px;
  text-align:center;
  font-size:90%;
}

.support-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* エリア */
.support-area {
  font-size: 13px;
  line-height: 1.6;
}
.support-note li::before {
  content: "■ ";
  color: #BF0000;
}

/* スマホ */
@media (max-width: 768px) {
  .product-support-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   product-faq
========================= */

.product-faq {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #fafafa;
  margin-bottom:15px;
}

.product-faq-title {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.product-faq-lead {
  font-size: 14px;
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}

/* リスト全体 */
.product-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各FAQ */
.product-faq-list li {
  margin-bottom: 10px;
}

/* リンク（カード風） */
.product-faq-list a {
  display: block;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: 0.2s ease;
  position: relative;
  cursor: pointer;
}

.product-faq-list a::before {
  content: "Q.";
  font-weight: 700;
  margin-right: 8px;
  color: #2b6cb0;
}
/* ホバー */
.product-faq-list a:hover {
  border-color: #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transform: translateY(-1px);
}

/* もっと見る */
.product-faq-more {
  margin-top: 15px;
  font-size: 14px;
  text-align: right;
}

.product-faq-more a {
  color: #0073aa;
  text-decoration: none;
}

.product-faq-more a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .product-faq {
    padding: 15px;
  }

  .product-faq-list a {
    padding: 12px;
  }
}

/* =========================
   スマホ
========================= */

@media (max-width: 768px) {

  .product-main {
    flex-direction: column;
  }

  .product-filter {
    flex-direction: column;
  }
  .filter-item span,
  .product-option-title,
  .product-option-list li,
  .product-option-list strong,
  .support-list li,
  .support-title{
    font-size: 18px !important;
  }
  .support-title{
    font-size: 16px !important;
  }
  
  .support-note li{
    font-size: 16px !important;
  }

  .product-gallery {
    grid-template-columns: repeat(2,1fr);
  }
}

/* ===============================
   会社情報 INDEX（最終版）
=============================== */

.company-index {
  padding: 60px 20px;
}

.company-index-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* タイトル */
.company-index-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 15px;
}

/* リード */
.company-index-lead {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.8;
  font-size: 15px;
}
@media (max-width: 768px) {

  .company-index-lead {
    text-align:left;
  }
}
/* ===============================
   グリッド（ここがポイント）
=============================== */

.company-index-grid {
  display: grid;

  /* PC：3列 */
  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* ===============================
   カード
=============================== */

.company-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: border-color 0.3s ease;
}

/* ホバー：枠だけ軽く変化 */
.company-card:hover {
  border-color: #ccc;
}

/* ===============================
   画像
=============================== */

.company-card-img {
  overflow: hidden;
}

.company-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* ほんのりズーム */
.company-card:hover .company-card-img img {
  transform: scale(1.05);
}

/* ===============================
   テキスト
=============================== */

.company-card-body {
  padding: 18px;
}

.company-card-body h2 {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.company-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===============================
   タブレット
=============================== */

@media (max-width: 1024px) {

  .company-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ===============================
   スマホ
=============================== */

@media (max-width: 768px) {

  .company-index {
    padding: 40px 15px;
  }

  .company-index-title {
    font-size: 24px;
  }

  .company-index-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-card-img img {
    height: 160px;
  }

}

/* ===============================
   取扱店・営業拠点
=============================== */

.locations {
  padding: 60px 20px;
}

.locations-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトル */
.locations-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

/* エリア */
.area {
  margin-bottom: 50px;
}

.area-title {
  font-size: 22px;
  margin-bottom: 20px;
  border-left: 4px solid #333;
  padding-left: 10px;
}

/* カード */
.location-card {
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* 店名 */
.location-name {
  font-size: 18px;
  margin-bottom: 10px;
}

/* 製品タグ */
.product-tags {
  margin-bottom: 10px;
}

/* タグ共通 */
.location-card .tag {
  display: inline-block;
  font-size: 12px;
  padding: 5px 10px;
  margin: 3px 5px 3px 0;
  border-radius: 20px;
  background: #f0f0f0;
}

/* 種類別カラー */
.tag.water {
  background: #e0f4ff;
  color: #0077aa;
}

.tag.laser {
  background: #ffeaea;
  color: #cc0000;
}

/* 情報 */
.location-info {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* SP */
@media (max-width: 768px) {

  .locations {
    padding: 40px 15px;
  }

  .locations-title {
    font-size: 24px;
  }

}
.area-note {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;

  background: #f7f9fb;
  padding: 12px 15px;
  border-radius: 6px;
}
.company-map {
  margin-top: 30px;
}

/* ===============================
   会社情報 共通レイアウト
=============================== */

.company-section {
  padding: 60px 20px;
}

.company-inner {
  max-width:1000px;
  margin: 0 auto;
}

/* タイトル */
.company-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 15px;
}

/* リード */
.company-lead {
  text-align: center;
  color: #555;
  margin-bottom: 50px;
  line-height: 1.8;
  font-size: 15px;
}
@media (max-width: 768px) {

  .company-lead {
    text-align:left;
  }
}

/* ブロック */
.company-block {
  margin-bottom: 70px;
}

/* 見出し */
.company-heading {
  font-size: 20px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  border-top: none;
}

/* 本文 */
.company-content {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

/* ===============================
   テーブル（会社概要用）
=============================== */

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 10px;
  text-align: left;
}

.company-table th {
  width: 30%;
  background: #f7f9fb;
  font-weight: normal;
}

/* ===============================
   SP対応
=============================== */

@media (max-width: 768px) {

  .company-block{
    margin-bottom:50px;
  }
  .company-section {
    padding: 40px 0px;
  }

  .company-title {
    font-size: 24px;
  }

  .company-heading {
    font-size: 18px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table th {
    background: none;
    font-weight: bold;
    padding-bottom: 5px;
  }

}

/* ===============================
   グループ会社（2カラム）
=============================== */

.group-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* SPは1列 */
@media (max-width: 768px) {
  .group-list {
    grid-template-columns: 1fr;
  }
}

/* カード */
.group-item {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

/* ヘッダー */
.group-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

/* ロゴ（正方形対応） */
.group-logo {
  width: 60px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.group-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 見出し */
.group-name {
  margin: 0;
}

/* リンク */
.group-name a {
  color: #333;
  text-decoration: none;
}

.group-name a:hover {
  text-decoration: underline;
}

/* 事業内容 */
.group-business {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

/* 情報 */
.group-info {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}
/* 事業内容（薄い背景でメリハリ） */
.group-business {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;

  background-color: #f7f9fb; /* うっすらグレー */
  padding: 10px 12px;
  border-radius: 4px;
}

/* ===============================
   information
=============================== */

/* 全体 */
.information-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* グリッド */
.information-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* ブロック */
.information-block {
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: 0.3s;
}

/* タイトル */
.info-title {
  font-size: 18px;
  margin-bottom: 12px;
  border-left: 3px solid #ccc;
  padding-left: 10px;
  border-top:0px solid #fff;
}

/* リスト */
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
}

/* 偶数背景 */
.info-list li:nth-child(even) {
  background-color: #f8f9fb;
}

/* タイトルリンク */
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* NEW */
.new-badge {
  font-size: 10px;
  color: #fff;
  background-color: #e60023;
  padding: 2px 5px;
  border-radius: 3px;
  font-weight: bold;
}

/* 日付 */
.info-list time {
  font-size: 13px;
  color: #666;
  white-space: nowrap;
  padding-left:5px;
}

/* スマホ */
@media (max-width: 768px) {
  .information-grid {
    grid-template-columns: 1fr;
  }
}

.information-lead {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .information-lead {
    text-align: left;
  }
}

.tagcloud a::before,
.tagcloud a::after {
  content: none !important;
  display: none !important;
}

.tagcloud a {
  background: none !important;
}


/* =================================================
AKARI SERIES BASE
================================================= */

.akr-series{
  font-family:
    "Hiragino Kaku Gothic ProN",
    "Noto Sans JP",
    "Yu Gothic",
    sans-serif;
  color:#1a1a1a;
  font-size:16px;
  line-height:1.9;
  background:#fff;
}
.akr-series .container{
  max-width:1200px;
  margin:0 auto;
  padding:0px 24px;
}
@media (max-width:768px){

  .akr-series .container{
    max-width:100%;
    margin:0 auto;
    padding:0px 0px;
  }

}

/* 見出し */
.akr-series__h2 {
  font-size: 35px;
  font-weight:2000;
  margin-bottom:10px;
  margin-top:0px;
  padding:0px;
  line-height:1.5;
}
.akr-series h3{
  font-size:18px;
  font-weight:600;
  padding:0px;
  margin-bottom:0px;
  line-height:1.5;
}

@media (max-width:768px){

  .akr-series__h2 {
    font-size:28px;
    font-weight:2000;
    margin-bottom:10px;
    margin-top:0px;
    padding:0px;
    line-height:1.5;
  }

}
.akr-series__h2 ,
.akr-series__h3 {
  border: none !important;
}
.akr-series__h2::before,
.akr-series__h2::after,
.akr-series__h3::before,
.akr-series__h3::after{
  content:none !important;
  display:none !important;
  border:none !important;
  background:none !important;
  box-shadow:none !important;
}

.akr-series p{
  max-width:760px;
}

/* セクション基本 */
.akr-series section{
  position:relative;
}


/* =================================================
① STORY（災害＋水源）
================================================= */

.akr-series__story{
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #eef3f4 35%,
    #c9d6d8 70%,
    #d6e2e3 100%
  );
  padding:110px 0;
}

@media (max-width:768px){

  .akr-series__story{
    padding:60pxx 0;
  }

}

/* 左画像＋右テキスト */
.akr-story__disaster-inner{
  display:flex;
  gap:40px;
  align-items:flex-start;
  margin-bottom:30px;
}
.akr-series__story .container {
  max-width: 1500px;  /* 1100→1200へ拡張 */
  margin: 0 auto;
}

@media (max-width:768px){

  .akr-series__story .container{
    max-width:100%;  /* 1100→1200へ拡張 */
  }
  
}

/* 画像（大きめ） */
.akr-story__image{
  flex:1.3;
  min-height:420px;
  margin-top:10px;
}

.akr-story__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media (max-width:768px){

  .akr-story__image{
    min-height:auto;
  }

}


/* テキスト */
.akr-story__text{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.akr-story__lead{
  font-size:18px;
  line-height:1.8;
  color:#222;
}
.akr-story__water .akr-series__h2{
  margin:10px 0px 0px 0px;
}
/* 水源グリッド */
.akr-water-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:30px;
}

.akr-water-item img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}

.akr-water-item h3{
  margin-top:10px;
  border:0 !important;
  margin-bottom:0px;
}

.akr-water-item p{
  font-size:14px;
}

/* =================================================
② AKARIとは（DEFINITION）
================================================= */

.akr-definition{
  background: linear-gradient(to bottom, #D6E2E3, #E2EFF0);
  padding:0px 0 110px 0;
}

@media (max-width:768px){

  .akr-definition{
    padding:0px 0 60px 0;
  }

}

.akr-definition .container {
  max-width: 1400px;  /* 1100→1200へ拡張 */
  margin: 0 auto;
}

@media (max-width:768px){

  .akr-definition .container{
    max-width:100%;  /* 1100→1200へ拡張 */
  }
  
}

.akr-definition__inner{
  display:flex;
  gap:60px;
  align-items:center;
}

.akr-definition__media{
  flex:1.2;
}

.akr-definition__media img{
  width:100%;
  height:auto;
  display:block;
  filter: brightness(0.9) contrast(1.05) saturate(0.9);
}

.akr-definition__content{
  flex:1;
}

.akr-definition__title{
  font-size:32px;
  font-weight:600;
  margin-bottom:20px;
}
@media (max-width:768px){

  .akr-definition__title{
    font-size:32px;
    font-weight:600;
    margin-bottom:20px;
  }

}

.akr-definition__lead{
  font-size:18px;
  margin-bottom:20px;
}

.akr-definition__text{
  font-size:15px;
  line-height:1.9;
  color:#333;
}

.akr-definition__number{
  display:flex;
  gap:30px;
  margin-top:20px;
}
@media (max-width:768px){

  .akr-definition__number{
    display:block;
  }

}
.akr-definition__item{
  margin-bottom:18px;
}

/* 数字 */
.akr-definition__item .num{
  display:block;
  font-size:50px;
  font-weight:600;
  color:#1a1a1a;
  letter-spacing:0.02em;
}

/* 単位 */
.akr-definition__item .unit{
  font-size:16px;
  margin-left:4px;
  color:#555;
}

/* 説明 */
.akr-definition__item .label{
  display:block;
  font-size:20px;
  color:#444;
  margin-top:4px;
}

/* =================================================
RESPONSIVE
================================================= */

@media (max-width:768px){

  .akr-story__disaster-inner{
    flex-direction:column;
  }

  .akr-water-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .product-comparison{
    grid-template-columns:1fr;
  }

  .akr-definition__inner{
    flex-direction:column;
    gap:30px;
  }
}

/* =================================================
④ PUMP PERFORMANCE
================================================= */

.akr-pump{
  padding:0px 0 110px 0;
  background: linear-gradient(to bottom, #E2EFF0, #EDF6F7);
}

@media (max-width:768px){

  .akr-pump{
    padding:0px 0 60px 0;
  }

}

.akr-pump .container {
  max-width: 1300px;  /* 1100→1200へ拡張 */
  margin: 0 auto;
}

@media (max-width:768px){

  .akr-pump .container{
    max-width:100%;  /* 1100→1200へ拡張 */
  }
  
}
/* レイアウト */
.akr-pump__inner{
  display:flex;
  align-items:center;
  gap:40px;
}

@media (max-width:768px){

  .akr-pump__inner{
    display:block;
  }

}
.akr-pump__inner.is-reverse{
  flex-direction: row-reverse;
}

/* =========================
画像
========================= */
.akr-pump__media{
  flex:1.2;
  position:relative;
}

.akr-pump__media img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* ラベル（高低差） */
.akr-pump__label{
  position:absolute;
  bottom:20px;
  left:20px;
  background:#0f1b2d;
  color:#fff;
  font-size:14px;
  padding:6px 12px;
  letter-spacing:0.05em;
}

/* =========================
テキスト
========================= */

.akr-pump__content{
  flex:1;
}

.akr-pump__lead{
  font-size:18px;
  line-height:1.8;
  margin-bottom:20px;
}

.akr-pump__text{
  font-size:15px;
  line-height:1.9;
  color:#333;
}
/* =========================
レスポンシブ
========================= */

@media (max-width:768px){

  .akr-pump img{
    margin-bottom:30px;
  }

  .akr-pump{
    padding:0px 0 70px 0px;
  }

  .akr-pump__inner{
    flex-direction:column;
    gap:30px;
  }

  .akr-pump__label{
    font-size:12px;
    bottom:10px;
    left:10px;
  }
  /* 通常（画像→文章） */
  .akr-pump__media{
    order:1;
  }
  .akr-pump__content{
    order:2;
  }

  /* 反転（文章→画像） */
  .akr-pump__inner.is-reverse .akr-pump__media{
    order:2;
  }
  .akr-pump__inner.is-reverse .akr-pump__content{
    order:1;
  }

}

/* =================================================
⑥ WORKS（実績）
================================================= */

.akr-series__works{
  background: linear-gradient(
    to bottom,
    #EDF6F7 0%,
    #F5FBFC 100%
  );
  padding:0px 0 110px 0;
}

@media (max-width:768px){

  .akr-series__works{
    padding:0px 0 60px 0;
  }

}

/* 説明文 */
.akr-series__lead{
  margin-top:10px;
  margin-bottom:30px;
  font-size:16px;
  color:#333;
}

/* グリッド（水源と統一） */
.akr-works-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* アイテム */
.akr-works-item img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  display:block;
}

.akr-works-item p{
  margin-top:8px;
  font-size:13px;
  color:#555;
}

/* レスポンシブ */
@media (max-width:768px){
  .akr-works-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
/* =================================================
⑦ COST（コストメリット）
================================================= */

.akr-series__cost{
  background: linear-gradient(
    to bottom,
    #F5FBFC 0%,
    #FFFFFF 100%
  );
  padding:0px 0 110px 0;
}

@media (max-width:768px){

  .akr-series__cost{
    padding:0px 0 60px 0;
  }

}

/* グリッド */
.akr-cost__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:40px;
}

/* カード */
.akr-cost__card{
  background:#fff;
  border:1px solid #dcdcdc;
  padding:24px;
}

.akr-cost__card h3{
  margin-bottom:15px;
}

.akr-cost__card ul{
  padding-left:18px;
}

.akr-cost__card li{
  margin-bottom:8px;
}

/* あかり側 */
.akr-cost__card--akari{
  background:#f7fbfc;
  border-color:#cfdfe2;
}

/* フロー */
.akr-cost__flow{
  margin-top:50px;
  padding:25px;
  background:#eef6f7;
}
.akr-cost__grid .akr-series__h3,
.akr-cost__flow .akr-series__h3{
  margin-bottom:10px;
  padding:0px;
}

/* =========================
ハイライト（給水車含む）
========================= */
.akr-cost__highlight{
  display:flex;
  gap:30px;
  align-items:center;
  margin-top:30px;
  background:#ffffff;
  border:1px solid #dcdcdc;
  padding:20px;
}

@media (max-width:768px){

  .akr-cost__highlight{
    display:flex;
    gap:30px;
    align-items:center;
    margin-top:30px;
    background:#ffffff;
    border:1px solid #dcdcdc;
    padding:20px;
  }

}

/* 画像 */
.akr-cost__image{
  flex:1;
}

.akr-cost__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* テキスト */
.akr-cost__text{
  flex:1;
}

/* 強調見出し */
.akr-cost__big{
  font-size:20px;
  font-weight:700;
  margin-bottom:12px;
  color:#0f1b2d;
  line-height:1.5;
}

/* 本文 */
.akr-cost__note{
  font-size:14.5px;
  color:#555;
  line-height:1.8;
}

/* レスポンシブ */
@media (max-width:768px){

  .akr-cost__grid{
    grid-template-columns:1fr;
  }

  .akr-cost__highlight{
    flex-direction:column;
  }

}

/* =========================
PRODUCTS
========================= */

.akr-series__products{
  background:#fff;
  padding:0 0 100px;
}

/* 全体幅 */
.akr-series__products .container{
  max-width:980px;
}

/* グリッド */
.akr-product__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-top:30px;
}

/* 1セット（ラベル＋カード） */
.akr-product__item{
  display:flex;
  flex-direction:column;
  gap:10px;
}


.akr-product__label{
  text-align:center;
  font-size:15px;
  padding:8px 12px;
  border-radius:12px;
  border:1px solid transparent;
  color:#fff;
  letter-spacing:0.02em;
  box-shadow:0 2px 6px rgba(0,0,0,0.06);
}

/* あかり（落ち着いたブルーグレー） */
.akr-product__item:nth-child(1) .akr-product__label{
  background:#4f6b73;
  font-weight:400;
}

/* あかり＋（少し深くして差別化） */
.akr-product__item:nth-child(2) .akr-product__label{
  background:#3f5057;
  font-weight:400;
}

/* カード */
.akr-product__card{
  border:1px solid #e3e3e3;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,0.04);
  display:flex;
  flex-direction:column;
}

/* 画像 */
.akr-product__image{
  height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.akr-product__image img{
  max-height:260px;
  width:100%;
  object-fit:contain;
}

/* 本文 */
.akr-product__body{
  padding:18px 20px 22px;
}

/* 商品名 */
.akr-product__body h3.akr-series__h3{
  font-size:18px !important;
  margin:0 0 10px !important;
  padding-bottom:8px !important;

  border-bottom:1px solid #e6e6e6 !important;
  display:block;
}

/* 説明 */
.akr-product__text{
  font-size:14px;
  margin-bottom:12px;
  color:#333;
}

/* リスト */
.akr-product__list{
  padding-left:18px;
  margin-bottom:14px;
}

.akr-product__list li{
  font-size:14px;
  margin-bottom:6px;
}

/* ボタン */

/* 共通 */
.akr-product__btn{
  transition: background-color 0.4s ease, 
              border-color 0.4s ease, 
              color 0.4s ease;
}

/* ボタンエリア */
.akr-product__actions{
  display:flex;
  gap:12px;              /* ←ボタン間の余白 */
  margin-top:14px;
}

/* ボタン共通 */
.akr-product__btn{
  flex:1;                /* ←これで幅揃う（超重要） */
  text-align:center;     /* ←中央揃え */
  padding:10px 14px;
  font-size:13px;
  border-radius:8px;
  text-decoration:none;
}

/* 製品ページ（サブ） */
.akr-product__btn--ghost{
  background:#fff;
  border:1px solid #cfd8da;
  color:#3a474c;
  transition:all 0.35s ease;
}

/* hover：ほんのり浮く＋光る */
.akr-product__btn--ghost:hover{
  background:#f5f7f8;
  border-color:#bfcbd0;
  box-shadow:0 4px 12px rgba(15,27,45,0.08);
}

/* 相談（メイン：白抜き文字） */
.akr-product__btn--primary{
  background:#0f1b2d;
  border:1px solid #0f1b2d;
  color:#fff;
  transition:all 0.35s ease;
}

/* hover：明るく＋少し浮かせる */
.akr-product__btn--primary:hover{
  background:#22364a;
  border-color:#22364a;
  color:#fff;
  box-shadow:0 6px 16px rgba(15,27,45,0.2);
}


/* SP */
@media (max-width:768px){

  .akr-product__grid{
    grid-template-columns:1fr;
  }

  .akr-product__image{
    height:240px;
  }
}

/* =========================
比較ラベル帯
========================= */

.akr-product__compare{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  margin-bottom:0px;
}

/* 共通ラベル */
.akr-compare__item{
  text-align:center;
  font-size:16px;
  padding:8px 10px;
  border-radius:999px;
  background:#eef3f4;
  color:#333;
  border:1px solid #d7e1e3;
}

/* SP */
@media (max-width:768px){
  .akr-product__compare{
    grid-template-columns:1fr;
  }
}
/* =========================
レスポンシブ
========================= */

@media (max-width:768px){

  .akr-product__grid{
    grid-template-columns:1fr;
  }

}

/* =========================
HERO SLIDE（調整版）
========================= */

.hero-slide{
  position:relative;
  height:600px; /* or 100vh */
  overflow:hidden;
}

/* 背景 */
.hero-slide__bg{
  position:absolute;
  inset:0;
}

.hero-slide__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
@media (max-width:768px){

  .hero-slide{
    height:420px;
  }

  .hero-slide__bg img{
    object-fit: cover;
    object-position: center top;
  }

}

/* テキストは上寄せ固定 */
.hero-slide__inner{
  position:relative;
  z-index:2;
  padding:140px 24px 0;
  max-width:900px;
}

@media (max-width:768px){

  .hero-slide__inner{
    padding:100px 24px 0;
  }

}

/* タグ */
.hero-slide__tag{
  font-size:25px;
  font-weight:700;
  margin-top:0px;
  margin-bottom:0px;
  line-height:100%;
  color:#333;
}

/* タイトル */
.hero-slide__title{
  font-size:44px;
  font-weight:700;
  margin-top:0px;
  margin-bottom:0px;
  line-height:100%;
  color:#1a1a1a;
  border:none !important;
}

/* リード */
.hero-slide__lead{
  font-size:18px;
  margin-bottom:10px;
  color:#222;
}

/* 本文 */
.hero-slide__text{
  font-size:15px;
  line-height:1.8;
  color:#444;
  max-width:600px;
}
.hero-next-hint{
  margin-top:20px;
  font-size:14px;
  color:#666;
  letter-spacing:0.05em;
}
.hero-next-hint{
  margin-top:20px;
  font-size:14px;
  color:#666;
  letter-spacing:0.05em;
}

/* =========================
スマホ
========================= */
@media (max-width:768px){

  .hero-slide{
    height:520px;
  }

  .hero-slide__title{
    font-size:28px;
  }

  .hero-slide__lead{
    font-size:15px;
  }
}
