.hero {
    background-image: url("../images/top/hero-bg.jpg");
    background-size: cover;
    /* ← contain → cover に変更 */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 90vh;
    margin-top: -80px;
    /* ← 余計な余白を削除 */
    z-index: -1;

}

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

.hero-inner {
    /* padding: 100px 0; */
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0 24px;
    width: 100%;
}

.hero-text {
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.6;
}

.label {
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
}

.label.orange {
    background: #E7670F;
}

.label.red {
    background: #E7670F;
}

.hero-logo {
    color: #E7670F;
    font-size: 72px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.badges {
    width: 100%;
    margin: 0 auto;
}

.badges img {
    width: 100%;
}


.highlight-red {
    color: #E7670F;
    font-weight: bold;
}

.highlight-orange {
    color: #E7670F;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .hero-text h2 {
        font-size: 30px;
        line-height: 2.2;
    }

    .hero-logo {
        font-size: 40px;
    }
}

@media screen and (max-width: 480px) {
    .hero-text h2 {
        font-size: 20px;
    }

    .hero-logo {
        font-size: 30px;
    }

    .hero {
        height: 70vh;
        background-position: 60%;
    }
}

.fixed-buttons {
    position: fixed;
    top: 20%;
    right: -12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99999999999;
}

.fixed-buttons .btn {
    padding: 16px 16px 16px 8px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    border-radius: 15px;
    font-weight: bold;
    border: 2px solid #fff;
    writing-mode: vertical-rl;
    /* 縦書き（右から左） */
    text-orientation: mixed;
    /* 日本語の文字を正しく表示 */
}

.fixed-buttons .btn img {
    width: 20px;
}

.fixed-buttons .email {
    background: #005bbb;
}

.fixed-buttons .tel {
    background: #f60;
}

.fixed-buttons .line {
    background: #06c755;
}

.fixed-buttons-sp {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    gap: 10px;
    z-index: 99999999999;
}

.fixed-buttons-sp .btn {
    width: 100px;
    padding: 16px 16px 16px 8px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #fff;
}

.fixed-buttons-sp .btn img {
    width: 20px;
}

.fixed-buttons-sp .email {
    background: #005bbb;
}

.fixed-buttons-sp .tel {
    background: #f60;
}

.fixed-buttons-sp .line {
    background: #06c755;
}

@media screen and (max-width: 480px) {
    .fixed-buttons {
        display: none;
    }

    .fixed-buttons-sp {
        display: flex !important;
    }

}


.needs {
    background-image: url("../images/top/kumamoto-bg.jpg");

    /* 実際のパスに変更 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 20px;
    position: relative;
    color: #fff;
    width: 100%;
}

.needs-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.needs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.needs-list li {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.8;
    display: flex;
    align-items: center;
    font-size: 30px;
}

.needs-list .arrow {
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
    font-size: 80px;
    line-height: 1.5;
}

.needs-list strong {
    font-weight: 700;
    color: #fff;
    font-size: 50px;
}


@media screen and (max-width: 768px) {
    .needs {
        padding: 60px 16px;
    }

    .needs-list strong {
        font-size: 24px;
    }

    .needs-list .arrow {
        font-size: 20px;
    }

    .needs-list li {
        font-size: 16px;
        line-height: 1.8;
        flex-wrap: wrap;
    }
}




.video-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    /* padding-top: 56.25%; */
    /* 16:9比率 */
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
}


.cta-section {
    padding: 60px 20px;
}

.cta-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-image {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-image img {
    width: 100%;
    height: auto;
}

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

    .cta-section {
        padding: 0px 24px;
    }
}

.reason-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.reason-inner {
    max-width: 900px;
    margin: 0 auto;
}

.reason-heading img {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-bottom: 30px;
}

.reason-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: left;
}


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

    .reason-text p {
        font-size: 14px;
    }
}



.features {
    padding: 0 0 50px;
}

.feature-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    padding: 0 24px;
    width: 100%;
    margin: 0 auto 40px;
}

