/*
theme Name: yokohamabayauto
Author: 株式会社横浜ベイオート
Description: original theme
version： 1.0.0
*/

:root {
    --color-main: #333;
    --color-theme: #111;
    --color-background: #fff;
    --font-main: "Noto Sans JP", sans-serif;
    --font-en: "Cormorant Garamond", serif;
}


html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 743px) {
    html {
        scroll-padding-top: 8vh;
    }

    [id] {
        scroll-margin-top: 8vh;
    }
}

@media (max-width: 767px) {
    [id] {
        scroll-margin-top: 4vh;
    }
}

body {
    font-family: var(--font-main);
    line-height: 1.8;
    color: var(--color-main);
    font-weight: 500;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

a:hover {
    opacity: .7;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

@media (max-width: 743px) {
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.95);
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .main-nav.is-active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .nav-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 2vw;
    }
}


.pc_block {
    display: block;
}

.sp_block {
    display: none !important;
}

br.sp_block,
.sp_inlineblock {
    display: none !important;
}

.pc_inlineblock {
    display: inline-block;
}

p.center {
    text-align: center;
}

.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap.sb {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

p.mb {
    margin-bottom: .7em;
}

/*---------------------------------------------------------
アニメーション
---------------------------------------------------------*/

#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #111;
    z-index: 9999999;
    text-align: center;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
}

#splash-logo img {
    width: 17.5%;
    margin: 0 auto;
}

.splashbg1,
.splashbg2 {
    display: none;
}

body.appear .splashbg1,
body.appear .splashbg2 {
    display: block;
    position: fixed;
    top: 0;
    width: 50%;
    height: 100vh;
    background-color: #111;
    z-index: 999;
}

body.appear .splashbg1 {
    left: 0;
    -webkit-animation: slideLeft 1s ease forwards;
    animation: slideLeft 1s ease forwards;
}

body.appear .splashbg2 {
    right: 0;
    -webkit-animation: slideRight 1s ease forwards;
    animation: slideRight 1s ease forwards;
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slideLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.js-animation {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}

.js-animation.is-show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

/*---------------------------------------------------------
ヘッダー
---------------------------------------------------------*/

header {
    height: 12vh;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    background: #111;
}

.site-title-wrap {
    width: 35%;
    height: 12vh;
    padding-left: 1.5vw;
}

.site-title-wrap a {
    height: 12vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.site-title-wrap img {
    width: 86%;
    height: auto;
}

.header-inner {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: unset;
    left: 0;
    right: 0;
    z-index: 100;
}

nav#g-nav {
    width: 100%;
}

header #nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header #nav-list {
    width: 100%;
}

header nav ul {
    width: 97%;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 12vh;
    margin: 0 0 0 auto;
}

header .nav-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 19%;
}

header nav ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

header nav ul li a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1vw;
    letter-spacing: 0.2em;
    color: #fff;
    line-height: 1.6;
}

header li.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header nav ul li a::after {
    content: '';
    display: block;
    height: .9px;
    width: 80%;
    background: #fff;
    position: absolute;
    bottom: 1.9vw;
    left: 10%;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

header nav ul li.contact a::after {
    content: unset;
}

header nav ul li a:hover::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

header nav ul li.company a {
    margin-right: 1vw;
}

header nav ul li.contact a {
    height: 12vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    font-size: 1.15vw;
    padding: 0 1.5vw;
    background: #ffffff;
    color: #111;
    outline: 1.5px solid #111;
    outline-offset: -.4vw;
    font-weight: 500;
    line-height: 2;
    border-bottom: 1px solid #111;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: .1vw;
}


header nav ul li.contact a:hover,
.mv-copy .link a:hover {
    opacity: .7;
}

/*---------------------------------------------------------
メインビジュアル
---------------------------------------------------------*/
section.mv {
    overflow: hidden;
    width: 100%;
    height: 88svh;
    position: relative;
    margin-top: 12vh;
    background-image: url(https://yokohamabayauto.com/wp-content/uploads/2025/09/mv-img.jpg);
    background-position: 49% 78%;
    background-size: cover;
}

.mv-copy {
    position: absolute;
    top: 43%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    padding: 5vh 3vw 5vh;
    outline: 1.5px solid #111;
    outline-offset: -.7vw;
    background: rgb(255 255 255 / 70%);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    width: 50%;
}

.mv-copy div {
    width: 100%;
}

.mv-copy h1.main-copy {
    width: 92%;
    margin: 0 auto;
}

.mv-copy p.sub-copy {
    margin-top: 3.5vh;
    padding: .7vh 0;
    font-size: 1.6vw;
    font-family: "Noto Serif JP", serif;
    color: #fff;
    letter-spacing: 0.3vw;
    font-weight: 600;
    background: #111;
}

.mv-copy p span.small {
    font-size: 0.9em;
}

#side_btn a {
    position: fixed;
    right: 0;
    top: 43%;
    width: 4%;
    padding: 2vh 0.5vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1;
    border-radius: 0.5em 0 0 0.5em;
    z-index: 9;
    background: #00cb00;
}

#side_btn a.line .text {
    position: relative;
    top: -0.3em;
}

#side_btn a.line img {
    width: 66%;
    margin: 0.5vh auto 1.5vh;
}

#side_btn a .text {
    width: 100%;
}

#side_btn a .text span {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

#side_btn a.line span {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    letter-spacing: -0.2vw;
    font-size: 2vw;
}

#side_btn a:hover {
    opacity: 0.6;
}

/* スクロール */
.scroll {
    text-align: center;
    padding-top: 5px;
    height: 67px;
}

.scroll a {
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.05em;
    color: #333;
    font-size: 1.05vw;
    text-decoration: none;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
}

.scroll a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 1px;
    height: 0;
    background: #333;
    margin: auto;
    -webkit-animation: scroll 1.8s ease-out infinite;
    animation: scroll 1.8s ease-out infinite;
}

@-webkit-keyframes scroll {
    0% {
        height: 0;
    }

    100% {
        height: 40px;
    }
}

@keyframes scroll {
    0% {
        height: 0;
    }

    100% {
        height: 40px;
    }
}

/* 共通見出し・セクション */
.purchase-results {
    padding: 10vh 5vw 5vh;
    text-align: center;
}

.three-reasons {
    padding: 10vh 5vw;
    text-align: center;
}

.voices {
    padding: 13vh 5vw;
    text-align: center;
}

.h2-wrap {
    margin-bottom: 5vh;
}

.h2-wrap h2 {
    font-size: 2.3vw;
    font-family: "Noto Serif JP", serif;
    margin-bottom: 1vh;
    letter-spacing: 0.5vw;
    font-weight: bold;
}

section.three-reasons .h2-wrap h2 {
    line-height: 1.7;
}

.h2-wrap .en {
    font-size: 1.5vw;
    font-family: "Crimson Text", serif;
    font-weight: 600;
    letter-spacing: 0.2vw;
    text-align: center;
}

.h2-wrap .en::before {
    content: "－";
    margin: 0 8px;
    font-weight: 700;
    display: inline-block;
}

.h2-wrap .en::after {
    content: "－";
    margin: 0 8px;
    font-weight: 700;
    display: inline-block;
}

/* LINEバナー */
.line-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8vh 0 10vh;
    width: 50%;
    margin: 0 auto;
}

.banner-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.banner-left,
.banner-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}

.banner-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
}

.banner-left img,
.banner-right img {
    max-width: 100%;
    height: auto;
}

.banner-left img.staff {
    position: absolute;
    bottom: 0;
    width: 23.5%;
    left: -1.5vw;
}

.banner-note {
    margin-top: 1vh;
    font-size: 1.2vw;
    color: #333;
    text-align: center;
}

/* どんなお車でも買取セクション */
.any-car {
    background-color: #000;
    color: #fff;
    padding: 8vh 5vw;
}

.any-car-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 85%;
    margin: 0 auto;
    gap: 4vw;
}

.any-car-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.any-car-logo img {
    width: 85%;
    height: auto;
}

.any-car-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.any-car-text h2 {
    font-size: 2.2vw;
    margin-bottom: 2vh;
    letter-spacing: 0.2vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    text-align: center;
}

.any-car-text p {
    font-size: 1.3vw;
    margin-bottom: 2vh;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.05vw;
}

.swiper {
    padding-bottom: 1vh !important;
}


.results-carousel .result-item {
    border: 1px solid #EEE;
    -webkit-box-shadow: 0 4px 8px rgb(0 0 0 / 18%);
    box-shadow: 0 4px 8px rgb(0 0 0 / 18%);
    background: #fff;
    height: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.results-carousel .result-info h3 {
    font-size: 1.3vw;
    padding: .5vh 0;
    background: #EEEEEE;
}

.results-carousel .result-info p.price {
    font-size: 1.3vw;
    font-weight: 500;
    background: #333;
    color: #fff;
    letter-spacing: .1vw;
}

.results-carousel .result-info p.price .number {
    font-size: 1.5vw;
    margin: 0 .2vw 0 .5vw;
}

.results-carousel .result-info ul {
    font-size: 1.1vw;
    padding: 1vh 0;
    list-style: none;
    margin: 0;
}

@media (min-width: 743px) {

    #resultsSwiper,
    #voicesSwiper {
        overflow: visible;
    }

    #resultsSwiper .swiper-wrapper,
    #voicesSwiper .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 1vw;
        transform: none !important;
        will-change: auto !important;
    }

    #resultsSwiper .swiper-slide,
    #voicesSwiper .swiper-slide {
        width: auto !important;
        margin: 0 !important;
    }

    #resultsSwiper .results-dots,
    #voicesSwiper .voices-dots,
    #resultsSwiper .swiper-button-prev,
    #resultsSwiper .swiper-button-next,
    #voicesSwiper .swiper-button-prev,
    #voicesSwiper .swiper-button-next {
        display: none !important;
    }

    .results-carousel .results-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .results-carousel .result-item {
        width: 23.5% !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 743px) {
    .results-carousel .result-item {
        width: 100%;
        max-width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
    }

    .results-carousel .result-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    #resultsSwiper .results-dots {
        display: block;
        position: relative;
        margin-top: 12px;
        text-align: center;
    }
}

