@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'HelveticaNeue';
    src: url('../webfonts/HelveticaNeue.eot') format('oldIE'),
        url('../webfonts/HelveticaNeue.woff') format('woff'),
        url('../webfonts/HelveticaNeue.ttf') format('truetype');
}

html {
    font-size: 62.5%;
}

body {
    color: #000;
    font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3', sans-serif;
    line-height: 1.3;
    font-size: 16px;
    font-weight: normal;
}

img {
    max-width: 100%;
    height: auto;
}

.pc-show {
    display: none;
}
.sp-show {
    display: block;
}

@media screen and (min-width: 768px) {
    .sp-show {
        display: none!important;
    }
    .pc-show {
        display: block!important;
    }
}

a {
    transition: all .2s ease;
}
a:hover {
    opacity: .6;
}

/* -------------------
    utility
-----------------------*/
.inner {
    padding: 0 15px;
}
.sp-text-center {
    text-align: center;
}
.d-flex {
    display: flex;
}

.tag {
    background-color: #000;
    color: #fff;
    padding: 3px 5px;
    min-width: 80px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .05em;
}
.tag.tag-white {
    background-color: #fff;
    color: #000;
}
.tag.tag-red {
    background-color: #E52416;
    min-width: 32px!important;
}



/* -------------------
    header
-----------------------*/
.header-sp-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #000;
    color: #fff;
    padding: 11px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header-sp-left {
    font-weight: bold;
    line-height: 1.1;
    font-family: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
    font-size: 10px;
    width: 110px;
}
.header-sp-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
}
.drawer-icon {
    width: 25px;
    height: 18px;
    position: relative;
}
.drawer-icon span {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
}
.drawer-icon span:first-child {
    top: 0;
}
.drawer-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.drawer-icon span:nth-child(3) {
    bottom: 0;
}

