.up-fv {
    margin-top: 85px;
    padding: 100px 0;
}
.up-fv-basic {
    margin-top: 85px;
    padding: 40px 0;
}
.breadcrumb {
    display: flex;
    font-size: 1.5rem;
    gap: 70px;
}
.breadcrumb .bc-link {
    position: relative;
    color: #7a8192;
}
.breadcrumb .bc-text {
    position: relative;
}
.breadcrumb .bc-text:not(:first-child)::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #e4e4e9;
    display: block;
    position: absolute;
    top: 50%;
    left: -55px;
}
.page-title {
    margin-top: 30px;
}
.page-title.center {
    text-align: center;
}
.page-title .title-jp {
    font-size: 4.2rem;
    font-weight: 700;
    letter-spacing: .05em;
}
.page-title .title-jp::first-letter {
    color: #e20c16;
}
.page-title .title-en {
    font-weight: 500;
    color: #b5b5c0;
}
.up-text-p {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 500;
    margin: 1em 0;
}

.up-more {
    font-size: 1.4rem;
    font-weight: 400;
    padding: 6px 35px;
    border-radius: 20px;
    border: solid 1px #000;
    line-height: 1;
    color: #000;
}
.up-more:hover {
    background-color: #000;
    color: #fff;
}

.up-fv-image-section {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 100%;
}
.up-fv-image-section .up-fv-image {
    border: solid 2px #000;
}

.complete-car-slide .slider-item {
    margin: 0 20px;
    border: solid 3px #000;
}
.complete-slider-dots {
    margin-top: 20px;
}

.dots-wrap {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.dots-wrap li {
    width: 8px;
    height: 8px;
    background: #cfcfcf;
    cursor: pointer;
}
.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: #000;
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.complete-commitment {
    padding: 120px 0;
}
.complete-commitment .commitment-content {
    font-size: 1.7rem;
    line-height: 2;
}

.complete-models {
    padding-bottom: 120px;
}
.complete-models .models-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 40px 20px;
}
.complete-models .model-item {
    display: block;
    width: calc((100% - 40px) / 3);
    border-bottom: solid 1px #828282;
    padding-bottom: 50px;
    color: #252525;
}
.complete-models .model-name {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 40px;
}
.complete-models .model-name .series {
    color: #b5b5c0;
    font-size: 1.6rem;
}

.gallery-slider {
    overflow: hidden;
}
.gallery-slider .gallery-wrap {
    display: flex;
    overflow: hidden;
    width: max-content;
    gap: 20px;
}
.gallery-slider .gallery-wrap:first-child {
    margin-bottom: 20px;
}
.gallery-slider .gallery-wrap .gallery-item {
    display: flex;
    gap: 20px;
}
.gallery-slider .gallery-wrap .scroll-left {
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
.gallery-slider .gallery-wrap .scroll-right {
    animation: infinity-scroll-right 40s infinite linear 0.5s both;
}
@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }
        to {
        transform: translateX(0%);
    }
}
.gallery-slider .gallery-wrap .gallery-item .gallery-image {
    flex-shrink: 0;
}

.faq {
    padding: 120px 0;
}
.faq02 {
    padding: 0 0 120px;
}
.faq .faq_wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.faq .faq_wrapper .faq-item {
    border: solid 2px #000;
    padding: 35px;
    cursor: pointer;
    background-color: #fff;
}
.faq .faq_wrapper .faq-item .q {
    display: flex;
    padding-right: 35px;
    line-height: 26px;
    position: relative;
}
.faq .faq_wrapper .faq-item .q::after {
    content: url(../images/common/arrow-accordion-bk.svg);
    display: block;
    width: 15px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all .2s;
}
.faq .faq_wrapper .faq-item.active .q::after {
    transform: translateY(-50%) scale(1, -1);
}
.faq .faq_wrapper .faq-item .q .en {
    font-size: 2.4rem;
    margin-right: 30px;
}
.faq .faq_wrapper .faq-item .q .q_text {
    font-size: 1.8rem;
    font-weight: 700;
}
.faq .faq_wrapper .faq-item .a_cont {
    display: none;
}
.faq .faq_wrapper .faq-item .a {
    display: flex;
    line-height: 26px;
    padding-top: 35px;
    margin-top: 35px;
    border-top: solid 1px #e4e4e9;
}
.faq .faq_wrapper .faq-item .a .en {
    font-size: 2.4rem;
    color: #e20c16;
    margin-right: 30px;
}
.faq .faq_wrapper .faq-item .a .a_text {
    font-size: 1.5rem;
    white-space: pre-wrap;
}

