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

body {
    font-family: 'Noto Sans CJK JP', 'Noto Sans JP', sans-serif;
    color: #000000;
    background-color: #E60012;
    line-height: 1.6;
}

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

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

/* 改行制御 */
br.sp_only {
    display: none;
}

br.pc_only {
    display: block;
}

/* ヘッダー */
.header {
    background-color: #000000;
    width: 100%;
    padding: 0.7rem 0;
}

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

.header__logo-area {
    display: flex;
    align-items: center;
    gap: 19px;
    flex-shrink: 0;
}

.header__logo {
    width: 204.65px;
    flex-shrink: 0;
}

.header__logo-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 205px;
}

.header__title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 17px;
    line-height: 1.448;
    color: #FFFFFF;
    white-space: nowrap;
}

.header__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 57px;
    width: 183px;
    height: 41px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 33px;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header__search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.header__search-btn:hover::before {
    left: 100%;
}

.header__search-btn:hover {
    background-color: #DAC45A;
}

.header__search-btn:hover .header__search-icon,
.header__search-btn:hover .header__search-text {
    color: #FFFFFF;
}

.header__search-icon {
    font-size: 22px;
    line-height: 1;
    color: #000000;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__search-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 17px;
    line-height: 1.448;
    color: #000000;
    white-space: nowrap;
}

/* ヒーロー */
.hero {
    width: 100%;
}

.hero__bg {
    width: 100%;
    height: auto;
    max-width: 1512px;
    margin: 0 auto;
    display: block;
}

/* ご成約プレゼント */
.present {
    background-image: url('image/present-bg.png');
    background-repeat: repeat;
    padding: 20px;
    padding-bottom: 50px;
    background-size: 400px auto;
    background-position: center top;
}

.present__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.present__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.present__gift-section {
    background-color: #FFFFFF;
    border: 8px solid #C2996C;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0;
    position: relative;
    overflow: visible;
}

.present__gift-frame {
    padding: 15px;
    background-color: #E60012;
    border-top: 8px solid;
    border-right: 8px solid;
    border-left: 8px solid;
    border-bottom: none;
    border-image: linear-gradient(to bottom, #E6CB70, #DAC45A, #C8AB09) 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.present__gift-image {
    width: 100%;
    height: auto;
    max-width: 695px;
    display: block;
}

.present__items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    padding: 8px;
    background-color: #C8AB09;
}

.present__item-wrapper {
    position: relative;
    flex: 0 0 calc((100% - 32px) / 5);
    width: calc((100% - 32px) / 5);
    min-width: 0;
}

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

.present__number {
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('image/number-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 26.53px;
    line-height: 1.437;
    color: #FFFFFF;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}


.present__visit-section {
    background-color: #FFFDE4;
    border: 5px solid #C9AC0A;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.present__visit-images {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 38px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.present__visit-item {
    width: 550px;
}

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

.present__visit-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.448;
    color: #000000;
    text-align: center;
}

/* 初売り・読みどころセクション */
.hatuuri-okaidoku-wrapper {
    background-image: url('image/hatuuri-bg.png');
    background-repeat: repeat;
}

/* 初売りセクション */
.hatuuri {
    padding: 50px 20px;
}

.hatuuri__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.hatuuri__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 41px;
    max-width: 1100px;
    margin: 0 auto;
}

.hatuuri__title {
    width: 100%;
    height: auto;
    max-width: 629px;
}

.hatuuri__card {
    background-color: #FFFFFF;
    border: 5px solid #E60012;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 1100px;
}

.hatuuri__card-header {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 30px;
}

.hatuuri__car-image {
    width: 100%;
    height: auto;
    max-width: 476px;
}

.hatuuri__card-info {
    display: flex;
    flex-direction: column;
    padding: 0;
    flex: 1;
}

.hatuuri__logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hatuuri__logo {
    width: 100%;
    height: auto;
    max-width: 269px;
}

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

.hatuuri__price-area {
    margin-bottom: 20px;
}

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

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

.hatuuri__feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hatuuri__feature-number {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.448;
    color: #E60012;
}

.hatuuri__feature-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.448;
    color: #000000;
    flex: 1;
}

.hatuuri__discount {
    font-weight: 900;
    color: #E60012;
}