.drawer-contents {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .9);
    z-index: 20;
    color: #fff;
    display: none;
}
.drawer-wrap {
    padding: 12px 27px;
}
.drawer-close {
    text-align: right;
}
.drawer-close span {
    font-size: 13px;
}
.drawer-search {
    margin-top: 18px;
}
.drawer-search-text {
    /* border: 1px solid #fff; */
    width: 90%;
    font-size: 16px;
    padding: 7px 10px;
    /* background: transparent url(../img/search-white.png) no-repeat center right 12px / 18px auto; */
}
.drawer-search-text::placeholder {
    color: #fff;
}
.drawer-search-button{
    background: transparent url(../img/search-white.png) no-repeat center right 12px / 18px auto;
    color: rgba(0,0,0,0) !important;
}
.drawer-search-input{
    width: 100%;
    border: 1px solid #fff;
    display: flex;
}
.drawer-nav {
    margin-top: 30px;
}
.drawer-nav-item:not(:first-child) {
    margin-top: 27px;
}
.drawer-nav-item > a {
    font-size: 18px;
    font-weight: bold;
    display: block;
}
.drawer-sns {
    margin-top: 80px;
    border-top: 1px solid #fff;
}
.drawer-sns-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px 20px;
    padding-top: 20px;
}
.drawer-sns-list li {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;

}
.drawer-sns-list li a {
    display: inline-block;
    font-size: 24px;
    color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.drawer-sns-list li a.line-icon img {
    width: 24px;
    height: 24px;
}


/* -------------------
    footer
-----------------------*/

.footer {
    position: relative;
    margin-top: 90px;
    background-color: #000;
    color: #fff;
    margin-bottom:50px;
}
.footer-inner {
    padding: 20px;
}
.footer-sns {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.sns-list {
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.sns-list li {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-color: #000;
}
.sns-list li a {
    display: inline-block;
    font-size: 24px;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sns-list li a.line-icon img {
    width: 24px;
    height: 24px;
}
.footer-nav li a {
    text-align: center;
    font-size: 14px;
    line-height: 2.2;
    display: block;
}
.copyright {
    font-size: 10px;
    text-align: center;
    margin-top: 15px;
}
#JP_AMW_sp_article_footeroverlay,#JP_AMW_pc_all_footeoverlay,#JP_AMW_pc_photo_footeoverlay,#JP_AMW_sp_photo_footeroverlay{
    position: fixed!important;
    bottom: 0;
    z-index: 99;
    text-align: center;
    width: 100%;
}


/* -------------------
    main
-----------------------*/
.main {
    padding-top: 44px;
}

/* ---toppage--- */

.top {
    padding-top: 15px;
}
.top-slider {
    padding-bottom: 33px;
}
.top-slider-item > a {
    display: block;
}
.top-slider-img {
    width: 100%;
    padding-top: 67%;
    position: relative;
}
.top-slider-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-slider-title {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
    padding: 0 10px;
}
.top-slider-date {
    display: block;
    text-align: center;
    font-size: 10px;
    margin-top: 5px;
}

/* swiper */
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, 
.swiper-pagination-fraction {
    bottom: 10px;
}
.swiper-pagination-bullet {
    width: 7px;
    height: 7px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #E52416;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}


.section {
    margin-top: 27px;
} 
.section-title {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: .05em;
}
.title-bg-black {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 5px;
}
.section-title.border-title {
    text-align: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    font-weight: bold;
    padding: 3px 0;
}
.section-title.border-top-title {
    border-top: 5px solid #000;
    font-weight: bold;
    padding-top: 10px;
    font-size: 23px;
    margin-top: 30px;
}

.search-link {
    border: 5px solid #000;
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    padding: 3px 0;
    font-family: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
    background: #fff url(../img/right-arrow.png) no-repeat center right 12px / 22px auto;
}
.search-link {
    margin-top: 25px;
}
.search-link.--img {
    border: none;
    background: none;
}
.search-link + .search-link {
    margin-top: 25px;
}


.bg-black {
    background-color: #000;
    color: #fff;
}
.latest .inner {
    padding-top: 10px;
    padding-bottom: 15px;
}
.latest-list {
    margin-top: 10px;
}
.latest-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 15px;
}
.latest-card {
    width: calc(50% - 15px / 2);
    display: flex;
    flex-direction: column;
}
.latest-card > a {
    display: block;
    flex-grow: 1;
}
.latest-card:nth-child(n + 7) {
    display: none;
}
.latest-cards.is-open .latest-card:nth-child(n + 7) {
    display: block;
}

.card-img{
    width: 100%;
    padding-top: 67%;
    position: relative;
}
.card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-title {
    margin-top: 8px;
    font-size: 10px;
    font-weight: bold;
    text-align: justify;
}
.card-bottom {
    margin-top: 8px;
    display: flex;
    align-items: center;
}
.card-tags {
    display: flex;
}
.card-tags .tag {
    font-size: 10px;
    padding: 2px;
    min-width: 60px;
    text-align: center;
    font-weight: bold;
}

.card-tags .tag + .tag {
    margin-left: 6px;
}
.card-date {
    font-size: 10px;
    margin-left: 8px;
}
.view-more {
    margin-top: 10px;
    font-size: 14px;
    text-align: right;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .05em;
}

.post-list {
    margin-top: 12px;
}
.post-item,
.cate-post {
    position: relative;
    transition: all .2s;
}
.post-item > a,
.cate-post > a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.post-item:hover,
.cate-post:hover {
    opacity: .7;
}
.post-list .post-item + .post-item {
    border-top: 1px solid #C8C8C8;
    margin-top: 14px;
    padding-top: 14px;
}
.highright .post-item:nth-child(n + 4) {
    display: none;
}
.post-title {
    text-align: justify;
}
.post-img {
    width: 100%;
    padding-top: 68%;
    position: relative;
}
.post-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-list .post-txt {
    margin-top: 10px;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.4;
}
.post-detail {
    display: none;
}
.post-list .post-bottom {
    margin-top: 10px;
    display: flex;
    align-items: center;
}
.post-tags .tag {
    position: relative;
    z-index: 3;
}
.post-tags .tag a {
    display: inline-block;
    width: 100%;
}
.post-list .post-date {
    margin-left: 10px;
    font-weight: 300;
    font-size: 13px;
}
.post-list.post-list-row .post-flex {
    padding: 0 20px;
}
.post-list.post-list-row + .view-more a {
    padding-right: 20px;
}
.post-flex {
    display: flex;
}

.post-flex .post-img {
    width: 27%;
    padding-top: 27%;
}
.post-flex .post-txt {
    margin-top: 0;
    width: 73%;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pr-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
}
.pr-card {
    width: calc(50% - 10px / 2);
    border: 1px solid #C8C8C8;
    padding: 10px;
}
.pr-card:nth-child(n + 5) {
    display: none;
}
.pr-img {
    width: 100%;
    padding-top: 66%;
    position: relative;
}
.pr-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pr-txt {
    margin-top: 6px;
}
.pr-txt p {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pr-foot {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0px;
    align-items: center;
    margin-top: 8px;
}
.pr-tags {
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-right: 7px;
}
.pr-tags .tag {
    font-size: 12px;
    padding: 1px 5px 2px;
    line-height: 12px;
    border: 2px solid #000;
    min-width: 40px;
}
.pr-tags .tag.tag-pr {
    background-color: #fff;
    color: #000;
    min-width: 30px;
}
.pr-date {
    font-size: 10px;
}

.ranking-wrap {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    counter-reset: rank;
}
.rank-item {
    width: 50%;
    padding: 0 2.54% 16px 8%;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid #C8C8C8;
}
.rank-item:nth-of-type(9),
.rank-item:nth-of-type(10) {
    border-bottom: none;
    padding-bottom: 0;
}
.rank-item::before {
    counter-increment: rank;
    content: counter(rank);
    position: absolute;
    top: 0;
    right: 86%;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    font-family: 'Oswald', sans-serif;
    width: 27px;
    text-align: right;
}
.rank-item:hover::before {
    color: #E52416;
}
.rank-item .post-img {
    width: 100%;
    padding-top: 66%;
    position: relative;
}
.rank-item .post-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rank-item .post-txt .post-title {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: .02em;
    line-height: 1.4;
    text-align: left;
}

.m-c-list {
    margin-top: 20px;
}
.m-c-item + .m-c-item {
    margin-top: 13px;
    padding-top: 16px;
    border-top: 1px solid #C8C8C8;
}
.m-c-item > a {
    display: block;
}
.m-c-left {
    width: 65px;
    height: 65px;
    background-color: #000;
    position: relative;
}
.m-c-left img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 47px;
}
.m-c-left img.--mecedes {
    width: auto;
    max-height: 40px;
}
.m-c-right {
    width: calc(100% - 65px);
    padding-left: 20px;
}
.m-c-logo {
    height: 24px;
}
.m-c-logo img {
    height: 100%;
}
.m-c-txt {
    font-size: 14px;
    font-weight: bold;
    margin-top: 10px;
    line-height: 1.5;
    text-align: justify;
}
.m-c-item.--af .m-c-logo {
    height: 29px;
}
.m-c-item.--af .m-c-txt {
    margin-top: 7px;
}
.m-c-item.--af .m-c-left img {
    width: 47px;
}
.m-c-list .d-flex{
    /* align-items: center; */
}
.a-s-list {
    margin-top: 12px;
}
.a-s-item {
    background-color: #DCDCDC;
    min-height: 122px;
    margin-bottom: 20px;
}
.a-s-item > a {
    display: block;
    padding: 13px 20px;
}

.a-s-title {
    border-bottom: 2px solid #000;
    font-size: 26px;
    font-weight: bold;
    font-family: 'HelveticaNeue', sans-serif;
}
.a-s-txt {
    font-size: 13px;
    font-weight: bold;
    margin-top: 5px;
    line-height: 1.5;
    text-align: justify;
}
.reco-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
}
.reco-item {
    width: calc(50% - 26px / 2);
}
.reco-item .post-img {
    padding-top: 66%;
}
.reco-item .post-title {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: .02em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 10px;
    text-align: left;
}

/* -----------------
    category top
-------------------*/
.category-top {
    padding-top: 20px;
}
.cate-top-name {
    border: 5px solid #000;
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    padding: 2px 0;
    letter-spacing: .05em;
}
.cate-top-txt {
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
}

.category-post-list {
    padding-top: 20px;
}
.cate-post + .cate-post {
    margin-top: 12px;
    border-top: 1px solid #C8C8C8;
    padding-top: 12px;
}
.cate-flex {
    display: flex;
}
.cate-flex .post-img {
    width: 38%;
    padding-top: 24%;
    position: relative;
}
.cate-flex .post-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cate-flex .post-txt {
    width: 62%;
    padding-left: 15px;
}
.cate-flex .post-txt .post-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
}
.cate-flex .post-bottom {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.cate-flex .post-date {
    font-size: 12px;
    margin-left: 8px;
}
.pagination {
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links > .page-numbers {
    padding: 0 7px;
}
.nav-links > .page-numbers + .page-numbers {
    margin-left: 7px;
}
.page-current-number {
    margin-right: 10px;
}
.page-numbers {
    display: flex;
    align-items: center;
    color: #A0A0A0;
}
.page-numbers.current {
    color: #E52416;
}
.page-numbers.prev,
.page-numbers.next {
    color: #000;
}
.page-numbers + .page-numbers {
    position: relative;
    display: inline-block;
}
.page-numbers + .page-numbers:not(.next)::before {
    content: "•";
    position: absolute;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
    pointer-events: none;
}
a.page-numbers:hover {
    opacity: 1;
}

.topicpath {
    margin-top: 20px;
}
.topicpath-list {
    display: flex;
    align-items: center;
    font-size: 15px;
    flex-wrap: wrap;
    gap: 5px 0;
}
.topicpath-list li + li {
    position: relative;
    padding-left: 25px;
}
.topicpath-list li + li::before {
    content: ">";
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-55%);
}
.topicpath-list li a:hover {
    text-decoration: underline;
}
.category-ranking .rank-item:nth-child(n + 5) {
    border-bottom: none;
}

/* -----------------
    article
-------------------*/
.article-head {
    margin-top: 15px;
}
.article-head a{
    text-decoration: underline;
}
.article-head-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article-head-top-wrap .cate-top-name {
    min-width: 150px;
    padding-left: 5px;
    padding-right: 5px;
}
.article-share {
    display: flex;
    align-items: center;
}
.article-head-top-wrap .article-share {
    width: auto;
    font-size: 15px;
    justify-content: flex-end;
}
.article-head-top-wrap .sns-list {
    gap: 0 10px;
    padding-left: 8px;
}
.article-head-top-wrap .sns-list li {
    width: 26px;
    height: 26px;
}
.article-head-top-wrap .sns-list li a {
    font-size: 16px;
}
.article-head-top-wrap .sns-list li a.line-icon img {
    width: 18px;
    height: 18px;
}
.article-main-img {
    margin-top: 15px;
    position: relative;
    width: 100%;
    padding-top: 32%;
}
.article-main-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-main-title,
.article-top-info {
    margin-top: 15px;
}
.article-main-title h1 {
    font-size: 22px;
    font-weight: bold;
}
.article-top-info p {
    font-size: 15px;
}
.article-main {
    margin-top: 15px;
}
.post-thumb {
    overflow: hidden;
}
.post-thumb-cap {
    font-size: 12px;
    overflow-wrap: break-word;
    color: #646464;
    margin-top: 10px;
}
.post-thumb-list {
    margin-top: 10px;
    overflow: hidden;
}
.post-thumb-list .swiper-slide:hover {
    cursor: pointer;
}
.post-thumb-list .swiper-slide {
    position: relative;
    padding-top: 18.4%;
}
.post-thumb-list .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-thumb-list .swiper-slide.swiper-slide-thumb-active {
    opacity: .6;
}
.article-content h2,
.article-content h3 {
    margin: 24px 0!important;
    font-weight: bold;
    line-height: 1.4;
}
.article-content h2 {
    font-size: 128%;
}
.article-content h3 {
    border-left: 10px solid #000;
    border-bottom: 1px solid #000;
    padding-left: 10px;
    padding-bottom: 3px;
    font-size: 18px;
    min-height: 50px;
    display: flex;
    align-items: center;
}
.article-content .entry-content > * + * {
    margin-top: 24px;
}
.article-content blockquote > p, .entry-content  blockquote > p{
    margin-top: 24px!important;
}
.article-content .entry-content p img{
    margin-top: 24px!important;
}
.article-content p {
    font-size: 16px;
    line-height: 1.5;
    /* text-align: justify; */
}
.article-content .entry-content > * + * img {
    margin-top: -5px;
    margin-bottom: -5px;
}
dt.gallery-icon.landscape img {
    margin-bottom: 20px;
}
.article-content p .cap {
    font-size: 12px;
    color: #646464;
    overflow-wrap: break-word;
    display: block;
    margin-top: -13px;
}
.article-content .entry-content > a {
    display: block;
}
.article-content p a, .ag-txt a {
    text-decoration: underline;
}
#Supra_container p img{
    margin-bottom: 24px;
}
.parts_contents .parts_frame img  {
    margin-bottom: 24px;
    margin-top: 24px!important;
}
.page-break {
    margin-top: 40px;
    background-color: #000;
    color: #fff;
    position: relative;
}
.page-break a {
    display: block;
    font-weight: bold;
    font-size: 16px;
}
.page-break a .txt {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 10px 65px 10px;
}

.page-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}
.page-label.next-label {
    right: 12px;
    padding-right: 18px;
    background: url(../img/next-arrow-white.png) no-repeat center right 0 / 14px auto;
}
.page-label.prev-label {
    left: 8px;
    padding-left: 18px;
    background: url(../img/prev-arrow-white.png) no-repeat center left 0 / 14px auto;
}
.wp-pagenavi {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    gap: 0 20px;
}
.wp-pagenavi span {
    color: #C8C8C8;
}
.wp-pagenavi span.current {
    color: #fff;
    position: relative;
}
.wp-pagenavi span.current::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: #000;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.wp-caption{
    max-width: 100%;
}
.article-foot {
    margin-top: 30px;
}
.article-tag {
    display: flex;
}
.article-tag dt {
    width: 87px;
    font-size: 16px;
    font-weight: bold;
}
.article-tag dd {
    width: calc(100% - 87px);
    font-size: 16px;
}
.article-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 18px;
}
.article-tag-list li a {
    text-decoration: underline;
}
.article-tag + .article-tag {
    margin-top: 20px;
}
.related-article {
    margin-top: 40px;
    margin-bottom: 55px;
}
.section-title.related-title {
    border-top: 2px solid #000;
    padding-top: 8px;
}
.related-list {
    margin-top: 20px;
}
.rela-post {
    display: flex;
    align-items: flex-start;
}
.rela-post + .rela-post {
    margin-top: 20px;
    border-top: 1px solid #C8C8C8;
    padding-top: 20px;
}
.rela-img {
    display: block;
    width: 26%;
    padding-top: 26%;
    position: relative;
}
.rela-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rela-txt {
    width: calc(100% - 26%);
    padding-left: 20px;
}
.rela-title {
    font-size: 16px;
    font-weight: bold;
    text-align: justify;
}
.rela-tag {
    margin-top: 10px;
    font-size: 14px;
}
.article-foot-gallery {
    margin-top: 40px;
}
.article-gallery-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
}
.article-gallery-list li {
    width: calc(25% - 10px * 3 / 4);
    padding-top: 23%;
    position: relative;
}
.article-gallery-list li a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.article-gallery-list li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .article-gallery-list li:nth-child(n + 9) {
    display: none;
} */
.gallery-more-btn {
    display: block;
    margin-top: 10px;
    background-color: #000;
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 0;
}
.gallery-more-btn.js-gallery-toggle{
    display: none;
}
@media screen and (max-width: 768px) {
    .gallery-more-btn.js-gallery-toggle.sp-show{
        display: block;
    }    
}
.article-foot-author {
    margin-top: 30px;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    padding: 15px 0 10px;
}
.author-grid {
    display: grid;
    grid-template-rows: 100px auto;
    grid-template-columns: 100px auto;
}
.ag-pic {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}
.ag-info {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ag-info .name {
    font-size: 18px;
    font-weight: bold;
}
.ag-info .detail {
    padding-top: 10px;
    font-size: 13px;
}
.ag-txt {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
    font-size: 12px;
    padding-top: 10px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.author-more-btn {
    margin-top: 10px;
    display: block;
    text-align: right;
    font-size: 12px;
    font-weight: bold;
}

/* =================
    photo gallery
====================*/
.gallery-page .contents-main {
    margin-top: 15px;
}
.gallery-main {
    overflow: hidden;
    position: relative;
}
.photo-page-back {
    margin-top: 20px;
}
.photo-page-back.page-break a .txt {
    padding: 4px 60px;
}
.photo-page-back.page-break .page-label {
    font-size: 13px;
}
.gallery-tag {
    margin-top: 30px;
}
.gallery-list {
    margin-top: 30px;
}
.gallery-thumb {
    margin-top: 10px;
}
.gallery-thumb-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
    transform: none!important;
    overflow: hidden;
    max-height: 45vw;
}
.gallery-thumb-slider.is-open {
    max-height: none;
}
.gallery-thumb-slider .thumbnail-img {
    padding-top: 22.8%;
    position: relative;
    width: calc(25% - 10px * 3 / 4)!important;
}
.gallery-thumb-slider .thumbnail-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-img.swiper-slide-thumb-active {
    opacity: .6;
}
.thumbnail-img:hover {
    cursor: pointer;
}
.swiper-button-next, 
.swiper-button-prev {
    top: 45%;
}
.swiper-button-prev, 
.swiper-rtl .swiper-button-next {
    left: 0;
}
.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after {
    content: "";
    background: url(../img/prev-arrow-white.png) no-repeat center center / contain;
    width: 17px;
    height: 19px;
    display: inline-block;

}
.swiper-button-next, 
.swiper-rtl .swiper-button-prev {
    right: 0;
}
.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after {
    content: "";
    background: url(../img/next-arrow-white.png) no-repeat center center / contain;
    width: 17px;
    height: 19px;
}


/* =================
    BRAND LIST
====================*/
.page-top-title {
    margin-top: 15px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    letter-spacing: .05em;
}
.page-top-title .top {
    font-size: 25px;
    display: block;
    border-bottom: 5px solid #000;
    padding-top: 0;
    margin-bottom: 2px;
}
.page-top-title .bottom {
    font-size: 20px;
}
.car-brand-list {
    margin-top: 20px;
    padding-bottom: 20px;
}
.car-brand-item + .car-brand-item {
    margin-top: 32px;
}
.car-brand-item dt {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #000;
}
.car-brand-item dd {
    margin-top: 10px;
}
.brand-name-list li a {
    line-height: 2;
    font-size: 18px;
    display: inline-block;
}
.brand-name-list li a:hover {
    opacity: .5;
}
.brand-list-page + .footer {
    margin-top: 40px;
}
.page-top-title.brand-title {
    text-align: center;
}


/* =================
    MEDIA CONTENTS
====================*/
.madia-title {
    margin-top: 15px;
}
.media-title-img {
    text-align: center;
    display: block;
}
.media-title-img img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.madia-title-txt {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}

.article-share.media-share {
    margin-top: 40px;
    margin-bottom: 40px;
}
.article-share.media-share span {
    font-weight: bold;
    font-size: 13px;
    /*margin-right: 15px;*/
}
.media-share .sns-list li {
    width: 34px;
    height: 34px;
}
.media-share .sns-list li a {
    font-size: 20px;
}

/* =================
    TAG記事一覧
====================*/

.page-top-title.search-tag-title .top {
    font-size: 16px;
    padding-bottom: 9px;
}
.page-top-title.search-tag-title .thin {
    font-weight: normal;
}
.tag-share {
    margin-top: -10px;
    margin-bottom: 30px;
}

/* =================
    著者一覧、詳細
====================*/
.author-list {
    margin-top: 15px;
}
.author-card {
    border-bottom: 1.5px solid #000;
    padding-top: 10px;
    padding-bottom: 10px;
}
.author-card:first-of-type {
    border-top: 1.5px solid #000;
}
.main.author-list-page + .footer {
    margin-top: 50px;
}
.author-article-head {
    margin-top: 20px;
}
.author-article-content {
    margin-top: 10px;
}
.author-share {
    margin-top: -10px;
    margin-bottom: 35px;
}
/* ================
    フッターページ
==================*/
.page-title {
    padding-top: 15px;
    padding-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 5px solid #000;
    margin-bottom: 12px;
}
.page-content {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 50px;
}
.page-content.--about {
    font-weight: bold;
}
.page-content h3 {
    font-size: 16px;
}
.page-content > * + * {
    margin-top: 15px;
}
.text-right {
    text-align: right;
}
.company-dl.--download dt,
.company-dl.--download dd {
    font-weight: bold;
}
.company-dl dt {
    font-weight: normal;
    border-bottom: 1.5px solid #000;
    padding-bottom: 6px;
    line-height: 1.3;
}
.company-dl dd {
    margin-top: 5px;
}
.company-dl + .company-dl {
    margin-top: 22px;
}
.access-map {
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 40px;
}
.iframe-wrap {
    width: 100%;
    padding-top: 66%;
    position: relative;
}
.iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.privacy-content {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 50px;
}
.privacy-content > * + * {
    margin-top: 25px;
}
.privacy-content ol {
    list-style-type: decimal;
    padding-left: 20px;
}
.privacy-dl dt {
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1.5px solid #000;
    padding-bottom: 3px;
    margin-bottom: 5px;
}
.privacy-dl dd {
    text-align: justify;
}
.privacy-item + .privacy-item {
    border-top: 1px solid #C8C8C8;
    margin-top: 15px;
    padding-top: 15px;
}
.privacy-item a {
    text-decoration: underline;
    word-wrap: break-word;
}
.dots-list li {
    padding-left: 18px;
    position: relative;
}
.dots-list li::before {
    content: "●";
    position: absolute;
    top: 1px;
    left: 0;
}
.privacy-dl.--advertising dt {
    font-size: 14px;
}
.privacy-dl.--advertising dd {
    margin-top: 20px;
}
.privacy-dl.--advertising a {
    text-decoration: underline;
}
/* ================
    車を文化する 
==================*/
h1.entry-title{
    font-size: 200%;
    text-align: left;
    padding-left: 7px;
    border-left: 5px solid #e50014;
    margin-top: 50px;
    font-weight: 700;
}  
.usedcar-goo-net-link p {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}   
div#primary{
    max-width: 1018px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 900px;
    width: 100%;
} 
p#search-info{
        visibility: hidden;
        margin: 1em;
        font-size: 1.5rem;
        line-height: 1.6em;
        border-bottom: 1px solid #e50014;
}