#resultsSwiper .results-dots {
    display: none;
}



/* 買取実績・お客様の声カード */

section.voices {
    background: #111;
    position: relative;
    z-index: 1;
    -webkit-clip-path: polygon(0 3vw, 100% 0, 100% calc(100% - 3vw), 0 100%);
    clip-path: polygon(0 3vw, 100% 0, 100% calc(100% - 3vw), 0 100%);
}

section.voices img.logo {
    position: absolute;
    top: 3vh;
    right: 4vw;
    width: 33%;
    opacity: .4;
}

section.voices .h2-wrap h2 {
    color: #fff;
}

section.voices .h2-wrap .en {
    color: #fff;
}

section.voices .voice-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    color: #111;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .18);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .18);
    overflow: hidden;
    height: 100%;
}

section.voices .voice-item>img {
    width: 100%;
    aspect-ratio: 3 / 2;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

section.voices .voice-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

section.voices .voice-info h3 {
    background: #111;
    color: #ffffff;
    padding: .7vh 0;
    font-size: 1.3vw;
}

section.voices .voice-info .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0;
}

section.voices .voice-info .comment {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 1vw;
    text-align: left;
    margin: 1vh 1vw;
}

section.voices .voice-info .customer {
    margin-top: auto;
    text-align: center;
    font-size: 1.1vw;
    font-weight: 500;
    background: #eee;
    padding: .7vh 0;
    letter-spacing: .2vw;
}

section.voices span.mb {
    margin-bottom: 1vh;
    display: block;
}

section.voices .btn {
    background: #fff;
    color: #111;
}

section.voices a.btn::after {
    border-top: 3px solid #111;
    border-right: 3px solid #111;
}

section.voices #voicesSwiper {
    --swiper-pagination-color: #fff;
    --swiper-pagination-bullet-inactive-color: #fff;
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

section.voices .voices-dots {
    display: none;
}

@media screen and (min-width: 743px) {
    section.voices #voicesSwiper .swiper-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    section.voices .voice-item.swiper-slide {
        width: 23.5% !important;
        margin-right: 0;
    }
}

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

    .voices {
        padding: 10vh 0 8vh;
        text-align: center;
    }

    section.voices .inner {
        width: 92%;
        margin: 0 auto;
    }

    section.voices #voicesSwiper.swiper {
        padding-bottom: 30px;
    }

    section.voices #voicesSwiper .swiper-wrapper {
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    section.voices .voice-item.swiper-slide {
        height: auto;
    }

    section.voices .voice-info h3 {
        font-size: 5vw;
        padding: .5vh 0;
    }

    section.voices .voice-info .comment {
        font-size: 4vw;
        margin: 2vh 3vw;
    }

    section.voices .voice-info .customer {
        font-size: 4vw;
        padding: 1.5vh 0;
    }

    section.voices .voices-dots {
        display: block;
        position: relative;
        bottom: 0px;
        left: 0;
        width: 100%;
    }

    section.voices img.logo {
        right: 0;
        width: 47%;
    }
}

/* 理由ブロック */

section.three-reasons {
    position: relative;
    overflow: hidden;
}

.reason-wrap {
    margin-top: 15vh;
}

.reason-block {
    margin-bottom: 15vh;
}

.reason-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4vw;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

.reason-content.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.reason-content .background {
    position: absolute;
    content: "";
    background: #eeeeee;
    width: 30%;
    height: 83vh;
    top: -16vh;
    right: -10vw;
    z-index: -1;
    -webkit-transform: skew(-11deg);
    -ms-transform: skew(-11deg);
    transform: skew(-11deg);
}

.reason-content.reverse .background {
    right: auto;
    left: -10vw;
}

.reason-content.reverse .background2 {
    position: absolute;
    content: "";
    background: #eeeeee;
    width: 22.25%;
    height: 83vh;
    top: -16vh;
    right: -10vw;
    z-index: -1;
    -webkit-transform: skew(-11deg);
    -ms-transform: skew(-11deg);
    transform: skew(-11deg);
}

.reason-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

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

.reason-number {
    position: absolute;
    top: -2vh;
    left: 1vw;
    width: 5.5vw;
    height: 10vh;
    background: #111;
    -webkit-transform: skew(-11deg);
    -ms-transform: skew(-11deg);
    transform: skew(-11deg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 2;
}

.reason-content.reverse .reason-number {
    left: 56%;
}

.reason-number span {
    color: #fff;
    font-size: 4vw;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    line-height: 1;
}

.reason-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: left;
}

.reason-text h3 {
    font-size: 2vw;
    margin-bottom: 3vh;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2vw;
}

.reason-text p {
    font-size: 1.3vw;
    line-height: 2;
}

.reason-img .reason-img-inner {
    opacity: 0;
    visibility: hidden;
}

.reason-img-inner.isPlay {
    visibility: visible;
    -webkit-animation-name: play;
    animation-name: play;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    position: relative;
    opacity: 1 !important;
}

.reason-img-inner.isPlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #111;
    -webkit-animation-name: maskOut;
    animation-name: maskOut;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
}

@-webkit-keyframes play {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes play {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes maskOut {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes maskOut {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

/* ボタン */
.btn-wrap {
    margin-top: 4vh;
}

section.voices .btn,
section.three-reasons .btn,
section.purchase-results .btn {
    font-weight: 700;
}

.btn {
    display: inline-block;
    width: 35%;
    padding: 1vh 0;
    border-radius: 50px;
    font-size: 1.4vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    letter-spacing: 0.3vw;
    background: #111;
    color: #fff;
    margin-top: 2vh;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    position: relative;
}

a.btn::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5vw;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: .5em;
    height: .5em;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.links-section a.btn::after,
.sub-links-section .btn::after {
    border-top: 3px solid #111;
    border-right: 3px solid #111;
}

.btn:hover {
    opacity: 0.7;
}


.flow {
    padding: 7vh 5vw 10vh;
    text-align: center;
}

.flow .h2-wrap {
    margin-bottom: 5vh;
}

.flow .h2-wrap h2 {
    font-size: 2.3vw;
    font-family: "Noto Serif JP", serif;
    font-weight: bold;
    letter-spacing: 0.5vw;
}

.flow .h2-wrap .en {
    font-size: 1.5vw;
    font-family: "Crimson Text", serif;
    font-weight: 600;
    letter-spacing: 0.2vw;
}

.flow-steps {
    max-width: 58%;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.flow-steps::after {
    position: absolute;
    height: 100%;
    width: 1.5vw;
    background: #BDBDBD;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: -1;
}

.step {
    margin-bottom: 4vh;
    border: 3px solid #111;
    padding: 2vh 0;
    position: relative;
    background: #fff;
}

.step:last-of-type {
    margin-bottom: 0;
}

.step-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1vh;
}

.step-header .number {
    width: 1.7em;
    height: 1.7em;
    background: #111;
    color: #fff;
    font-size: 2.5vw;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 1vw;
    position: absolute;
    top: -2vh;
    left: -2vw;
    font-family: "Roboto", sans-serif;
    line-height: 1;
    -webkit-transform: skew(353deg);
    -ms-transform: skew(353deg);
    transform: skew(353deg);
}

.step-header h3 {
    letter-spacing: .1vw;
    font-size: 1.6vw;
    font-weight: 600;
    margin-left: calc(3vw + 1vw);
    border-bottom: 2px solid #111;
    width: 86%;
    padding-bottom: 1vh;
}

.step p {
    font-size: 1.3vw;
    line-height: 1.8;
    margin-left: calc(3vw + 1vw);
    width: 90%;
}


/* ============================
LINKS: よくある質問・会社概要ボタン
============================ */
.links-section {
    background: #111;
    padding: 10vh 0;
    text-align: center;
}

.links-section .w-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.links-section .btn {
    display: inline-block;
    width: 33%;
    padding: 1.2vh 0;
    font-size: 1.5vw;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    background: #fff;
    color: #000;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 0;
    font-family: "Noto Sans JP", sans-serif;
}

/* ============================
CTA: LINE査定案内
============================ */

.cta-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cta-left {
    text-align: center;
    width: 50%;
}

.cta-left p.main-copy {
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 3vh;
}

.cta-left .green {
    color: #00cb00;
}

.cta-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.line-left-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60%;
}

.cta-info p.micro-copy {
    font-size: 1.2vw;
    margin-left: 8vw;
    letter-spacing: .1vw;
    color: #E91E63;
    font-weight: 600;
}

.line-left-info a {
    width: 100%;
}

.line-left-info img {
    width: 100%;
    height: auto;
    margin-bottom: 1vh;
}

.line-left-info p.note {
    font-size: 1.1vw;
    font-weight: 500;
    margin-left: 6vw;
}

.cta-qr {
    width: 19%;
}

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

.cta-right {
    width: 50%;
    height: 29vw;
    background-image: url(https://yokohamabayauto.com/wp-content/uploads/2025/09/cta-back-img.jpg);
    background-size: 136%;
    background-position: 100% 5%;
}


/*---------------------------------------------------------
  footer
  ---------------------------------------------------------*/

footer#footer {
    position: relative;
    background: #111;
}

.footer-inner {
    padding: 7vh 0 5vh;
}

.footer_logo img {
    width: 26%;
    margin: 0 auto;
}

footer#footer .tel {
    text-align: center;
    color: #fff;
    font-size: 1.3vw;
    margin: 2vh auto .5vh;
}

footer#footer p.time {
    text-align: center;
    color: #fff;
    font-size: 1.15vw;
    font-weight: 400;
}

.copyright p {
    color: #ffffff;
    text-align: center;
    font-size: .9vw;
    font-weight: 500;
    letter-spacing: .05vw;
    padding-left: 1vw;
}

a.topBtn {
    display: -ms-grid;
    display: grid;
    place-content: center;
    width: 3.5vw;
    height: 3.5vw;
    cursor: pointer;
    position: fixed;
    bottom: 1vw;
    right: 1vw;
    z-index: 9999;
    -webkit-transition: opacity .5s ease-out, visibility .5s ease-out;
    -o-transition: opacity .5s ease-out, visibility .5s ease-out;
    transition: opacity .5s ease-out, visibility .5s ease-out;
    border: 1.5px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a.topBtn.is-visible {
    opacity: 1;
    visibility: visible;
}

a.topBtn::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .7;
    background: #333;
}

a.topBtn::after {
    width: 1vw;
    height: 1vw;
    content: "";
    border: solid #fff;
    border-width: 2.5px 2.5px 0 0;
    margin-top: 0.7vw;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/*---------------------------------------------------------
下層ページ
---------------------------------------------------------*/

.page-mv {
    width: 100%;
    height: 38vh;
    position: relative;
    margin-top: 12vh;
}

.page-mv-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
}

.page-mv-left,
.page-mv-right {
    width: 50%;
    height: 100%;
    position: relative;
}

.page-mv-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #F5F5F5;
}

