/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/


/* =========================================================
   エース産業：会社概要ページ
========================================================= */

.ace-company-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* =========================================================
   ページ内ナビ
========================================================= */



/* =========================================================
   セクション
========================================================= */

.ace-company-section {
    margin-bottom: 100px;
    scroll-margin-top: 30px;
}


/* セクション見出し */

.ace-section-heading {
    margin-bottom: 35px;
    padding-left: 18px;
    border-left: 5px solid #0073aa;
}

.ace-section-heading span {
    display: block;
    margin-bottom: 5px;

    color: #0073aa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.ace-section-heading h2 {
    margin: 0;
    color: #222;
    font-size: 28px;
    line-height: 1.4;
}


/* =========================================================
   会社案内 2カラム
========================================================= */

.ace-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}


/* =========================================================
   テーブル
========================================================= */

.ace-company-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    border-top: 2px solid #333;
    font-size: 14px;
    line-height: 1.8;
}

.ace-company-table th,
.ace-company-table td {
    padding: 16px 18px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    vertical-align: top;
}

.ace-company-table th {
    width: 28%;
    background: #f5f6f7;
    color: #333;
    font-weight: 700;
    white-space: nowrap;
}

.ace-company-table td {
    background: #fff;
    color: #444;
}

.ace-company-table p {
    margin: 0 0 12px;
}

.ace-company-table p:last-child {
    margin-bottom: 0;
}

.ace-company-table a {
    color: #333;
    text-decoration: none;
}

.ace-company-table a:hover {
    color: #0073aa;
    text-decoration: underline;
}


/* =========================================================
   会社情報
========================================================= */

.ace-company-contact-info {
    margin-top: 12px;
    line-height: 1.9;
}


/* =========================================================
   沿革
========================================================= */

.ace-history-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.ace-history-item:last-child {
    margin-bottom: 0;
}

.ace-history-item strong {
    color: #333;
}

.ace-history-item span {
    color: #555;
}


/* =========================================================
   取り扱い品目
========================================================= */

.ace-product-category {
    margin-bottom: 20px;
}

.ace-product-category:last-child {
    margin-bottom: 0;
}

.ace-product-category strong {
    color: #333;
}

.ace-product-category p {
    margin-top: 5px;
}


/* =========================================================
   主要取引先
========================================================= */

.ace-partners-table th {
    width: 130px;
}

.ace-partners-table ul {
    margin: 0;
    padding-left: 20px;
}

.ace-partners-table li {
    margin-bottom: 5px;
}

.ace-partners-table li:last-child {
    margin-bottom: 0;
}

.ace-note {
    margin-top: 12px !important;
    color: #888;
    font-size: 12px;
}


/* =========================================================
   設備紹介
========================================================= */

.ace-facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.ace-facility-card {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ddd;
}

.ace-facility-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f5f5f5;
}

.ace-facility-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.ace-facility-card:hover .ace-facility-image img {
    transform: scale(1.04);
}

.ace-facility-card h3 {
    margin: 0;
    padding: 15px 20px;

    color: #333;
    font-size: 16px;
    text-align: center;
}


/* =========================================================
   スマートフォン
========================================================= */

@media screen and (max-width: 767px) {

    .ace-company-page {
        padding: 0 15px;
    }


    /* ページ内ナビ */

    .ace-company-nav {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 55px;
    }

    .ace-company-nav a {
        min-width: 0;
        padding: 14px 20px;
    }

    .ace-company-nav a + a {
        border-top: 1px solid #ddd;
        border-left: none;
    }


    /* セクション */

    .ace-company-section {
        margin-bottom: 65px;
    }

    .ace-section-heading {
        margin-bottom: 25px;
        padding-left: 13px;
        border-left-width: 4px;
    }

    .ace-section-heading h2 {
        font-size: 23px;
    }


    /* 会社案内 */

    .ace-company-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /* テーブル全体 */
    .ace-company-table {
        display: block;
        font-size: 13px;
    }

    .ace-company-table tbody {
        display: block;
        width: 100%;
    }

    /* 各行をブロック化 */
    .ace-company-table tr {
        display: block;
        width: 100%;
    }

    /* th・tdを縦積みにする */
    .ace-company-table th,
    .ace-company-table td {
        display: block;
        width: 100% !important;
        padding: 11px 12px;
        box-sizing: border-box;
    }

	.ace-company-table--center th,
    .ace-company-table--center td {
        text-align: center;
    }
	
    /* 見出し */
    .ace-company-table th {
        background: #f5f6f7;
        border-bottom: 1px solid #ddd;
        white-space: normal;
    }

    /* データ部分 */
    .ace-company-table td {
        background: #fff;
        border-top: 0;
    }

    /* 同じ行にある2つのtd */
    .ace-partners-table tr:first-child td {
        border-top: 0;
    }

    /* 沿革 */

    .ace-history-item {
        grid-template-columns: 85px 1fr;
        gap: 7px;
    }


    /* 主要取引先 */

    .ace-partners-table th {
        width: 28%;
    }

    .ace-partners-table ul {
        padding-left: 17px;
    }


    /* 設備 */

    .ace-facility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: none;
    }

}