.flow {
    padding: 120px 0;
    background-color: #fff;
}
.flow .flow-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.flow .flow-wrap .flow-content {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.flow .flow-wrap .flow-content .flow-image {
    border: solid 2px #000;
    position: relative;
}
.flow .flow-wrap .flow-content .flow-image::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #aeaebf;
    border-bottom: 0;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%,50%);
}
.flow .flow-wrap .flow-content:last-child .flow-image::after {
    display: none;
}
.flow .flow-wrap .flow-content .text-area {
    width: 550px;
}
.flow .flow-wrap .flow-content .text-area .flow-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.flow .flow-wrap .flow-content .text-area .flow-title .num {
    color: #e20c16;
    font-size: 1.8rem;
    margin-right: 15px;
}
.flow .flow-wrap .flow-content .text-area .flow-description {
    font-size: 1.7rem;
    line-height: 2;
    white-space: pre-wrap;
}


.buy-sell-overview {
    padding: 10px 0;
}
.buy-sell-overview .overview-content {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.8;
}
.buy-sell-overview .overview-content .underline {
    background: linear-gradient(transparent 95%, #e20c16 95%);
}
.buy-sell-overview .overview-content .red {
    color: #e20c16;
}
.buy-sell-overview .overview-content .big {
    font-size: 3.6rem;
}

.buy-sell-cta {
    padding-bottom: 120px;
}
.buy-sell-cta .buy-sell-cta-cotntent {
    width: 100%;
    padding: 70px 0;
    background: url(../images/up/cta-bg.jpg) no-repeat;
    background-size: cover;
}
.buy-sell-cta .buy-sell-cta-cotntent .cta-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom:40px;
}
.buy-sell-cta .buy-sell-cta-cotntent .btns {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn {
    width: 440px;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    gap: 5px;
    position: relative;
}
.buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn::after {
    content: url(../images/common/arrow-right.svg);
    width: 14px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}
.buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn .main-txt {
    font-size: 2rem;
}
.buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn .sub-txt {
    font-size: 1.4rem;
}
.buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn.ct {
    background-color: #e00b15;
    box-shadow: 0 8px 0 0 #b90009;
}
.buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn.ln {
    background-color: #1dcd00;
    box-shadow: 0 8px 0 0 #148c00;
}

.buy-sell-hot-models .up-section-jp-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}
.buy-sell-hot-models .up-section-jp-title::first-letter {
    color: #e20c16;
}
.buy-sell-hot-models .hot-models-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}
.buy-sell-hot-models .hot-models-inner .model-item {
    background-color: #fff;
    width: 370px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.buy-sell-hot-models .hot-models-inner .model-item .model-name {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}
.buy-sell-hot-models .hot-models-inner .model-item .series {
    font-size: 1.3rem;
    text-align: center;
    color: #7c7c7c;
}
.buy-sell-hot-models .hot-models-inner .model-item .model-image {
    margin-top: auto;
    padding-top: 15px;
}
.buy-sell-hot-models .hot-models-inner .model-item .average-price {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 10px;
}
.buy-sell-hot-models .hot-models-inner .model-item .average-price .ttl {
    color: #fff;
    background-color: #000;
    padding: 5px 7px;
    line-height: 1;
}
.buy-sell-hot-models .hot-models-inner .model-item .average-price .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #e00b15;
    line-height: 1;
    transform: translateY(10px);
}
.buy-sell-hot-models .hot-models-inner .model-item .average-price .price .num {
    font-size: 4.8rem;
    line-height: 1;
}

.inspection-overview {
    padding: 120px 0;
}
.inspection-overview .insp-cont {
    display: flex;
    justify-content: space-between;
}
.inspection-overview .insp-cont .insp-item {
    width: 440px;
}
.inspection-overview .insp-cont .insp-item .insp-img {
    border: solid 2px #000;
}
.inspection-overview .insp-cont .insp-item .insp-title {
    font-size: 2.2rem;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: solid 1px #828282;
    margin: 20px 0;
}
.inspection-overview .insp-cont .insp-item .insp-title::first-letter {
    color: #e00b15;
}
.inspection-overview .insp-cont .insp-item .insp-title .en {
    font-size: 1.5rem;
    font-weight: 400;
    color: #b5b5c0;
    margin-left: 20px;
}
.inspection-overview .insp-cont .insp-item .insp-text {
    line-height: 2;
}

