/* ========================================
   リセット・基本設定
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans', sans-serif;
    color: #000000;
    background-color: #f5f5f5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ========================================
   全体レイアウト
   ======================================== */
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.site-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    overflow-x: hidden;
    padding-top: 90px;
}

section {
    width: 100%;
}


/* ========================================
   Header
   ======================================== */
.header {
    width: 100%;
    border-bottom: 1px solid #000000;
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

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

.header__left {
    display: flex;
    align-items: center;
}

.header__logo {
    width: 221px;
}

.header__logo img {
    width: 100%;
    height: auto;
}

.header__right {
    display: flex;
    align-items: center;
}

.header__buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 20px 30px;
    border-radius: 5px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.362;
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.header__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

.header__button:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.header__button--line {
    background: #009944;
    color: #FFFFFF;
}

.header__button--phone {
    background: #FFC526;
    color: #313031;
}

.header__button-icon {
    width: 21px;
    height: 21px;
}

.header__button-icon--phone {
    width: 20px;
    height: 26px;
}

.header__button-text {
    white-space: nowrap;
}

/* ハンバーガーボタン */
.drawer_button {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 45px;
    height: 48px;
    background-color: #009944;
    border: none;
    cursor: pointer;
    z-index: 99999;
}

@media screen and (min-width: 769px) {
    .drawer_button {
        display: none;
    }
}

.drawer_button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 3px;
    background-color: #fff;
    transform: translateX(-50%);
}

.drawer_button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.8rem));
    transition: transform 0.3s ease;
}

.drawer_button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.drawer_button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.8rem));
    transition: transform 0.3s ease;
}

.drawer_button.active > span {
    background-color: #fff;
}

.drawer_button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer_button.active > span:nth-child(2) {
    opacity: 0;
}

.drawer_button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ハンバーガーメニュー展開後 */
body.active {
    height: 100%;
    overflow: hidden;
}

.drawer_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: opacity 0.3s ease;
    opacity: 0;
    padding: 0 !important;
    margin: 0 !important;
    visibility: hidden;
    z-index: 99995;
    background-color: #009944;
}

.drawer_nav.active {
    opacity: 1;
    visibility: visible;
}

.drawer_nav_inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.drawer_nav.active .drawer_nav_inner {
    transform: translateX(0);
}

.drawer_nav_menu {
    list-style: none;
    padding-left: 0;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
}

.drawer_nav_menu a {
    display: block;
    color: white;
    padding: 1rem 0;
    text-decoration: none;
}

.drawer_nav_menu a:hover {
    opacity: 0.8;
}

/* ========================================
   FV
   ======================================== */