html {
    scroll-behavior: smooth;
}

.ace-company-section {
    scroll-margin-top: 15px;
}

/* =========================================================
   株式会社エレマジャパン バナー
========================================================= */

.ace-elema-link {
    max-width: 900px;
    margin: 20px auto 0;
}

.ace-elema-card {
    position: relative;
    display: flex;
    align-items: center;

    min-height: 220px;
    padding: 45px 90px 45px 50px;
    box-sizing: border-box;

    overflow: hidden;

    background-image: url("https://ace-corporation.net/wp-content/uploads/2026/08/info_13.jpg");
    background-size: cover;
    background-position: center;

    color: #fff;
    text-decoration: none;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.ace-group-company-section {
    margin-bottom: 40px;
}



/* =========================================================
   テキスト
========================================================= */

.ace-elema-content {
    position: relative;
    z-index: 2;

text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.5),
    0 2px 7px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.4s ease;
}

.ace-elema-title {
    display: block;
    margin-bottom: 12px;

    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

.ace-elema-description {
    display: block;

    font-size: 17px;
    font-weight: 700;
    line-height: 1.8;
}


/* =========================================================
   矢印
========================================================= */

.ace-elema-arrow {
    position: absolute;
    z-index: 2;

    right: 35px;
    top: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;

    color: #fff;
    font-size: 20px;
    line-height: 1;

    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);

    transform: translateY(-50%);

    transition:
        background-color 0.4s ease,
        border-color 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}


/* =========================================================
   hover
========================================================= */

.ace-elema-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0);

    pointer-events: none;

    transition: background 0.4s ease;
}


/* 少し明るくする */
.ace-elema-card:hover::after {
    background: rgba(255, 255, 255, 0.12);
}


/* 全体を少し浮かせる */
.ace-elema-card:hover {
    color: #fff;
    text-decoration: none;

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);
}


/* テキストを少し右へ */
.ace-elema-card:hover .ace-elema-content {
    transform: translateX(8px);
}


/* 矢印 */
.ace-elema-card:hover .ace-elema-arrow {
    background: rgba(255, 255, 255, 0.95);
    border-color: #fff;
    color: #333;
    text-shadow: none;

    transform: translate(6px, -50%);
}


/* =========================================================
   スマートフォン
========================================================= */

@media screen and (max-width: 767px) {

    .ace-elema-link {
        margin-top: 50px;
    }

    .ace-elema-card {
        min-height: 230px;
        padding: 35px 65px 35px 25px;

        background-position: center;
    }

    .ace-elema-title {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .ace-elema-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .ace-elema-arrow {
        right: 18px;

        width: 36px;
        height: 36px;

        font-size: 17px;
    }

}


/* =========================================================
   ページタイトル
========================================================= */

.ace-page-title {
    width: 100%;
    height: 250px;

    margin: 0 0 60px;

    background-image: url("https://ace-corporation.net/wp-content/uploads/2026/08/access_03.jpg");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
}

.ace-page-title h1 {
    margin: 0;
    padding: 0;

    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;

    text-align: center;

    /* 写真の上でも文字を読みやすく */
    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.45),
        0 3px 12px rgba(0, 0, 0, 0.2);
}


/* =========================================================
   スマートフォン
========================================================= */

@media screen and (max-width: 767px) {

    .ace-page-title {
        height: 180px;
        margin-bottom: 40px;

        background-position: center;
    }

    .ace-page-title h1 {
        font-size: 28px;
    }

}