.page-mv-left img.logo {
    position: absolute;
    width: 31%;
    opacity: .2;
}

.page-mv-left::before {
    content: "";
}

.title-wrap {
    position: relative;
    text-align: center;
    z-index: 1;
}

.title-wrap .title,
.single section.page-mv .title-wrap .title {
    font-size: 2.5vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    letter-spacing: .5vw;
    line-height: unset;
}

.title-wrap .en {
    font-size: 1.5vw;
    font-family: "Crimson Text", serif;
    font-weight: 600;
    letter-spacing: .2vw;
}

.title-wrap .en:before,
.title-wrap .en:after {
    content: "－";
    margin: 0 8px;
    font-weight: 700;
    display: inline-block;
}



.page-mv-right {
    position: relative;
    background-image: url(https://yokohamabayauto.com/wp-content/uploads/2025/09/car-back-img.jpg);
    background-size: cover;
    background-position: 0 0;
}


.h1-wrap {
    text-align: center;
    position: relative;
    z-index: 1;
}

section.page-mv h1 {
    font-weight: 500;
    font-size: 2.3vw;
    letter-spacing: .5vw;
}

.page-id-3 section.page-mv h1,
.page-id-861 section.page-mv h1 {
    font-size: 5.5vw;
}

.h1-wrap p {
    font-size: 1.6vw;
    font-weight: 600;
    font-family: var(--font-en);
    color: #fff;
    letter-spacing: .2vw;
}

.h1-wrap img.logo {
    position: absolute;
    width: 4.5vw;
    top: -.5vw;
    left: 55%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    opacity: .6;
}

.breadcrumb {
    width: 90%;
    margin: 0 auto;
    font-size: .9vw;
    padding-top: 1vh;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}



/*---------------------------------------------------------
選ばれる理由
---------------------------------------------------------*/




.selected-reasons {
    padding: 7vh 5vw 17vh;
    text-align: center;
}

.selected-h2-wrap {
    margin-bottom: 5vh;
}

section.selected-reasons .h2-wrap h2 {
    font-size: 2.2vw;
    line-height: 1.7;
}


.selected-reason-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6vw;
    max-width: 80%;
    margin: 7vh auto 0;
}

.selected-reason-block {
    width: calc(50% - 3vw);
    background: #F5F5F5;
    border: 2px solid #111;
    position: relative;
    padding: 3vh 2vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.selected-reason-block:nth-child(even) {
    position: relative;
    top: 6vh;
}

.selected-reason-block::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #111 transparent transparent;
    border-width: 22vh 3vw 0 0;
    content: "";
    bottom: 0;
    position: absolute;
    right: -3vw;
}

.selected-reason-number {
    position: absolute;
    top: -1.2em;
    left: -1.2em;
    background: #111;
    color: #fff;
    width: 3.5vw;
    height: 6.5vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "Roboto", sans-serif;
    font-size: 1.5em;
    -webkit-transform: skew(353deg);
    -ms-transform: skew(353deg);
    transform: skew(353deg);
}

.selected-reason-number span {
    font-weight: 700;
    font-size: 2.5vw;
}

.selected-reason-text h3 {
    font-size: 1.5vw;
    font-weight: 600;
    margin-bottom: 1.5vh;
    text-align: center;
    letter-spacing: .2vw;
    line-height: 1.6;
    border-bottom: 2px solid #111;
    padding-bottom: 1.5vh;
}

.selected-reason-text p {
    font-size: 1.2vw;
    text-align: left;
    margin-bottom: 1vh;
}

.sub-links-section {
    background: #111;
    padding: 10vh 0;
    text-align: center;
}

.sub-links-section .sub-w-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sub-links-section .btn {
    display: inline-block;
    width: 22%;
    padding: 1.2vh 0;
    font-size: 1.3vw;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin-top: 0;
    font-family: "Noto Sans JP", sans-serif;
}

/*---------------------------------------------------------
買取実績　一覧ページ
---------------------------------------------------------*/
.result-archive {
    padding: 8vh 0 10vh;
    max-width: 80%;
    margin: 0 auto;
}

.page-title {
    font-size: 2vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5vh;
    letter-spacing: .3vw;
    border-bottom: 2px solid #111;
    display: inline-block;
    padding-bottom: .5vh;
}

.result-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 7vh 3vw;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.result-card {
    width: calc(33.333% - 2vw);
    background: #fff;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
    transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
    -o-transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}

.result-card a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.car-thumb img {
    width: 100%;
    height: auto;
    display: block;
	    aspect-ratio: 4 / 3;
    object-fit: cover;
}


.car-summary-title {
    font-size: 1.3vw;
    font-weight: 700;
    text-align: center;
    letter-spacing: .1vw;
    line-height: 1.6;
    background: #111;
    color: #fff;
    padding: 1vh 0;
}

.car-summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.2vw;
}

.car-summary-table th,
.car-summary-table td {
    padding: 0.5em 0.8em;
    border-bottom: 1px solid #ddd;
}

.car-summary-table th {
    background: #f5f5f5;
    width: 40%;
    font-weight: 600;
}

.post-type-archive-result span.number-font {
    margin-right: .2vw;
    font-size: 1.4vw;
}

.detail-link {
    text-align: center;
}

.detail-link a {
    display: inline-block;
    padding: .5vh 0;
    color: #fff;
    background: #607D8B;
    text-decoration: none;
    font-size: 1.1vw;
    letter-spacing: .1vw;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    -webkit-transition: background .3s, -webkit-transform .3s;
    transition: background .3s, -webkit-transform .3s;
    -o-transition: background .3s, transform .3s;
    transition: background .3s, transform .3s;
    transition: background .3s, transform .3s, -webkit-transform .3s;
}

td.purchase_price {
    letter-spacing: .1vw;
}


/* ページネーション */

.pagination:not(:empty) {
    margin: 5vh 0 0;
    text-align: center;
}

.pagination ul {
    font-size: 0;
}

.pagination ul li {
    display: inline-block;
    margin-right: .5vw;
}

.pagination ul li:last-child {
    border: 0;
}

.pagination ul li a,
.pagination .current {
    display: block;
    padding: .5vh 1vw;
    border: 0.15vw solid #111;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.3vw;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
}

i.fas.fa-angle-right,
i.fas.fa-angle-left {
    color: #111;
}

.pagination ul li .prev,
.pagination ul li .next {
    border: 0;
}

.pagination ul li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.pagination ul li a:hover {
    opacity: .6;
}

.pagination .current {
    color: #fff;
    background-color: #111;
}

/*---------------------------------------------------------
買取実績　投稿ページ
---------------------------------------------------------*/
.result-detail {
    max-width: 55%;
    margin: 10vh auto;
    background: #fff;
}

.result-detail .entry-title {
    font-size: 2vw;
    font-weight: 600;
    margin-bottom: 3vh;
    border-left: 0.3vw solid #111;
    padding-left: 1.5vw;
}

.car-image {
    position: relative;
    width: 100%;
}

.result-detail .car-image img {
    max-width: 100%;
    height: auto;
}



.car-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3vh;
    font-size: 1.4vw;
    border: 1.5px solid #111;
}

.car-info-table th,
.car-info-table td {
    padding: 2vh 2vw;
    text-align: left;
    letter-spacing: .1vw;
}

.car-info-table th {
    font-weight: 600;
    width: 16vw;
    background: #111;
    color: #fff;
    border-bottom: 1.5px solid #fff;
    letter-spacing: .1vw;
}

.car-info-table td {
    border-bottom: 1.5px solid #111;
}

.car-info-table th.last {
    border-bottom: 1.5px solid #111;
}

.single-result span.number-font {
    font-size: 1.6vw;
    margin-right: .2vw;
}

.page-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 5vh;
    font-size: 3.5vw;
}

.page-nav a {
    text-decoration: none;
    color: #007bcd;
}

.back-to-archive {
    margin-top: 5vh;
    text-align: center;
}

.back-to-archive a {
    font-size: 1.35vw;
    text-decoration: none;
    background: #111;
    color: #fff;
    width: 50%;
    display: block;
    margin: 0 auto;
    padding: 1vh;
    letter-spacing: .1vw;
}

/*---------------------------------------------------------
お客様の声　一覧ページ
---------------------------------------------------------*/
.voice-archive {
    padding: 8vh 0 10vh;
    max-width: 80%;
    margin: 0 auto;
}

.voice-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 7vh 3vw;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.voice-card {
    width: calc(33.333% - 2vw);
    background: #fff;
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
    -webkit-transition: -webkit-transform .3s, -webkit-box-shadow .3s;
    transition: -webkit-transform .3s, -webkit-box-shadow .3s;
    -o-transition: transform .3s, box-shadow .3s;
    transition: transform .3s, box-shadow .3s;
    transition: transform .3s, box-shadow .3s, -webkit-transform .3s, -webkit-box-shadow .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.voice-card a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    color: inherit;
    text-decoration: none;
}

.car-thumb {
    width: 100%;
}

.car-thumb img {
    width: 100%;
    display: block;
	aspect-ratio: 4 / 3;
    object-fit: cover;
}

.car-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.car-title {
    font-size: 1.3vw;
    font-weight: 700;
    text-align: center;
    letter-spacing: .1vw;
    line-height: 1.6;
    background: #111;
    color: #fff;
    padding: 1vh 0;
}

.voice-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.car-voice {
    line-height: 1.6;
    text-align: justify;
    margin: 1vh 1vw;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 1.1vw;
}

