@charset "UTF-8";

/* ========================================
   リセット・ベーススタイル
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* PC表示時の非表示クラス */
@media (min-width: 1000px) {
    .pc_none {
        display: none;
    }
}
/* SP表示時のみ表示 */
@media (min-width: 481px) {
    .sp_only {
        display: none;
    }
}

/* 固定ボタンは769px以上では非表示 */
@media (min-width: 769px) {
    .fixed-buttons , .tab_only {
        display: none;
    }
}

/* ========================================
   スクロールフェードインアニメーション
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* カード要素に遅延を追加 */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   ヘッダー
======================================== */
.header {
    background-color: #2CBDD2;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.4s ease;
}

.header--scrolled {
    background-color: rgba(44, 189, 210, 0.92);
}

.header__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__logo a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: inherit;
}

.header__logo-main {
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.header__logo-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.header__buttons {
    display: flex;
    gap: 20px;
}

.header__button {
    background-color: #fff;
    color: #2CBDD2;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.header__button:hover {
    opacity: 0.8;
}

/* ========================================
   ファーストビュー
======================================== */
.fv {
    width: 100%;
}

.fv__inner {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
}

.fv__image {
    width: 100%;
    display: block;
}

/* ========================================
   キャンペーン告知
======================================== */
.campaign {
    padding: 50px 0;
}

.campaign__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.campaign__content {
    background-color: #2CBDD2;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.campaign__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFF700;
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.campaign__title::before {
    content: '＼';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.campaign__title::after {
    content: '／';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.campaign__badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.campaign__badge {
    background-color: #fff;
    border-radius: 100px;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.campaign__badge-label {
    font-size: 35px;
    font-weight: 600;
    color: #080A0A;
}

.campaign__badge-value {
    font-size: 70px;
    font-weight: 700;
    color: #2CBDD2;
}

.campaign__note {
    background-color: #2CBDD2;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-align: center;



}

/* ========================================
   CTAボタン
======================================== */
.cta {
    padding: 0 0 50px;
    background-color: #fff;
}

.cta__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative; 
}

.cta__label {
    font-size: 36px;
    font-weight: 600;
    color: #2CBDD2;
    letter-spacing: 0.2em;
    position: relative;
    padding: 0 40px;
}

.cta__label::before {
    content: '＼';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cta__label::after {
    content: '／';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cta__button {
    background: linear-gradient(180deg, #22125B 0%, #3F2282 100%);
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    padding: 25px 60px;
    border-radius: 100px;
    box-shadow: 
        0px 6px 0px #1a0d3d,
        0px 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    position: relative;
    top: 0;
}

/* PCのみホバー時に押される動き */
@media (min-width: 769px) {
    .cta__button:hover {
        top: 4px;
        box-shadow: 
            0px 2px 0px #1a0d3d,
            0px 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .cta__button:active {
        top: 6px;
        box-shadow: 
            0px 0px 0px #1a0d3d,
            0px 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* スマホではタップ時の効果 */
@media (max-width: 768px) {
    .cta__button:active {
        top: 4px;
        box-shadow: 
            0px 2px 0px #1a0d3d,
            0px 4px 10px rgba(0, 0, 0, 0.2);
    }
}

.cta__button-wrapper {
    position: relative;
    display: flex
}

/* 左右に揺れるアニメーション */
@keyframes swing {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

.cta__button-decoration {
    position: absolute;
    right: -110px;
    width: 400px;
    height: auto;
    bottom: calc(100% - 26px);
    transform-origin: top center;
    animation: swing 2s ease-in-out infinite;
}

.cta__note {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.cta__note-top {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.cta__divider {
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin: 20px 0;
}
.cta.cta--third{
    padding: 50px 0 100px;

}
/* ========================================
   なぜstajioneは
======================================== */
.reason {
    padding: 80px 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('image/bg-pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.reason__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.reason__header {
    text-align: center;
    margin-bottom: 60px;
}

.reason__title-line1,
.reason__title-line3 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.reason__title-line2 {
    margin: 20px 0;
    display: inline;
}

.reason__title-line3 {
    display: inline;
}

.reason__title-highlight {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reason__points {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.reason__point {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    box-shadow: 8px 8px 4.2px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reason__point-badge {
    font-size: 35px;
    font-weight: 400;
    color: #000;
    border-bottom: 1px solid;
    align-self: flex-start;
    margin: 0 auto;
}

.reason__point-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #2CBDD2;
    text-align: center;
}

.reason__point-icon {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason__point-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.reason__point-text {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.8;
}

/* ========================================
   関東一円対応
======================================== */
.area {
    padding: 60px 0;
    position: relative;

}

.area__inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 40px;
}

.area__content-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto 40px;
    padding: 0 40px;
}

.area__content {
    background-color: #2CBDD2;
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    padding: 25px 40px;
    border-radius: 100px;
}

.area__info {
    display: flex;
    gap: 40px;
    align-items: stretch;
    position: relative;
}

.area__card {
    flex: 1;
    background-color: #fff;
    border: 2px solid #B7B7B7;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 8px 8px 4.2px rgba(0, 0, 0, 0.1);
}

.area__card-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.area__card-title {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.area__divider {
    max-width: 541px;
    width: 100%;
    margin: 0 auto;
}

.area__divider img {
    width: 100%;
}

.area__prefectures {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.area__prefecture-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.area__prefecture {
    background-color: #2CBDD2;
    color: #fff;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    padding: 0 30px;
    border-radius: 100px;
    line-height: 1.8;
}

.area__note {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.area__map {
    flex-shrink: 0;
    position: absolute;
    right: -145px;
    bottom: -60px;
}

.area__map img {
    width: 265px;
    height: auto;
}

/* ========================================
   こんなお悩み
======================================== */
.services {
    padding: 80px 0;
    background-color: #E0F5F8;
    position: relative;
}

.services__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__title-line1 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.services__title-line2 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-top: -10px;
}

.services__title-brand {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 90px;
    font-weight: 600;
    color: #2CBDD2;
}

.services__title-text {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #000;
}

.services__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 30px;
    margin-bottom: 60px;
    justify-content: center;
}

.services__item {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 8px 8px 4.2px rgba(0, 0, 0, 0.1);
    position: relative;
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.services__item-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services__item-title {
    font-size: 35px;
    font-weight: 700;
    color: #2CBDD2;
    text-align: center;
}

.services__item-icon {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services__item-icon img {
    width: 100%;

    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.services__item-text {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    line-height: 1.8;
}

.services__item-image {
    position: absolute;
    top: -30px;
    left: -20px;
    width: 80px;
    height: 80px;
}

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

.services__summary {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.services__summary-content {
    text-align: center;
}

.services__summary-line1 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #000;
}

.services__summary-line2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.services__summary-highlight {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 70px;
    font-weight: 600;
    color: #2CBDD2;
    display: inline-block;
    margin-left: -0.6em;
    margin-right: -0.6em;
}

.services__summary-text {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 70px;
    font-weight: 600;
    color: #2CBDD2;
}

.services__summary-line3 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #000;
}

.services__decoration {
    position: relative;
}

.services__decoration-1 {
    position: absolute;
    right: -60px;
    bottom: 0px;
    width: 237px;
    height: 234px;
}

.services__decoration-2 {
    position: absolute;
    left: 306px;
    bottom: 899px;
    width: 83px;
    height: 90px;
}

.services__decoration-3 {
    position: absolute;
    left: 769px;
    bottom: 887px;
    width: 83px;
    height: 90px;
}

.services__side-decoration {
    position: absolute;
    left: 0;
    bottom: 0;
}

/* ========================================
   Stajione 5つの強み
======================================== */
.strengths {
    padding: 80px 0;
    background-color: #E0F5F8;
}

.strengths__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.strengths__header {
    text-align: center;
    margin-bottom: 60px;
}

.strengths__title-sub {
    font-size: 35px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
        font-family: 'Noto Serif JP', sans-serif;
}

.strengths__title-main {
    display: flex;
    align-items : baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.strengths__title-brand {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000;
}

.strengths__title-number {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: #2CBDD2;
    border-radius: 10px;
    line-height: 1em;
}

.strengths__title-text {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #000;
}

.strengths__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.strengths__item {
    display: flex;
    gap: 20px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 4.2px rgba(0, 0, 0, 0.1);
}

.strengths__item-number {
    background-color: #2CBDD2;
    color: #fff;
    font-size: 36px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-width: 120px;
}

.strengths__item-content {
    flex: 1;
    padding: 40px;
}

.strengths__item-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.strengths__item-badge {
    color: #DB0000;
    font-size: 33px;
    line-height: 1.2;
}

.strengths__item-subtitle {
    color: #2CBDD2;
    font-size: 33px;
    line-height: 1.2;
}

.strengths__item-text {
    font-size: 22px;
    color: #000;
    line-height: 1.8;
    margin-top: 15px;
}

.strengths__item-highlight {
    color: #DB0000;
    font-weight: 700;
}

/* ========================================
   ご利用の流れ
======================================== */
.flow {
    padding: 80px 0;
    background-color: #E0F5F8;
}

.flow__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.flow__header {
    text-align: center;
    margin-bottom: 50px;
}

.flow__label {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
}

.flow__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #36318F;
}

.flow__steps {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.flow__step {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 35px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    overflow: visible;
    position: relative;
}

.flow__step-header {
    background-color: #2CBDD2;
    padding: 22px 32px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.flow__step-header:hover {
    background-color: #25a8bd;
}

.flow__step-number {
    font-family: 'Futura PT', sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #FFF700;
}

.flow__step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.flow__step-icon {
    margin-left: auto;
    width: 12px;
    height: 12px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.4s ease;
    font-size: 0;
    color: transparent;
}

.flow__step.is-open .flow__step-icon {
    transform: rotate(-135deg);
}

.flow__step-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.flow__step.is-open .flow__step-content {
    max-height: 500px;
    padding: 20px 30px;
}

.flow__step-text {
    font-size: 22px;
    line-height: 1.8;
    color: #000;
}

.flow__step-arrow {
    position: absolute;
    left: 50px;
    bottom: -48px;
    z-index: 10;
    width: 59px;
}

.flow__step:last-child .flow__step-arrow {
    display: none;
}

/* ========================================
   お客様の声
======================================== */
.reviews {
    padding: 80px 0;
    background-color: #fff;
}

.reviews__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.reviews__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.reviews__item {
    background-color: #fff;
    border: 5px solid #4CBBAE;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
}

.reviews__item-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #4CBBAE;
    margin-bottom: 20px;
    text-align: center;
}

.reviews__item-text {
    font-size: 20px;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.reviews__item-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin-bottom: 20px;
}

.reviews__item-author {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 23px;
    font-weight: 700;
    color: #000;
    text-align: center;
}

.reviews__background {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 1rem;
    padding: 0 40px;
}

.reviews__background img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   作業実績（買取金額相殺例）
======================================== */
.cases {
    padding: 80px 0;
    background-color: #fff;
}

.cases__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.cases__header {
    background-color: #2CBDD2;
    padding: 30px 40px;
    border-radius: 30px 30px 0 0;
    text-align: center;
}

.cases__label {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.cases__title {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.cases__subtitle {
    background-color: #fff;
    padding: 50px 0 20px;
    font-size: 32px;
    font-weight: 700;
    color: #2CBDD2;
    text-align: center;
}

.cases__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 0 50px 0;
}

.cases__item {
    background-color: #F5F5F5;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
}

.cases__item-header {
    background-color: rgba(0, 0, 0, 0.6);
    color: #FBFDFE;
    font-size: 30px;
    font-weight: 700;
    padding: 5px 20px;
    margin-bottom: 20px;
}

.cases__item-title {
    font-size: 30px;
    font-weight: 700;
    color: #2CBDD2;
    margin-bottom: 20px;
}

.cases__item-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cases__item-image-wrapper {
    flex: 1;
    position: relative;
    width: 100%;
}

.cases__item-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

.cases__item-label {
    display: block;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
}

.cases__item-label.before {
    color: #B7B7B7;
}

.cases__item-label.after {
    color: #2CBDD2;
}

.cases__item-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases__item-arrow img {
    width: 40px;
    height: auto;
}

.cases__item-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cases__item-info {
    font-size: 20px;
    line-height: 1.8;
    color: #000;
}

.cases__item-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cases__item-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cases__item-price-label {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.cases__item-price-value {
    font-size: 22px;
    font-weight: 700;
    color: #070707;
}

.cases__item-price-value.red {
    color: #DB0000;
}

.cases__item-price-unit {
    font-size: 20px;
    font-weight: 700;
    color: #070707;
}

.cases__item-price-result {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.cases__item-price-arrow {
    font-size: 22px;
    font-weight: 700;
    color: #DB0000;
}

.cases__item-price-final {
    font-size: 40px;
    font-weight: 700;
    color: #DB0000;
    line-height: 0.7em;
}

.cases__item-comment {
    font-size: 20px;
    line-height: 1.8;
    color: #000;
}

/* ========================================
   高価買取事例
======================================== */
.buyback {
    padding: 80px 0;
    background-color: #fff;
}

.buyback__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.buyback__header {
    background-color: #2CBDD2;
    padding: 30px 40px;
    border-radius: 30px 30px 0 0;
    text-align: center;
}

.buyback__label {
    font-size: 36px;
    font-weight: 600;
    color: #FFF700;
    margin-bottom: 10px;
}

.buyback__title {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.buyback__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 50px 0;
}

.buyback__item {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.buyback__item-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.buyback__item-image img {
    width: 100%;
    height: auto;
    display: block;
}

.buyback__item-content {
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.buyback__item-price {
    margin-top: auto;
}

.buyback__item-name {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

.buyback__item-category {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.buyback__item-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.buyback__item-amount {
    font-size: 36px;
    font-weight: 700;
    color: #DB0000;
    line-height: 0.875em;
}

.buyback__item-unit {
    font-size: 20px;
    font-weight: 700;
    color: #DB0000;
    line-height: 1.75em;
}

.buyback__cta {
    text-align: center;
    padding: 40px 0;
}

.buyback__button {
    background: linear-gradient(0deg, #F9573B 0%, #F4A321 100%);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    padding: 25px 60px;
    border-radius: 100px;
    box-shadow: 
        0px 6px 0px #c13d24,
        0px 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    top: 0;
}

/* PCのみホバー時に押される動き */
@media (min-width: 769px) {
    .buyback__button:hover {
        top: 4px;
        box-shadow: 
            0px 2px 0px #c13d24,
            0px 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .buyback__button:active {
        top: 6px;
        box-shadow: 
            0px 0px 0px #c13d24,
            0px 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* スマホではタップ時の効果 */
@media (max-width: 768px) {
    .buyback__button:active {
        top: 4px;
        box-shadow: 
            0px 2px 0px #c13d24,
            0px 4px 10px rgba(0, 0, 0, 0.2);
    }
}

/* ========================================
   安心の回収実績と環境への配慮
======================================== */
.environment {
    padding: 80px 0;
    background-color: #2CBDD2;
}

.environment__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.environment__title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.environment__content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.environment__image {
    flex-shrink: 0;
}

.environment__image img {
    width: 500px;
    height: auto;
}

.environment__text {
    flex: 1;
}

.environment__lead {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
}
.environment__subtitle{
    font-size: 33px;
    font-weight: 700;
    color: #2CBDD2;
    margin-bottom: 30px;
    line-height: 1.8;
    background-color: #fff;
    text-align: center;
    border-radius: 50px;
}

.environment__list {
    list-style: none;
}

.environment__list-item {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   よくあるご質問
======================================== */
.faq {
    padding: 80px 0;
    background-color: #E0F5F8;
}

.faq__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}
.faq__label{
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}
.faq__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #2CBDD2;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq__item {
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq__question {
    background-color: #2CBDD2;
    color: #fff;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq__question:hover {
    background-color: #25a8bd;
}

.faq__question-text {
    font-size: 30px;
    font-weight: 600;
}

.faq__q {
    color: #FFF700;
    font-family: 'Futura PT', sans-serif;
}

.faq__icon {
    width: 15px;
    height: 15px;
    display: block;
    flex-shrink: 0;
    font-size: 0;
    color: transparent;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.4s ease;
}

.faq__item.is-open .faq__icon {
    transform: rotate(-135deg);
}

.faq__answer {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

.faq__answer-inner {
    padding: 25px 30px;
}

.faq__answer-text {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    line-height: 1.8;
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: #2CBDD2;
    padding: 40px 0;
}

.footer__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__logo-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: center;
}

.footer__logo-part1 {
    display: inline-block;
}

.footer__logo-part2 {
    display: inline-block;
}

.footer__logo-part2::before {
    content: '|';
    margin: 0 10px;
    color: #fff;
}

.footer__copyright {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

/* ========================================
   レスポンシブ対応
======================================== */
/* 1180px以下 */
@media (max-width: 1180px) {
    .campaign__title {
        font-size: 32px;
    }
    .campaign__note {
    font-size: 32px;
}
    .reason__point-title {
        font-size: 32px;
    }
    .area__map {
    right: -40px;
    }
    .area__map img {
    width: 200px;
    }
    .services__item-title {
    font-size: 28px;
    }
}

/* 1000px以下 */
@media (max-width: 1000px) {
    .header__inner {
        padding: 0 30px;
    }

    .header__logo-main {
        font-size: 28px;
    }

    .header__buttons {
        gap: 15px;
    }

    .header__button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .reason__points {
        flex-direction: column;
    }

    .area__info {
        flex-direction: column;
    }

    .area__map img {
        display: none;
    }

    .services__item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .strengths__list {
        gap: 30px;
    }

    .strengths__item {
        flex-direction: column;
    }

    .strengths__item-number {
        min-width: auto;
    }

    .reviews__list {
        grid-template-columns: 1fr;
    }

    .cases__list {
        grid-template-columns: 1fr;
    }

    .buyback__list {
        grid-template-columns: 1fr;
    }

    .environment__content {
        flex-direction: column;
    }

    .environment__image img {
        width: 100%;
        max-width: 400px;
    }
    .services__title-brand {
        font-size: 65px;
    }
    .services__decoration-1 {
        display: none;
    }
    .campaign__note {
        font-size: 26px;
    }
    .reason__title-line1, .reason__title-line3 {
         font-size: 32px;
    }
    .cta__label {
        font-size: 32px;
    }
    .cta__button-decoration {
    right: -85px;
    width: 350px;
    }
    .strengths__item-number {
    padding: 20px;
    }
    .strengths__item-content {
    padding: 20px 40px 40px;
    }
    .cta__note-top {
    font-size: 24px;
    }
    .cta__note {
        font-size: 18px;
    }
    .services__side-decoration {
    display: none;
    }
    }

/* 768px以下 */
@media (max-width: 768px) {
    .area__map,
    .services__decoration-1,
    .services__decoration-2,
    .services__decoration-3,
    .services__side-decoration {
        display: none;
    }
    
    .cta__button-decoration {
        right: -20px;
        width: 200px;
        bottom: calc(100% - 15px);
    }

    .header {
        position: relative;
    }

    .header__inner {
        padding: 0 20px;
    }

    .header__buttons {
        display: none;
    }

    .footer {
        margin-bottom: 55px;
    }

    /* 下部固定ボタン */
    .fixed-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        gap: 0;
        background-color: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .fixed-buttons__item {
        flex: 1;
        color: #fff;
        text-align: center;
        padding: 15px 10px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.8s ease;
        border: 2px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .fixed-buttons__item {
        background: linear-gradient(180deg, #F9573B 0%, #F4A321 100%);
    }

    .fixed-buttons__item:first-child::before {
        content: '';
        position: absolute;
        right: -3px;
        top: 15%;
        bottom: 15%;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.3);
        z-index: 10;
    }

    .fixed-buttons__item:hover {
        background: #fff;
        color: #F9573B;
        border: 2px solid #F9573B;
    }

    .fixed-buttons__item:hover::before {
        background-color: rgba(249, 87, 59, 0.3);
    }

    .campaign__content {
        padding: 30px 20px;
    }

    .campaign__title {
        font-size: 26px;
    }

    .campaign__badges {
        flex-direction: column;
        gap: 15px;
    }

    .reason__title-line1,
    .reason__title-line3 {
        font-size: 28px;
    }

    .reason__title-highlight {
        font-size: 36px;
    }

    .services__item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services__title-brand {
        font-size: 36px;
    }

    .services__title-text {
        font-size: 28px;
    }

    .services__summary-highlight,
    .services__summary-text {
        font-size: 36px;
    }

    .services__summary-line3 {
        font-size: 32px;
    }

    .cta__button {
        font-size: 24px;
        padding: 20px 40px;
    }

    .strengths__title-sub {
        font-size: 24px;
    }

    .strengths__title-number{
        font-size: 60px;
    }
    .strengths__title-brand,
    .strengths__title-text {
        font-size: 30px;
    }
    .strengths__item-badge,
    .strengths__item-subtitle {
        font-size: 24px;
    }

    .flow__title {
        font-size: 36px;
    }

    .flow__label {
        font-size: 24px;
    }

    .flow__step-title {
        font-size: 24px;
    }

    .reviews__item-title {
        font-size: 24px;
    }

    .reviews__item-author {
        font-size: 18px;
    }

    .cases__label,
    .buyback__label {
        font-size: 24px;
    }

    .cases__title,
    .buyback__title {
        font-size: 26px;
    }

    .cases__subtitle {
        font-size: 26px;
        padding: 20px 0 20px;
    }
    .cases__item {
        padding: 30px 20px;
    }

    .environment__title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .environment__content {
        gap: 30px;
    }
    .environment__lead {
        font-size: 22px;
    }

    .environment__list-item {
        font-size: 22px;
    }

    .faq__title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .campaign {
    padding: 50px 0;
    }
    .campaign__inner,
    .cta__inner,
    .reason__inner,
    .area__inner,
    .area__content-wrapper,
    .strengths__inner,
    .flow__inner,
    .reviews__inner,
    .reviews__background,
    .cases__inner,
    .buyback__inner,
    .environment__inner,
    .faq__inner {
        padding: 0 20px;
    }
    
    .cta {
        padding: 0 0 50px;
    }
    
    .cta.cta--third {
        padding: 50px 0;
    }
    .reason,
    .services,
    .strengths,
    .reviews,
    .buyback,
    .environment,
    .faq {
        padding: 50px 0;
    }
    .cases {
        padding: 50px 0 0;
    }
    .flow{
        padding: 50px 0 15px;
    }
    .area {
        padding: 50px 0;
    }
    .reason__header {
        margin-bottom: 30px;
    }
    .reviews__item {
        padding: 30px 20px;
    }
    .cases__header {
        background-color: #2CBDD2;
        padding: 30px 20px;
    }
    .buyback__cta {
    padding: 0;
}
    .services__item-text,
    .strengths__item-text,
    .flow__step-text,
    .cases__item-price-value,
    .cases__item-price-arrow,
    .buyback__item-name,
    .faq__answer-text,
    .environment__lead,
    .environment__list-item,
    .strengths__item-text,
    .reason__point-text {
        font-size: 18px;
    }
    .campaign__badge-label {
        font-size: 24px;
    }
    .campaign__badge-value {
        font-size: 38px;
    }
    .cta__divider {
        margin: 0;
    }
        .reason__point-title {
        font-size: 26px;
    }
    .area__content {
    font-size: 26px;
    padding: 20px 30px;
    }
    .services__title-line1 {
    font-size: 28px;
}
.strengths__header {
    margin-bottom: 30px;
}
.reason__point,
.area__card,
.services__item,
.services__summary {
    padding: 30px 20px;
}
    .strengths__item-number {
        padding: 10px 0
    }
        .strengths__item-content {
        padding: 0 20px 25px;
    }
    .reviews__item-text {
    font-size: 18px;
    }
    .cases__item-title {
        font-size: 24px;
    }
    .cases__item-header {
    font-size: 24px;
}
.cases__item-comment {
    font-size: 18px;
}
.buyback__item-category {
    font-size: 22px;
}
.environment__subtitle {
    font-size: 26px;
}
.faq__question-text {
    font-size: 22px;
}
.footer__logo-text {
    font-size: 16px;
}
.cta__divider {
    font-size: 22px;
}
    .cta__note-top {
        font-size: 22px;
    }

    .buyback__item-content {
        padding: 20px;
}
    .cta__label {
        font-size: 26px;
    }
}


/* 480px以下 */
@media (max-width: 480px) {
    .header__logo-main {
        font-size: 24px;
    }

    .header__button {
        padding: 8px 15px;
        font-size: 12px;
    }

    .campaign__inner {
        padding: 0 20px;
    }

    .campaign__title {
        font-size: 18px;
    }

    .campaign__badge {
        padding: 15px 30px;
        flex-direction: column;
        gap: 0;
    }

    .campaign__badge-label {
        font-size: 14px;
    }

    .campaign__badge-value {
        font-size: 32px;
    }

    .cta__button {
        font-size: 18px;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
    }
    
    .cta__button-decoration {
        right: -18px;
        width: 140px;
        bottom: calc(100% - 20px);
    }

    .reason__inner,
    .area__inner,
    .services__inner,
    .flow__inner,
    .price__inner,
    .faq__inner,
    .contact__inner {
        padding: 0 20px;
    }

    .reason__title-line1,
    .reason__title-line3 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .reason__title-line2,
    .reason__title-line3 {
        display: block;
        margin: 0;
    }
    .reason__point-badge {
        font-size: 26px;
    }

    .reason__title-highlight {
        font-size: 28px;
    }
    .area__card-title {
        font-size: 24px;
    }
    .area__content {
        font-size: 24px;
        padding: 20px;
    }
    .area__prefecture {
        width: 100%;
    }
    .services__title-line1 {
        font-size: 28px;
    }

    .services__title-brand {
        font-size: 32px;
    }

    .services__title-text {
        font-size: 24px;
    }

    .services__summary-line1 {
        font-size: 28px;
    }

    .services__summary-highlight,
    .services__summary-text {
        font-size: 32px;
    }

    .services__summary-line3 {
        font-size: 24px;
    }

    .strengths__title-sub {
        font-size: 20px;
    }

    .strengths__title-number{
        font-size: 36px;
    }
    .strengths__title-brand,
    .strengths__title-text {
        font-size: 24px;
    }

    .strengths__item-badge,
    .strengths__item-subtitle {
        font-size: 20px;
    }

    .strengths__item-text {
        font-size: 16px;
    }

    .flow__title {
        font-size: 26px;
    }

    .flow__label {
        font-size: 20px;
    }

    .flow__step-title {
        font-size: 20px;
    }

    .flow__step-text {
        font-size: 16px;
    }

    .reviews__item-title {
        font-size: 20px;
    }

    .reviews__item-text {
        font-size: 14px;
    }

    .reviews__item-author {
        font-size: 16px;
    }

    .cases__label,
    .buyback__label {
        font-size: 24px;
    }

    .cases__title,
    .buyback__title {
        font-size: 32px;
    }

    .cases__subtitle {
        font-size: 24px;
    }

    .cases__item-title {
        font-size: 20px;
    }

    .cases__item-price-final {
        font-size: 26px;
    }

    .environment__title {
        font-size: 28px;
    }

    .environment__lead {
        font-size: 18px;
    }

    .environment__list-item {
        font-size: 18px;
    }

    .faq__title {
        font-size: 28px;
    }

    .faq__question-text {
        font-size: 16px;
    }

    .faq__answer-text {
        font-size: 16px;
    }

    .services__item-text,
    .strengths__item-text,
    .flow__step-text,
    .cases__item-price-value,
    .cases__item-price-arrow,
    .buyback__item-name {
        font-size: 18px;
    }
        .cta__label {
        font-size: clamp(22px, calc(22px + (100vw - 350px) / 130 * 4), 26px);
    }
    .cta__button-wrapper {
    width: 100%;
}
.faq__question {
    padding: 20px 15px 20px 20px;
}
.campaign__title {
    padding: 0 20px;
}
.campaign__note {
    font-size: 22px;
}
.services__title-line2 {
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
    .services__item-title {
        font-size: 26px;
    }
    .flow__header {
    margin-bottom: 30px;
}
}