#usedcar-search-forms {
    border: 1px solid #e50014;
    padding: 1em 0 1em 1em;
    visibility: hidden;
    font-size: .9rem;
}

#search-info span {
    font-size: 2.2em;
    font-weight: bold;
}
#usedcar-search-forms li label {
    box-sizing: border-box;
    border-left: 3px solid #e50014;
    padding-left: 8px;
    width: 6em;
    display: inline-block;
    vertical-align: middle;
    color: #222;
    font-weight: bold;
}
#usedcar-search-forms li select, select#usedcar-order, select#page-select {
    letter-spacing: normal;
    width: calc(100% - 7em);
    display: inline-block;
    vertical-align: middle;
    color: #222;
    font-weight: bold;
    text-align: center;
    border-radius: 0;
    border: 2px solid #ccc;
    padding: 5px;
}
#usedcar-search-forms li * {
    letter-spacing: normal;
}
#usedcar-search-forms ul {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    align-items: center;
}
#usedcar-search-forms li * {
    letter-spacing: normal;
}
#usedcar-search-forms li {
    flex: 0 0 33.33333%;
    margin: 0 0 1em;
    letter-spacing: -.4em;
}
#usedcar-search-forms li.min-max select {
    width: calc((100% - 8.2em) / 2);
}
#usedcar-search-forms li.radio .wrapper {
    display: table;
    table-layout: fixed;
    width: calc(100% - 1em);
    border-right: 1px solid #e50014;
}
#usedcar-search-forms li.radio span {
    width: 6em;
    color: #e50014;
}
#usedcar-search-forms li.radio span, #usedcar-search-forms li.radio label {
    box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
    border: 1px solid #e50014;
    border-right: 0;
    padding: 6px 2px;
    text-align: center;
    font-weight: bold;
}
#usedcar-search-forms li.radio input[type=radio] {
    display: none;
}
#usedcar-search-forms li.radio label.selected {
    background-color: #e50014;
    color: white;
}
#usedcar-search-forms li.checkbox {
    flex-basis: 16%;
}
#usedcar-search-forms * {
    font-size: 1.5rem;
}
#usedcar-search-forms li.radio label, #usedcar-search-forms li.checkbox label {
    border: 0;
    padding-left: 0;
    width: auto;
}
#usedcar-search-forms li.radio span {
    width: 6em;
    color: #e50014;
}
#primary input{
    appearance: auto!important;
    margin-right: 5px;
}
#usedcar-search-forms li.radio label{
    border:1px solid #e50014;
}
#primary select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
    }
    #usedcar-search-forms .buttons-wrapper {
    text-align: center;
}
#usedcar-search-forms .buttons-wrapper button.clear {
    padding: 0.25rem 1rem;
    border: 2px solid #ccc;
    background-color: white;
    color: #000;
}
#usedcar-search-forms .buttons-wrapper button.submit {
    background-color: #e50014;
    color: white;
    border: 2px solid #e50014;
    padding: 0.25rem 3rem;
    font-weight: bold;
    margin: 1em 0.5em;
}
#usedcar-search-forms .buttons-wrapper button {
    text-shadow: none;
    font-size: 1.3em;
    border-radius: 0;
    transition: all .3s ease-in-out;
}
#content.usedcar-search h2 {
    margin: 2rem 1rem 1rem;
    border-left: 0;
    padding: 0 3px;
    font-size: 1.4em;
    font-weight: normal;
    text-align: center;
}
#search-pageinfo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 1rem;
    visibility: hidden;
}
select#usedcar-order {
    width: auto;
}
ul#usedcar-search-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}
ul#usedcar-search-list .usedcar-wrapper {
    box-sizing: border-box;
    padding: 5px 0;
    border-top: 2px solid #e50014;
    border-bottom: 2px solid #e50014;
}
ul#usedcar-search-list li {
    flex: 0 0 calc(25% - 10px);
    margin: 0 5px 20px;
}
ul#usedcar-search-list div.text-wrapper .car-name h3 {
    text-align: left;
    padding: 0 5px;
    margin: 5px 0;
    font-size: 1.8rem;
    line-height: 2rem;
    /*min-height: 8rem;*/
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: bolder;
}
ul#usedcar-search-list div.text-wrapper .car-name  {
    min-height: 8rem;
}


