@charset "utf-8";

/* ======================================== */
/* 変数 */
/* ======================================== */
:root {
    /* color */
    --color-red: #de0c0c;
    --color-green: #22AA3B;
    --color-blue: #313664;
    --color-bg-gray: #f3f3f6;
    --color-gradation: linear-gradient(90deg, #ED0000, #000);
    --color-gradation2: linear-gradient(90deg, #313664, #000004);
    /* font */
    --font-serif: "Noto Serif JP", serif;
    --font-sans: "Noto Sans JP", sans-serif;
    --font-en: "Roboto", sans-serif;
    --font-s12: clamp(10px, 0.62vw, 12px);
    --font-s14: clamp(12px, 0.72vw, 14px);
    --font-s16: clamp(14px, 0.83vw, 16px);
    --font-s20: clamp(18px, 1vw, 20px);
    --font-s30: clamp(25px, 1.56vw, 30px);
    --font-s48: clamp(30px, 3.4vw, 48px);
    /* shadow */
    --box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    /* hover */
    --hover-speed: 0.3s;
    --hover-opacity: .6;
}

/* ======================================== */
/* 全体 */
/* ======================================== */
*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: clamp(14px, 1.14vw, 16px);
    color: #000;
    line-height: 1.5;
    letter-spacing: 0.025em;
    background-color: #fff;
}

img {
    max-width: 100%;
}

/* ======================================== */
/* レイアウト */
/* ======================================== */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.space-t {
    padding-top: clamp(50px, 7vw, 100px);
}

.space-b {
    padding-bottom: clamp(50px, 7vw, 100px);
}

.header-menu-pc {
    display: block;
}

.header-menu-sp {
    display: none;
}

.sp-br {
    display: contents;
}

/* ======================================== */
/* 共通 */
/* ======================================== */
.heading_01 {
    text-align: center;
    font-weight: 700;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.heading_01 span {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: var(--font-s48);
    font-family: var(--font-en);
    letter-spacing: .02em;
    background: var(--color-gradation);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.more-btn {
    position: relative;
    background: var(--color-blue);
    color: #fff;
    display: block;
    padding: 15px;
    text-align: center;
    transition: var(--hover-speed);
}

.more-btn:hover {
    background: #000;
    color: #fff;
    transition: var(--hover-speed);
}

.more-btn .material-symbols-outlined {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-s20);
}

/* 下層ページ共通 */
.sv-heading_01 {
    background: url(../img/common/bg_sv_01.jpg) no-repeat center center;
    aspect-ratio: 1920 / 400;
    background-size: cover;
    width: 100%;
    min-height: 360px;
    position: relative;
    display: grid;
    place-content: center;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #ED0000, #000) 1;
}

.sv-heading_02 {
    background: url(../img/common/bg_sv_02.jpg) no-repeat center center;
    aspect-ratio: 1920 / 400;
    background-size: cover;
    width: 100%;
    min-height: 360px;
    position: relative;
    display: grid;
    place-content: center;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #ED0000, #000) 1;
}

.sv-heading_03 {
    background: url(../img/common/bg_sv_03.jpg) no-repeat center center;
    aspect-ratio: 1920 / 400;
    background-size: cover;
    width: 100%;
    min-height: 360px;
    position: relative;
    display: grid;
    place-content: center;
    border-bottom: 5px solid;
    border-image: linear-gradient(to right, #ED0000, #000) 1;
}

.sv-area .heading_02 {
    color: #fff;
    text-align: center;
    margin-top: var(--font-s30);
}

.sv-area .heading_02 .en {
    display: block;
    font-size: var(--font-s48);
    font-weight: 700;
    font-family: var(--font-en);
}

.heading_03 {
    font-size: var(--font-s30);
    font-weight: 700;
}

.breadcrumb {
    font-size: var(--font-s14);
    margin: 8px 0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    white-space: normal;
}

.breadcrumb li::after {
    font-family: "Material Symbols Outlined";
    content: "arrow_right";
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 30;
    font-size: var(--font-s20);
    margin: 0 10px;
}

.breadcrumb li:last-child::after {
    content: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ======================================== */
/* header */
/* ======================================== */
.header-menu-pc {
    background: #000;
    color: #fff;
    height: 82px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
}

.header-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 15px;
}

.header-logo img {
    width: clamp(38px, 5vw, 65px);
    height: clamp(38px, 5vw, 65px);
}

.company-text {
    display: grid;
    line-height: 1.2;
}

.company-text .top {
    font-size: var(--font-s12);
}

.company-text .name {
    font-weight: 900;
    font-size: var(--font-s30);
    letter-spacing: .02em;
}

.company-text .bottom {
    font-size: var(--font-s14);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 30px);
}

.global-nav {
    flex: 1 1 auto;
    min-width: 0;
}

.global-nav .nav-list {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2vw, 50px);
}

.global-nav a {
    display: grid;
    justify-items: center;
    white-space: nowrap;
}

.global-nav .en {
    font-size: var(--font-s12);
    font-family: var(--font-en);
}

.global-nav a:hover {
    opacity: var(--hover-opacity);
    transition: var(--hover-speed);
}

.header-cta {
    display: flex;
    height: 82px;
    white-space: nowrap;
}

.header-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    line-height: 1.2;
    font-weight: 500;
    font-size: var(--font-s14);

}