/* ========================================
   リサイクルカテゴリーリンク
======================================== */

.recycle-links {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;

  gap: 20px;

  margin: 50px 0;
  padding: 0;

  box-sizing: border-box;
}


/* ========================================
   4つ並び
======================================== */

.recycle-links:not(.recycle-links--3) {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* ========================================
   3つ並び
======================================== */

.recycle-links--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* ========================================
   カード
======================================== */

.recycle-link {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-width: 0;

  aspect-ratio: 3 / 4;

  overflow: hidden;
  border-radius: 8px;

  text-decoration: none !important;
  color: #fff !important;

  background-size: cover;
  background-position: center;

  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* ========================================
   背景画像
======================================== */

.recycle-link--metal {
  background-image: url("https://ace-corporation.net/wp-content/uploads/2026/08/index_13.jpg");
}

.recycle-link--carbide-scrap {
  background-image: url("https://ace-corporation.net/wp-content/uploads/2026/08/index_17.jpg");
}

.recycle-link--sludge {
  background-image: url("https://ace-corporation.net/wp-content/uploads/2026/08/index_15.jpg");
}

.recycle-link--plastic {
  background-image: url("https://ace-corporation.net/wp-content/uploads/2026/08/plastic-recycling_bn_bg.jpg");
}


/* ========================================
   オーバーレイ
======================================== */

.recycle-link::before {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.35);

  transition: background 0.35s ease;
}


/* ========================================
   背景画像ズーム
======================================== */

.recycle-link::after {
  content: "";

  position: absolute;
  inset: -8px;

  background: inherit;
  background-size: cover;
  background-position: center;

  z-index: 0;

  transition: transform 0.5s ease;
}


/* ========================================
   テキスト
======================================== */

.recycle-link-inner {
  position: relative;
  z-index: 2;

  width: 100%;

  padding: 25px 15px;

  text-align: center;

  box-sizing: border-box;
}

.recycle-link-title {
  display: block;

  margin-bottom: 18px;

  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;

  letter-spacing: 0.08em;

  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.45);
}


/* ========================================
   詳しく見る
======================================== */

.recycle-link-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 15px;

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;

  font-size: 12px;
  letter-spacing: 0.08em;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.recycle-link-more::after {
  content: "→";

  font-size: 15px;

  transition: transform 0.3s ease;
}


/* ========================================
   hover
======================================== */

.recycle-link:hover {
  transform: translateY(-6px);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.2);
}

.recycle-link:hover::before {
  background: rgba(0, 0, 0, 0.5);
}

.recycle-link:hover::after {
  transform: scale(1.06);
}

.recycle-link:hover .recycle-link-more {
  background: #fff;
  color: #333 !important;
}

.recycle-link:hover .recycle-link-more::after {
  transform: translateX(4px);
}


/* ========================================
   タブレット
======================================== */

@media screen and (max-width: 900px) {

  .recycle-links:not(.recycle-links--3),
  .recycle-links--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* ========================================
   スマホ
======================================== */

@media screen and (max-width: 600px) {

  .recycle-links {
    gap: 12px;
    margin: 35px 0;
  }

  .recycle-links:not(.recycle-links--3),
  .recycle-links--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recycle-link {
    aspect-ratio: 3 / 4;
  }

  .recycle-link-title {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .recycle-link-more {
    padding: 6px 12px;
    font-size: 11px;
  }

}





/* 汎用お知らせ・案内カードブロック */
.info-card-block {
  width: 100%; /* 幅いっぱいに指定 */
  /* max-width: 800px; ← 削除 */
  margin: 2rem 0; /* autoから0に変更 */
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.info-card-title {
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  border-bottom: 2px solid #2563eb;
}

.info-card-text {
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.info-card-status {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* 画面が狭くなったときに自然に改行 */
  gap: 0.75rem; /* テキストとバッジの間隔 */
  padding: 1rem 1.25rem;
  background-color: #f8fafc;
  border-left: 4px solid #94a3b8;
  border-radius: 0 6px 6px 0;
  box-sizing: border-box;
}

.info-card-status-title {
  font-weight: 700;
  color: #475569;
  font-size: 0.95rem;
}

.info-card-status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #e2e8f0;
  color: #475569;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}

/* スマホ表示向けの調整 */
@media (max-width: 640px) {
  .info-card-block {
    padding: 1.25rem;
  }
}