/* 偶数番目は通常の横並び（左：テキスト、右：画像） */
.feature-box:nth-child(even) {
    flex-direction: row-reverse;
    /* 右：テキスト、左：画像 */
}

/* 基本構成 */
.feature-left {
    flex: 1;
    min-width: 300px;
}

.feature-right {
    flex: 1;
    min-width: 300px;
}

.feature-right img {
    width: 100%;
}

.feature-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.feature-label {
    width: 70px;
    height: auto;
}

.feature-title-text {
    font-size: 30px;
    font-weight: bold;
}

.feature-title-text span {
    color: #e60012;
    font-size: 40px;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .feature-box {
        flex-direction: column !important;
    }

    .feature-label {
        width: 50px;
        height: auto;
    }

    .feature-title-text {
        font-size: 18px;
        font-weight: bold;
    }

    .feature-title-text span {
        color: #e60012;
        font-size: 24px;
    }
}

.top-service-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.section-subtitle {
    font-size: 14px;
    color: #e66410;
    margin-bottom: 40px;
}

.top-service-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.top-service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    max-width: 430px;
    width: 100%;
    margin-bottom: 50px;
    padding: 0 0 30px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-head {
    background: #e66410;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 12px 0;
    font-size: 28px;
}

.top-service-card img {
    width: 100%;
    height: auto;
    padding: 20px;
}

.top-service-card p {
    font-size: 15px;
    padding: 20px;
    color: #333;
    flex-grow: 1;
}

.top-service-btn {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 36px 10px 20px;
    margin: 0 20px;
    border-radius: 30px;
    color: #e66410;
    border: 2px solid #e66410;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.top-service-btn:hover {
    background: #e66410;
    color: #fff;
}

.arrow-btn::after {
    content: "›";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}


.top-service-other {
    background: #fff;
    border-radius: 10px;
    max-width: 890px;
    margin: 30px auto 0;
    font-family: "sans-serif";
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.top-service-header {
    background: #f26c21;
    color: white;
    font-weight: bold;
    font-size: 20px;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    margin-bottom: 30px;
}

.top-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* ←ここを明示的に3列に */
    gap: 10px;
}


.top-service-item {
    text-align: center;
    padding: 20px;
}

.top-service-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.top-service-item-icon {
    height: 40px;
    margin: 10px 0;
    width: auto;
}

.top-service-item-icon img {
    object-fit: cover;
    height: 100%;
}

.top-service-item p {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}


.transparent-section {
    padding: 40px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.transparent-inner h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.transparent-inner .highlight {
    color: #f26c21;
}

.transparent-inner p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    text-align: left;
}


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

    /* その他のサービスエリア */
    .top-service-other {
        margin: 20px auto 0;
    }

    .top-service-header {
        font-size: 18px;
        padding: 10px 15px;
        margin-bottom: 20px;
    }

    .top-service-grid {
        grid-template-columns: 1fr;
        /* スマホは1列表示 */
        gap: 15px;
    }

    .top-service-item {
        padding: 15px;
    }

    .top-service-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .top-service-item .icon {
        font-size: 28px;
        margin: 8px 0;
    }

    .top-service-item p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    /* 明朗会計セクション */
    .transparent-section {
        padding: 30px 15px;
    }

    .transparent-inner h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .transparent-inner p {
        font-size: 14px;
        text-align: left;
        line-height: 1.7;
    }

    .card-head {
        font-size: 18px;
    }
}



/* 回収可能な品目と料金例 */

/* セクション全体 */
.recycle-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 100px;
    font-family: sans-serif;
}

/* タイトル */
.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .top-service-card {
        margin-bottom: 16px;
    }

}

/* グリッドレイアウト */
.recycle-grid.layout-a {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    grid-template-areas:
        "left-top right"
        "left-bottom right"
        "full full";
}

.layout-left-top {
    grid-area: left-top;
}

.layout-left-bottom {
    grid-area: left-bottom;
}

.layout-right {
    grid-area: right;
}

.full {
    grid-area: full;
}

/* 各ボックス */
.recycle-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
}

.recycle-box p {
    margin-bottom: 20px;
}

.recycle-box img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}