ul#usedcar-search-list li .thumbnail {
    border: 1px solid #ccc;
    position: relative;
}
ul#usedcar-search-list li .thumbnail .pref {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0,0,0,.6);
    color: white;
    font-weight: bold;
    padding: 3px 5px;
}
ul#usedcar-search-list div.text-wrapper .car-name {
    border-bottom: 1px solid #ccc;
}
ul#usedcar-search-list div.text-wrapper div {
    padding: 1px 5px;
    border-bottom: 1px solid #ccc;
    text-align: center!important;
}
ul#usedcar-search-list div.text-wrapper div:last-child {
    border: 0;
}
ul#usedcar-search-list li .links a.car-info {
    color: #e50014;
}
ul#usedcar-search-list li .links a {
    display: block;
    margin: 3px 0;
    padding: 5px;
    font-weight: bold;
    border: 1px solid #e50014;
    text-align: center;
}
ul#usedcar-search-list li .links a.car-estimate {
    background-color: #e50014;
    color: white;
}
#usedcar-pagenation li a.disabled {
    color: #ccc;
    border-color: #ccc;
    cursor: pointer;
}
#usedcar-pagenation li a {
    border: 1px solid #e50014;
    color: #e50014;
    display: block;
    font-size: 1.4em;
    padding: 8px 10px;
    font-weight: bold;
}
#usedcar-pagenation ul {
    display: flex;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    list-style: none;
    flex-wrap: wrap;
    justify-content: space-between;
}
#usedcar-pagenation li {
    flex: 0 0 48%;
}
#usedcar-pagenation {
    margin: 1em;
    display: none;
    display: block;
}
.wct-related-posts h3>span:not(:empty), .wct-related-posts h3>a:not(:empty) {
    position: relative;
    padding-bottom: 5px;
    display: block;
}
.wct-related-posts h3>span:not(:empty):after, .wct-related-posts h3>a:not(:empty):after {
    display: inline-block;
    content: "";
    width: 2em;
    height: 3px;
    background-color: #e50014;
    position: absolute;
    bottom: 0;
    left: calc(50% - 2em / 2);
    right: calc(50% -2em / 2);
}
.usedcar-ranking-related-wrapper {
    margin: 30px 0;
    display: -ms-grid;
    display: grid;
    -moz-column-gap: 34px;
    column-gap: 34px;
}
.wct-related-posts ul {
    list-style: none;
    margin: 0 0 15px;
    display: flex;
    align-items: start;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    flex-wrap: wrap;
}
.wct-related-posts h3 {
    margin: 0 0 1.5rem;
    padding: 0 0.5em;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
}
.wct-related-posts.usedcar ul li {
    flex: 0 0 calc((100% - 3rem) / 4);
}
.wct-related-posts ul li .tags a {
    font-size: 10px;
    display: inline-block;
    border-radius: 15px;
    margin: 5px 3px 0 0;
    padding: 1px 10px;
    border: 1px solid #e50014;
}
.wct-related-posts .tag {
    background-color: #fff0 !important;
    color: #555;
}
.wct-related-posts .tag a{
    color: #555;
}
.wct-related-posts ul li {
    flex: 0 0 calc((100% - 4rem) / 5);
    margin: 0 0 1rem;
}
.wct-related-posts ul li img {
    border: 1px solid #ccc;
}
#primary .contents-sidebar{
    width: 38%;
}
.usedcar-ranking-related-wrapper {
    width: 100%;
}
#primary .m-c-left {
    width: 55px;
    height: 55px
}
#primary .m-c-logo img {
    object-fit: contain;
}
#primary .m-c-txt {
    height: 2.8em;
    font-size: 14px;
    line-height: 1.4;
    overflow: hidden;
    text-decoration: none;
    color: #555;
    font-weight: bold;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