.price-table {
    padding: 0 0 120px;
}
.price-table-block table.has-fixed-layout {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: sans-serif;
  color: #000;
}
.price-table-block table.has-fixed-layout th,
.price-table-block table.has-fixed-layout td {
  border: 1px solid #000;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  vertical-align: middle;
}
.price-table-block table.has-fixed-layout thead {
    border-bottom: solid 1px #000;
}
.price-table-block table.has-fixed-layout thead th {
  background-color: #e00b15;
  color: #fff;
  font-weight: bold;
}
.price-table-block table.has-fixed-layout thead th:first-child {
    background-color: transparent;
    border: none;
}
.price-table-block table.has-fixed-layout tbody td:first-child {
  font-weight: bold;
  background-color: #252525;
  color: #fff;
  font-weight: 700;
  text-align: left;
}
.price-table-block table.has-fixed-layout tbody tr:nth-child(even) {
  background-color: #f4f4f4;
}
.price-table-block table.has-fixed-layout tbody tr:hover {
  background-color: #ffe5e7;
}

.available-shop {
    padding: 120px 0;
    background-color: #fff;
}
.available-content {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.available-item {
    width: calc((100% - 40px) / 3);
    padding: 20px;
    border: solid 2px #000;
}
.available-item .item-thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.available-item .item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.available-item .item-name {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: solid 1px #828282;
    margin: 10px 0;
}
.available-item .item-name::first-letter {
    color: #e20c16;
}
.available-item .item-text.address {
    font-size: 1.6rem;
    color: #7c7c7c;
    margin-bottom: 10px;
}

.demo-car-list-section {
    padding: 120px 0;
}
.demo-car-list-section .demo-car-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 20px;
}
.demo-car-item{
    width: calc((100% - 40px) / 3);
}
.demo-car-image{
    width: 100%;
    height: auto;
	aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
}
.demo-car-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.demo-car-list-section .demo-car-list .demo-car-item .demo-car-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.demo-car-list-section .demo-car-list .demo-car-item .demo-car-title::first-letter {
    color: #e00b15;
}
.demo-car-list-section .demo-car-list .demo-car-item .more-content {
    text-align: center;
    margin-top: 40px;
}

@media screen and (max-width:840px) {
	.demo-car-list-section .demo-car-list {
		gap: 40px 10px;
	}
	.demo-car-item{
		width: calc((100% - 10px) / 2);
	}
	.demo-car-list-section .demo-car-list .demo-car-item .demo-car-title {
		font-size: 1.7rem;
		margin-bottom: 10px;
	}
	.demo-car-list-section .demo-car-list .demo-car-item .more-content {
		margin-top : 20px;
	}
}