.fv {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fv img {
    width: 100%;
    max-width: 1500px;
    height: auto;
    display: block;
}

.fv_timer {
    background-color: #FC4300;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Noto Sans', sans-serif;
    width: 100%;
}

@media (max-width: 1000px) {
    .fv_timer {
        font-size: 1.6rem;
    }
}

/* ========================================
   権威性
   ======================================== */
.authority {
    width: 100%;
    background: url('image/authority-01.png') center/cover no-repeat;
    padding: 30px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================================
   悩み・共感
   ======================================== */
.worry {
    width: 100%;
    background: #FFFFFF;
    padding: 0 0 50px;
}

.worry__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.worry__title {
    padding: 50px 20px 20px;
    width: 100%;
}

.worry__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.362;
    text-align: center;
    color: #009944;
}

.worry__list {
    width: 100%;
    max-width: 1150px;
    padding: 0 20px 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.worry__item {
    width: 100%;
    position: relative;
}

.worry__card {
    display: flex;
    align-items: stretch;
    width: 100%;
    box-shadow: 8px 8px 15px 0px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    overflow: hidden;
    background-color: #F8F7F5;
    min-height: 0;
}

/* 1つ目と3つ目：画像が左 */
.worry__item:nth-child(1) .worry__card,
.worry__item:nth-child(3) .worry__card {
    flex-direction: row;
}

/* 2つ目と4つ目：画像が右 */
.worry__item:nth-child(2) .worry__card,
.worry__item:nth-child(4) .worry__card {
    flex-direction: row-reverse;
}

.worry__card-image {
    flex-shrink: 0;
    width: 35%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.worry__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.worry__card-header-wrapper {
    background: #009944;
    background-image: url('image/pattarn.png');
    background-repeat: repeat;
    padding: 20px 30px;
}

.worry__card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.worry__card-text {
    background: #F8F7F5;
    padding: 30px 50px;
}

.worry__card-number {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.362;
    color: #FFFFFF;
}

.worry__card-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.362;
    color: #FFFFFF;
}

.worry__card-text p {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.591;
    color: #000000;
}


/* ========================================
   権威性バナー
   ======================================== */
.authority-banner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.authority-banner img {
    width: 100%;
    max-width: 1500px;
    height: auto;
    display: block;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    width: 100%;
    background: #F8F7F5;
    padding: 60px 20px;
    margin: 0 auto;
}

.cta__inner {
    width: 100%;
    max-width: 912px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta__content {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta__content img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
}

.cta__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.362;
    color: #FA0000;
    text-align: center;
}

.cta__subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}


.cta__info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta__info-wrapper {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.cta__area-wrapper {
    width: 100%;
    overflow: hidden;
}

.cta__area {
    width: 100%;
}

.cta__area-box {
    background: #FC4300;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: none;
    border-radius: 0;
}

.cta__area-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
    box-shadow: none;
    border-radius: 0;
}

.cta__area-note {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.cta__free {
    width: 100%;
}

.cta__free-box {
    background: #FFFFFF;
    border-radius: 0 0 10px 10px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta__free-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

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

.cta__phone-icon {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta__phone-number {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 0.904;
    color: #FC4300;
    text-decoration: none;
}

.cta__phone-number:hover,
.cta__phone-number:active,
.cta__phone-number:visited {
    color: #FC4300;
    text-decoration: none;
}

.cta__time {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

.cta__coupon {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta__coupon-box {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
    box-sizing: border-box;
}

.cta__coupon-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

.cta__coupon-code {
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 15px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-sizing: border-box;
    position: relative;
}

.cta__coupon-code-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.175;
    color: #060606;
    text-align: center;
}

.cta__coupon-copy {
    background: #D9D9D9;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    width: 180px;
    flex-shrink: 0;
}

.cta__coupon-copy:focus,
.cta__coupon-copy:active {
    outline: none;
    border: none;
}

.cta__coupon-copy span {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.362;
    color: #000000;
    white-space: nowrap;
}

.cta__coupon-copy img {
    width: 22px;
    height: 22px;
}

.cta__buttons {
    display: flex;
    gap: 20px;
    width: 600px;
}

.cta__button {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 40px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.362;
    letter-spacing: 0.03em;
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.cta__button:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.cta__button--phone {
    background: #FFC526;
    color: #000000;
}

.cta__button--line {
    background: #009944;
    color: #FFFFFF;
}

.cta__button-icon {
    width: 27px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta__button-line-icon {
    width: 32px;
    height: 32px;
}

.cta__coupon-label {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    padding: 0 10px;
    border-radius: 200px;
}

.cta__coupon-label span {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.362;
    color: #FFFFFF;
}

/* ========================================
   選ばれる理由title
   ======================================== */
.reason-title {
    width: 100%;
    background: #FFFFFF;
    padding: 30px 20px 0;
}

.reason-title__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason-title__inner img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
}

/* ========================================
   選ばれる理由
   ======================================== */
.reason {
    width: 100%;
    background: #FFFFFF;
    padding: 40px 0 100px;
}

.reason__inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.reason__row {
    width: 100%;
    display: flex;
    gap: 20px;
}

.reason__item {
    flex: 1;
    position: relative;
}

.reason__card {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    position: relative;
}

.reason__card-icon {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reason__card-icon img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.reason__card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.reason__card-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.4;
    color: #000000;
    padding: 10px;
    background-color: #FFC526;
}

.reason__card-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.65;
    color: #000000;
}

.reason__card-image {
    position: absolute;
    left: 0;
    top: 31.98px;
    width: 290px;
    height: 88px;
}

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

.reason__bg {
    position: absolute;
    left: 0;
    top: 31.98px;
    width: 290px;
    height: 88px;
}

.reason__bg img {
    width: 100%;
    height: 100%;
}

/* ========================================
   お悩み解決バナー
   ======================================== */
.banner-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.worry-banner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.worry-banner img {
    width: 100%;
    max-width: 1500px;
    height: auto;
    display: block;
}


/* ========================================
   買取対象アイテム
   ======================================== */
.items {
    width: 100%;
    background: #FFFFFF;
    padding: 0 0 70px;
}

.items__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.items__title {
    padding: 70px 20px 20px;
    width: 100%;
}

.items__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.362;
    text-align: center;
}

.items__title-mark {
    color: #009944;
}

.items__title-highlight {
    color: #009944;
}

.items__title-sub {
    color: #000000;
}

.items__note {
    padding: 0 20px 20px;
    width: 100%;
}

.items__note p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

.items__list {
    width: 100%;
    max-width: 1150px;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.items__category {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.items__category-header {
    background: #009944;
    background-image: url('image/pattarn.png');
    background-repeat: repeat;
    border-radius: 20px 20px 0 0;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.items__category-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.items__category-content {
    background: #EEF0E2;
    border-radius: 0 0 20px 20px;
    padding: 50px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
}

.items__category-content .items__item {
    flex: 0 0 calc((100% - 100px) / 4);
    width: calc((100% - 100px) / 4);
}

/* スポーツ用品の3列 */
.items__category-content--three {
    padding: 50px 50px;
}

.items__category-content--three .items__item {
    flex: 0 0 calc((100% - 100px) / 3);
    width: calc((100% - 100px) / 3);
}

/* 1000px以下は2列 */
@media (max-width: 1000px) {
    .items__category-content .items__item {
        flex: 0 0 calc((100% - 100px) / 2);
        width: calc((100% - 100px) / 2);
    }
    
    .items__category-content--three .items__item {
        flex: 0 0 calc((100% - 100px) / 2);
        width: calc((100% - 100px) / 2);
    }
}

.items__item {
    width: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.items__item-icon {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    overflow: hidden;
}

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

.items__item-name {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

/* スポーツ用品カテゴリー */
.items__category:nth-child(2) .items__category-header {
    background: #393F56;
    background-image: url('image/pattarn.png');
    background-repeat: repeat;
}

.items__category:nth-child(2) .items__category-content {
    background: #E2E4F0;
}

/* ホビー用品・その他カテゴリー */
.items__category:nth-child(3) .items__category-header {
    background: #FFC526;
    background-image: url('image/pattarn.png');
    background-repeat: repeat;
}

.items__category:nth-child(3) .items__category-header .items__category-title {
    color: #060606;
}

.items__category:nth-child(3) .items__category-content {
    background: #F0E9E2;
    border-radius: 0 0 0 20px;
}

/* ========================================
   買取の一例
   ======================================== */
.example {
    width: 100%;
    background: #FFFFFF;
    padding: 0 0 70px;
}

.example__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.example__title {
    padding: 70px 20px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.example__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

.example__title-highlight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.example__title-highlight-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 70px;
    line-height: 1.362;
    color: #009944;
    border-bottom: 8px solid #009944;
    padding-bottom: 5px;
    display: inline-block;
}

.example__subtitle {
    padding: 5px 30px;
    background: #393F56;
    display: flex;
    justify-content: center;
    align-items: center;
}

.example__subtitle-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 35px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.example__note {
    padding: 0 20px 20px;
    width: 100%;
}

.example__note p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

.example__list {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.example__item {
    width: calc((100% - 60px) / 3);
    background: #FFFFFF;
    border: 1px solid #828181;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.example__item-image {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.example__item-number {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #009944;
    margin-bottom: 10px;
}

.example__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
}

.example__item-category {
    background: #393F56;
    padding: 7px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.example__item-category span {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #FFFFFF;
}

.example__item-category {
    background: #393F56;
    color: #FFFFFF;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1em;
    text-align: center;
    padding: 7px 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.example__item-name {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.667;
    color: #040404;
}

.example__item-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.example__item-condition {
    width: 219px;
}

.example__item-condition span {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 2.2;
    color: #000000;
}

.example__item-price {
    display: flex;
    gap: 10px;
}

.example__item-price_campaign {
    display: block;
    margin-top: auto;
}

.example__item-price_original {
    font-size: 22px;
    line-height: 1.5;
    color: #FF0000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 7px;
    font-family: 'Noto Sans', sans-serif;
}

.example__item-price_original .price_number {
    font-weight: 700;
    font-size: 32px;
}

.example__item-price_campaign_badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 3px 0;
    background-color: #FF0000;
    gap: 10px;
}

.campaign_badge_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.75px;
    position: relative;
    height: 20px;
    background-color: #FF0000;
}

.campaign_badge_tag {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5px 10.75px;
    background-color: #FF7F05;
    color: white;
    font-size: 17.79px;
    line-height: 1.362;
    font-weight: 700;
    height: 30px;
    box-sizing: border-box;
    position: relative;
    font-family: 'Noto Sans', sans-serif;
}

.campaign_badge_tag::after {
    content: "";
    position: absolute;
    right: -6.75px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 7.5px;
    height: 7.5px;
    background-color: #FF7F05;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.campaign_badge_text {
    font-size: 23px;
    line-height: 1.714;
    color: white;
    font-weight: 700;
    text-align: center;
    background-color: #FF0000;
    width: auto;
    font-family: 'Noto Sans', sans-serif;
}

.example__item-price_new {
    font-size: 27px;
    line-height: 1.143;
    padding-bottom: 10px;
    color: white;
    font-weight: 700;
    text-align: center;
    background-color: #FF0000;
    width: 100%;
    font-family: 'Noto Sans', sans-serif;
}

.example__item-price_new .price_number {
    font-weight: 700;
}

.text_title_l {
    font-size: clamp(2.4rem, 5.3vw, 3.2rem);
    font-weight: 700;
}

.price_number {
    font-weight: 700;
}

.example__item-price-label {
    background: #FA0000;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.example__item-price-label span {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 2.063;
    color: #FFFFFF;
}

.example__item-price-value {
    display: flex;
    justify-content: center;
    align-items: center;
}

.example__item-price-value span {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    color: #FA0000;
}

.example__brands {
    width: 100%;
    max-width: 1150px;
    padding: 70px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}

.example__brands-title {
    background: #050505;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.example__brands-title h3 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.example__brands-list {
    width: 100%;
    padding: 0 0 5px;
}

.example__brands-list p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.362;
    color: #000000;
}

.example__brands-note {
    width: 100%;
    padding: 0 0 5px;
}

.example__brands-note p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

/* ========================================
   Staff
   ======================================== */
.staff {
    width: 100%;
    background: #F8F7F5;
    padding: 70px 0;
    position: relative;
}

.staff__decoration {
    position: absolute;
    right: 0;
    bottom: -20px;
    z-index: 1;
}

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

.staff__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.staff__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.staff__title-en {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 2.12;
    color: #009944;
    text-align: center;
}

.staff__title-ja {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

.staff__list {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 0 20px;
}

.staff__item {
    width: calc((100% - 60px) / 3);
    background: #FFFFFF;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.staff__item-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
}

.staff__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff__item-initial {
    background: #009944;
    border-radius: 5px;
    padding: 5px 10px;
}

.staff__item-initial span {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.362;
    color: #FFFFFF;
}

.staff__item-message {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.362;
    color: #000000;
    text-align: left;
}

.staff__note {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.staff__note-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.362;
    color: #009944;
    text-align: center;
}

.staff__note-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.362;
    color: #000000;
    text-align: center;
}

/* ========================================
   客声
   ======================================== */
.voice {
    width: 100%;
    background: #FFFFFF;
    padding: 70px 0;
}

.voice__inner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.voice__inner img {
    width: 100%;
    max-width: 1150px;
    height: auto;
    display: block;
}

.voice__slider {
    width: 100%;
    max-width: 1500px;
    margin: 30px auto 0;
    padding: 0;
    box-sizing: border-box;
}

.voice__slider .slick-track {
    display: flex;
    align-items: stretch;
}

.voice__slider .slick-slide {
    height: auto;
    display: flex;
}

.voice__slider .slick-slide > div {
    height: 100%;
    display: flex;
}

.voice__slide {
    padding: 0 10px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
}

.voice__slide .voice__card {
    width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
    height: 100%;
}

.voice__card {
    background: #FFFFFF;
    border: 5px solid #009944;
    border-radius: 20px;
    box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
    min-height: 100%;
}

.voice__card-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

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

.voice__card-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.65;
    color: #000000;
    text-align: left;
    width: 100%;
}

/* ========================================
   お申し込みの流れ
   ======================================== */
.flow {
    width: 100%;
    background: #009944;
    background-image: url('image/pattarn.png');
    background-repeat: repeat;
    padding: 80px 20px;
    position: relative;
}

.flow__inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
}

.flow__title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.flow__title-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.362;
    color: #FFFFFF;
    text-align: center;
}

.flow__content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.flow__step {
    width: 300px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.flow__step--1 {
    height: 408px;
}

.flow__step-number {
    position: absolute;
    left: -42px;
    top: -35.02px;
    width: 109px;
    height: 109px;
    background: #FFC526;
    border-radius: 60px;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flow__step--2 .flow__step-number {
    left: -42px;
    top: -35.02px;
}

.flow__step-label {
    font-family: 'Noto Emoji', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: #000000;
}

.flow__step-num {
    font-family: 'Noto Emoji', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    color: #000000;
    width: 64px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow__step-image {
    width: 240px;
    height: 221.02px;
}

.flow__step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow__step-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: #20AA65;
    text-align: center;
    width: 240px;
}

.flow__step-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.056;
    color: #000000;
    text-align: left;
    width: 240px;
}

.flow__step--2 .flow__step-text {
    line-height: 1.2;
}

.flow__arrow {
    width: 0;
    height: 0;
    border-left: 20px solid #FFC526;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    flex-shrink: 0;
    align-self: center;
}

.flow__decoration {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: auto;
    z-index: 1;
}

.flow__decoration img {
    width: 100%;
    height: 100%;
}

.flow__step--3 .flow__step-number {
    left: -42px;
    top: -35.02px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    width: 100%;
    background: #F8F7F5;
    padding: 80px 20px;
}

.faq__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.faq__title {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__title-ja {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 1.448;
    color: #000000;
    text-align: center;
}

.faq__title-en {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.362;
    letter-spacing: 0.1em;
    color: #FFC526;
    text-align: center;
}

.faq__list {
    width: 100%;
    max-width: 1150px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.faq__question {
    background: #FFC526;
    border-radius: 10px;
    padding: 22px 32px;
    height: 85px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
}

.faq__question-mark {
    font-family: 'Futura PT', sans-serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.282;
    letter-spacing: 0.1em;
    color: #000000;
}

.faq__question-text {
    flex: 1;
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.333;
    color: #010101;
}

.faq__icon {
    width: 14px;
    height: 9.06px;
    position: relative;
    flex-shrink: 0;
    font-size: 0;
    color: transparent;
}

.faq__icon::before,
.faq__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #FFFFFF;
    transition: transform 0.3s ease;
}

.faq__icon::before {
    transform: translate(-50%, -50%);
}

.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

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

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

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

.faq__answer-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.455;
    color: #000000;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    width: 100%;
    background: #FFFFFF;
    padding: 50px 0;
}

.footer__inner {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.footer__image {
    width: 100%;
    height: auto;
}

.footer__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: auto;
}

.footer__logo {
    flex: 0 0 auto;
    height: 81px;
}

.footer__logo img {
    width: 100%;
    height: 100%;
}

.footer__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.footer__company {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.362;
    color: #000000;
}

.footer__details {
    display: flex;
    gap: 15px;
}

.footer__details p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.362;
    color: #000000;
}

/* ========================================
   Copyright
   ======================================== */
.copyright {
    background: #FFC526;
    padding: 20px 20px;
}

.copyright__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.362;
    color: #000000;
}

/* ========================================
   固定CTAボタン（SP用）
   ======================================== */
.fixed-cta {
    display: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-cta.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ========================================
   PC追従バナー
   ======================================== */
.pc-fixed-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.pc-fixed-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.pc-fixed-banner img {
    width: 400px;
    height: auto;
    display: block;
}

.pc-fixed-banner.fade-out {
    opacity: 0;
    visibility: hidden;
}

@media (min-width: 769px) {
    .pc-fixed-banner {
        display: block;
    }
}

/* 買取実績追従バナー */
.cta_jisseki {
    position: fixed;
    top: 180px;
    right: 0;
    z-index: 999;
    width: 70px;
}

.cta_jisseki img {
    width: 100%;
    height: auto;
}

/* 768px以下で買取実績ボタンを非表示 */
@media (max-width: 768px) {
    .cta_jisseki {
        display: none;
    }
}

@media (max-width: 768px) {
    .fixed-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        gap: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .fixed-cta__button {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 15px 10px;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 600;
        font-size: 14px;
        line-height: 1.362;
        text-decoration: none;
        transition: box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: none;
    }

    .fixed-cta__button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: shine 3s infinite;
    }

    .fixed-cta__button:hover {
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    }

    .fixed-cta__button--line {
        background: #009944;
        color: #FFFFFF;
    }

    .fixed-cta__button--phone {
        background: #FFC526;
        color: #313031;
    }

    .fixed-cta__icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .fixed-cta__text {
        white-space: nowrap;
    }
}

.footer-decoration {
    position: absolute;
    right: 1245px;
    top: 14134px;
    width: 224px;
    height: 215px;
}

.footer-decoration img {
    width: 100%;
    height: 100%;
}

/* ========================================
   レスポンシブ対応
   ======================================== */
@media (max-width: 1240px) {
    .flow__decoration {
        display: none;
    }
}

@media (max-width: 1000px) {
    .header__button {
        padding: 15px 20px;
        font-size: 14px;
    }

    .worry__title-text {
        font-size: 40px;
    }

    .worry__card-title {
        font-size: 26px;
    }

    .worry__card-text p {
        font-size: 18px;
    }

    .reason__card-title {
        font-size: 22px;
    }

    .reason__card-text {
        font-size: 17px;
    }

    .items__title-text {
        font-size: 40px;
    }

    .items__note p {
        font-size: 20px;
    }

    .items__item-name {
        font-size: 15px;
    }

    .example__title-text {
        font-size: 4.5vw;
        white-space: nowrap;
    }

    .example__title-highlight {
        flex-direction: column;
        gap: 10px;
    }

    .example__title-highlight-text {
        font-size: 6.5vw;
        white-space: nowrap;
    }

    .example__item-name {
        font-size: 20px;
    }

    .example__item-condition {
        font-size: 15px;
    }

    .example__item-price-value span {
        font-size: 34px;
    }

    .staff__title-en {
        font-size: 25px;
    }

    .staff__title-ja {
        font-size: 26px;
    }

    .staff__item-message {
        font-size: 15px;
    }

    .staff__note-title {
        font-size: 26px;
    }

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

    .voice__card-text {
        font-size: 15px;
    }

    .cta__title-text {
        font-size: 34px;
    }

    .cta__area-title {
        font-size: 14px;
    }

    .cta__area-note {
        font-size: 12px;
    }

    .cta__free-text {
        font-size: 15px;
    }

    .cta__phone-number {
        font-size: 28px;
    }

    .cta__time {
        font-size: 14px;
    }

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

    .cta__coupon-code-text {
        font-size: 34px;
    }

    .cta__coupon-copy span {
        font-size: 14px;
    }

    .cta__button {
        font-size: 19px;
    }

    .flow__title-text {
        font-size: 34px;
    }

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

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

    .faq__title-ja {
        font-size: 42px;
    }

    .faq__title-en {
        font-size: 26px;
    }

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

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

    .footer__company {
        font-size: 17px;
    }

    .footer__details p {
        font-size: 14px;
    }

    .copyright p {
        font-size: 17px;
    }

    .staff {
        padding-bottom: 200px;
    }

    .header__inner {
        padding: 10px 20px;
        gap: 20px;
    }

    .header__logo {
        width: 150px;
    }

    .header__buttons {
        gap: 10px;
    }

    .worry {
        padding: 0;
    }

    .worry__list {
        padding: 0 50px 50px;
        gap: 20px;
    }

    .worry__card {
        flex-direction: column;
    }

    .worry__item:nth-child(1) .worry__card,
    .worry__item:nth-child(3) .worry__card {
        flex-direction: column;
    }

    .worry__item:nth-child(2) .worry__card,
    .worry__item:nth-child(4) .worry__card {
        flex-direction: column;
    }

    .worry__card-image {
        width: 100%;
        display: block;
        aspect-ratio: 4 / 3;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .worry__card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .worry__card-header-wrapper {
        padding: 20px;
    }

    .worry__card-text {
        padding: 20px;
    }

    .cta {
        padding: 30px 20px;
    }

    .reason__inner {
        padding: 0 20px;
    }

    .items__list {
        padding: 20px 20px;
    }

    .items__category-content .items__item {
        flex: 0 0 calc((100% - 100px) / 2);
        width: calc((100% - 100px) / 2);
    }

    .items__category-content--three .items__item {
        flex: 0 0 calc((100% - 100px) / 2);
        width: calc((100% - 100px) / 2);
    }

    .example {
        padding-bottom: 30px;
    }

    .example__list {
        padding: 0 20px;
    }

    .example__item {
        flex: 0 0 100%;
        width: 100%;
        align-items: stretch;
    }

    .example__item-image {
        width: 100% !important;
        height: unset !important;
        min-height: 0 !important;
        padding: 0 !important;
        aspect-ratio: 4 / 3 !important;
        overflow: hidden;
        display: block !important;
        flex: 0 0 auto;
        align-self: flex-start;
    }

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

    .staff__list {
        width: 100%;
        padding: 0 20px;
    }

    .staff {
        padding: 30px 0 200px;
    }

    .staff__inner {
        gap: 20px;
    }

    .staff__list {
        gap: 20px;
    }

    .staff__decoration {
        right: 50%;
        margin-right: -100px;
    }

    .staff__item {
        width: 100%;
    }

    .voice__slide .voice__card {
        width: 100%;
        max-width: 400px;
    }

    .flow {
        padding: 30px 20px;
    }

    .faq {
        padding: 30px 20px;
    }

    .footer {
        padding: 40px 50px;
    }
}

.sp_only {
    display: none;
}

@media (min-width: 769px) {
    .pc-fixed-banner {
        display: block;
    }
}

@media (max-width: 768px) {
    .sp_only {
        display: block;
    }

    .header__inner {
        flex-direction: column;
        gap: 0;
    }

    .header__buttons {
        display: none;
    }

    .header__button {
        width: 100%;
    }

    .worry__title-text {
        font-size: 32px;
    }

    .worry__card-number {
        font-size: 32px;
    }

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

    .worry__list {
        padding: 0 20px 50px;
    }

    .worry__card {
        flex-direction: column;
    }


    .cta__inner {
        padding: 0;
        gap: 20px;
    }
    .cta__info {
        gap: 20px;
    }
    .cta__content {
        padding: 0;
    }

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

    .cta__buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta__coupon-code {
        width: 100%;
    }

    .cta__phone-number {
        white-space: nowrap;
        font-size: 32px;
    }

    .reason {
        padding: 30px 0;
    }

    .reason__row {
        flex-direction: column;
    }

    .reason__card {
        padding: 80px 20px 20px 20px;
    }

    .reason__card-image {
        width: 60%;
    }

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

    .items__title {
        padding: 30px 20px;
    }

    .items__title-text {
        font-size: 36px;
    }

    .items {
        padding-bottom: 30px;
    }

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

    .items__list {
        gap: 20px;
    }

    .items__category-row {
        flex-wrap: wrap;
        gap: 30px;
    }

    .example__row {
        flex-direction: column;
    }

    .example__item {
        flex-direction: column;
    }

    .example__item-image {
        width: 100% !important;
        height: unset !important;
        min-height: 0 !important;
        padding: 0 !important;
        aspect-ratio: 4 / 3 !important;
        overflow: hidden;
        display: block !important;
        flex: 0 0 auto;
        align-self: flex-start;
    }

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

    .example__list {
        gap: 20px;
    }

    .flow__content {
        flex-direction: column;
        align-items: center;
    }

    .flow__arrow {
        display: none;
    }

    .faq__item {
        width: 100%;
    }

    .faq__inner {
        gap: 20px;
    }

    .faq__list {
        gap: 20px;
    }

    .faq__title-ja {
        font-size: 32px;
    }

    .faq__title-en {
        font-size: 20px;
    }

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

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

    .footer__inner {
        flex-direction: column;
        align-items: center;
    }

    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer__info {
        align-items: center;
        text-align: center;
    }

    .footer__company {
        text-align: center;
    }

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

    .footer__details p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .worry__title-text {
        font-size: 24px;
    }

    .worry__card-number {
        font-size: 28px;
    }

    .worry__card-title {
        font-size: 22px;
    }

    .worry__card-text p {
        font-size: 16px;
    }

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


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

    .items__category-content {
        gap: 20px 0;
        padding: 0 20px;
    }

    .items__category-content--three {
        padding: 0 20px;
    }

    .items__category-content .items__item {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
    }

    .items__category-content--three .items__item {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
    }

    .items__item-icon {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .items__item-icon img {
        width: 100%;
        height: 100%;
        aspect-ratio: 1 / 1;
        object-fit: contain;
    }

    .example__title {
        padding: 30px 20px;
    }

    .example__title-text {
        font-size: 4.5vw;
        white-space: nowrap;
    }

    .example__title-highlight {
        flex-direction: column;
        gap: 10px;
    }

    .example__title-highlight-text {
        font-size: 6.5vw;
        white-space: nowrap;
    }

    .example__note p {
        font-size: 16px;
    }

    .faq__title-ja {
        font-size: 32px;
    }

    .faq__title-en {
        font-size: 20px;
    }

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

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

    .example__brands-title h3 {
        font-size: 18px;
    }

    .example__brands-list p {
        font-size: 14px;
    }

    .example__brands-note p {
        font-size: 14px;
    }
}