#primary .m-c-logo {
    height: 22px;
}
.gallery-table-wrapper {
    display: flex;
    align-items: flex-start;
}
.swiper-container#usedcar-slide {
    width: 100%;
    border: 1px solid #ccc;
    min-height: calc((100% / 640) * 480);
    height: auto;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}
div#usedcar-slide-thumbs{
  overflow: hidden;
}
.swiper-container#usedcar-slide-thumbs .swiper-slide {
    opacity: 0.5!important;
}

.swiper-container#usedcar-slide-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: #e50014;
    opacity: 1!important;

}#usedcar-slide .swiper-button-next, #usedcar-slide .swiper-button-prev {
    color: rgba(255, 255, 255, 0)!important;
}
.entry-content.disable-ma {
    margin-top: 20px;
}
.gallery-table-wrapper .galleries-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 20px;
}
.entry-content img {
    background: #fff;
    max-width: 100%;
    margin-bottom: 10px;
}
.entry-content iframe {
    width: 97%;
    margin: 0 auto;
    display: table;
    aspect-ratio: 16 / 9;
}
.entry-content .ats-slot iframe {
    aspect-ratio: auto;
    width: auto;
}


.usedcar-search-result .entry-content .table-wrapper table tr.price-header {
    border-top: 2px solid #ccc;
    border-bottom: none!important;
}
.usedcar-search-result .entry-content .table-wrapper table tr.price-header th {
    font-size: 2rem;
    border: 0;
    padding: 10px;
}
.gallery-table-wrapper .table-wrapper {
    width: auto!important;
    flex: 1 0;
    margin-left: 10px;
}
.usedcar-search-result .entry-content .table-wrapper table th span {
    display: block;
    font-size:1.3rem;
    color: #ccc;
    line-height: 2;
}
.usedcar-search-result .entry-content .table-wrapper table {
    border: 0;
    width: 100%;
}
.usedcar-search-result .entry-content .table-wrapper table tr.price td {
    font-size: 3rem;
    font-weight: bold;
    line-height: 0.8;
}
.usedcar-search-result .entry-content .table-wrapper table tr.price td.total-price {
    color: #e50014;
}
.usedcar-search-result .entry-content .table-wrapper table tr.price td span {
    font-size: 1.2rem;
    color: #666;
}
.usedcar-search-result .entry-content .table-wrapper table tr {
    border-bottom: 1px solid #ccc;
}
.usedcar-search-result .entry-content .table-wrapper table tr, .usedcar-search-result .entry-content .table-wrapper table th, .usedcar-search-result .entry-content .table-wrapper table td {
text-align: center;
padding: 5px;
}
.comment-content td, .comment-content th, .comment-content tr, .entry-content td, .entry-content th, .entry-content tr {
    font-size: 14px;
}
.comment-content blockquote, .entry-content blockquote {
    margin-bottom: 20px;
    padding: 24px;
    border: 1px solid #aaa;
  }
  .comment-content h4, .entry-content h4 {
    font-size: 95%;
    line-height: 1.3;
    font-weight: bold;
  }
  .comment-content h5, .entry-content h5 {
    font-size: 90%;
    line-height: 1.3;
    font-weight: bold;

  }
  .comment-content h6, .entry-content h6 {
    font-size: 85%;
    line-height: 1.3;
    font-weight: bold;
  }
.entry-content th{
    text-align: center;
    font-weight: 700;
    vertical-align: middle;
    text-align: center;
    padding: 5px;
}
.usedcar-search-result .estimate-link a {
    border: 1px solid #e50014;
    background-color: #e50014;
    font-weight: bold;
    color: white;
    font-size: 1.6em;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 10px 5px;
    margin: 0 auto 10px;
    max-width: 640px;
}
.usedcar-search-result .entry-content .shop-info h3 span {
    background-color: #e50014;
    color: white;
    font-size: .6em;
    padding: 3px 5px;
    border-radius: 3px;
}
.usedcar-search-result .entry-content .shop-info h3 {
    font-size: 2.3rem;
    margin: 0;
    line-height: 2em;
    font-weight: 700;
}
.usedcar-search-result .entry-content .shop-info p {
    font-size: 1.6em;
    color: #e50014;
    font-weight: bold;
}
.usedcar-search-result .entry-content .shop-info .tel {
    text-align: center;
}
.entry-content p {
    line-height: 1.6;
    /* word-break: break-all; */
}
.usedcar-search-result .entry-content .shop-info .shop-info-table {
    border: 1px solid #ccc;
    table-layout: auto;
}
.usedcar-search-result .entry-content .shop-info .shop-info-table th, .usedcar-search-result .entry-content .shop-info .shop-info-table td {
    border: 1px solid #ccc;
}

.usedcar-search-result .entry-content .shop-info .shop-info-table th {
    width: 5em;
}
.usedcar-search-result .entry-content .car-info-wrapper h2 {
    border-bottom: 2px solid #e50014;
    padding: 3px 0 0;
    margin-bottom: 5px;
}
.usedcar-search-result .entry-content .car-info-wrapper h2 span {
    background-color: #e50014;
    color: white;
    padding: 0 10px;
    font-size: 1.8rem;
    font-weight: normal;
    font-weight: 500;
}
.comment-content table, .entry-content table {
    border-bottom: 1px solid #aaa;
    margin: 0 0 30px;
    max-width: 100%;
    word-break: break-all;
    table-layout: fixed;
}

.usedcar-search-result .entry-content .car-info-wrapper table {
    width: 100%;
}
.car-info-table tr{
    font-size: 14px;
    border: 1px solid #aaa;
}
.car-info-table td  {
    font-size: 14px;
    border: 1px solid #aaa;
}
.car-info-table th {
    font-weight: 700;
    vertical-align: middle;
    text-align: center;
    padding: 5px;
}
.car-info-table td {
    font-weight: 400;
    vertical-align: middle;
    text-align: left;
    padding: 5px;
}
.usedcar-search-result .entry-content .equipment-list h2 {
    border-bottom: 2px solid #ccc;
    margin: 20px 0;
    padding: 0 8px;
    position: relative;
    font-size: 2.4rem;
    font-weight: bold;
}
.usedcar-search-result .entry-content .equipment-list h2:after {
    content: "";
    height: 2px;
    background-color: #e50014;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 6em;
}

.usedcar-search-result .entry-content .equipment-list ul li.on {
    border-color: #e50014;
    background-color: #ffb7bd;
    font-weight: bold;
    color: #333;
}
.usedcar-search-result .entry-content .equipment-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: normal;
}
.usedcar-search-result .entry-content .equipment-list ul li {
    border: 1px solid #ccc;
    padding: 3px 5px;
    margin: 4px;
    flex: 0 1 calc(20% - 20px);
    color: #ccc;

    background-color: #fefefe;
    font-size: 1em;
}
.usedcar-search-result .entry-content .equipment-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: normal;
}
.usedcar-search-result .entry-content .equipment-list {
    margin: 30px 0;
}
.usedcar-search-result .entry-content .shop-info-wrapper h2 {
    background-color: #ccc;
    padding: 5px 0;
    line-height: 1.5;
    margin: 30px 0;
}
.usedcar-search-result .entry-content .shop-info-wrapper h2 span {
    background-color: #e50014;
    color: white;
    padding: 5px 10px;
    font-size: 3rem;
    font-weight: 700;
}
.entry-content h3 {
    line-height: 1.3;
    font-weight: 700;
    margin: 20px 0;
}
.usedcar-search-result .entry-content .shop-info-wrapper table {
    width: 100%;
    table-layout: auto;
}
.usedcar-search-result .entry-content .shop-info-wrapper table th, .usedcar-search-result .entry-content .shop-info-wrapper table td {
    font-size: 1.6rem;
}
.usedcar-search-result .entry-content .shop-info-wrapper table th {
    font-size: 1.25em;
}
.inner-wrapper p{
    font-size: 1.9rem;
    margin: 10px 0;
}
.usedcar-search-result .entry-content .shop-info-wrapper .shop-external-link a {
    border: 1px solid #ccc;
    padding: 5px 10px;
    text-decoration: none;
}
.usedcar-search-result .entry-content .shop-info-wrapper .thumbnails ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: normal;
}
.comment-content ol, .comment-content ul, .entry-content ol, .entry-content ul {
    margin: 0 0 20px;
}
.usedcar-search-result .entry-content .shop-info-wrapper .thumbnails ul li {
    padding: 0;
    margin: 4px;
    flex: 0 1 calc(20% - 8px);
}
.map-wrapper {
    text-align: center;
}
.parts_frame .inner{
    padding: 0 0px;
}

