@charset "UTF-8";
/* ==========================================================================
   Variables & Base Settings
   ========================================================================== */ :root {
    --color-primary: #024994;
    --color-primary-dark: #003366;
    --color-accent: #CB9012; /* 理由の番号などのゴールド・オレンジ系 */
    --color-text: #333333;
    --color-bg-light: #f8fafd;
    --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-sans: "Noto Sans JP";
}
*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    /*  font-family: var(--font-base);*/
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.7;
    background-color: #ffffff;
    font-feature-settings: "palt" 1;
    letter-spacing: .05em;
    text-align: justify;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}
a:hover {
    opacity: 0.7;
}
ul {
    list-style: none;
}
/* Utilities */
.u-pc-only {
    display: block;
}
.u-sp-only {
    display: none;
}
@media (max-width: 768px) {
    .u-pc-only {
        display: none;
    }
    .u-sp-only {
        display: block;
    }
}
main {
    margin-top: -80px;
}
/* ==========================================================================
   Components (Reusable)
   ========================================================================== */
/* Buttons */
.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 1rem 1.5rem 1rem .5rem;
    background-color: var(--color-primary);
    color: #ffffff;
    font-weight: bold;
    border-radius: 8px;
    border: 1px solid transparent;
    position: relative;
}
@media (max-width: 768px) {
    .c-btn {
        width: 100%;
    }
}
.c-btn::after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Solid（塗りつぶし）タイプを表示する場合 */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;

    position: absolute;
    right: 20px;
}
.c-btn--outline {
    background-color: #ffffff;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.c-btn--white {
    background-color: #ffffff;
    color: var(--color-primary);
}
/* Headings */
.c-heading-section {
    text-align: center;
    margin-bottom: 40px;
}
.c-heading-section__sub {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 8px;
}
.c-heading-section__main {
    color: var(--color-primary);
    font-size: clamp(1.8rem, calc(1.25vw + 1.5rem), 2.5rem);
    font-weight: 700;
    font-family: Noto Serif JP;
    letter-spacing: 2.7px;
}
.c-heading-section__main span {
    font-size: 3.0rem;
    margin: 0 4px;
}
@media (max-width: 768px) {
    .c-heading-section__main {
    }
}
/* ==========================================================================
   Layout (Header / Footer / CTA)
   ========================================================================== */
/* Header */
.l-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.l-header__inner {
    /*  max-width: 1200px;*/
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 0 0 40px;
    height: 80px;
}
@media (max-width: 768px) {
    .l-header__inner {
        padding: 0 20px 0;
    }
}
.l-header__logo img {
    height: 45px;
}
.l-header__logo .logo-jp {
    font: normal normal bold 1.75rem/1.75rem Noto Serif JP;
    font-weight: bold;
    letter-spacing: 2.1px;
    white-space: nowrap;
}
.l-header__logo .logo-en {
    font-size: .75rem;
    font-family: Noto Serif JP;
    display: block;
    margin-top: -.5rem;
}
.l-header__nav {
    margin-left: auto;
}
.l-header__nav-list {
    display: flex;
    gap: 2.5rem;
}
.l-header__nav-list a {
    font-size: 1.063rem;
    font-weight: bold;
    color: var(--color-primary);
}
.l-header__info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 3rem;
}
.l-header__tel {
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--color-primary);
    text-align: center;
    letter-spacing: 1.65px;
}
.l-header__tel-time {
    display: block;
    font-size: .75rem;
}
.c-btn-cta--header {
    background: var(--color-primary);
    color: #ffffff;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    font-weight: bold;
}
/* Bottom CTA */
.l-cta {
/*    background: linear-gradient(rgba(0, 75, 147, 0.9), rgba(0, 75, 147, 0.9)), url('../img/common/cta-bg.jpg') no-repeat center/cover;*/
    background: url('../img/common/cta-bg.jpg') no-repeat center/cover;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}