.car-meta {
    margin-top: auto;
    text-align: center;
    font-size: 1.1vw;
    background: #eee;
    padding: .7vh 0;
}

/*---------------------------------------------------------
お客様の声：詳細ページ
---------------------------------------------------------*/
.voice-detail {
    max-width: 80%;
    margin: 0 auto;
    padding: 8vh 0;
}

.voice-entry-title {
    font-size: 2.2vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: .2vw;
    margin-bottom: 4vh;
    border-bottom: 2px solid #111;
    display: inline-block;
    padding-bottom: .6vh;
}

.voice-image {
    max-width: 880px;
    margin: 0 auto 4vh;
    border: 1px solid #ddd;
    background: #fff;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
}

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

.voice-info-block {
    max-width: 880px;
    margin: 0 auto 3vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2vw;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    font-family: "Noto Sans JP", sans-serif;
}

.voice-maker {
    font-weight: 700;
    font-size: 1.3vw;
    background: #111;
    color: #fff;
    padding: .6vh 1vw;
    letter-spacing: .05vw;
}

.voice-name-area {
    font-size: 1vw;
    color: #666;
    text-align: right;
}

.voice-text {
    max-width: 880px;
    margin: 0 auto 6vh;
    background: #fff;
    border: 1px solid #ddd;
    padding: 2.5vh 2vw;
    font-size: 1.15vw;
    line-height: 1.9;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}

.single .car-info-table td p {
    font-size: unset;
    font-weight: unset;
    margin-top: unset;
    line-height: 1.8;
}

/* 前後ナビ・一覧に戻る */
.voice-page-nav {
    max-width: 880px;
    margin: 5vh auto 2vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2vw;
}

.voice-page-nav a {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px solid #111;
    text-decoration: none;
    color: #111;
    padding: 1.2vh 1vw;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
}

.voice-page-nav a:hover {
    opacity: .7;
}

.voice-page-nav .prev-link {
    text-align: left;
}

.voice-page-nav .next-link {
    text-align: right;
}

.voice-page-nav a span {
    display: inline-block;
    margin-top: .5vh;
    font-weight: 600;
}

.voice-back-to-archive {
    max-width: 880px;
    margin: 2vh auto 0;
    text-align: center;
}

.voice-back-to-archive a {
    display: inline-block;
    margin-top: 1vh;
    color: #111;
    border-bottom: 1px solid #111;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    padding-bottom: .1em;
}

.voice-back-to-archive a:hover {
    opacity: .7;
}


/*---------------------------------------------------------
よくある質問
---------------------------------------------------------*/


.faq {
    padding: 10vh 0;
    background: #fff;
    width: 60%;
    margin: 0 auto;
}

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

.faq-title {
    font-size: 2.5vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    margin-bottom: 6vh;
    text-align: center;
    letter-spacing: 0.3vw;
}

.faq-list .faq-item {
    margin-bottom: 4vh;
}

.faq-list .faq-item:last-of-type {
    margin-bottom: 0;
}

.faq-list dt {
    font-weight: 600;
    font-size: 1.3vw;
    margin-bottom: 1vh;
    background: #111;
    color: #fff;
    padding: 1.5vh 1.5vw;
    letter-spacing: .1vw;
}

.faq-list dd {
    font-size: 1.2vw;
    line-height: 1.8;
    color: #333;
    padding: 1vh 1vw;
}


/*---------------------------------------------------------
会社概要
---------------------------------------------------------*/
.company-message {
    padding: 10vh 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
}

.company-message-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5%;
    max-width: 70%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.company-message-left {
    width: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.company-message-left img {
    width: 95%;
    height: auto;
}

.company-message-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
}

.page-id-55 .h2-wrap {
    margin-bottom: 2vh;
}

.company-message-right h2,
.company-info h2 {
    font-size: 2.5vw;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: .5vw;
    display: inline-block;
    width: 100%;
    line-height: 1.6;
}

.company-message-right p {
    font-size: 1.2vw;
    line-height: 1.8;
    margin-bottom: 2vh;
}

.company-message-right p.signature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    gap: 1em;
    margin-top: 4vh;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    text-align: right;
    line-height: 1.5;
}

.signature .name {
    height: 2.8vw;
    width: auto;
    display: inline-block;
    position: relative;
    top: .1vw;
}

.company-parallax {
    position: relative;
    height: 55vh;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.company-parallax .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://yokohamabayauto.com/wp-content/uploads/2025/09/yokohama.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    z-index: 2;
}

.company-parallax::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-right: 100vw solid transparent;
    border-top: 3vw solid #fff;
    z-index: 3;
}

.company-parallax::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 100vw solid transparent;
    border-bottom: 3vw solid #fff;
    z-index: 3;
}

.company-info {
    padding: 5vh 5vw 10vh;
    text-align: center;
}

.company-info-inner {
    max-width: 65%;
    margin: 0 auto;
}


.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5vh;
}

.company-table th,
.company-table td {
    border: 1px solid #ccc;
    padding: 2vh 1vw;
    text-align: left;
    font-size: 1.2vw;
}

.company-table th {
    background: #eee;
    width: 25%;
    text-align: center;
    font-weight: 600;
}

/*---------------------------------------------------------
ブログ
---------------------------------------------------------*/

.page.container.blog .inner {
    max-width: 72%;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7vh 0 10vh;
}

section.blog_wrap {
    width: calc(100% - 30%);
    padding-right: 4vw;
}

article.article-list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: 3vh;
    padding: 3vh 2vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 17%);
    box-shadow: 0px 5px 7px 2px rgb(120 120 120 / 22%);
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border: 1px solid #E0E0E0;
}