.ad-layout {
    text-align: center;
    margin-top: 10px;
}
/* -------------
    web-content
-----------------*/
li.w-c-item a{
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding: 10px 20px;
    height: 50px;
    width: 100%;
    cursor: pointer;
}
li.w-c-item img{
    width: 140px;
    margin: 0 auto;
}
li.w-c-item.w-img img{
    width: 280px;
}

.header-nav .amww-nav a,.drawer-nav-item.amww-nav a{
    display: flex;
    align-items: center;
    gap: 4px;

}
li.header-nav-item.amww-nav img {
    width: 90%;
}
.header-nav .amww-nav a{
    justify-content: center;
}
.drawer-nav-item.amww-nav a{
    justify-content: flex-start;
}

.amww-nav span:nth-child(2) {
    display: flex;

}
:is(.header-nav-item, .drawer-nav-item) a.--amww::after {
    content: "";
    background: url(../img/earth.png) no-repeat center center / contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: -2px;
    margin-left: 5px;
}
@media screen and (min-width: 768px) {

    .inner {
        max-width: 1120px;
        padding: 0 20px;
        margin: 0 auto;
    }
    .sp-text-center {
        text-align: left;
    }

    /* -------------
        header
    -----------------*/
    .header-top {
        border-bottom: 2px solid #000;
    }
    .header-top-inner {
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    .header-top-txt {
        text-align: center;
        font-weight: bold;
        font-size: 17px;
        line-height: 1.2;
        font-family: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo, sans-serif;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .header-top-txt img {
        width: 220px;
    }
    .header-search-input {
        border: 1px solid #A0A0A0;
        padding: 5px 7px;
        width: 300px;
    }
    .header-search-text{
        width: 240px;
    }
    .header-search-button{
        background: #fff url(../img/search.png) no-repeat center right 12px / 20px auto;
        color: rgba(0,0,0,0) !important;
    }
    .sns-list li {
        width: 35px;
        height: 35px;
    }
    .sns-list li a {
        font-size: 20px;
    }
    .header-logo {
        width: 210px;
        margin: 15px auto;
    }
    .header-nav {
        background-color: #000;
        color: #fff;
        padding: 5px 0;
    }

    
    .header-nav-list {
        display: flex;
        align-items: center;
        border-right: 1px solid #fff;
    }
    .header-nav-item {
        width: 14.285%;
        border-left: 1px solid #fff;
    }
    .header-nav-item a {
        display: inline-block;
        width: 100%;
        text-align: center;
        font-weight: bold;
        transition: all .2s;
        font-family: 'HelveticaNeue', sans-serif;
        letter-spacing: .05em;
        font-size: 20px;
    }
    .header-nav-item a:hover {
        color: #E52416;
        opacity: 1;
    }
    .header-nav-item.active a {
        color: #E52416;
    }

    /* -------------
        footer
    -----------------*/
    .inner.footer-inner {
        padding-top: 30px;
        padding-bottom: 45px;
    }
    .footer-nav {
        display: flex;
        justify-content: center;
    }
    .footer-nav li:not(:last-of-type) {
        border-right: 1px solid #fff;
        padding-right: 10px;
        margin-right: 10px;
    }
    .footer-nav li a {
        line-height: 1;
        font-size: 15px;
    }
    .footer-logo {
        width: 130px;
        margin: 30px auto 0;
    }
    .copyright {
        font-size: 15px;
        margin-top: 20px;
    }
    .footer{
        margin-bottom: 90px;
    }
    /* -------------
        main
    -----------------*/
    .main {
        padding-top: 0;
    }
    .top {
        padding-top: 20px;
    }
    .top-slider {
        padding-bottom: 50px;
    }
    .top-slider-title {
        font-size: 22px;
        opacity: 0;
        transition: all 1.2s;
        padding: 0 20px;
    }
    .swiper-slide-active .top-slider-title {
        opacity: 1;
    }
    .top-slider-date {
        font-size: 14px;
        margin-top: 5px;
    }
    .swiper-horizontal>.swiper-pagination-bullets, 
    .swiper-pagination-bullets.swiper-pagination-horizontal, 
    .swiper-pagination-custom, 
    .swiper-pagination-fraction {
        bottom: 20px;
    }
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 10px;
    }

    .pr-list {
        flex-wrap: nowrap;
    }
    .pr-card {
        width: calc((100% / 5) - 10px * 4 / 5);
    }
    .whidth-max .pr-card {
        width: calc((100% / 3) - 10px * 2 / 3);
    }
    .whidth-max .pr-list {
        flex-wrap: wrap;
    }

    .pr-card:nth-child(n + 5) {
        display: block;
    }
    .pr-card > a {
        display: block;
        cursor: pointer;
    }

    .latest {
        margin-top: 30px;
    }
    .latest .inner {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .section-title {
        font-size: 28px;
    }
    .latest-list {
        margin-top: 20px;
    }
    .latest-cards {
        gap: 20px 20px;
    }
    .latest-card {
        width: calc((100% / 3) - 20px * 2 / 3 );
    }
    .latest-card:nth-child(n + 7) {
        display: flex;
    }
    .card-title {
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.6;
    }
    .tag {
        font-size: 13px;
        padding: 2px 5px;
    }
    .card-tags .tag {
        font-size: 13px;
        min-width: 80px;
        padding: 2px 10px;
    }
    .tag.tag-red {
        min-width: 40px!important;
    }
    .card-date {
        font-size: 12px;
    }

    .contents-flex {
        display: flex;
    }
    .contents-main {
        width: 65%;
    }
    .contents-sidebar {
        width: 35%;
        padding-left: 48px;
    }
    .contents-sidebar .section + .section {
        margin-top: 45px;
    }

    .section-title {
        text-align: left;
    }
    .section-title.title-bg-black {
        padding-left: 14px;
    }
    .section-title.border-title {
        text-align: left;
        margin-top: 35px;
        border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    }
    .section-title.border-top-title {
        font-size: 26px;
        padding-top: 12px;
    }
    .section-title.border-top-title.recommend-title {
        border-top: 2px solid #000;
        padding-top: 30px;
        margin-top: 50px;
        font-size: 28px;
    }
    .post-list {
        margin-top: 20px;
    }
    .pc-flex {
        display: flex;
    }
    .pc-flex .post-img {
        width: 43%;
        padding-top: 28%;
    }
    .pc-flex .post-txt {
        width: 57%;
        padding-left: 20px;
        margin-top: 0;
    }
    .post-detail {
        display: block;
        font-size: 13px;
        font-weight: normal;
        text-align: justify;
        margin-top: 5px;
        line-height: 1.5;
    }
    .post-title {
        font-size: 16px;
    }

    .view-more {
        font-size: 22px;
    }

    .post-list.post-list-row .post-flex {
        padding: 0;
    }
    .post-list.post-list-row + .view-more a {
        padding-right: 0;
    }
    .post-list .post-flex .post-img {
        width: 43%;
    }
    .post-list .post-flex .post-txt {
        width: 57%;
        padding-left: 20px;
    }
    .reco-list {
        gap: 20px 20px;
        margin-top: 20px;
    }
    .reco-item {
        width: calc(25% - 20px * 3 / 4);
    }
    .reco-item .post-title {
        font-size: 12px;
    }

    .search-link {
        font-size: 22px;
    }
    .search-link + .search-link {
        margin-top: 30px;
    }
    .m-c-left {
        width: 72px;
        height: 72px;
    }
    .m-c-left img {
        width: 55px;
    }
    .m-c-left img.--mecedes {
        max-height: 45px;
    }
    .m-c-right {
        width: calc(100% - 72px);
    }
    .m-c-logo {
        height: 26px;
    }
    .ranking-wrap {
        display: block;
    }
    .rank-item {
        width: 100%;
        padding: 0 0 10px 30px;
        margin-bottom: 10px;
    }
    .rank-item > a {
        display: flex;
    }
    .rank-item > a .post-img {
        width: 30%;
        padding-top: 30%;
    }
    .rank-item > a .post-txt {
        width: 70%;
    }
    .rank-item::before {
        top: 50%;
        right: auto;
        left: 0;
        transform: translateY(-73%);
        width: auto;
    }
    .rank-item .post-txt {
        margin-top: 0;
        padding-left: 15px;
    }
    .rank-item .post-txt .post-title {
        margin-top: 0;
        font-size: 15px;
    }
    .rank-item:nth-of-type(9) {
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #C8C8C8;
    }
    .a-s-title {
        font-size: 30px;
    }
    .highright .post-item:nth-child(n + 4) {
        display: block;
    }

    /* -----------------
    category top
    -------------------*/
    .cate-top-flex {
        display: flex;
        align-items: center;
    }
    .cate-top-name {
        min-width: 300px;
        border: 7px solid #000;
        font-size: 28px;
    }
    .cate-top-txt {
        padding-left: 30px;
        font-size: 18px;
        margin-top: 0;
    }
    .category-post-list {
        padding-top: 27px;
    }
    .category-top-page .contents-flex {
        margin-top: 30px;
    }
    .cate-flex .post-img {
        width: 43%;
        padding-top: 28%;
    }
    .cate-flex .post-txt {
        width: 57%;
        padding-left: 20px;
    }
    .cate-flex .post-txt .post-title {
        font-size: 16px;
    }
    .cate-post + .cate-post {
        margin-top: 26px;
        padding-top: 26px;
    }
    .pagination {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 22px;
    }
    .page-current-number {
        margin-right: 14px;
    }
    .nav-links > .page-numbers + .page-numbers {
        margin-left: 14px;
    }
    .page-numbers + .page-numbers:not(.next)::before {
        top: 52%;
        left: -12px;
    }
    /* -----------------
        article
    ---------------------*/
    .article-head-top {
        margin-top: 20px;
    }
    .article-head-top-wrap .cate-top-name {
        min-width: 220px;
        padding: 0 5px;
    }
    .article-head-top-wrap .article-share {
        font-size: 18px;
    }
    .article-head-top-wrap .sns-list li {
        width: 40px;
        height: 40px;
    }
    .article-head-top-wrap .sns-list li a {
        font-size: 24px;
    }
    .article-head-top-wrap .sns-list li a.line-icon img {
        width: 26px;
        height: 26px;
    }
    .article-main-img {
        max-width: 1080px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30%;
        margin: 20px auto 0;
    }
    .article-main-title {
        margin-top: 24px;
    } 
    .article-top-info {
        margin-top: 18px;
    }
    .article-main-title h1 {
        font-size: 28px;
    }
    .article-top-info p {
        font-size: 14px;
        line-height: 1.5;
    }
    .article-main {
        margin-top: 27px;
        /* min-height: 1580px; */
    }
    .article-content h2 {
        font-size: 28px;
    }
    .article-content h2, .article-content h3 {
        margin: 30px 0;
    }

    .article-content p {
        font-size: 18px;
        line-height: 1.6;
    }
    .movarea span, .parts span{
        font-size: 18px!important;
    }
    .article-content h3 {
        font-size: 24px;
        min-height: 36px;
        padding-left: 14px;
        border-left: 12px solid #000
    }
    .article-content .entry-content > * + * img {
        margin-top: 0;
    }
      .comment-content h4, .entry-content h4 {
    font-size: 130%;
    }
  .comment-content h5, .entry-content h5 {
    font-size: 120%;
    }
  .comment-content h6, .entry-content h6 {
    font-size: 110%;
    }
    .article-content p .cap {
        font-size: 13px;
        margin-bottom: 0;
    }
    .next-page-title a {
        font-size: 18px;
    }
    .article-tag dt {
        width: 100px;
        font-size: 18px;
    }
    .article-tag dd {
        width: calc(100% - 100px);
        font-size: 18px;
    }
    .article-tag-list {
        gap: 13px 16px;
    }
    .article-tag + .article-tag {
        margin-top: 16px;
    }
    .related-article {
        margin-top: 74px;
    }
    .section-title.related-title {
        font-size: 20px;
    }
    .rela-post {
        align-items: normal;
    }
    .rela-title {
        font-size: 19px;
        flex-grow: 1;
    }
    .rela-img {
        width: 20%;
        padding-top: 20%;
    }
    .rela-txt {
        width: calc(100% - 20%);
        display: flex;
        flex-direction: column;
    }
    .rela-tag.article-tag-list li a {
        font-size: 18px;
    }
    .pr.pc-show.whidth-max {
       /* margin: 0 calc(50% - 63vw) 0 0;*/
        position: relative;
        z-index: 10;
        max-width: 1080px;
    }
    /* .article-gallery-list li:nth-child(n + 9) {
        display: block;
    } */
    .article-gallery-list li {
        width: calc(16.6% - 10px * 5 / 6);
        padding-top: 15%;
    }
    .gallery-more-btn {
        font-size: 16px;
        padding: 7px 0;
    }
    .article-foot-author {
        margin-top: 60px;
    }
    .article-foot {
        margin-top: 50px;
    }

    .author-grid {
        grid-template-rows: 1.1fr 2fr;
        grid-template-columns: 170px auto;
    }
    .ag-pic {
        grid-row: 1 / 3;
        grid-column: 1 / 2;
    }
    .ag-info {
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        padding-left: 30px;
    }
    .ag-info .name {
        font-size: 22px;
    }
    .ag-info .detail {
        font-size: 16px;
    }
    .ag-txt {
        grid-row: 2 / 3;
        grid-column: 2 / 3;
        padding-left: 30px;
        padding-top: 0;
        font-size: 13px;
    }
    .author-more-btn {
        font-size: 16px;
    }

    /* ------------------
        PHOTO GALLERY
    ---------------------*/
    .gallery-page .contents-main {
        margin-top: 0;
    }
    .gallery-page .article-head-top {
        margin-top: 27px;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 7px;
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 7px;
    }
    .swiper-button-next:after, 
    .swiper-rtl .swiper-button-prev:after,
    .swiper-button-prev:after, 
    .swiper-rtl .swiper-button-next:after {
        width: 28px;
        height: 30px;
    }
    
    .post-thumb-cap {
        font-size: 13px;
    }
    .photo-page-back {
        margin-top: 25px;
    }
    .photo-page-back.page-break a .txt {
        font-size: 16px;
        padding: 6px 65px;
    }
    .gallery-thumb-slider {
        max-height: min(20vw, 227px);
    }
    .gallery-thumb-slider .thumbnail-img {
        width: calc(16.666% - 10px * 5 / 6)!important;
        padding-top: 15.4%;
    }
    .swiper-button-next, .swiper-button-prev {
        top: 48%;
    }
    .gallery-tag {
        margin-top: 40px;
    }

    /* -----------------
        BRAND LIST
    -------------------*/
    .page-top-title {
        margin-top: 30px;
    }
    .page-top-title.brand-title {
        text-align: left;
    }
    .page-top-title .top {
        font-size: 42px;
        border-bottom: 8px solid #000;
        margin-bottom: 8px;
        padding-bottom: 2px;
    }
    .page-top-title .bottom {
        font-size: 35px;
    }
    .car-brand-list {
        margin-top: 50px;
    }
    .car-brand-item + .car-brand-item {
        margin-top: 50px;
    }
    .car-brand-item dt {
        font-size: 28px;
    }
    .car-brand-item dd {
        margin-top: 20px;
    }
    .brand-name-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 0;
    }
    .brand-name-list li {
        width: 33.3%;
    }
    .brand-name-list li a {
        font-size: 20px;
    }
    .brand-list-page + .footer {
        margin-top: 140px;
    }
    .brand-detail-page .contents-flex {
        margin-top: 30px;
    }

    /* -----------------------
        MEDIA CONTENTS
    ------------------------*/
    .madia-title {
        display: flex;
        align-items: center;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .media-title-img img {
        height: 75px;
    }
    .madia-title-txt {
        padding-left: 20px;
        font-size: 18px;
        text-align: left;
        line-height: 1.5;
    }
    .media-page .contents-flex {
        margin-top: 30px;
    }
    .article-share.media-share {
        margin-top: 60px;
    }
    .article-share.media-share span {
        font-weight: normal;
        font-size: 18px;
    }
    .media-share .sns-list li {
        width: 38px;
        height: 39px;
    }
    .media-share .sns-list li a {
        font-size: 23px;
    }

    /* ------------------
        TAG記事一覧
    ---------------------*/
    .page-top-title.search-tag-title {
        margin-top: 20px;
    }
    .page-top-title.search-tag-title .top {
        font-size: 28px;
        border-bottom: 6px solid #000;
        margin-bottom: 0;
    }
    .article-share.tag-share {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .search-tag-content {
        min-height: 2300px;
    }

    /* =================
    著者一覧、詳細
    ====================*/
    .author-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 60px;
        margin-top: 25px;
    }
    .author-card {
        width: calc(50% - 60px / 2);
        padding-top: 20px;
        padding-bottom: 12px;
    }
    .author-card:nth-of-type(2) {
        border-top: 1.5px solid #000;
    }
    .author-card .author-grid {
        grid-template-columns: 28.5% auto;
        grid-template-rows: 90px 53%;
    }
    .author-card .author-grid .ag-txt {
        line-height: 1.5;
    }
    .main.author-list-page + .footer {
        margin-top: 100px;
    }
    .author-card .author-more-btn {
        margin-top: 15px;
    }
    .author-article-head {
        margin-top: 28px;
    }
    .author-article-head .author-card {
        width: 100%;
    }
    .author-article-content {
        margin-top: 20px;
    }
    .author-share {
        margin-top: -20px;
        margin-bottom: 60px;
    }
    .author-article-content {
        min-height: 2060px;
    }

    /* ================
        フッターページ
    ==================*/
    .page-title {
        font-size: 28px;
        padding-top: 20px;
        margin-bottom: 20px;
    }
    .page-content h3 {
        font-size: 25px;
    }
    .page-content {
        font-size: 18px;
    }
    .page-content * + * {
        margin-top: 25px;
    }
    .company-dl {
        margin-top: 25px;
    }
    .access-map {
        margin-top: 10px!important;
        margin-bottom: 35px;
    }
    .company-dl.--download {
        margin-top: 70px!important;
        font-size: 19px;
    }
    .privacy-content {
        font-size: 18px;
        line-height: 1.6;
    }
    .privacy-content ol {
        line-height: 1.6;
    }
    .privacy-dl dt {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .privacy-dl dd p + .dots-list {
        margin-top: 10px;
    }
    .dots-list li {
        padding-left: 20px;
    }
    .privacy-dl.--advertising dt {
        font-size: 18px;
    }

    .ad-layout {
        margin-top: 20px;
    }
    .ad-flex {
        display: flex;
        margin-top: 40px;
        justify-content: space-between;    
    }
    .ad-flex-item {
        text-align: center;
    }
    
}
    /* ================
        車を文化する 
    ==================*/

@media screen and (max-width: 768px) {
    div#primary {
        width: 100%;
        max-width: 690px;
        overflow: hidden;
        padding-bottom: 270px;
        min-height: auto;
        display: block;
        padding-bottom: 40px;
        max-width: 690px;
        padding-top: 60px;
    }
    ul#usedcar-search-list li {
        flex: 0 0 calc(33.3333333% - 10px);
    
    }
    .contents-flex {
        flex-flow: column;
    }
    #primary .contents-sidebar {
        width: 100%;
    }

}
@media screen and (max-width: 520px) {
    #usedcar-search-forms ul {
        flex-direction: column;
        align-items: flex-start;
    }
    #usedcar-search-forms ul li {
        flex-basis: 50%;
    }
    #usedcar-search-forms ul li {
        width: 100%;
    }
    ul#usedcar-search-list li {
        flex: 0 0 calc(50% - 10px);
    }
    #content.usedcar-search {
        padding: 10px;
    }
    .wct-related-posts:not(.text) ul {
        flex-direction: column;
    }
    .wct-related-posts:not(.text) ul li a img {
        width: auto;
        float: left;
        max-width: 90px;
        margin-right: 8px;
    }
    .wct-related-posts:not(.text) ul li .tags {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .wct-related-posts:not(.text) ul li {
        clear: both;
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
        padding-bottom: 5px;
        border-bottom: 1px solid #ccc;
        overflow: hidden;
    }
    h1.entry-title {
        font-size: 160%;
        margin-top: 10px;

    }
    .wct-related-posts ul li .tags {
        clear: both;
    }
    .wct-related-posts ul li p {
        font-size: 1.3rem;
        max-height: 3rem;
    }
}
    /* ================
        車を文化する  詳細
    ==================*/
    @media screen and (max-width: 768px) {

    .gallery-table-wrapper {
        flex-direction: column;
    }
    .usedcar-search-result .entry-content .equipment-list ul li {
        flex: 0 1 calc(50% - 20px);
    }
    /* ================
      トップページ
    ==================*/

    section.section.highright .post-flex {
        flex-flow: column; 
    }
    section.section.highright .post-flex .post-img {
        width: 100%;
        padding-top: 68%;
    
    }
    section.section.highright .post-flex .post-txt {
        margin-top: 10px;
        width: 100%;
        padding-left: 0px;
    }
}
    @media screen and (max-width: 375px) {
    .gallery-table-wrapper .table-wrapper {
        margin-left: 10px;
        margin-right: 10px;
    }
    .usedcar-search-result .entry-content .table-wrapper .shop-info-table td {
        text-align: left;
    }
    .usedcar-search-result article {
        padding: 5px;
    }
    .comment-content h3, .entry-content h3 {
        font-size: 18px;
    }
    
    .map-wrapper iframe{
        width: 100%;
    }
    .usedcar-search-result .entry-content .shop-info-wrapper h2 span {
        font-size: 2.4rem;
    }
    .usedcar-search-result .entry-content .shop-info-wrapper table th {
        font-size: 1em;
    }
    .wct-related-posts h3 {
        margin: 0 0 2.8rem;
    }
}
@media screen and (min-width: 768px) and (max-width: 899px) {
    .header-search-input {
        width: 220px;
    }
    .pr-foot {
        display: block;
    }
    .search-link {
        font-size: 17px;
    }
    .contents-sidebar {
        padding-left: 20px;
    }
    .cate-top-txt {
        font-size: 15px;
    }
    .brand-name-list li a {
        font-size: 16px;
    }
    .article-main {
        min-height: 1620px;
    }
    .author-card .author-grid .ag-txt {
        padding-top: 10px;
    }
    
}