.hatuuri__tax-included {
    font-size: 0.7em;
}

.hatuuri__card-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    width: 100%;
    background-color: #E60012;
}

.hatuuri__note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 17px;
    line-height: 1.448;
    color: #FFFFFF;
}

/* 読みどころセクション */
.okaidoku {
    padding: 50px 20px;
}

.okaidoku__inner {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.okaidoku__lead {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
}

.okaidoku__title {
    width: 100%;
    height: auto;
    max-width: 850px;
    margin: 0 auto 20px;
    display: block;
}

.okaidoku__cars {
    display: flex;
    justify-content: center;
    gap: 26px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.okaidoku__car {
    flex: 1;
    min-width: 0;
}

.okaidoku__car-header {
    background-color: #FFFFFF;
    border: 5px solid #E60012;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.okaidoku__logo {
    nav-index: 100%;
    height: auto;
}

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

.okaidoku__feature-badge {
    background-color: #FFFDCA;
    border-radius: 5px;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.okaidoku__feature-number {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.448;
    color: #E60012;
}

.okaidoku__feature-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.448;
    color: #000000;
    flex: 1;
}

.okaidoku__price-area {
    display: flex;
    flex-direction: column;
    width: 295.64px;
}

.okaidoku__price-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 14.21px;
    line-height: 1.448;
    color: #000000;
}

.okaidoku__price-value {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.448;
    color: #C71C1D;
}

.okaidoku__price-suffix {
    font-size: 0.7em;
}

.okaidoku__photo-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.448;
    color: #000000;
    overflow: hidden;
    max-height: calc(1.448em * 2);
    transition: max-height 0.3s ease;
}

.okaidoku__detail-btn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.okaidoku__detail-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background-color: #000;
    box-sizing: border-box;
}

.okaidoku__detail-btn-inner {
    position: relative;
    z-index: 1;
    background-color: #E60012;
    border: 1px solid #000000;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 16px;
    cursor: pointer;
    overflow: hidden;
}

.okaidoku__detail-btn-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.okaidoku__detail-btn:hover .okaidoku__detail-btn-inner::before {
    left: 100%;
}

.okaidoku__detail-icon,
.okaidoku__detail-text {
    position: relative;
    z-index: 1;
}

.okaidoku__detail-icon {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.okaidoku__detail-icon--rotated {
    transform: rotate(180deg);
}

.okaidoku__detail-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.448;
    color: #FFFFFF;
}

.okaidoku__feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.okaidoku__feature-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 15px;
    line-height: 1.448;
    color: #000000;
    flex: 1;
}

.okaidoku__discount {
    font-weight: 900;
    color: #E60012;
}

.okaidoku__tax-included {
    font-size: 0.7em;
}

.okaidoku__price-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ルークス/リーフセクション */
.roox-leaf {
    background-image: url('image/roox-leaf-bg.png');
    background-repeat: repeat;
    padding: 50px 20px;
}

.roox-leaf__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.roox-leaf__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.roox-leaf__title {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
}

.roox-leaf__card {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 20px;
}