article.article-list .img-wrap {
    width: 37%;
    height: auto;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

article.article-list .text {
    width: 60%;
    position: relative;
}

article.article-list .text h2 {
    font-size: 1.2vw;
    margin-bottom: .2em;
    line-height: 1.4;
    font-weight: 600;
}

article.article-list a {
    text-decoration: none;
    width: 100%;
}

article.article-list a img {
    width: 100%;
}

.cat-day {
    position: relative;
}

ul.post-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

ul.post-categories a {
    background: #033059;
    display: inline;
    color: #fff;
    padding: .2em 1em;
    margin-right: .5em;
    font-size: .8vw;
}

ul.post-categories li {
    list-style: none;
}

article.article-list p.article-date {
    position: absolute;
    top: 0;
    right: 0;
}

article.article-list .archive-text {
    margin-top: 1vh;
    line-height: 1.6;
}


/*---------------------------------------------------------
投稿ページ
---------------------------------------------------------*/

span.cat-data a {
    background: #033059;
    display: inline;
    color: #fff;
    padding: .2em 1em;
    margin-right: .5em;
    font-size: .8vw;
}

.single h1 {
    font-size: 1.6vw;
    font-weight: 600;
    letter-spacing: .02vw;
    line-height: 1.6;
}

.article-date {
    text-align: right;
    margin-bottom: 3vh;
    font-size: 1vw;
}

span.st-mymarker-s {
    background: -o-linear-gradient(transparent 70%, #d4dff4 0%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #d4dff4));
    background: linear-gradient(transparent 70%, #d4dff4 0%);
    font-weight: 700;
}

.fixed-page h2,
.single article h2 {
    font-size: 1.6vw;
    font-weight: 600;
    letter-spacing: .04vw;
    margin: 5vh auto 3vh;
    padding: 2vh 1vw;
    border-left: .25vw solid #033059;
    line-height: 1;
    background-color: #f7f7f7;
}

.fixed-page h3,
.single article h3 {
    font-size: 1.5vw;
    font-weight: 600;
    letter-spacing: .04vw;
    margin: 3vh auto 3vh;
    padding: 1vh .5vw;
    border-bottom: 2px solid #033059;
}

.fixed-page h4,
.single article .blog-main h4 {
    font-size: 1.4vw;
    font-weight: 600;
    letter-spacing: .04vw;
    margin: 3vh auto 3vh;
    padding: 1vh 1.2vw 0;
    position: relative;
}

.fixed-page h4::before,
.single article h4::before {
    content: "";
    display: block;
    position: absolute;
    top: 1.3vw;
    left: 0;
    width: .7vw;
    height: .7vw;
    background-color: var(--color-theme);
}

.fixed-page h5,
.single article h5 {
    font-size: 1.3vw;
    font-weight: 600;
    letter-spacing: .04vw;
    margin: 3vh auto 3vh;
    padding: 1vh 0 0;
    position: relative;
}

.fixed-page .inner p,
.single article p {
    font-size: 1.2vw;
    font-weight: 400;
    margin-top: 3vh;
    line-height: 2;
}

.fixed-page .inner ul,
.single .blog-main ul,
.fixed-page .inner ol,
.single .blog-main ol {
    margin: 3vh auto 5vh;
    padding: 3vh 1vw 3vh 2.5vw;
    background-color: #f7f7f7;

}

.fixed-page .inner ul ul,
.single .blog-main ul ul {
    margin-top: unset;
    margin-bottom: .7vw;
    margin-left: 0;
}

.fixed-page .inner ul li,
.single .blog-main ul li {
    list-style-type: disc;
    font-size: 1.2vw;
    margin-bottom: .7vh;
}

.fixed-page .inner ol li,
.single .blog-main ol li {
    font-size: 1.2vw;
    margin-bottom: .7vh;
}

.fixed-page .inner ul ul li,
.single .blog-main ul ul li {
    list-style: none;
}

.single article p.box-title {
    position: relative;
    top: 5vh;
    background: #033059;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 2vw;
    letter-spacing: .1vw;
    margin-top: 0;
}

.fixed-page figure,
.single article figure {
    margin: 3vh 0;
}

.single article p.article-date {
    font-size: 1vw;
    margin-top: 0;
    text-align: right;
}

.page_sns {
    width: 48%;
    margin: 0 auto;
}


.single section.page-mv p.title {
    font-size: 6vw;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    line-height: .9;
    position: relative;
    z-index: 1;
    text-align: center;
}

.single .contents {
    width: 60%;
    margin: 10vh auto;
}

section.single-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.page.single .inner {
    max-width: 72%;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3vh 0;
}

section.blog_wrap {
    width: calc(100% - 30%);
    padding-right: 3vw;
}

article.article-content {
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0.5em;
}

article.article-content p.cat-data a {
    background-image: -o-linear-gradient(43deg, #37c1ff, #30bdff);
    background-image: linear-gradient(47deg, #37c1ff, #30bdff);
    display: inline;
    color: #fff;
    padding: 0.5vh 1em;
    border-radius: 50px;
    margin-right: 0.5em;
    font-size: .8vw;
    text-decoration: none;
}

.article-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

section.blog_wrap table {
    margin: 3vh auto 5vh;
}

section.blog_wrap td,
section.blog_wrap th {
    border: 1.5px solid #033059 !important;
    padding: 1vh 1vw;
    font-size: 1.2vw;
}

.article-tag ul {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0 !Important;
}

.single .post p.tag {
    background: #333;
    color: #fff;
    text-align: center;
    width: 10%;
    border-radius: 4px;
    font-size: .9vw !important;
    padding: 0 0;
    margin-bottom: 0;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

.single .post .article-tag ul {
    margin-bottom: 0;
    margin-left: 0;
}

.single article .article-tag ul li {
    list-style-type: none;
    list-style: none;
    padding-right: 1em;
    font-size: 1.2vw;
}

.article-tag a {
    text-decoration: none;
    color: var(--color-main);
    font-size: 1.2vw;
}

.article-tag a::before {
    background: no-repeat;
    width: 1.2vw;
    height: 2.2vh;
    background-image: url(https://hp6.veronica9.com/wp-content/uploads/2025/01/tag-n.svg);
    content: '';
    margin-right: .3vw;
    display: inline-block;
    top: .3vh;
    position: relative;
}

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 2em;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

blockquote {
    position: relative;
    border: 1px solid #607D8B;
    border-radius: .5vw;
    padding: 5vh 2vh 1vh;
    background: #f7f7f7;
    margin: 5vh auto;
}

blockquote:before {
    margin-right: 1em;
    display: block;
    position: absolute;
    width: 1.5vw;
    height: 1.5vw;
    background-image: url("https://web6.veronica9.com/wp-content/uploads/2024/05/block-quote.svg");
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    left: 1.5vh;
    top: 1.5vh;
}

blockquote:after {
    margin-right: 1em;
    display: block;
    position: absolute;
    width: 1.5vw;
    height: 1.5vw;
    background-image: url(https://web6.veronica9.com/wp-content/uploads/2024/05/block-quote.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    right: 0;
    bottom: .5vh;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

blockquote cite {
    display: block;
    font-size: 1vw;
    text-align: right;
    color: #9e9e9e;
    padding-right: 5vh;
}

.single article blockquote p {
    margin-top: 0;
}

blockquote a {
    display: block;
    text-align: right;
    margin-right: 2vw;
}

#ez-toc-container {
    border-width: 2px !important;
    border-radius: 0;
    margin-top: 5vh;
}

#ez-toc-container .ez-toc-toggle:checked+label {
    width: 100%;
}

div#ez-toc-container .ez-toc-title {
    font-size: 1.2vw;
    float: left;
}

#ez-toc-container a:visited {
    color: var(--color-main);
}

#ez-toc-container label {
    float: left !important;
    margin-left: 10px;
}

ul.ez-toc-list.ez-toc-list-level-1 {
    margin-top: 5vh !important;
}

#ez-toc-container ul.ez-toc-list a {
    display: block;
    border-bottom: 1px solid #eee;
    padding: .5vh;
    font-size: 1.2vw;
}

.ez-toc-title-container {
    display: block;
    width: 100%;
}

#ez-toc-container p.ez-toc-title {
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.ez-toc-title-toggle {
    position: relative;
    top: 0;
    right: 0;
}

.blog-profile {
    border: 2px solid #033059;
    position: relative;
    margin-top: 7vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2vh 1vw 2vh;
}

.single article p.writhing {
    position: absolute;
    top: -2vh;
    margin-top: 0;
    background: #033059;
    color: #fff;
    width: 20%;
    text-align: center;
    letter-spacing: .15vw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.blog-profile .flex-box.left {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-profile .flex-box.left img {
    width: 55%;
    border-radius: 50%;
    background: #f7f7f7;
}

.single article .blog-profile p.name {
    font-size: 1.3vw;
    font-weight: bold;
    letter-spacing: .1vw;
    color: var(--color-theme);
}

.single article .blog-profile .text-wrap p {
    font-size: 1.1vw;
    margin-top: 1vh;
    line-height: 1.8;
    font-weight: 500;
}

nav.page-nav {
    margin: 7vh auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page-nav:has(.next-link):not(:has(.prev-link)) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.page-nav .prev-link {
    width: 49%;
    text-align: left;
    text-decoration: none;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #111;
    border: 2px solid #111;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    font-size: .85vw;
    line-height: 1.5;
    padding: 1vh .7vw;
    font-weight: 600;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}

.page-nav .next-link {
    width: 49%;
    text-align: right;
    text-decoration: none;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #111;
    border: 2px solid #111;
    -webkit-transition: .4s ease-in-out;
    -o-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    font-size: .85vw;
    line-height: 1.5;
    padding: 1vh .7vw;
    font-weight: 600;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
}

.page-nav .prev-link::before {
    content: "Before";
    position: absolute;
    top: -.85em;
    left: 0;
    line-height: 1;
    color: #111;
    font-size: 1.3vw;
    font-family: "Roboto", sans-serif;
    letter-spacing: .1vw;
    font-weight: 600;
}

.page-nav .next-link:before {
    content: "Next";
    position: absolute;
    top: -.85em;
    right: 0;
    line-height: 1;
    color: #111;
    font-size: 1.3vw;
    font-family: "Roboto", sans-serif;
    letter-spacing: .1vw;
    font-weight: 600;
}

.page-nav span {
    font-size: 1.1vw;
}

nav.page-nav a:hover {
    background: #F5F5F5;
}

.share {
    margin-bottom: 7vh;
    margin-top: 3vh;
    position: relative;
    z-index: 1;
}

.home .share,
.page-id-711 .share {
    width: 55%;
    margin: 0 auto;
}

.single article .share p {
    text-align: center;
    font-size: 1.5vw;
    margin-bottom: 0;
    letter-spacing: .15vw;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 600;
    color: var(--color-theme);
    font-family: var(--font-en);
}

.single article .share ul {
    width: 40%;
    margin: 1vh auto 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-left: auto;
}

.share li {
    width: 31%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share li a,
.share li button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 2.5vw;
    width: 2.5vw;
    border-radius: 50px;
}

.share li a {
    border-radius: 50px;
}

.share li button {
    border-radius: .1vw;
    width: 3.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share li button img {
    width: 66%;
}

.share li a:visited {
    opacity: .6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.facebook_share a {
    background-color: #1877f1;
    color: #ffffff;
}

li.facebook_share a img {
    width: 32%;
}

.line_share a {
    background-color: #1dcd00;
    color: #ffffff;
}

li.line_share a img {
    width: 63%;
}

.tweet_share a {
    background-color: #444;
    color: #fff;
}

li.tweet_share a img {
    width: 50%;
}

.share li a:hover {
    opacity: 0.6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

button.share-url {
    background-color: var(--color-theme);
    color: #ffffff;
}

.url-copied {
    display: none;
    position: absolute;
    bottom: -6vh;
    left: 67%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.url-copied span {
    background: #033059;
    color: #fff;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: .8vw;
    white-space: nowrap;
}

@media(max-width: 599px) {
    .share li {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .share li i {
        font-size: 1.3em;
        padding-top: 3px;
    }

    .share li a {
        font-size: .7vw;
    }

    .share li a svg {
        font-size: .95vw;
    }

    .share ul {
        width: 46%;
        margin: 3vw auto 0;
    }

    .share li a {
        height: 9.8vw;
        width: 9.8vw;
    }
}

.sidebar {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    width: 30%;
}

div#block-22 h2,
aside#sidebar h4 {
    font-size: 1.2vw;
    border-bottom: 2.5px solid #033059;
    margin-bottom: 2vh;
    padding-bottom: .5vh;
    font-weight: 600;
    letter-spacing: .1vw;
    color: var(--color-theme);
}

div#block-22 li a:first-of-type,
div#execphp-3 li a.np_img {
    width: 40%;
}

ul.wpp-list a.wpp-post-title {
    width: 57%;
    font-size: 1vw;
}

ul.wpp-list a img {
    width: 100%;
}

.wpp-thumbnail {
    margin: 0 !important;
}

.popular-posts.wpp-ajax {
    counter-reset: rank_number;
}

div#execphp-3 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sidebar p.blog_title {
    line-height: 1.4;
    width: 57%;
}

.sidebar p.blog_title a {
    font-size: 1vw;
    font-weight: 600;
}

div#block-22 li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.5vh;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

div#block-22 li::after {
    counter-increment: rank_number;
    content: counter(rank_number);
    display: block;
    position: absolute;
    left: 0;
    width: 2vw;
    height: 1.5vw;
    background: rgb(3 48 89 / 80%);
    color: #fff;
    font-size: .9vw;
    text-align: center;
}

ul.wpp-list li,
div#execphp-3 li {
    margin-bottom: 1em;
}

ul.wpp-list li:last-of-type,
div#execphp-3 li:last-of-type {
    margin-bottom: unset;
}

a.wpp-post-title,
.sidebar p.blog_title a {
    line-height: 1.4;
    font-weight: 600;
}

.sidebar p.blog_title {
    width: 57%;
}

ul.wpp-list li a:hover,
.Widget_newpost li a:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

aside#sidebar a {
    text-decoration: none;
}

aside#sidebar .widget_block {
    margin-bottom: 5vh;
}

a.np-title,
div#categories-3 a,
div#archives-3 a {
    color: var(--color-theme);
}

div#categories-3,
div#archives-3 {
    margin-top: 5vh;
}

div#categories-3 ul,
div#archives-3 ul {
    padding-left: 1em;
    list-style: none;
}

div#categories-3 li,
div#archives-3 li {
    padding: .5vh 0;
    font-size: 1.1vw;
}

div#categories-3 li::before,
div#archives-3 li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #033059;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}