.recycle-box h3 {
    background: #f26c21;
    text-align: center;
    color: #fff;
    font-size: 28px;
    padding: 10px 20px;
    margin: -20px -20px 15px -20px;
    border-radius: 8px 8px 0 0;
}


.price {
    color: #FF0000;
    font-weight: bold;
}

/* 注意書きボックス */
.notice-box {
    border: 1px solid red;
    border-radius: 40px;
    padding: 30px 20px;
    margin-top: 30px;
    background: #fff;
}

.notice-icon {
    background: red;
    color: white;
    font-size: 36px;
    font-weight: bold;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 auto 20px;
}

.notice-box p {
    font-size: 15px;
    color: #000;
    line-height: 1.8;
}

/* その他（画像＋テキスト横並び） */
.others-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.others-main-img {
    width: 45% !important;
}

.others-main-img img {
    width: 100%;
}

.others-text {
    flex: 1 1 45%;
    font-size: 15px;
}

.others-text p {
    margin-bottom: 15px;
}

.others-text-btn {
    text-align: center;
}

/* オレンジボタン */
.btn-orange {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #f26c21;
    border: 2px solid #f26c21;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #f26c21;
    color: #fff;
}

.recycle-grid.layout-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    grid-template-areas:
        "left right"
        "full full";
}

.layout-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    grid-area: left;
}

.layout-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    grid-area: right;
}

.full {
    grid-area: full;
}


@media screen and (max-width: 768px) {
    .recycle-grid.layout-custom {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .layout-left,
    .layout-right,
    .full {
        grid-area: unset !important;
        width: 100%;
    }

    .recycle-box h3 {
        font-size: 18px;
    }

    .recycle-box,
    .notice-box {
        width: 100%;
    }

    .others-inner {
        flex-direction: column;
    }

    .others-main-img {
        width: 100% !important;
    }

    .btn-orange {
        display: block;
        width: fit-content;
        margin: 20px auto 0;
    }
}




.voice-section {
    background: #f26c21;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    font-family: sans-serif;
}

.voice-section h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 5px;
}

.voice-subtitle {
    font-size: 14px;
    color: #fff5e5;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.voice-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;

}

.voice-box {
    background: #fff;
    color: #000;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.voice-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.voice-content {
    flex: 1;
}

.voice-name {
    display: inline-block;
    background: #0044cc;
    color: #fff;
    font-weight: bold;
    padding: 3px 20px;
    font-size: 13px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.voice-content p {
    font-size: 14px;
    line-height: 1.6;
}

.voice-more {
    margin-top: 40px;
}

.voice-more a {
    display: inline-block;
    background: #fff;
    color: #f26c21;
    border: 2px solid #f26c21;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.voice-more a:hover {
    background: #f26c21;
    color: #fff;
}

@media screen and (max-width: 640px) {
    .voice-section {
        padding: 40px 15px;
    }

    .voice-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .voice-avatar img {
        width: 50px;
        height: 50px;
    }

    .voice-content {
        text-align: left;
    }
}




.staff-section {
    padding: 60px 20px;
    text-align: center;
    font-family: sans-serif;
    max-width: 800px;
    width: 100%;
    margin: 0 auto 100px;
}

.staff-section h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}


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

    .staff-section h2 {
        font-size: 28px;
    }
}


.staff-subtitle {
    color: #f26c21;
    font-size: 14px;
    margin-bottom: 40px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 5px;
    justify-items: center;
    margin-bottom: 40px;
}

.staff-card {
    text-align: center;
}

.staff-card img {
    width: 160px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.staff-role {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.staff-name {
    font-size: 16px;
    font-weight: normal;
    margin-top: 4px;
}

.staff-cta {
    margin-top: 20px;
}

.staff-button {
    display: inline-block;
    background: #f26c21;
    color: #fff;
    font-size: 16px;
    padding: 15px 40px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.staff-button:hover {
    background: #d95500;
}

.member__inner {
    max-width: 800px;
    width: 100%;
    padding: 0 24px;
    margin: 80px auto;
}

.member img {
    width: 100%;
}