.company-shop-list {
    padding: 120px 0;
}
.company-shop-list.related-companies {
    padding: 0 0 120px;
}
.company-shop-list .shop-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}
.company-shop-list .shop-list-container .shop-item {
    width: calc((100% - 90px) / 3);
    border: solid 2px #000;
    background-color: #fff;
}
.company-shop-list .shop-list-container .shop-item .thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-bottom: solid 2px #000;
}
.company-shop-list .shop-list-container .shop-item .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap {
    padding: 15px 15px 20px;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .shop-title {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: solid 1px #a6a6a6;
    margin-bottom: 15px;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .shop-title::first-letter {
    color: #e00b15;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .address-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .address-container .address {
    white-space: pre-wrap;
    font-size: 1.4rem;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .address-container .address-btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    padding: 10px 15px;
    background-color: #e00b15;
    border-radius: 4px;
    color: #fff;
    margin-left: 10px;
    flex-shrink: 0;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .tel-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .tel-wrap .tel-container {
    display: flex;
    gap: 15px;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .tel-wrap .tel-container .tel-ttl {
    background-color: #000;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    width: 60px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .tel-wrap .tel-container .tel-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: #000;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .btns-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .btns-wrap .shop-btn {
    width: calc(50% - 7px);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    height: 46px;
    background-color: #e00b15;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .btns-wrap .shop-btn.single-btn {
    width: 70%;
    margin: 0 auto;
}
.company-shop-list .shop-list-container .shop-item .shop-text-wrap .btns-wrap .shop-btn.stock {
    background-color: #000;
}

.company-info {
    background-color: #fff;
    padding: 120px 0;
}
.company-info .company-table {
    width: 100%;
}
.company-info .company-table .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: solid 1px #a6a6a6;
}
.company-info .company-table .row .th {
    font-size: 1.8rem;
    font-weight: 600;
    width: 200px;
}
.company-info .company-table .row .td {
    font-size: 1.7rem;
    font-weight: 400;
    width: calc(100% - 200px);
}

.contact-options {
    padding: 0 0 120px;
}
.cop-title {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: solid 1px #828282;
    margin-bottom: 30px;
}
.cop-title::first-letter {
    color: #e00b15;
}
.contact-options .tab_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.contact-options .tab_buttons .tab_button {
    width: calc((100% - 45px) / 4);
    height: 80px;
    padding: 0 15px;
    border: solid 2px #000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
}
.contact-options .tab_buttons .tab_button.active {
    background-color: #000;
    color: #fff;
}
.contact-options .tab_buttons .tab_button .shop-name {
    font-size: 1.8rem;
    font-weight: 700;
}
.contact-options .tab_buttons .tab_button .shop-name::first-letter {
    color: #e00b15;
}

#contact-container {
    padding: 120px 0;
    background-color: #fff;
}
#contact-container .contact-contents {
    max-width: 900px;
    margin: 60px auto 0;
}
#contact-container .contact-contents .content {
    display: none;
}
#contact-container .contact-contents .content.show {
    display: block;
}
#contact-container .contact-contents .content .form-for-where {
    text-align: center;
    width: fit-content;
    padding: 20px 40px;
    background-color: #000;
    margin: 0 auto;
}
#contact-container .contact-contents .content .form-for-where .form-for-name {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
}
#contact-container .contact-contents .content .form-for-where .form-for-name::first-letter {
    color: #e00b15;
}
#contact-container .contact-contents .content .form-for-where .form-for-name .big {
    font-size: 2.4rem;
    font-weight: 800;
}
#contact-container .contact-contents .content .form-table {
    margin: 40px auto 0;
}
#contact-container .contact-contents .content .form-table .row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: solid 1px #dbdbdb;
    align-items: center;
}
#contact-container .contact-contents .content .form-table .row .th {
    width: 260px;
    font-size: 1.8rem;
    font-weight: 600;
}
#contact-container .contact-contents .content .form-table .row .th.required .th-txt::after {
    content: "*";
    color: #ca1a1a;
    display: inline;
}
#contact-container .contact-contents .content .form-table .row .td {
    width: calc(100% - 260px);
}
#contact-container .contact-contents .content .form-table .row .td input[type="text"],
#contact-container .contact-contents .content .form-table .row .td input[type="email"],
#contact-container .contact-contents .content .form-table .row .td input[type="tel"] {
    width: 100%;
    padding: 20px;
    background-color: #f6f6f6;
    border: none;
    font-size: 1.6rem;
}
#contact-container .contact-contents .content .form-table .row .td input[type="text"].p-postal-code {
    width: 300px;
    margin-left: .5em;
}
#contact-container .contact-contents .content .form-table .row .td textarea {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    width: 100%;
    height: 14em;
    padding: 20px;
    background-color: #f6f6f6;
    border: none;
    font-size: 1.6rem;
}
#contact-container .contact-contents .content .form-table .submit-wrapper {
    margin: 40px auto 0;
    text-align: center;
}
#contact-container .contact-contents .content .form-table .submit-wrapper input[type="submit"] {
    width: 340px;
    border-radius: 60px;
    background-color: #e00b15;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 20px;
    border: none;
    outline: none;
    cursor: pointer;
}

.documents {
    padding: 120px 0;
}
.documents .documents-content {
    padding: 70px;
    background-color: #fff;
    border: solid 2px #000;
}
.documents .documents-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2em 0 1em;
}
.documents .documents-content p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    margin: 1em 0;
}
.documents .documents-content ul {
    list-style-type: disc;
    padding-left: 1em;
}

.n-c-fv {
    margin-top: 85px;
    padding: 80px 0 20px;
    border-bottom: solid 1px #e8e8ec;
}
.breadcrumb {
    display: flex;
    justify-content: flex-end;
    font-size: 1.5rem;
    gap: 70px;
    margin-left: auto;
}
.breadcrumb .bc-link {
    position: relative;
    color: #7a8192;
}
.breadcrumb .bc-text {
    position: relative;
}
.breadcrumb .bc-text:not(:first-child)::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #e4e4e9;
    display: block;
    position: absolute;
    top: 50%;
    left: -55px;
}
.page-title {
    margin-top: 30px;
}