/*---------------------------------------------------------
アーカイブ
---------------------------------------------------------*/

.archive.date section.blog_wrap h1,
.archive.category section.blog_wrap h1,
.archive.tag section.blog_wrap h1 {
    font-size: 1.5vw;
    margin-bottom: 1vh;
    color: var(--color-theme);
    letter-spacing: .05vw;
    font-weight: 600;
}


/*---------------------------------------------------------
お問い合わせ
---------------------------------------------------------*/

.table-res-form {
    width: 100%;
    margin-top: 5vh;
}


.table-res-form tr.td_last {
    border: unset;
}

.table-res-form th,
.table-res-form td {
    padding: 3vh 3vh 3vh 0;
}

.table-res-form th {
    font-size: 1.3vw;
    width: 27%;
    text-align: right;
    vertical-align: top;
    font-weight: 500;
}

.table-res-form th span.parentheses {
    font-size: 1vw;
    display: block;
    line-height: 1.5;
    margin-top: 1vh;
}

.table-res-form td {
    vertical-align: middle;
}

.table-res-form .requied {
    font-size: .8em;
    color: #fff;
    display: inline-block;
    padding: .2vh .3vw;
    background: var(--color-theme);
    position: relative;
    top: -1px;
    margin-left: .2vw;
}

.wpcf7 input,
.wpcf7 textarea {
    border: 1px solid #033059 !important;
}

.wpcf7 .wpcf7-submit {
    width: 50% !important;
}

span.wpcf7-form-control.wpcf7-checkbox {
    display: -ms-grid;
    display: grid;
    text-align: left;
    font-size: 1.2vw;
}

span.wpcf7-list-item-label {
    line-height: 1.8;
}

span.wpcf7-list-item.last.has-free-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

span.wpcf7-list-item.last.has-free-text label {
    width: 12%;
}

span.wpcf7-list-item.last.has-free-text input.wpcf7-free-text {
    width: 30%;
    padding: 0 0.5em;
    height: 25px;
    margin-top: 4px;
}

.table-res-form input[type="text"],
input[type="email"],
textarea,
.wpcf7 input[type="tel"],
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required,
select.wpcf7-form-control.wpcf7-select,
.wpcf7-text {
    padding: 0.2em 0.5em;
    height: 2.5vw;
    font-size: 1.2vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    width: 100%;
}

.table-res-form input[type="text"]:focus,
textarea:focus {
    background: #FFF;
    -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}

.wpcf7 input[type="checkbox"] {
    left: -.2vw;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1.1vw;
    height: 1.1vw;
    border-radius: 0;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    top: -.2vh;
    position: relative;
}

.wpcf7 input[type="checkbox"]:checked {
    background-color: var(--color-theme);
    border-color: var(--color-theme);
    position: relative;
}

.wpcf7 input[type=checkbox]:checked:after {
    content: "";
    display: block;
    width: 1vw;
    height: .5vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    left: 1px;
    top: 1px;
    z-index: 1;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    height: 16em;
    padding: 0.5em;
}


.table-res-form input[type=submit] {
    position: relative;
    padding: .5vh 0;
    color: #fff;
    background: var(--color-theme);
    font-weight: 500;
    font-size: 1.4vw;
    letter-spacing: .2em;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border: 1.5px solid #fff !important;
    border-radius: 0;
}

.table-res-form input[type=submit]:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1.5px solid #033059 !important;
    background: #ffffff;
    color: var(--color-theme);
}

span.wpcf7-spinner {
    display: none;
}

tr.td_last {
    text-align: center;
}

tr.td_last td {
    padding: 1.5em 0;
}

.home tr.td_last td {
    padding: 0;
}

span.wpcf7-not-valid-tip {
    color: #E91E63;
    text-align: center;
    display: block;
    font-size: 1vw;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2vh auto 2vh !important;
    padding: .5em !important;
}

form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #e91e63 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #E91E63 !important;
}