.roox-leaf__card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roox__card-content {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.roox-leaf__top-area {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.roox-leaf__charge-info {
    order: 2;
}

.roox-leaf__car-info {
    order: 1;
}

.roox-leaf__car-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.roox-leaf__car-image {
    width: 100%;
    height: auto;
    max-width: 375px;
    display: block;
    margin: 0 auto;
}

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

.roox-leaf__logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.roox-leaf__logo {
    width: 100%;
    height: auto;
    max-width: 191px;
}

.roox-leaf__car-name {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.448;
    color: #000000;
}

.roox-leaf__price-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roox-leaf__price-label {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 14.21px;
    line-height: 1.448;
    color: #000000;
}

.roox-leaf__price-value {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 40px;
    line-height: 1.1;
    color: #C71C1D;
}

.roox-leaf__price-suffix {
    font-size: 0.6em;
}

.roox-leaf__price-tax {
    font-size: 0.4em;
}

.roox-leaf__detail-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roox-leaf__detail-image {
    max-width: 100%;
    height: auto;
}

.roox-leaf__photo-note {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.448;
    color: #000000;
    width: 100%;
}

.roox-leaf__charge-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 63.4%;
    flex-shrink: 0;
    order: 2;
}

.roox-leaf__charge-images {
    display: flex;
    gap: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.roox-leaf__charge-image {
    width: 100%;
    height: auto;
}


.roox-leaf__charge-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.448;
    color: #000000;
    width: 100%;
    max-width: 650px;
}

.roox-leaf__car-info {
    display: flex;
    flex-direction: column;
    gap: 19px;
    width: 36.6%;
    flex-shrink: 0;
    order: 1;
}

.roox-leaf__car-image {
    width: 100%;
    height: auto;
}

.roox-leaf__subsidy-area {
    background-color: #00A5A8;
    border-radius: 20px;
    padding: 10px 20px;
    width: 100%;
}

.roox-leaf__subsidy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.roox-leaf__subsidy-header {
    width: 100%;
    padding-bottom: 10px;
}

.roox-leaf__subsidy-title {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 20px;
    line-height: 1.448;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.roox-leaf__subsidy-subtitle {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.448;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.roox-leaf__subsidy-amount {
    background-color: #FFFFFF;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 5px 0;
}

.roox-leaf__subsidy-amount-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 24px;
    line-height: 1em;
    color: #00A5A8;
    text-align: center;
    margin: 0;
}

.roox-leaf__subsidy-amount-number {
    font-size: 1.3em;
}

.roox-leaf__subsidy-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.448;
    color: #000000;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

/* 購入資金プレゼント */
.fund {
    padding: 50px 20px;
}

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

.fund__images {
    display: flex;
    gap: 9.37px;
    width: 1110px;
}

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

.fund__btn {
    background: linear-gradient(180deg, #FFC100 0%, #CE9A00 100%);
    border: none;
    border-radius: 200px;
    padding: 20px 100px;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

.fund__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.fund__btn:hover::before {
    left: 100%;
}

.fund__btn-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.448;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* 注意書き */
.disclaimer {
    background-color: #6FC9EF;
}

.disclaimer__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 30px;
}

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

.disclaimer__content {
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disclaimer__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.448;
    color: #000000;
    width: 100%;
    padding: 0;
    max-width: 1100px;
}

/* 認定中古車（秘密のコード） */
.used-car-secret {
    background-color: #EBD023;
    padding: 30px 20px;
}

.used-car-secret__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.used-car-secret__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.used-car-secret__header {
    display: flex;
    justify-content: center;
}

.used-car-secret__badge {
    background-color: #FFFFFF;
    border: 3px solid #000000;
    border-radius: 100px;
    padding: 15px 50px;
}

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

.used-car-secret__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 0 5px;
}

.used-car-secret__gift-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


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

/* 認定中古車（NIC） */
.used-car-nic {
    background: linear-gradient(180deg, #010102 0%, #333b47 50%, #333b47 100%);
    padding: 50px 20px;
}

.used-car-nic__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.used-car-nic__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.used-car-nic__title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.437;
    letter-spacing: 0.2em;
    color: #FFFFFF;
    text-align: center;
}

.used-car-nic__subtitle-area {
    border-bottom: 1px solid #DAC45A;
    padding-bottom: 5px;
}

.used-car-nic__subtitle {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 1.448;
    letter-spacing: 0.3em;
    color: #DAC45A;
    text-align: center;
}

.used-car-nic__lead {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.448;
    color: #FFFFFF;
    text-align: center;
}

.used-car-nic__sub-lead {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.448;
    color: #FFFFFF;
    text-align: center;
}

.used-car-nic__btn {
    background-color: #DAC45A;
    border: none;
    border-radius: 115.79px;
    padding: 11.58px 57.89px;
    cursor: pointer;
    box-shadow: 0px 2.32px 2.32px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.used-car-nic__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
}

.used-car-nic__btn:hover::before {
    left: 100%;
}

.used-car-nic__btn-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 18.53px;
    line-height: 1.448;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

/* お近くの店舗 */
.store {
    background-color: #fff;
    padding: 50px 20px;
}

.store__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.store__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 604px;
    margin: 0 auto;
}

.store__lead {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.448;
    color: #C71C1D;
    text-align: center;
}

.store__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #B5100A;
    border: none;
    border-radius: 200px;
    padding: 20px 100px;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

.store__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.store__btn:hover::before {
    left: 100%;
}

.store__btn-text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.448;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

/* フッター */
.footer {
    background-color: #000000;
    padding: 35px 20px;
}

/* 下部追従ボタン */
.fixed-search {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fixed-search--hidden {
    opacity: 0;
    pointer-events: none;
}

.fixed-search__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
}

.fixed-search__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 85px;
    width: 260px;
    height: 58px;
    background-color: #FFFFFF;
    border: none;
    border-radius: 33px;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.fixed-search__btn::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;
}

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