.header-cta img {
    display: grid;
    place-items: center;
    width: clamp(25px, 1.8vw, 35px);
    height: clamp(25px, 1.8vw, 35px);
}

.cta-red {
    background: var(--color-red);
}

.cta-red:hover {
    background: #b10e0e;
    transition: var(--hover-speed);
}

.cta-green {
    background: var(--color-green);
}

.cta-green:hover {
    background: #177b27;
    transition: var(--hover-speed);
}

/* ======================================== */
/* footer */
/* ======================================== */
.footer {
    background: #000;
    color: #fff;
}

.footer .container {
    max-width: 1200px;
}

.footer-inner {
    padding: clamp(25px, 3.5vw, 50px) 0;
}

.footer-tagline {
    text-align: center;
    margin-bottom: 20px;
    font-size: var(--font-s14);
}

.footer-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
	max-width: 800px;
	margin: 0 auto 40px;
}

.footer-head .brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.footer-head .brand-logo {
    width: clamp(50px, 5vw, 65px);
    height: clamp(50px, 5vw, 65px);
}

.brand-text {
    line-height: 1.2;
}

.brand-text .corp {
    display: block;
    font-size: var(--font-s14);
}

.brand-text .name {
    display: block;
    font-weight: 900;
    font-size: var(--font-s30);
    letter-spacing: .02em;
}

.footer-tel {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 10px;
}

.footer-tel:hover {
    opacity: var(--hover-opacity);
    transition: var(--hover-speed);
}

.footer-tel img {
    width: var(--font-s48);
    height: var(--font-s48);
}

.footer-tel .tel-number {
    font-size: var(--font-s48);
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    font-family: var(--font-en);
}

.footer-head .hours {
    text-align: right;
    font-size: var(--font-s14);
    margin-top: 8px;
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: clamp(14px, 1vw, 20px);
    gap: 10px 20px;
}

.footer-menu a:hover {
    opacity: var(--hover-opacity);
    transition: var(--hover-speed);
}

.footer-copy {
    padding-bottom: 8px;
    text-align: center;
    font-size: 10px;
    font-weight: 300;
}