.fadeUpTrigger{
    opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.daily_image img {
    width: fit-content;
    height: fit-content;
    object-fit: cover;
    margin-bottom: 10px;
} 
/* koide add */
/* 日めくり画像上のバナー設定 */
.side_banner p img{
    width: 100%;
}
/* twitter logo設定 */
.twitter-logo::before {
    background:url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1200 1227"><path fill="white" d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" /></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    text-align: center;
    margin-top: 2px;
}
.twitter-logo.ap-black::before {
    background:url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 1200 1227"><path fill="black" d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" /></svg>');
}

/* ========================== */
.usedcar-search-result .entry-content .table-wrapper table .price {
    border-top: 1px solid #666;
}
.usedcar-search-result .entry-content .table-wrapper table tr.price-header {
    border-top: 2px solid #e50014;
}
.usedcar-search-result .entry-content .table-wrapper table tr {
    border-bottom: 1px solid #e50014;
}
.usedcar-search-result .entry-content .table-wrapper table .price {
    border-bottom: 2px solid #e50014;
}
.usedcar-search-result .entry-content .table-wrapper table tr.price td {
    font-size: 16px
}
.usedcar-search-result .entry-content .table-wrapper table td {
    vertical-align: middle;
}
.usedcar-search-result .entry-content .table-wrapper table .price-header02 {
    font-size: 32px;
    font-weight: bold;
    color: #e50014;
}
.usedcar-search-result .entry-content .table-wrapper table .price-header02 span {
    color: #000;
    font-size: 1.2rem;
}
.usedcar-search-result .entry-content .table-wrapper table .price-header02 .price-header03 {
    font-size: 19px;
    color: #666;
}
.usedcar-search-result .entry-content .table-wrapper table .price-header04 {
    color: #e50014;
    line-height: 1.6;
}

/* 本文中のテーブル */
.article-content .entry-content table {
    table-layout: auto;
}
.article-content .entry-content table td {
    border: 1px solid #dcdcdc;
    width: auto;
    font-size: 16px;
    padding: .5em .75em;
    vertical-align: top;
}