.page-content {
    padding: 80px 0;
}
.page-content .contents {
    background-color: #fff;
    padding: 30px 50px;
}
.page-content .contents h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 2em 0 1em;
}
.page-content .contents h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2em 0 1em;
}
.page-content .contents p {
    font-size: 1.5rem;
    margin: 1em 0;
    line-height: 1.8;
}

/*  RESPONSIVE FOR TABLET AND SP */
@media screen and (max-width: 840px) {
    .up-fv {
        margin-top: 60px;
        padding: 40px 0;
    }
    .breadcrumb {
        font-size: 1.1rem;
        gap: 30px;
    }
    .breadcrumb .bc-text:nth-child(n+1)::after {
        width: 20px;
        left: -25px;
    }
    .page-title {
        margin-top: 20px;
    }
    .page-title .title-jp {
        font-size: 2.6rem;
    }
    .page-title .title-en {
        font-size: 1.3rem;
    }

    .up-fv-image-section {
        padding: 0;
    }
    .up-fv-image-section .up-fv-image {
        border-right: none;
        border-left: none;
    }

    .complete-car-slide .slider-item {
        margin: 0 7px;
        border: solid 2px #000;
    }
    .dots-wrap {
        gap: 10px;
    }
    .dots-wrap li {
        width: 6px;
        height: 6px;
    }

    .complete-commitment {
        padding: 60px 0;
    }
    .complete-commitment .commitment-content {
        font-size: 1.5rem;
    }

    .complete-models {
        padding-bottom: 60px;
    }
    .complete-models .models-content {
        gap: 30px;
    }
    .complete-models .model-item {
        width: 100%;
        padding-bottom: 30px;
    }
    .complete-models .model-name {
        font-size: 2rem;
        margin-top: 20px;
        text-align: center;
    }
    .complete-models .model-name .series {
        font-size: 1.4rem;
        display: block;
    }

    .gallery-slider .gallery-wrap {
        gap: 10px;
    }
    .gallery-slider .gallery-wrap:first-child {
        margin-bottom: 10px;
    }
    .gallery-slider .gallery-wrap .gallery-item {
        gap: 10px;
    }
    .gallery-slider .gallery-wrap .gallery-item .gallery-image {
        width: 180px;
    }
    .buy-sell-hot-brand-model {
        padding: 60px 0;
    }
    .faq {
        padding: 60px 0;
    }
    .faq02 {
        padding: 0 0 60px;
    }
    .faq .faq_wrapper {
        gap: 15px;
    }
    .faq .faq_wrapper .faq-item {
        padding: 20px;
    }
    .faq .faq_wrapper .faq-item .q {
        line-height: 24px;
        padding-right: 30px;
    }
    .faq .faq_wrapper .faq-item .q .en {
        font-size: 2rem;
        margin-right: 10px;
    }
    .faq .faq_wrapper .faq-item .q .q_text {
        font-size: 1.6rem;
    }
    .faq .faq_wrapper .faq-item .a {
        padding-top: 20px;
        margin-top: 20px;
    }
    .faq .faq_wrapper .faq-item .a .en {
        font-size: 2rem;
        margin-right: 10px;
    }
    .faq .faq_wrapper .faq-item .a .a_text {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .flow {
        padding: 60px 0;
    }
    .flow .flow-wrap {
        gap: 60px;
    }
    .flow .flow-wrap .flow-content {
        flex-wrap: wrap;
        gap: 20px;
        position: relative;
    }
    .flow .flow-wrap .flow-content .text-area {
        width: 100%;
    }
    .flow .flow-wrap .flow-content .text-area .flow-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .flow .flow-wrap .flow-content .text-area .flow-title .num {
        font-size: 1.6rem;
        margin-right: 5px;
    }
    .flow .flow-wrap .flow-content .text-area .flow-description {
        font-size: 1.5rem;
        line-height: 1.8;
    }
    .flow .flow-wrap .flow-content .flow-image::after {
        display: none;
    }
    .flow .flow-wrap .flow-content::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-top: 10px solid #aeaebf;
        border-bottom: 0;
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
    }
    .flow .flow-wrap .flow-content:last-child::after {
        display: none;
    }

    .buy-sell-overview {
        padding: 10px 0;
    }
    .buy-sell-overview .overview-content {
        font-size: 1.7rem;
    }
    .buy-sell-overview .overview-content .underline {
        background: linear-gradient(transparent 90%, #e20c16 90%);
    }
    .buy-sell-overview .overview-content .big {
        font-size: 2.4rem;
    }

    .buy-sell-cta {
        padding-bottom: 60px;
    }
    .buy-sell-cta .buy-sell-cta-cotntent {
        padding: 40px 20px;
    }
    .buy-sell-cta .buy-sell-cta-cotntent .cta-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .buy-sell-cta .buy-sell-cta-cotntent .btns {
        flex-wrap: wrap;
        gap: 20px;
    }
    .buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn {
        width: 100%;
        padding: 15px 0;
    }
    .buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn::after {
        width: 10px;
        height: 20px;
        right: 15px;
    }
    .buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn .main-txt {
        font-size: 1.7rem;
    }
    .buy-sell-cta .buy-sell-cta-cotntent .btns .cta-btn .sub-txt {
        font-size: 1.2rem;
    }

    .buy-sell-hot-models .up-section-jp-title {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .inspection-overview {
        padding: 60px 0;
    }
    .inspection-overview .insp-cont {
        flex-wrap: wrap;
        gap: 30px;
    }
    .inspection-overview .insp-cont .insp-item {
        width: 100%;
    }

    .price-table {
        padding: 0 0 60px;
    }
    .price-table-block {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    table.has-fixed-layout {
        min-width: 700px;
    }

    .demo-car-list-section {
        padding: 60px 0;
    }

    .available-shop {
        padding: 60px 0;
    }
    .available-content {
        flex-direction: column;
        align-items: center;
    }
    .available-item {
        width: 100%;
        padding: 20px;
        border: solid 2px #000;
    }

    .company-shop-list {
        padding: 60px 0;
    }
    .company-shop-list.related-companies {
        padding: 0 0 60px;
    }
    .company-shop-list .shop-list-container {
        gap: 20px 14px;
    }
    .company-shop-list .shop-list-container .shop-item {
        width: 100%;
    }
    .company-shop-list .shop-list-container .shop-item .shop-text-wrap .shop-title {
        font-size: 1.8rem;
    }
    .company-shop-list .shop-list-container .shop-item .shop-text-wrap .address-container .address {
        font-size: 1.2rem;
    }
    .company-shop-list .shop-list-container .shop-item .shop-text-wrap .address-container .address-btn {
        font-size: 1.5rem;
        padding: 10px 25px;
    }
    .company-shop-list .shop-list-container .shop-item .shop-text-wrap .tel-wrap {
        margin-top: 15px;
    }
    .company-shop-list .shop-list-container .shop-item .shop-text-wrap .tel-wrap .tel-container {
        gap: 10px;
    }
    .company-shop-list .shop-list-container .shop-item .shop-text-wrap .tel-wrap .tel-container .tel-ttl {
        font-size: 1.3rem;
    }

    .company-info {
        padding: 60px 0;
    }
    .company-info .company-table .row {
        padding: 20px 0;
    }
    .company-info .company-table .row .th {
        font-size: 1.5rem;
        width: 100%;
        margin-bottom: .5em;
    }
    .company-info .company-table .row .td {
        font-size: 1.4rem;
        font-weight: 400;
        width: 100%;
    }

    .contact-options {
        padding: 0 0 60px;
    }
    .contact-options .tab_buttons .tab_button {
        width: 100%;
    }

    #contact-container {
        padding: 60px 0 40px;
    }
    #contact-container .contact-contents {
        width: 100%;
        margin: 30px auto 0;
    }
    #contact-container .contact-contents .content .form-for-where {
        padding: 20px;
        width: 100%;
    }
    #contact-container .contact-contents .content .form-for-where .form-for-name {
        font-size: 1.5rem;
    }
    #contact-container .contact-contents .content .form-for-where .form-for-name .big {
        font-size: 2.2rem;
        display: block;
    }
    #contact-container .contact-contents .content .form-table {
        margin: 20px auto 0;
    }
    #contact-container .contact-contents .content .form-table .row {
        flex-wrap: wrap;
        padding: 20px 0;
    }
    #contact-container .contact-contents .content .form-table .row .th {
        font-size: 1.5rem;
        margin-bottom: 10px;
        width: 100%;
    }
    #contact-container .contact-contents .content .form-table .row .td {
        width: 100%;
    }

    .documents {
        padding: 60px 0;
    }
    .documents .documents-content {
        padding: 20px;
    }
    .documents .documents-content h3 {
        font-size: 1.8rem;
    }
    .documents .documents-content p {
        font-size: 1.4rem;
        line-height: 1.7;
    }

    .n-c-fv {
        margin-top: 60px;
        padding: 40px 0 15px;
        border-bottom: solid 1px #e8e8ec;
    }
    .breadcrumb {
        font-size: 1.1rem;
        gap: 30px;
    }
    .breadcrumb .bc-text:nth-child(n+1)::after {
        width: 20px;
        left: -25px;
    }
    .page-title {
        margin-top: 20px;
    }
    .page-title .title-jp {
        font-size: 2.6rem;
    }
    .page-title .title-en {
        font-size: 1.3rem;
    }

    .page-content {
        padding: 30px 0;
    }
    .page-content .contents {
        padding: 15px 5%;
    }
    .page-content .contents h2 {
        font-size: 2rem;
        margin: 1em 0 .5em;
    }
    .page-content .contents h3 {
        font-size: 2rem;
        margin: 1em 0 .5em;
    }
}
/* thanks-section */
.thanks-section .inner{
    margin: 84.42px auto 0;
    padding: 150px 0px 170px;
}
.thanks-section {
    text-align: center;
    align-items: center;
}
.thanks-section .thanks-text{
    margin-bottom: 100px;
}
.thanks-section h1{
    font-size: 4.2rem;
    font-weight: 700;
}
.thanks-section .line{
    height: 6px;
    background: #aaaaaa;
    margin: 20px 40% 40px;
}
.thanks-section p{
    line-height: 2em;
}
.thanks-section .top-btn{
    margin-top: 40px;
    border-radius: 60px;
    background-color: #e00b15;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 20px 40px;
    border: none;
    outline: none;
    cursor: pointer;
}
.thanks-section .sp{
    display: none;
}
.thanks-section .title-jp::first-letter{
    color: #e20c16;
}