.fixed-search__btn:hover {
    background-color: #DAC45A;
}

.fixed-search__btn:hover .fixed-search__icon,
.fixed-search__btn:hover .fixed-search__text {
    color: #FFFFFF;
}

.fixed-search__icon {
    font-size: 26px;
    line-height: 1;
    color: #000000;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-search__text {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.448;
    color: #000000;
    white-space: nowrap;
}

.footer__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.footer__copyright {
    font-family: 'Noto Sans CJK JP', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.448;
    color: #FFFFFF;
    text-align: center;
}

/* レスポンシブ対応 */
@media (max-width: 1000px) {
    .roox__card-content {
        flex-direction: column;
    }

    .roox-leaf__top-area {
        flex-direction: column;
    }

    .roox-leaf__charge-info,
    .roox-leaf__car-info {
        width: 100%;
    }

    .roox-leaf__subsidy-text {
        text-align: left;
    }

    .roox-leaf__logo-area {
        flex-direction: column;
    }

    .hatuuri__logo-area {
        flex-direction: column;
    }

    .roox-leaf__price-value {
        font-size: 32px;
    }

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

    .present__item-wrapper {
        flex: 0 0 calc((100% - 16px) / 3);
        width: calc((100% - 16px) / 3);
        max-width: calc((100% - 16px) / 3);
    }

    .present__gift-section {
        width: 100%;
        max-width: 1100px;
    }


    .hatuuri__card,
    .hatuuri__card-header,
    .hatuuri__card-footer {
        width: 100%;
    }

    .hatuuri__card-header {
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }


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

    .okaidoku__car {
        width: 100%;
        min-width: 0;
    }

    .roox-leaf__car-area {
        flex-direction: column;
    }

    .fund__images {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .fund__image {
        width: 100%;
    }
}


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

    br.pc_only {
        display: none;
    }

    .header__inner {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 20px;
    }

    .header__search-btn {
        display: none;
    }

    .present__items {
        flex-wrap: wrap;
    }
    .fund__btn-text {
        font-size: 22px;
    }
    .store__btn-text {
        font-size: 22px;
    }

}

@media (max-width: 480px) {
    .present__item-wrapper {
        flex: 0 0 calc((100% - 8px) / 2);
        width: calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
    }

    .present__item-image {
        width: 100%;
        max-width: 100%;
    }

    .present__numbers {
        display: none;
    }

    .present__visit-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .present__visit-item {
        width: 100%;
        max-width: 550px;
    }

    .okaidoku__lead {
        padding: 0;
    }

    .roox-leaf__charge-images {
        flex-direction: column;
    }

    .used-car-secret__badge-text {
        font-size: 16px;
    }

    .footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header__title {
        font-size: 14px;
    }

    .hatuuri__title,
    .okaidoku__title,
    .roox-leaf__title {
        width: 100%;
        height: auto;
    }

    .present__item-wrapper {
        flex: 0 0 calc((100% - 8px) / 2);
        width: calc((100% - 8px) / 2);
        max-width: calc((100% - 8px) / 2);
    }

    .present__visit-item {
        width: 100%;
        max-width: 550px;
    }

    .fund__btn,
    .store__btn {
        width: 100%;
        padding: 15px 50px;
    }

    .fund__btn-text,
    .store__btn-text {
        font-size: 20px;
    }
    .store__lead {
        font-size: 20px;
    }
    .used-car-nic__lead {
        font-size: 18px;
    }
    .used-car-secret__badge {
        padding: 15px 30px;
    }
    .okaidoku__lead {
        font-size: 18px;
    }
    .hatuuri__feature-text {
        font-size: 16px;
    }
}