.wpcf7-response-output {
    text-align: center;
    color: #e91e63;
    margin-top: 2em;
    padding: 0.5em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

select {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    border: .5px solid #333 !important;
}

.recaptcha {
    text-align: center;
    margin-bottom: 1em;
}

.recaptcha a {
    text-decoration: none;
    color: var(--color-main);
}

.grecaptcha-badge {
    visibility: hidden;
}

.screen-reader-response {
    display: none;
}

p.pp {
    text-align: center;
}

p.pp a {
    color: var(--color-main);
    text-decoration: none;
    font-size: 1.2vw;
}

p.pp a:hover {
    opacity: 0.6;
}

.contact_text_bottom {
    text-align: center;
    margin-top: 3vh;
    font-size: 1vw;
}

/*---------------------------------------------------------
固定ページ
---------------------------------------------------------*/
.fixed-page {
    margin-top: 12vh;
}

.fixed-page .inner {
    width: 55%;
    margin: 0 auto;
    padding: 7vh 0 10vh;
}

.fixed-page h1 {
    font-size: 1.6vw;
    font-weight: 600;
    letter-spacing: .02vw;
    line-height: 1.8;
}

.fixed-page a {
    text-decoration: underline;
    color: var(--color-theme);
}

.breadcrumb a {
    text-decoration: none;
}

/*---------------------------------------------------------
404 ページ
---------------------------------------------------------*/
.error404 main {
    text-align: center;
    padding: 7vh 0 15vh;
}

.error404 main h2 {
    font-size: 2vw;
    margin-bottom: 3vh;
    color: var(--color-theme);
}

.error404 main p {
    font-size: 1.3vw;
}

.error404 main div {
    margin-top: 5vh;
}

.error404 main div a {
    width: 20%;
    padding: .7vh 0;
    display: block;
    text-align: center;
    margin: 0 auto;
    background: #111;
    color: #fff;
    font-size: 1.2vw;
    letter-spacing: .05vw;
    font-weight: 500;
    position: relative;
}

/*---------------------------------------------------------
  スマホ
  ---------------------------------------------------------*/

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


    body {
        line-height: 1.7;
    }

    .topBtn,
    .banner-right,
    div#side_btn,
    a.topBtn,
    .copyright,
    header nav ul li a::after,
    .page-mv-right,
    .company-message-left {
        display: none !important;
    }

    br.sp_block,
    .sp_block {
        display: block !important;
    }

    .sp_inlineblock {
        display: inline-block !important;
    }

    .pc_block,
    .pc_inlineblock,
    span.pc_inlineblock {
        display: none !important;
    }

    header {
        position: absolute;
    }

    #splash-logo img {
        width: 45%;
    }

    .site-title-wrap,
    .page-mv-left {
        width: 100%;
    }

    .site-title-wrap img {
        width: 68%;
        margin: 0 auto;
    }

    section.mv {
        height: 88svh;
        background-image: url(https://yokohamabayauto.com/wp-content/uploads/2025/09/mv-img-sp.jpg);
        background-position: 0 0;
    }

    .mv-copy {
        outline: .7px solid #111;
        outline-offset: -1.25vw;
        width: 92%;
        background: rgb(255 255 255 / 89%);
    }

    .mv-copy h1.main-copy {
        width: 95%;
    }

    .mv-copy p.sub-copy {
        margin-top: 2.5vh;
        padding: .5vh 0;
        font-size: 4vw;
    }

    .scroll a::after {
        width: .7px;
    }

    @-webkit-keyframes scroll {
        0% {
            height: 0;
        }

        100% {
            height: 20px;
        }
    }

    @keyframes scroll {
        0% {
            height: 0;
        }

        100% {
            height: 20px;
        }
    }

    .line-banner {
        padding: 0vh 0 5vh;
    }

    .any-car {
        padding: 6vh 0;
    }

    .any-car-inner {
        max-width: 92%;
        margin: 0 auto;
        gap: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .any-car-logo {
        -webkit-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
    }

    .purchase-results {
        padding: 4vh 0 8vh;
        width: 92%;
        margin: 0 auto;
    }


    .results-carousel .results-list {
        -webkit-box-pack: initial;
        -ms-flex-pack: initial;
        justify-content: initial;
        -webkit-box-align: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }

    .results-carousel .result-item {
        width: 100% !important;
        max-width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
    }

    .results-carousel .result-item img {
        width: 100%;
        height: auto;
        display: block;
    }

    #resultsSwiper .results-dots {
        display: block;
        position: relative;
        margin-top: 12px;
        text-align: center;
    }

    #resultsSwiper {
        --swiper-pagination-color: #111;
    }


    .btn {
        margin-top: 0;
        display: inline-block;
        width: 100%;
        padding: .7vh 0;
        font-size: 4vw;
        font-weight: 600;
        letter-spacing: .5vw;
    }

    a.btn::after {
        right: 3.5vw;
        width: .5em;
        height: .5em;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    section.voices a.btn::after,
    .links-section a.btn::after,
    .sub-links-section .btn::after {
        border-top: 1.5px solid #111;
        border-right: 1.5px solid #111;
    }

    .three-reasons {
        padding: 0 0 5vh;
    }

    .swiper {
        padding-bottom: 0 !important;
    }

    .btn-wrap {
        margin-top: 2vh;
    }

    .reason-content {
        gap: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .reason-number {
        left: 4vw;
        width: 4em;
        height: 4em;
    }

    .reason-img {
        -webkit-box-flex: 100%;
        -ms-flex: 100%;
        flex: 100%;
    }

    .reason-content.reverse .reason-number {
        left: 4vw;
    }

    .reason-text {
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        width: 92%;
        margin: 3vh auto 0;
    }

    .reason-content .background {
        width: 44%;
        height: 110vh;
        top: -16vh;
        right: -26vw;
    }

    .reason-content.reverse .background,
    .reason-content.reverse .background2 {
        display: none;
    }

    .reason-block {
        margin-bottom: 7vh;
    }


    .flow {
        padding: 5vh 5vw 6vh;
    }

    .links-section {
        padding: 5vh 0;
    }

    .links-section .w-btn-wrap,
    .sub-links-section .sub-w-btn-wrap {
        width: 92%;
        margin: 0 auto;
        gap: 0;
    }

    .cta-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cta-qr img,
    .cta-right {
        display: none;
    }

    section.cta-section {
        background-image: url(https://yokohamabayauto.com/wp-content/uploads/2025/09/cta-back-img.jpg);
        background-size: 230%;
        height: 45vh;
        background-position: 62% 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .cta-left {
        background: #ffffffe8;
        border-radius: 1vw;
        padding: 3vh 0;
    }


    .cta-left p.main-copy {
        line-height: 2;
    }

    .title-wrap {
        color: #fff;
    }

    .page-mv-left img.logo {
        width: 45%;
        opacity: .2;
    }

    .page-mv {
        height: 30vh;
    }

    .breadcrumb {
        font-size: 2.5vw;
    }


    .line-left-info img {
        width: 92%;
        margin: 0 auto;
    }

    .step {
        border: 2px solid #111;
    }

    .step-header h3 {
        width: 92%;
        margin: 0 auto;
        border-bottom: 1.5px solid #111;
        font-weight: 600;
        letter-spacing: .3vw;
    }

    .selected-reasons {
        padding: 5vh 0 7vh;
        text-align: center;
        margin: 0 auto;
        width: 92%;
    }

    .result-archive,
    .voice-archive,
    .result-detail {
        padding: 5vh 0;
        margin: 0 auto;
        max-width: 92%;
    }

    .selected-reason-wrap {
        gap: 0;
        max-width: 95%;
        margin: 4vh auto 0;
    }

    .selected-reason-number {
        width: 1.7em;
        height: 1.7em;
        top: -2vh;
        left: -3vw;
    }

    .selected-reason-block:nth-child(even) {
        top: 0;
    }

    .selected-reason-block {
        padding: 2vh 0;
        margin-bottom: 5vh;
        /* 	min-height: 27vh; */
    }

    .selected-reason-block::after {
        border-width: 17vh 4vw 0 0;
        right: -4vw;
    }


    .step p {
        width: 90%;
        margin: 0 auto;
        text-align: justify;
    }

    .selected-reason-text h3 {
        width: 92%;
        margin: 0 auto;
        border-bottom: 1.5px solid #111;
        padding-bottom: 1vh;
    }

    .selected-reason-text p {
        width: 90%;
        font-size: 1.2vw;
        text-align: justify;
        margin: 1vh auto 0;
    }

    .selected-reason-block:last-of-type {
        margin-bottom: 0;
    }

    .sub-links-section {
        padding: 5vh 0;
    }

    .page-title {
        font-size: 5vw;
        margin: 0 auto;
        width: 100%;
        margin-bottom: 3vh;
        letter-spacing: .5vw;
        display: block;
        background: #111;
        color: #fff;
        padding: .7vh 0;
    }

    .page-mv-left {
        background-image: URL(https://yokohamabayauto.com/wp-content/uploads/2025/09/car-back-img.jpg);
        background-size: cover;
    }

    .page-mv-left::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(61 61 61 / 60%);
    }

    .result-list,
    .voice-list {
        gap: 5vh 0;
    }

    .pagination ul li a,
    .pagination .current {
        padding: .5vh 3vw;
        border: 1.5px solid #111;
    }

    .pagination ul li {
        margin-right: 2vw;
    }

    .car-voice {
        margin: 2vh 3vw;
    }

    .faq {
        padding: 5vh 0 7vh;
        width: 92%;
    }

    .faq-list dt {
        font-size: 4.2vw;
        padding: 1.5vh 3vw;
        line-height: 1.5;
    }

    .company-message {
        padding: 3vh 0;
    }

    .company-message-inner {
        gap: 0;
        max-width: 100%;
    }

    .company-message-right .img-wrap {
        position: relative;
    }

    .company-message-right .img-wrap img {
        width: 63%;
        margin: 0 auto 2vh;
        position: relative;
    }


    .company-message-right .img-wrap::before {
        width: 51vw;
        aspect-ratio: 1 / 1;
        -webkit-clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
        clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
        background: #BDBDBD;
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
    }

    .company-message-right p.signature span.name-wrap {
        width: 43%;
    }

    section.company-message .text-wrap {
        width: 92%;
        margin: 0 auto;
    }

    .company-message-right p.signature {
        margin-top: 0;
    }

    .company-parallax {
        height: 35vh;
    }

    .company-table tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .company-table th {
        width: 100%;
        letter-spacing: .5vw;
        background: #E0E0E0;
    }

    .company-table td {
        width: 100%;
    }

    .company-table th,
    .company-table td {
        padding: 1.5vh 1vw;
        border: 1px solid #111;
    }

    .company-table td {
        border-top: unset;
        border-bottom: unset;
    }

    .company-info {
        padding: 5vh 0 7vh;
        width: 92%;
        margin: 0 auto;
    }

    .error404 main div a {
        width: 50%;
        font-size: 3.8vw;
        letter-spacing: .5vw;
    }

    .result-detail .entry-title {
        font-size: 5vw;
        border-left: 1vw solid #111;
        background: #EEEEEE;
        color: #111;
        padding: 1vh 1vw 1vh 2vw;
    }

    .car-info-table th {
        width: 29%;
        font-size: 4.5vw;
    }

    .car-info-table td {
        font-weight: 600;
    }

    .car-info-table td {
        font-weight: 600;
        padding: 2vh 2vw 2vh 4vw;
    }

    nav.page-nav {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 5vh auto 0;
    }

    .page-nav .prev-link,
    .page-nav .next-link {
        padding: 1vh 2vw;
    }

    .single-voice table.car-info-table tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .company-table {
        border-bottom: 1px solid #111;
    }

    .company-parallax .parallax-bg {
        height: 130%;
    }

    /* line-height */
    section.three-reasons .h2-wrap h2 {
        line-height: 1.7;
    }

    /* font-weight */
    .any-car-text h2,
    .btn,
    .scroll a {
        font-weight: 700;
    }

    .car-summary-title {
        font-weight: 600;
    }

    /* margin */

    .reason-wrap {
        margin-top: 5vh;
    }

    .any-car-text,
    .company-table,
    .page-nav .next-link {
        margin-top: 3vh;
    }

    .h2-wrap,
    .any-car-text h2 {
        margin-bottom: 3vh;
    }

    .links-section .btn.top,
    .sub-links-section .btn {
        margin-bottom: 2vh;
    }

    .reason-text h3 {
        margin-bottom: 1.5vh;
    }

    .cta-left p.main-copy {
        margin-bottom: 1vh;
    }

    .sub-links-section .btn:last-of-type {
        margin-bottom: 0;
    }

    .line-left-info p.note {
        margin-left: 0;
    }


    /* text-align */
    .step-header h3,
    .company-table th,
    .company-table td,
    .single-voice table.car-info-table th {
        text-align: center;
    }

    /* letter-spacing */

    .title-wrap .title,
    .single section.page-mv .title-wrap .title,
    .company-message-right .h2-wrap h2,
    section.company-info .h2-wrap h2 {
        letter-spacing: 1vw;
    }

    .h2-wrap .en,
    .flow .h2-wrap .en,
    section.voices .voice-info .customer,
    .title-wrap .en {
        letter-spacing: .5vw;
    }

    /* width */

    .links-section .btn,
    .cta-right,
    .line-left-info,
    .cta-inner,
    .selected-reason-block,
    .sub-links-section .btn,
    .result-card,
    .voice-card,
    .page-nav .prev-link,
    .page-nav .next-link,
    .back-to-archive a,
    .single-voice table.car-info-table th,
    .single-voice table.car-info-table td {
        width: 100%;
    }

    .company-info-inner {
        max-width: 100%;
    }

    .line-banner,
    section.three-reasons a.btn,
    .cta-left {
        width: 92%;
    }

    .flow-steps {
        max-width: 92%;
    }

    .footer_logo img {
        width: 70%;
    }

    .any-car-logo img {
        width: 58%;
    }

    .banner-left img.staff {
        width: 29.5%;
        left: -2.5vw;
    }

    .flow-steps::after {
        width: 3vw;
    }

    .cta-qr {
        width: 0;
    }

    /* font-size */

    .reason-number span {
        font-size: 9vw;
    }

    .h2-wrap h2,
    .flow .h2-wrap h2,
    .title-wrap .title,
    .single section.page-mv .title-wrap .title {
        font-size: 7vw;
    }

    section.three-reasons .h2-wrap h2,
    .step-header .number,
    .company-message-right .h2-wrap h2 {
        font-size: 6vw;
    }

    .any-car-text h2,
    .results-carousel .result-info p.price .number,
    .reason-text h3,
    section.selected-reasons .h2-wrap h2,
    .selected-reason-number span,
    .post-type-archive-result span.number-font,
    .single-result span.number-font {
        font-size: 5.5vw;
    }

    .step-header h3,
    .results-carousel .result-info h3,
    .results-carousel .result-info p.price,
    .car-summary-title,
    .car-title,
    .error404 main h2 {
        font-size: 5vw;
    }

    .cta-left p.main-copy,
    .results-carousel .result-info ul,
    .h2-wrap .en,
    .flow .h2-wrap .en,
    .title-wrap .en,
    .selected-reason-text h3,
    .car-summary-table,
    .pagination ul li a,
    .pagination .current,
    .car-info-table td,
    .page-nav .next-link::before,
    .page-nav .prev-link::before {
        font-size: 4.5vw;
    }

    .company-table th,
    .company-table td {
        font-size: 4.2vw;
    }


    .step p,
    .links-section .btn,
    .cta-info p.micro-copy,
    .selected-reason-text p,
    .sub-links-section .btn,
    .detail-link a,
    .any-car-text p,
    .reason-text p,
    footer#footer .tel,
    .car-voice,
    .car-meta,
    .faq-list dd,
    .company-message-right p,
    .error404 main p,
    .back-to-archive a {
        font-size: 4vw;
    }


    .line-left-info p.note,
    footer#footer p.time,
    .company-message-right p.signature,
    .page-nav span {
        font-size: 3.5vw;
    }

    .scroll a,
    .banner-note,
    .page-nav .prev-link,
    .page-nav .next-link {
        font-size: 3vw;
    }

    .signature .name {
        height: unset;
    }


    /*--------------------------------
スマホフッター固定バー
---------------------------------*/

    .footer-inner {
        padding: 5vh 0 14vh;
    }

    _::-webkit-full-page-media,
    _:future,
    :root ul.floating li {
        padding: 2svh 0 3svh;
    }

    _::-webkit-full-page-media,
    _:future,
    :root footer#footer .footer-inner {
        padding: 6svh 0 15svh;
    }


    ul.floating {
        margin: 0 auto;
        overflow: hidden;
        display: table;
        table-layout: fixed;
        text-align: center;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 3;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-top: .5px solid #fff;
    }

    ul.floating li {
        padding: 1vh 0;
        display: table-cell;
        vertical-align: middle;
    }

    ul.floating li.left,
    ul.floating li.right {
        background: rgb(17 17 17 / 85%);
        width: 25%;
    }

    ul.floating li.center {
        width: 50%;
        background: #F5F5F5;
    }

    ul.floating li.center a.line {
        color: #111;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -ms-flex-direction: unset;
        flex-direction: unset;
        font-size: 5vw;
        letter-spacing: .5vw;
    }

    ul.floating li:last-child {
        border-right: none;
    }

    ul.floating li a,
    ul.floating li .hamburger-open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.85rem;
        line-height: 1.2;
        cursor: pointer;
        gap: 2px;
    }

    ul.floating li i {
        font-size: 1.2rem;
        height: 1.2em;
    }

    ul.floating li img {
        width: 86%;
    }


    /*--------------------------------
ハンバーガーメニュー
---------------------------------*/

    header nav ul {
        display: unset;
    }


    nav#g-nav.globalMenuSp {
        position: fixed;
        z-index: 10000;
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100%;
        background: rgb(17 17 17 / 84%);
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: -webkit-transform 0.3s ease-in-out;
        -o-transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    }


    nav#g-nav.active {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    #g-nav-list {
        width: 80%;
    }

    .g-nav_inner,
    .g-nav_box {
        width: 100%;
        margin: 0 auto;
    }

    .g-nav_logo {
        margin: 0 auto 3vh;
    }

    .g-nav_logo img {
        width: 50%;
        margin: 0 auto;
    }

    #g-navi {
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }

    #g-navi li {
        padding: 1.4vh 0;
        width: 100%;
        text-align: center;
    }

    #g-navi li a {
        color: #fff;
        font-size: 4.5vw;
        text-decoration: none;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .hamburger-close {
        font-size: 4.5vw;
        cursor: pointer;
        color: #fff;
        text-align: center;
    }

    header nav ul li.contact a {
        background: unset;
    }
}