/* form-section */
.form-table {
    margin: 40px auto 0;
}
.form-table .row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: solid 1px #dbdbdb;
    align-items: center;
}
.form-table .row .th {
    width: 260px;
    font-size: 1.8rem;
    font-weight: 600;
}
.form-table .row .th.required .th-txt::after {
    content: "*";
    color: #ca1a1a;
    display: inline;
}
.form-table .row .td {
    width: calc(100% - 260px);
}
.form-table .row .td input[type="text"],
.form-table .row .td input[type="email"],
.form-table .row .td input[type="tel"] {
    width: 100%;
    padding: 20px;
    background-color: #f6f6f6;
    border: none;
    font-size: 1.6rem;
}
.form-table .row .td input[type="text"].p-postal-code {
    width: 300px;
    margin-left: .5em;
}
.form-table .row .td textarea {
    font-family: YakuHanJP, "Noto Sans JP", sans-serif;
    width: 100%;
    height: 14em;
    padding: 20px;
    background-color: #f6f6f6;
    border: none;
    font-size: 1.6rem;
}
.form-table .submit-wrapper {
    margin: 40px auto 0;
    text-align: center;
}
.form-table .submit-wrapper input[type="submit"] {
    width: 340px;
    border-radius: 60px;
    background-color: #e00b15;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 20px;
    border: none;
    outline: none;
    cursor: pointer;
}.