.l-cta__inner {
    max-width: 800px;
    margin: 0 auto;
}
.l-cta__lead {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.l-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.l-cta__tel-wrap {
    text-align: center;
    letter-spacing: 2.4px;
}
.l-cta__tel-label {
    font-size: 0.8rem;
}
.l-cta__tel {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
}
.l-cta__time {
    font-size: 0.8rem;
}
/* Footer */
.l-footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 40px 20px 20px;
}
.l-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
    padding-bottom: 40px;
}
.l-footer__logo {
    font-family: Noto Serif JP;
    font-size: 1.35rem;
    letter-spacing: 1.65px;
}
.l-footer__logo .logo-en {
    font-size: .6rem;
    display: block;
    letter-spacing: 0;

}
.l-footer__address {
    font-style: normal;
    margin-top: 20px;
    font-size: 1.0rem;
    line-height: 1.8;
}
.l-footer__nav-list {
    display: flex;
    gap: 3rem;
}
.l-footer__copyright {
    text-align: right;
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    width: 100%;
}


/* Banner Area */
.p-banner-area {
    background-color: var(--color-bg-light);
    padding-bottom: 60px;
}
.p-banner-area__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.p-banner {
    background: url("../img/top/bg-junk-removal.jpg") no-repeat center/cover;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .p-banner {
        padding: 1.5rem 2rem;
    }
}
.p-banner__content {
    display: flex;
    align-items: center;
    gap: 1.5rem;;
}
.p-banner__icon{
    width: 96px;
    height: 96px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-banner__icon img {
    width: 64px;
    height: auto;
}
.p-banner__text {
    font-weight: bold;
    font-size: 1.5rem;
}
/* News Section */
.p-news {
    background-color: #ffffff;
    padding: 80px 20px;
}
.p-news__inner {
    max-width: 1000px;
    margin: 0 auto;
}
.p-news__list {
    border-top: 1px solid #dddddd;
    margin-bottom: 40px;
}
.p-news__item {
    border-bottom: 1px solid #dddddd;
}
.p-news__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    gap: 5%;
}
.p-news__date {
    font-size: 0.9rem;
    color: #666666;
    width: 10%;
}
.p-news__cats {
    display: flex;
    gap: 8px;
    width: 10%;
}
@media (max-width: 1024px) {
    .p-news__date {
        width: auto;
    }
    .p-news__cats {
        width: auto;
    }
}
.p-news__title {
    font-size: 1rem;
    font-weight: normal;
    /*  flex: 1;*/
    width: 70%;
}
.p-news__action {
    text-align: center;
}
/* ==========================================================================
   Responsive (Responsive Adjustments)
   ========================================================================== */
@media (max-width: 1024px) {
    .l-header__nav, .l-header__info {
        display: none;
    } /* 本来はハンバーガーメニュー等に移行 */
    .p-features__grid {
        grid-template-columns: 1fr;
    }
    .p-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;

    }
    .p-banner__content {
        flex-direction: column;
    }
    .p-news__link {
        /*      flex-direction: column;*/
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 10px;
    }
    .p-news__title {
        width: 100%;
    }
    .l-cta__actions {
        flex-direction: column;
        gap: 20px;
    }
    .l-footer__inner {
        flex-direction: column;
        gap: 30px;
    }
}
/* ==========================================================================
   Hamburger Button & Drawer Menu (SP)
   ========================================================================== */