/* ======================================== */
/* トップページ */
/* ======================================== */
.mv-area {
    background: url(../img/index/image_mv_01.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    display: grid;
    place-content: center;
    position: relative;
}

/* 対応ブラウザでは正確な可視領域に追従（アドレスバー考慮） */
@supports (height: 100dvh) {
    .mv-area {
        /* もっとも素直に「見えている領域の高さ」に合うのは dvh */
        height: 100dvh;
        /* 初回読み込み時にバーが最大に出ていても潰れないよう保険で */
        min-height: 100svh;
    }
}

.mv-area::after {
    content: "";
    background: url(../img/index/bg_mv-text.svg) no-repeat center bottom;
    background-size: contain;
    position: absolute;
    max-width: 1200px;
    width: 90%;
    height: 100%;
    text-align: center;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.mv-area .hours {
    position: absolute;
    top: 85px;
    right: 5px;
    color: #fff;
    font-size: var(--font-s14);
    font-weight: 300;
}

.mv-contents {
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mv-area .catch-area img {
    width: clamp(100px, 15vw, 300px);
}

.mv-area .catch-area .catch-copy {
    font-size: clamp(28px, 2.85vw, 50px);
    color: var(--color-main);
    letter-spacing: .15em;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    background-image: linear-gradient(120deg, #fff09c, #886900 50%, #ffd769);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.3));
}

.mv-area .catch-area .catch-copy span {
    font-weight: bold;
    font-size: clamp(40px, 5vw, 80px);
}

.mv-area .catch-area .catch-text {
    color: #fff;
    font-size: clamp(12px, 1.14vw, 16px);
    filter: drop-shadow(2px 3px 2px rgba(0, 0, 0, 0.3));
}

.mv-area .catch-area .top-arrow {
    margin-bottom: var(--font-s16);
}

.mv-area .catch-area .bottom-arrow {
    margin-top: var(--font-s16);
}

/* 買取品目一覧 */
/* ======================================== */
.top-purchased-item-section {
    background: url(../img/index/bg_purchased-item.png) no-repeat center center;
    background-size: cover;
    width: 100%;
    min-height: 500px;
}

.top-purchased-item-section .purchased-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.top-purchased-item-section .purchased-list li {
    position: relative;
    overflow: hidden;
}

.top-purchased-item-section .purchased-list li a {
    display: block;
    position: relative;
}

.top-purchased-item-section .purchased-list li img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.top-purchased-item-section .purchased-list li:hover img {
    transform: scale(1.1);
}

.top-purchased-item-section .purchased-list li a::after {
    content: "";
    position: absolute;
    inset: 0;
    /* top, right, bottom, left:0 の省略 */
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.top-purchased-item-section .purchased-list li:hover a::after {
    opacity: 1;
}

.top-purchased-item-section .purchased-list .name {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, .85);
    width: 90%;
    text-align: center;
    padding: 10px 5px;
    pointer-events: none;
    z-index: 2;
    font-size: var(--font-s14);
}

.top-purchased-item-section .btn-area {
    max-width: 300px;
    margin: 0 auto;
}

/* 事業内容 */
/* ======================================== */
.top-service-section {
    display: flex;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
        linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
}

.purchased-area,
.demolition-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.purchased-area {
    border-right: 1px solid #bbb;
}

.top-service-section .inner {
    max-width: 750px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.top-service-section .heading_01 {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 100px;
}

.top-service-section .heading_01::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: #000;
}

.top-service-section .image-area {
    position: relative;
    margin-bottom: clamp(15px, 3.5vw, 30px);
}

.top-service-section .image-area .en-text {
    background: #000;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: sideways-lr;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: var(--font-s20);
}

.top-service-section .text {
    flex: 1;
    margin-bottom: clamp(25px, 3.5vw, 50px);
}

.top-service-section .btn-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* 機械・設備の片付け、買取 */
/* ======================================== */
.top-machine-purchase-section {
    background-color: #000;
    background-image:
        linear-gradient(0deg, transparent calc(100% - 1px), #353535 calc(100% - 1px)),
        linear-gradient(90deg, transparent calc(100% - 1px), #353535 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
}

.mp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    color: #fff;
}

.mp-container .box {
    max-width: 750px;
    width: 90%;
    margin: 0 auto;
}

.mp-banner {
    display: inline-block;
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 10px 25px 10px 20px;
    margin: 0 0 30px;
    clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
    font-size: var(--font-s20);
}

.mp-eyebrow {
    font-size: var(--font-s20);
    font-family: var(--font-en);
    font-weight: 700;
    margin: 0 0 10px;
    width: max-content;
    background: linear-gradient(90deg, #fff, #454545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mp-title {
    font-size: var(--font-s30);
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 0 0 20px;
}

.mp-title span {
    font-size: var(--font-s20);
}

.mp-body {
    line-height: 1.8;
}

.mp-photo img {
    display: block;
}

/* CTA-共通 */
/* ======================================== */
.cta-section {
    background: url(../img/common/bg_cta.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section .container {
    background: #fff;
    padding: clamp(20px, 3.5vw, 50px);
    text-align: center;
    box-shadow: var(--box-shadow);
}

.cta-section .heading_01 span {
    font-size: clamp(20px, 3.4vw, 38px);
}

.cta-box {
    display: grid;
    gap: 15px;
}

.cta-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--color-blue);
    padding: 10px 20px;
    color: #fff;
}

.cta-item:hover {
    background: #000;
    transition: var(--hover-speed);
}

.cta-label {
    background: #fff;
    color: var(--color-blue);
    border-radius: 999px;
    padding: 15px 20px;
    font-size: clamp(14px, 1vw, 20px);
    font-weight: 700;
}

.cta-tel {
    font-size: clamp(24px, 3.4vw, 48px);
    font-weight: 500;
    font-family: var(--font-en);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-tel img {
    width: var(--font-s48);
    height: var(--font-s48);
}

/* 動画紹介 */
/* ======================================== */
.movie-section.container {
    max-width: 800px;
}

.movie-area {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.movie-area iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* お知らせ */
/* ======================================== */
.news-section .news-card {
    background: #fff;
    box-shadow: var(--box-shadow);
    padding: clamp(25px, 3.5vw, 50px) 0;
}

.news-list {
    width: 90%;
    margin: 0 auto;
}

.news-item {
    border-bottom: 1px solid #e7e7e7;
}

.news-link {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    padding: 18px 0;
}

.news-link .head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.news-badge {
    display: inline-grid;
    place-items: center;
    padding: 5px 15px;
    background: var(--color-green);
    color: #fff;
    font-size: var(--font-s12);
}

.news-date {
    font-size: var(--font-s14);
    font-weight: 700;
}

.news-link:hover .news-title {
    text-decoration: underline;
}

.news-section .more-btn {
    width: 300px;
    margin: clamp(20px, 2vw, 40px) auto 0;
}

/* ======================================== */
/* 買取品目一覧 */
/* ======================================== */
.cat-bar {
    padding: clamp(20px, 3.5vw, 50px) 0;
    background: var(--color-bg-gray);
}

.cat-bar__label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 15px;
}

.cat-chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px 20px;
    align-items: stretch;
}

.cat-chips>li {
    display: grid;
}

.cat-chips .chip {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 48px;
    min-width: 160px;
    padding: 5px 10px;
    border: 1px solid #000;
    background: #fff;
    font-size: var(--font-s14);
    scroll-snap-align: start;
    text-align: center;
}

.cat-chips .chip:hover {
    background: #000;
    color: #fff;
    transition: var(--hover-speed);
}

.cat-chips .chip.is-active {
    background: #000;
    color: #fff;
}

.cat-contents {
    margin-top: 10px;
}

.cat-contents .area-update {
    font-size: var(--font-s14);
    margin-bottom: clamp(20px, 3.5vw, 50px);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
}

.cat-contents .update {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cat-contents .update span {
    font-size: 18px;
}

.cat-contents .heading_03 {
    text-align: center;
    padding-bottom: clamp(25px, 3.5vw, 50px);
    font-size: clamp(18px, 1.56vw, 30px);
    ;
}

.item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.item-title {
    background: #000;
    color: #fff;
    font-size: var(--font-s14);
    font-weight: 500;
    padding: 6px;
    text-align: center;
}

.item-image {
    position: relative;
}

.item-image .photo {
    width: 100%;
    aspect-ratio: 10/7;
    overflow: hidden;
}

.item-image .photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.item-card .badge {
    position: absolute;
    bottom: clamp(4px, 0.4vw, 8px);
    right: clamp(4px, 0.4vw, 8px);
    width: clamp(45px, 3.5vw, 70px);
}

.item-price {
    font-size: var(--font-s20);
    font-weight: 700;
    color: var(--color-red);
    padding: 5px;
    border: 1px solid #dedede;
    text-align: center;
}

.item-price span {
    font-size: var(--font-s12);
    font-weight: 400;
    color: #000;
    margin-left: 5px;
}

/* 買取ヤード-共通 */
/* ======================================== */
.yard-section {
    background-color: #000;
    background-image:
        linear-gradient(0deg, transparent calc(100% - 1px), #353535 calc(100% - 1px)),
        linear-gradient(90deg, transparent calc(100% - 1px), #353535 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
}

.yard-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "info image"
        "buttons image";
    gap: 20px clamp(20px, 3.5vw, 50px);
}

.yard-info {
    grid-area: info;
    color: #fff;
}

.yard-info .heading_03 {
    margin-bottom: 20px;
}

.yard-address {
    font-size: clamp(16px, 1vw, 20px);
}

.yard-tel {
    font-size: clamp(30px, 3.4vw, 48px);
    font-weight: 500;
    font-family: var(--font-en);
    margin: 10px 0;
}

.yard-note {
    font-size: var(--font-s14);
    line-height: 1.8;
}

.yard-image {
    grid-area: image;
}

.yard-buttons {
    grid-area: buttons;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.yard-buttons .more-btn {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    transition: var(--hover-speed);
}

.yard-buttons .more-btn:hover {
    background: #000;
    color: #fff;
}

/* FAQ-共通 */
/* ======================================== */
.faq-section .heading_03 {
    text-align: center;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.faq-list {
    display: grid;
    gap: clamp(15px, 3vw, 25px);
}

.faq-item {
    background: #fff;
    border-radius: var(--font-s16);
    box-shadow: var(--box-shadow);
    padding: clamp(15px, 3vw, 25px);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    border: 1px solid #000;
}

.faq-q {
    font-weight: 700;
    font-size: clamp(18px, 3vw, 22px);
    color: #000;
    line-height: 1;
    margin-top: 4px;
    font-family: var(--font-en);
}

.faq-title {
    font-size: clamp(16px, 2.6vw, 18px);
    font-weight: 700;
    margin: 0 0 6px;
}

.faq-text {
    font-size: var(--font-s14);
}

.faq-text a {
    text-decoration: underline;
}

/* スクラップの種類-共通 */
/* ======================================== */
.scrap-section {
    background: var(--color-bg-gray);
}

.scrap-section .heading_03 {
    text-align: center;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.scrap-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px 15px;
}

.scrap-thumb {
    background: #e5e5e5;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin: 0 0 10px;
    display: block;
}

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

.scrap-title {
    font-size: var(--font-s16);
    font-weight: 700;
    margin: 6px 0 8px;
}

.scrap-text {
    font-size: var(--font-s14);
}

/* ======================================== */
/* 買取の流れ */
/* ======================================== */
.flow-inner {
    background: var(--color-bg-gray);
}

.flow-head {
    position: relative;
    background: var(--color-gradation2);
    color: #fff;
    padding: 24px;
}

.flow-title {
    font-weight: 700;
    font-size: clamp(18px, 3.2vw, 28px);
    letter-spacing: .04em;
    text-align: center;
}

.flow-illust {
    position: absolute;
    right: clamp(0px, 1vw, 20px);
    bottom: 0;
}

.flow-illust img {
    width: clamp(50px, 5vw, 100px);
    display: block;
}

.flow-list {
    display: grid;
    gap: 40px;
    padding: clamp(25px, 3.5vw, 50px) 0;
    width: 90%;
    margin: 0 auto;
}

.flow-item {
    position: relative;
    background: #fff;
    border: 1px solid #e1e1e6;
    padding: 18px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    align-items: center;
}

.flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid var(--color-blue);
}

.flow-label {
    background: var(--color-blue);
    color: #fff;
    text-align: center;
    border-radius: 3px;
    padding: 12px 10px;
    font-size: var(--font-s16);
}

.flow-desc {
    color: var(--color-blue);
    font-size: var(--font-s16);
    font-weight: 500;
}

/* ======================================== */
/* 解体工事事業 */
/* ======================================== */
.support-section .heading_03 {
    text-align: center;
    line-height: 1.7;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.support-section .hl {
    background-image: linear-gradient(transparent 70%, #E5F398 70%);
}

.support-image {
    max-width: 700px;
    margin: 0 auto;
}

.worries-inner {
    background: var(--color-bg-gray);
}

.worries-head {
    position: relative;
    background: var(--color-gradation2);
    color: #fff;
    padding: 24px;
}

.worries-title {
    font-weight: 700;
    font-size: clamp(18px, 3.2vw, 28px);
    letter-spacing: .04em;
    text-align: center;
}

.worries-illust {
    position: absolute;
    right: clamp(0px, 1vw, 20px);
    bottom: 0;
}

.worries-illust img {
    width: clamp(50px, 5vw, 100px);
    display: block;
}

.worries-contents {
    width: 90%;
    margin: 0 auto;
    padding: clamp(25px, 3.5vw, 50px) 0;
    display: flex;
    gap: clamp(20px, 2vw, 40px);
    font-weight: 500;
}

.worries-contents .detail-list {
    background: #fff;
    padding: clamp(20px, 2vw, 40px);
    border-radius: var(--font-s16);
    box-shadow: var(--box-shadow);
    margin-bottom: clamp(10px, 1vw, 20px);
    display: grid;
    gap: clamp(10px, 1vw, 20px);
}

.worries-contents .detail-list li {
    counter-increment: cnt;
}

.worries-contents .detail-list li::before {
    content: counter(cnt)". ";
}

.machine-flow-section {
    background: var(--color-bg-gray);
}

.machine-flow-section .container {
    background: #fff;
}

.machine-flow-inner {
    width: 90%;
    margin: 0 auto;
    padding: clamp(40px, 4vw, 80px) 0;
}

.machine-flow-inner .heading_03 {
    text-align: center;
    padding-bottom: clamp(25px, 3.5vw, 50px);
    font-size: clamp(18px, 1.56vw, 30px);
}

.machine-flow-inner .flow-image {
    margin-bottom: 20px;
}

.machine-flow-inner .flow-image img {
    width: 100%;
}

.case-section .heading_03 {
    text-align: center;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.case-section .case {
    background: var(--color-bg-gray);
    border: 1px solid var(--color-blue);
    border-radius: 5px;
}

.case-section .case:not(:last-child) {
    margin-bottom: clamp(20px, 3.5vw, 50px);
}

.case-head {
    background: var(--color-blue);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

.case-badge {
    background: #fff;
    color: #111;
    padding: 4px 15px;
    border: 1px solid #111;
    font-size: var(--font-s14);
    font-weight: 700;
}

.case-title {
    font-size: var(--font-s20);
    font-weight: 700;
}

.case-meta {
    font-size: var(--font-s14);
}

.case-body {
    width: 90%;
    margin: 0 auto;
    padding: clamp(20px, 3.1vw, 60px) 0;
}

.case-desc {
    margin: 0 0 24px;
    font-size: var(--font-s16);
}

.case-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.case-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

/* ======================================== */
/* 会社概要 */
/* ======================================== */
.about-section {
    background: url(../img/company/bg_about.jpg) no-repeat center/cover;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: stretch;
}

.about-text {
    max-width: 650px;
    width: 90%;
    margin: 0 auto;
}

.about-text .heading_03 {
    margin-bottom: 30px;
}

.about-logo {
    max-width: 100px;
    margin: 0 0 15px;
}

.about-desc {
    font-size: var(--font-s16);
    line-height: 1.8;
}

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

.strength-section {
    position: relative;
    color: #fff;
    background: url(../img/company/bg_strength.jpg) no-repeat center/cover;
    min-height: 600px;
    display: grid;
    place-content: center;
}

.strength-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 0;
}

.strength-section .heading_03 {
    position: relative;
    text-align: center;
    color: #fff;
    padding-bottom: clamp(30px, 4vw, 80px);
    z-index: 1;
    font-size: clamp(20px, 1.56vw, 30px);
}

.strength-section .heading_03::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(230px, 31vw, 800px);
    aspect-ratio: 5 / 2;
    background: url("../img/company/bg_strength-text.svg") center / contain no-repeat;
    z-index: 0;
}

.strength-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(15px, 1.56vw, 30px);
}

.strength-card {
    border: 1px solid #fff;
    padding: clamp(15px, 1.56vw, 30px);
}

.card-title {
    font-size: clamp(16px, 1vw, 20px);
    font-weight: 700;
    border-bottom: 1px solid #fff;
    padding: 0 0 clamp(10px, 0.78vw, 15px);
    margin: 0 0 clamp(10px, 0.78vw, 15px);
}

.card-text {
    font-size: var(--font-s14);
    line-height: 1.9;
    color: rgba(255, 255, 255, .9);
}

.result-section {
    background: var(--color-bg-gray);
    text-align: center;
}

.result-section .container {
    background: #fff;
    padding: clamp(30px, 3.5vw, 50px) clamp(20px, 3.6vw, 60px);
    box-shadow: var(--box-shadow);
}

.result-section .heading_03 {
    color: var(--color-green);
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.result-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 1.5vw, 30px);
    justify-content: center;
    margin-bottom: 10px;
}

.result-card {
    background: #e9f3eb;
    padding: clamp(20px, 3.5vw, 50px);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .1);
    font-weight: 700;
}

.result-label {
    font-size: var(--font-s20);
    margin-bottom: 5px;
}

.result-value {
    font-size: var(--font-s20);
    font-family: var(--font-en);
}

.result-value span {
    font-size: var(--font-s48);
    color: var(--color-green);
    margin-right: 4px;
}

.result-note {
    font-size: var(--font-s12);
    text-align: right;
}

.outline-section .heading_03 {
    text-align: center;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.list_outline {
    display: grid;
    grid-template-columns: .3fr 1fr;
    justify-content: center;
    border-top: 1px solid var(--color-blue);
}

.list_outline dt {
    background: var(--color-blue);
    border-bottom: 1px solid #aaa;
    color: #fff;
    font-weight: 500;
    padding: 30px 2vw;
    display: flex;
    align-items: center;
}

.list_outline dd {
    display: flex;
    align-items: center;
    padding: 30px 4vw;
    border-bottom: 1px solid var(--color-blue);
    border-right: 1px solid var(--color-blue);
}

.list_outline dd .list {
    display: grid;
    gap: 15px;
}

.history-section {
    background: var(--color-bg-gray);
}

.history-section .container {
    max-width: 800px;
}

.history-section .heading_03 {
    text-align: center;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.history-list {
    position: relative;
    display: grid;
    grid-template-columns: 50px 180px 1fr;
    row-gap: 20px;
}

.history-list::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 0;
    width: 1px;
    background: var(--color-blue);
}

.history-list dt::before {
    content: "";
    position: absolute;
    left: -39px;
    top: 6px;
    width: var(--font-s20);
    height: var(--font-s20);
    background: var(--color-blue);
    border-radius: 50%;
}

.history-list dt {
    position: relative;
    grid-column: 2;
    padding-right: 20px;
    font-weight: 600;
    color: var(--color-blue);
    font-size: 18px;
}

.history-list dd {
    grid-column: 3;
    line-height: 1.8;
}

/* ======================================== */
/* お問い合わせ */
/* ======================================== */
.contact-section .heading_03 {
    text-align: center;
    padding-bottom: clamp(25px, 3.5vw, 50px);
}

.contact-note {
    margin-bottom: clamp(25px, 3.5vw, 50px);
}

.contact-note span {
    color: var(--color-red);
}
/* ======================================== */
/* プライバシーポリシー */
/* ======================================== */
.area_privacy .text {
    margin-bottom: clamp(25px, 3.5vw, 50px);
}

.list_privacy-policy dt {
    font-size: var(--font-s20);
    font-weight: 600;
    margin-bottom: 5px;
}

.list_privacy-policy dd {
    margin-bottom: clamp(25px, 3.5vw, 50px);
}

.contact_privacy-policy {
    padding-top: clamp(20px, 2vw, 40px);
}

.contact_privacy-policy p:first-child {
    font-size: var(--font-s20);
    font-weight: 600;
}

/* ======================================== */
/* お知らせ(アーカイブ) */
/* ======================================== */
.area_post-list {
    display: grid;
    grid-template-columns: 1fr 280px;
    justify-content: center;
    gap: 40px;
}

.list_post_contents {
    display: grid;
    gap: 40px;
    margin-bottom: clamp(25px, 3.5vw, 50px);
}

.post-item_inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    justify-content: center;
    gap: 20px;
}

.post-image {
    width: 100%;
    max-width: 250px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

.post-contents .layout2 {
    display: grid;
    grid-template-columns: 80px 80px;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.post-contents .category {
    display: inline-grid;
    place-items: center;
    padding: 5px 15px;
    background: var(--color-green);
    color: #fff;
    font-size: var(--font-s12);
}

.post-contents .date {
    font-size: var(--font-s14);
    font-weight: 700;
}

.post-title {
    margin-bottom: 10px;
    font-size: var(--font-s20);
    font-weight: 600;
}

.post-text {
    font-size: var(--font-s14);
    color: #777;
}

/* ページネーション */
.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(30px, 2.2vw, 40px);
    height: clamp(30px, 2.2vw, 40px);
    background-color: #fff;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    margin: 0 5px;
    font-family: var(--font-en);
}

.pagination .page-numbers:hover {
    transition: var(--hover-speed);
    background: var(--color-blue);
    color: #fff;
}

.pagination .page-numbers.current {
    background: var(--color-blue);
    color: #fff;
    border: 1px solid transparent;
}

/* サイドバー */
.sidebar_title {
    background: #000;
    color: #fff;
    padding: 15px 20px;
}

.list_archive {
    background: #fff;
    box-shadow: var(--box-shadow);
    padding: 20px 0;
}

.list_archive li {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 14px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e7e7e7;
    font-weight: 500;
}

.list_archive li a:hover {
    text-decoration: underline;
}

/* ======================================== */
/* お知らせ(記事) */
/* ======================================== */
.article-box {
    display: grid;
    grid-template-columns: 1fr 280px;
    justify-content: center;
    gap: 40px;
}

.article .layout2 {
    display: grid;
    grid-template-columns: 80px 80px;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.article .category {
    display: inline-grid;
    place-items: center;
    padding: 5px 15px;
    background: var(--color-green);
    color: #fff;
    font-size: var(--font-s12);
}

.article .date {
    font-size: var(--font-s14);
    font-weight: 700;
}

.article-title {
	font-size: clamp(18px, 1.56vw, 30px);
    margin-bottom: 30px;
    font-weight: 600;
}

.article-image {
    margin-bottom: clamp(30px, 3vw, 60px);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
}

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

.article-text {
    margin-bottom: clamp(30px, 3vw, 60px);
}

.article-text p {
    margin-bottom: clamp(20px, 2vw, 40px);
}

.list_page-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-btn a {
    display: block;
    color: #fff;
    padding: 5px 30px;
    border-radius: 20px;
    background: var(--color-blue);
}

/* ======================================== */
/* 共通ページ(404) */
/* ======================================== */
.page-404 .btn {
    background: var(--color-blue);
    color: #fff;
    display: block;
    padding: 15px;
    text-align: center;
    transition: var(--hover-speed);
    width: 180px;
    margin-top: 30px;
}

.page-404 .btn:hover {
    background: #000;
    color: #fff;
    transition: var(--hover-speed);
}