/* specification_list */
.specification-container {
    width: 50%;
    margin: 0 auto;
    text-align: left;
}
.specification-list {
    list-style-type: none; 
    list-style-position: inside; 
}
.specification-list li {
    padding: .5em;
    border-bottom: 1px dashed #ccc; 
    position: relative; 
}
.specification-list li::before {
    content: "■";
    color: #000000;
    font-size: 1.5em;
    position: absolute;
    left: -1.5em;
}
.specification-sub-list {
    list-style-type: circle;
    margin-left: 2em; 
}

.specification-list-sub-list li {
    padding: 0.3em;
    border-bottom: none; 
    position: static;
}

.specification-list-sub-list li::before {
    content: "";
}

/* buy-sell-hot-brand-model-section */
.buy-sell-hot-brand-model {
    padding: 120px 0;
}
.buy-sell-hot-brand-section-title {
    margin: 30px auto;
}

/* reqruit-inquiry-section */
.reqruit-inquiry {
    padding-bottom: 120px;
}
.reqruit-inquiry .reqruit-inquiry-content {
    width: 100%;
    padding: 70px 0;
    /*background: url(../images/up/cta-bg.jpg) no-repeat;*/
    background-size: cover;
}
.reqruit-inquiry .reqruit-inquiry-content .reqruit-inquiry-title {
    color: #242424;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}
.reqruit-inquiry .reqruit-inquiry-content .reqruit-inquiry-btns {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.reqruit-inquiry .reqruit-inquiry-content .reqruit-inquiry-btns .reqruit-inquiry-btn {
    width: 440px;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    gap: 5px;
    position: relative;
}
ruit-inquiry .reqruit-inquiry-content .btns .reqruit-inquiry-btn::after {
    content: url(../wp-content/uploads/2025/07/footer_banner_recruit-2.png);
    width: 14px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}
.reqruit-inquiry .reqruit-inquiry-content .reqruit-inquiry-btns .reqruit-inquiry-btn.ct {
    background-color: #e00b15;
    box-shadow: 0 8px 0 0 #b90009;
}
.reqruit-inquiry .reqruit-inquiry-content .reqruit-inquiry-btns .reqruit-inquiry-btn.ln {
    background-color: #1dcd00;
    box-shadow: 0 8px 0 0 #148c00;
}
.reqruit-inquiry .reqruit-inquiry-content .reqruit-inquiry-btns .reqruit-inquiry-btn .main-txt {
    font-size: 2rem;
}
.reqruit-inquiry .reqruit-inquiry-content .reqruit-inquiry-btns .reqruit-inquiry-btn .sub-txt {
    font-size: 1.4rem;
}

@media screen and (max-width: 840px){
    .thanks-section .inner{
        margin: 60px 0 0;
        padding: 100px 30px 120px;
    }
    .thanks-section h1{
        font-size: 2.6rem;
    }
    .thanks-section p{
        font-size: 1.4rem;
    }
    .thanks-section .pc{
        display: none;
    }
    .thanks-section .sp{
        display: block;
    }
    .thanks-section .line{
        height: 6px;
        background: #aaaaaa;
        margin: 20px 25% 40px;
    }
    .thanks-section .top-btn{
        width: 100%;
        padding: 20px auto;
    }
	 .form-table {
        margin: 20px auto 0;
    }
    .form-table .row {
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .form-table .row .th {
        font-size: 1.5rem;
        margin-bottom: 10px;
        width: 100%;
    }
    .form-table .row .td {
        width: 100%;
    }
}

/* GENESIS CUSTOM BLOCK */

.wp-block-embed {
	text-align: center;
}
.custom_block {
    margin: 40px 0;
}
.custom_block .standard-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.custom_block .standard-section-title .title-jp {
    font-size: 3rem;
    font-weight: 900;
}
.custom_block .standard-section-title .title-jp::first-letter {
    color: #e20c16;
}
.custom_block .standard-section-title .title-en {
    font-size: 1.4rem;
}
.page-content-section {
	max-width: 1000px;
	margin: 0 auto 120px;
    padding: 20px 0;
    background-color: #fff;
}
.page-content-section h2.wp-block-heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 50px 0;
}
.page-content-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
.step-block {
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    max-width: 700px;
}
.step-block .step-img {
    width: 45%;
    aspect-ratio: 16 / 9;
}
.step-block .step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.step-block .step-txt {
    width: 50%;
}
.step-block .step-txt .step-title {
    padding: 10px 40px;
    font-size: 1.8rem;
    border-radius: 80px;
    text-align: center;
    background-color: #ef8500;
    color: #fff;
    display: inline-block;
}
.compare-block {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}
.compare-block .compare-wrap {
    width: 48%;
	text-align: center;
}
.compare-block .compare-wrap .before-head {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    padding: 7px 50px;
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
    border-radius: 60px;
    background-color: #252525;
}
.compare-block .compare-wrap .after-head {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    padding: 7px 50px;
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
    border-radius: 60px;
    background-color: #e20c16;
}
.compare-block .compare-wrap .compare-img img {
	width: 100%;
}
.compare-block .compare-wrap .compare-txt {
    margin-top: 20px;
}
@media screen and (max-width:840px) {
	.page-content-section {
		margin: 0 auto 60px;
	}
}

/* xo event calendar */

.xo-event-calendar {
	max-width: 840px;
	margin: 0 auto;
}