/* デフォルトではスマホ用パーツを非表示（PCファーストの場合） */
.bl-hamburger, .bl-drawer {
    display: none;
}
@media (max-width: 1024px) {
    /* ハンバーガーボタンのスタイリング */
    .bl-hamburger {
        display: block;
        position: relative;
        z-index: 110; /* ドロワーより上 */
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto; /* 右端に寄せる */
        right: 40px;
    }
    .bl-hamburger__line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-primary-dark);
        transition: all 0.3s ease-in-out;
    }
    /* 三本線の初期位置 */
    .bl-hamburger__line:nth-child(1) {
        top: 0;
    }
    .bl-hamburger__line:nth-child(2) {
        top: 11px;
    }
    .bl-hamburger__line:nth-child(3) {
        top: 22px;
    }
    /* アクティブ時（×マークに変形） */
    .bl-hamburger.is-open .bl-hamburger__line:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .bl-hamburger.is-open .bl-hamburger__line:nth-child(2) {
        opacity: 0;
    }
    .bl-hamburger.is-open .bl-hamburger__line:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
    /* ドロワーメニューの背景と外枠 */
    .bl-drawer {
        display: block;
        position: fixed;
        top: 0;
        right: -100%; /* 初期状態は画面外に隠す */
        width: 80%; /* 画面の8割を覆う仕様（100%でも可） */
        max-width: 400px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        z-index: 100;
        transition: right 0.4s ease-in-out;
        padding: 100px 30px 40px; /* 上部はボタンと被らないよう広めに空ける */
    }
    /* メニューが開いたとき */
    .bl-drawer.is-open {
        right: 0;
    }
    /* ドロワー内のナビゲーション縦並び */
    .bl-drawer__nav-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-bottom: 1px solid #eeeeee;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .bl-drawer__nav-list a {
        display: block;
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--color-primary-dark);
        padding: 10px 0;
    }
    /* ドロワー内のサブ情報（電話・コンタクトボタン） */
    .bl-drawer__info {
        text-align: center;
    }
    .bl-drawer__tel {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--color-primary);
        margin-bottom: 20px;
    }
    .bl-drawer__btn {
        width: 100%;
    }
    /* メニュー展開時の背景マスク（任意で追加する場合） */
    body.is-drawer-open {
        overflow: hidden; /* 背面のスクロールを固定 */
    }
}
@media (max-width: 768px) {
    .bl-hamburger {
        position: absolute;
        right: 20px;
    }
}




/* ==========================================
   記事　投稿詳細
   ========================================== */

/* --- 記事詳細全体コンテナ --- */
.p-entry {
  padding: 80px 0;
  background-color: #fff;
}
.p-entry__inner {
  width: 100%;
  max-width: 960px; /* 読みやすい記事幅に制限 */
  margin: 0 auto;
  padding: 0 20px;
}

/* --- 記事ヘッダー --- */
.p-entry__header {
  margin-bottom: 40px;
}
.p-entry__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.p-entry__date {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: bold;
}

/* お知らせ一覧と共通のラベルスタイル */
.c-cat-label {
    display: inline-block;
    padding: 2px 12px;
    background-color: #e2edfa;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
}
.c-cat-label--important {
    background-color: #e73656;
    color: #ffffff;
}
.c-cat-label--active {
    background-color:  var(--color-primary);
    color: #ffffff;
}

.p-entry__title {
    font-family: Noto Serif JP;
  font-size: 2.4rem;
  color: var(--color-primary);
  line-height: 1.3;
}

/* --- 記事本文エリア（エディタ出力用スタイル） --- */
.p-entry__body {
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}
/* 段落余白 */
.p-entry__body p {
  margin-bottom: 25px;
}

/* 本文のH2（左側に太いオレンジ線の見出し） */
.p-entry__body h2 {
  font-size: 1.4rem;
  color: var(--color-text);
  position: relative;
  padding-left: 15px;
  margin-top: 50px;
  margin-bottom: 20px;
  line-height: 1.4;
}
.p-entry__body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 5px;
  background-color: var(--color-accent); /* アクセントのオレンジ */
}

/* 本文のH3（シンプルな見出し） */
.p-entry__body h3 {
  font-size: 1.25rem;
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 20px;
}
.p-entry__body h4 {
  margin-top: 40px;
  margin-bottom: 20px;
}
/* 画像ブロックの回り込み解除と余白 */
.p-entry__body img, 
.p-entry__body .wp-block-image {
  margin: 40px 0;
/*  width: 100%;*/
    max-width: 100%;
}