@media screen and (min-width: 767px) {

    ul.floating {
        display: none !important;
    }
}


/*---------------------------------------------------------
  i pad all portrait
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 743px) and (max-device-width: 1024px) and (orientation: portrait) {

    @-webkit-keyframes scroll {
        0% {
            height: 0;
        }

        100% {
            height: 20px;
        }
    }

    @keyframes scroll {
        0% {
            height: 0;
        }

        100% {
            height: 20px;
        }
    }

    .scroll a::after {
        width: .5px;
    }

    .reason-content .background {
        height: 36.5vh;
        top: -8vh;
    }

    .reason-content.reverse .background2 {
        height: 41.5vh;
        top: -8vh;
    }

    .links-section a.btn:after,
    .sub-links-section .btn:after {
        border-top: 2px solid #111;
        border-right: 2px solid #111;
    }

    #splash-logo img {
        width: 25%;
    }

    a.topBtn::after {
        border-width: 2px 2px 0 0;
        margin-top: .35vw;
    }

    .step-header h3 {
        border-bottom: 1.5px solid #111;
    }

    header nav ul li.contact a {
        outline: 1px solid #111;
    }

    .selected-reason-text h3 {
        margin-bottom: .75vh;
        border-bottom: 1.5px solid #111;
        padding-bottom: .75vh;
    }

    .selected-reason-block::after {
        border-width: 11vh 2vw 0 0;
        right: -2vw;
    }

    .page-title {
        margin-bottom: 2.5vh;
        border-bottom: 1.5px solid #111;
        padding-bottom: .25vh;
    }

    .result-list,
    .voice-list {
        gap: 3.5vh 3vw;
    }

    .pagination ul li a,
    .pagination .current {
        padding: .25vh 1vw;
        border: 1.5px solid #111;
    }

    .car-info-table td {
        border-bottom: 1px solid #111;
    }

    .car-info-table {
        margin-top: 1.5vh;

        border: 1px solid #111;
    }

    .page-nav .prev-link,
    .page-nav .next-link {
        border: 1.5px solid #111;
        padding: .5vh .7vw;
    }

    .company-message-inner {
        max-width: 80%;
    }


    section.voices a.btn::after,
    .links-section a.btn::after,
    .sub-links-section .btn::after {
        border-top: 1.5px solid #111;
        border-right: 1.5px solid #111;
    }

    header nav ul li a::after {
        bottom: 2.5vw;
    }


    /* height */

    .company-parallax .parallax-bg {
        height: 177%;
    }

    section.mv {
        height: 44svh;
    }

    .company-parallax {
        height: 30vh;
    }

    .page-mv {
        height: 19vh;
    }

    header,
    header nav ul li.contact a,
    .site-title-wrap,
    header nav ul,
    .site-title-wrap a {
        height: 6vh;
    }

    .reason-number {
        height: 5vh;
    }



    /* top */
    .mv-copy {
        top: 49%;
    }

    .selected-reason-block:nth-child(even) {
        top: 3vh;
    }

    .step-header .number {
        top: -1vh;
    }


    /* padding */

    .mv-copy {
        padding: 2.5vh 3vw 2.5vh;
        outline: 1px solid #111;
    }

    .mv-copy p.sub-copy {
        margin-top: 1.75vh;
        padding: .35vh 0;
    }

    .scroll {
        padding-top: 0;
        height: 35px;
    }

    .any-car {
        padding: 4vh 5vw;
    }

    .line-banner {
        padding: 4vh 0 5vh;
    }

    .purchase-results {
        padding: 5vh 5vw 2.5vh;
    }

    .btn {
        padding: .5vh 0;
        margin-top: 1vh;
    }

    .three-reasons {
        padding: 5vh 5vw;
    }

    .voices {
        padding: 6.5vh 5vw;
    }

    section.voices .voice-info h3,
    section.voices .voice-info .customer,
    .car-meta {
        padding: .35vh 0;
    }

    section.voices .voice-info .comment {
        margin: .5vh 1vw;
    }

    .flow {
        padding: 3.5vh 5vw 5vh;
    }

    .links-section,
    .sub-links-section,
    .faq,
    .company-message {
        padding: 5vh 0;
    }

    .step {
        margin-bottom: 2vh;
        border: 1.5px solid #111;
        padding: 1vh 0;
    }

    .step-header h3 {
        padding-bottom: .5vh;
    }

    .links-section .btn,
    .sub-links-section .btn {
        padding: .6vh 0;
    }

    .footer-inner {
        padding: 3.5vh 0 2.5vh;
    }

    .breadcrumb {
        padding-top: .5vh;
    }

    .selected-reasons {
        padding: 3.5vh 5vw 8.5vh;
    }

    .selected-reason-block {
        border: 1.5px solid #111;
        padding: 1.5vh 2vw;
    }

    .selected-reason-number {
        top: -.6em;
        left: -.5em;
        height: 3.25vh;
        width: 4vw;
    }

    .result-archive,
    .voice-archive {
        padding: 4vh 0 5vh;
    }

    .car-summary-title,
    .back-to-archive a,
    .car-title {
        padding: .5vh 0;
    }

    .car-info-table th,
    .car-info-table td {
        padding: 1vh 2vw;
    }

    .faq-list dt {
        margin-bottom: .5vh;
        padding: .75vh 1.5vw;
    }

    .faq-list dd {
        padding: .5vh 1vw;
    }

    .company-table th,
    .company-table td {
        padding: 1vh 1vw;
    }

    .company-info {
        padding: 3vh 5vw 5vh;
    }

    .results-carousel .result-info h3 {
        padding: .25vh 0;
    }

    .results-carousel .result-info ul {
        padding: .5vh 0;
    }

    /* margin */

    .reason-wrap {
        margin-top: 7.5vh;
    }

    section.mv,
    .page-mv {
        margin-top: 6vh;
    }


    .back-to-archive,
    .company-table {
        margin-top: 2.5vh;
    }

    .btn-wrap,
    .company-message-right p.signature {
        margin-top: 2vh;
    }

    .banner-note {
        margin-top: .5vh;
    }

    .reason-block {
        margin-bottom: 7.5vh;
    }

    .h2-wrap,
    .flow .h2-wrap {
        margin-bottom: 2.5vh;
    }

    .faq-list .faq-item {
        margin-bottom: 2vh;
    }

    .reason-text h3,
    .result-detail .entry-title {
        margin-bottom: 1.5vh;
    }


    .any-car-text h2,
    .any-car-text p,
    .cta-left p.main-copy,
    .page-id-55 .h2-wrap,
    .company-message-right p {
        margin-bottom: 1vh;
    }

    .h2-wrap h2,
    section.voices span.mb,
    .step-header,
    .line-left-info img {
        margin-bottom: .5vh;
    }

    footer#footer .tel {
        margin: 1vh auto .25vh;
    }

    .selected-reason-wrap,
    nav.page-nav {
        margin: 3.5vh auto 0;
    }

    .result-detail {
        margin: 5vh auto;
    }

    .pagination:not(:empty) {
        margin: 2.5vh 0 0;
    }

}


/*---------------------------------------------------------
  i pad pro landscape
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 744px) and (max-device-width: 1400px) and (orientation: landscape) {


    .reason-number {
        height: 5vw;
    }

    .selected-reason-number {
        top: -2.2vw;
        left: -0.5em;
        height: 4vw;
    }

    .selected-reason-block::after {
        border-width: 14vw 3vw 0 0;
    }

    .page-mv {
        height: 30vh;
    }

    section.voices a.btn::after,
    .links-section a.btn::after,
    .sub-links-section .btn::after {
        border-top: 1.5px solid #111;
        border-right: 1.5px solid #111;
    }

    .company-parallax {
        height: 45vh;
    }

    .company-parallax .parallax-bg {
        height: 130%;
    }

}