/* --- 記事フッター・ナビゲーション --- */
.p-entry__footer {
  margin-top: 60px;
  border-top: 1px solid #e2e8f0;
  padding-top: 40px;
}
.p-entry__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.p-entry__nav-prev a,
.p-entry__nav-next a {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.p-entry__nav-prev a::before {
    content: '\f104'; 
    /* Font Awesomeを使用するための必須設定 */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Solid（塗りつぶし）タイプを表示する場合 */

    /* 見た目の微調整（文字化けやズレを防ぐ） */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-left: 8px;
    margin-right: 8px;
}
.p-entry__nav-next a::after {
    content: '\f105'; 
    /* Font Awesomeを使用するための必須設定 */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Solid（塗りつぶし）タイプを表示する場合 */

    /* 見た目の微調整（文字化けやズレを防ぐ） */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-left: 8px;
}
.p-entry__nav-prev a:hover,
.p-entry__nav-next a:hover {
  opacity: 0.7;
}

/* 一覧へ戻るボタン */
.p-entry__back {
  text-align: center;
}
.c-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  width: 240px;
  height: 50px;
  font-weight: bold;
  background-color: #fff;
  transition: all 0.3s ease;
}
.c-btn-back::after {
content: '\f053'; 
  
  /* Font Awesomeを使用するための必須設定 */
  font-family: "Font Awesome 6 Free"; /* 5の場合は "Font Awesome 5 Free" */
  font-weight: 900;
  
  /* 見た目の微調整 */
  display: inline-block;
  margin-right: 8px; /* 文字との間の余白 */
    margin-left: 10px;
  font-size: 0.8rem;
}
.c-btn-back:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.wp-caption {
    width: 100% !important;
}
/* --- スマホ表示調整 --- */
@media (max-width: 768px) {
  .p-entry {
    padding: 50px 0;
  }
  .p-entry__title {
    font-size: 1.8rem;
  }
  .p-entry__body h2 {
    font-size: 1.25rem;
    margin-top: 40px;
  }
  .p-entry__body h3 {
    font-size: 1.15rem;
  }
  .p-entry__nav {
    font-size: 0.9rem;
  }
  .c-btn-back {
    width: 100%; /* スマホ時はボタンを横幅いっぱいに */
  }
}

/* ==========================================
   2階層目　共通ヘッダー
   ========================================== */

.p-mv__inner {
    background: none;
    text-align: center;
}
.page-title {
    font-family: Noto Serif JP;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-primary);
    letter-spacing: 3px;
    
    display: inline-block;     /* 疑似要素（下線）の基準にするため */
    position: relative;
    padding-bottom: 1rem;      /* 文字とオレンジ下線の間の余白 */
}
/* 中央の短いオレンジ色の下線 */
.page-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); /* 中央ぴったりに配置 */
  width: 50px;                 /* 下線の長さ */
  height: 4px;                 /* 下線の太さ */
  background-color: var(--color-accent);   /* アクセントのオレンジ色 */
}

/* レスポンシブ対応（スマホ表示時に文字サイズを最適化） */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
    padding-bottom: 14px;
  }
  .page-title::after {
    width: 40px;
    height: 3px;
  }
}


/* ==========================================
   スクロールアニメーション用の共通スタイル
   ========================================== */

/* 1. 動かしたい要素の初期状態（下からほわっと消えている状態） */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px); /* 40px下に下げておく */
  transition: opacity 1.0s ease, transform 1.0s ease; /* 1秒かけて「ほわっ」と動かす */
  will-change: opacity, transform; /* ブラウザの描画を滑らかにするおまじない */
}

/* 2. 画面内に入ったときにJavaScriptで付与するクラス（表示された状態） */
.js-fade-up.is-active {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
}
