@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;
}
.section-title img {
    height: 15px;
    vertical-align: 0;
}
.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: 16px;
    font-weight: bold;
    flex-wrap: wrap;
}
.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 0;
}
.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;
    padding: 0;
}
.page-numbers + .page-numbers {
    position: relative;
    display: inline-block;
}
.page-numbers:not(.prev) + .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;
    position: relative;
}
.gallery-page .article-main:has(.gallery-back-btn) {
    margin-top: 0;
}
.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;
}
.article-content > iframe {
    width: 100%;
    margin: 30px 0;
}
#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%;
}
.wp-caption .wp-caption-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #5c5c5c;
}
.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;
    cursor: pointer;
}
.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;
}
.gallery-main :is(.swiper-button-next, .swiper-button-prev) {
    top: 33vw;
}


/* =================
    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;

}
.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 {
        height: 13px;
        vertical-align: -1px;
        background: #fff;
    }
    .header-nav-item .--car {
        -webkit-mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.634%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_608%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20608%22%20transform%3D%22translate(-233.989%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10299%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010299%22%20d%3D%22M237.117%2C128.18a.756.756%2C0%2C0%2C0-.816-.6c-.586%2C0-.9.354-.9%2C1.154v.765c0%2C.764.306%2C1.154.9%2C1.154a.714.714%2C0%2C0%2C0%2C.816-.6h1.343c-.2%2C1.1-.918%2C1.579-2.159%2C1.579a2.038%2C2.038%2C0%2C0%2C1-2.312-2.131v-.765A2.031%2C2.031%2C0%2C0%2C1%2C236.3%2C126.6a1.934%2C1.934%2C0%2C0%2C1%2C2.159%2C1.579Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10300%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010300%22%20d%3D%22M238.8%2C131.557l2.04-4.885h1.36l2.04%2C4.885h-1.505l-.314-.835h-1.811l-.3.835Zm2.176-1.812h1.08l-.536-1.445Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10301%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010301%22%20d%3D%22M248.076%2C131.557l-.977-1.848h-.731v1.848h-1.411v-4.885h2.21c1.351%2C0%2C2.218.517%2C2.218%2C1.536a1.314%2C1.314%2C0%2C0%2C1-.935%2C1.3l1.173%2C2.053ZM247%2C128.732c.569%2C0%2C.977-.064.977-.524s-.408-.559-.977-.559h-.629v1.083Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.634%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_608%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20608%22%20transform%3D%22translate(-233.989%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10299%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010299%22%20d%3D%22M237.117%2C128.18a.756.756%2C0%2C0%2C0-.816-.6c-.586%2C0-.9.354-.9%2C1.154v.765c0%2C.764.306%2C1.154.9%2C1.154a.714.714%2C0%2C0%2C0%2C.816-.6h1.343c-.2%2C1.1-.918%2C1.579-2.159%2C1.579a2.038%2C2.038%2C0%2C0%2C1-2.312-2.131v-.765A2.031%2C2.031%2C0%2C0%2C1%2C236.3%2C126.6a1.934%2C1.934%2C0%2C0%2C1%2C2.159%2C1.579Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10300%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010300%22%20d%3D%22M238.8%2C131.557l2.04-4.885h1.36l2.04%2C4.885h-1.505l-.314-.835h-1.811l-.3.835Zm2.176-1.812h1.08l-.536-1.445Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10301%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010301%22%20d%3D%22M248.076%2C131.557l-.977-1.848h-.731v1.848h-1.411v-4.885h2.21c1.351%2C0%2C2.218.517%2C2.218%2C1.536a1.314%2C1.314%2C0%2C0%2C1-.935%2C1.3l1.173%2C2.053ZM247%2C128.732c.569%2C0%2C.977-.064.977-.524s-.408-.559-.977-.559h-.629v1.083Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
    }
    .header-nav-item .--custom {
        -webkit-mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032.425%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_609%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20609%22%20transform%3D%22translate(-285.157%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10302%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010302%22%20d%3D%22M288.285%2C128.18a.756.756%2C0%2C0%2C0-.816-.6c-.586%2C0-.9.354-.9%2C1.154v.765c0%2C.764.306%2C1.154.9%2C1.154a.714.714%2C0%2C0%2C0%2C.816-.6h1.343c-.2%2C1.1-.918%2C1.579-2.159%2C1.579a2.038%2C2.038%2C0%2C0%2C1-2.312-2.131v-.765a2.031%2C2.031%2C0%2C0%2C1%2C2.312-2.131%2C1.934%2C1.934%2C0%2C0%2C1%2C2.159%2C1.579Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10303%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010303%22%20d%3D%22M295.147%2C126.672v2.91c0%2C1.444-1.011%2C2.046-2.311%2C2.046s-2.312-.6-2.312-2.039v-2.917h1.411v2.917c0%2C.715.255%2C1.062.9%2C1.062s.9-.347.9-1.062v-2.917Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10304%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010304%22%20d%3D%22M299.266%2C128.024a1.1%2C1.1%2C0%2C0%2C0-1.045-.446c-.468%2C0-.672.177-.672.425%2C0%2C.29.306.453%2C1.046.63%2C1.275.305%2C1.759.7%2C1.759%2C1.536%2C0%2C.885-.714%2C1.459-2.048%2C1.459a2.969%2C2.969%2C0%2C0%2C1-2.346-.8l1.054-.616a1.483%2C1.483%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.1-.658-1.19-.319-1.7-.772-1.7-1.558%2C0-.807.637-1.409%2C2.065-1.409a2.575%2C2.575%2C0%2C0%2C1%2C2.108.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10305%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010305%22%20d%3D%22M305.472%2C126.672v.977h-1.53v3.908h-1.411v-3.908H301v-.977Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10306%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010306%22%20d%3D%22M308.434%2C131.628a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.319%2C2.319%2C0%2C0%2C1%2C4.623%2C0v.765A2.037%2C2.037%2C0%2C0%2C1%2C308.434%2C131.628Zm-.9-2.131c0%2C.8.314%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.314-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10307%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010307%22%20d%3D%22M314.684%2C129.15l1.58-2.478h1.318v4.885h-1.326V128.8l-1.207%2C1.954h-.757l-1.181-1.933v2.74h-1.326v-4.885h1.309Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032.425%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_609%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20609%22%20transform%3D%22translate(-285.157%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10302%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010302%22%20d%3D%22M288.285%2C128.18a.756.756%2C0%2C0%2C0-.816-.6c-.586%2C0-.9.354-.9%2C1.154v.765c0%2C.764.306%2C1.154.9%2C1.154a.714.714%2C0%2C0%2C0%2C.816-.6h1.343c-.2%2C1.1-.918%2C1.579-2.159%2C1.579a2.038%2C2.038%2C0%2C0%2C1-2.312-2.131v-.765a2.031%2C2.031%2C0%2C0%2C1%2C2.312-2.131%2C1.934%2C1.934%2C0%2C0%2C1%2C2.159%2C1.579Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10303%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010303%22%20d%3D%22M295.147%2C126.672v2.91c0%2C1.444-1.011%2C2.046-2.311%2C2.046s-2.312-.6-2.312-2.039v-2.917h1.411v2.917c0%2C.715.255%2C1.062.9%2C1.062s.9-.347.9-1.062v-2.917Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10304%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010304%22%20d%3D%22M299.266%2C128.024a1.1%2C1.1%2C0%2C0%2C0-1.045-.446c-.468%2C0-.672.177-.672.425%2C0%2C.29.306.453%2C1.046.63%2C1.275.305%2C1.759.7%2C1.759%2C1.536%2C0%2C.885-.714%2C1.459-2.048%2C1.459a2.969%2C2.969%2C0%2C0%2C1-2.346-.8l1.054-.616a1.483%2C1.483%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.1-.658-1.19-.319-1.7-.772-1.7-1.558%2C0-.807.637-1.409%2C2.065-1.409a2.575%2C2.575%2C0%2C0%2C1%2C2.108.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10305%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010305%22%20d%3D%22M305.472%2C126.672v.977h-1.53v3.908h-1.411v-3.908H301v-.977Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10306%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010306%22%20d%3D%22M308.434%2C131.628a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.319%2C2.319%2C0%2C0%2C1%2C4.623%2C0v.765A2.037%2C2.037%2C0%2C0%2C1%2C308.434%2C131.628Zm-.9-2.131c0%2C.8.314%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.314-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10307%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010307%22%20d%3D%22M314.684%2C129.15l1.58-2.478h1.318v4.885h-1.326V128.8l-1.207%2C1.954h-.757l-1.181-1.933v2.74h-1.326v-4.885h1.309Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
    }
    .header-nav-item .--classic {
        -webkit-mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032.859%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_610%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20610%22%20transform%3D%22translate(-344.823%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10308%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010308%22%20d%3D%22M347.951%2C128.18a.757.757%2C0%2C0%2C0-.816-.6c-.587%2C0-.9.354-.9%2C1.154v.765c0%2C.764.306%2C1.154.9%2C1.154a.714.714%2C0%2C0%2C0%2C.816-.6h1.342c-.2%2C1.1-.918%2C1.579-2.158%2C1.579a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.031%2C2.031%2C0%2C0%2C1%2C2.312-2.131%2C1.933%2C1.933%2C0%2C0%2C1%2C2.158%2C1.579Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10309%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010309%22%20d%3D%22M351.6%2C130.58h2.294v.977h-3.706v-4.885H351.6Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10310%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010310%22%20d%3D%22M354.386%2C131.557l2.04-4.885h1.36l2.04%2C4.885h-1.5l-.314-.835H356.2l-.305.835Zm2.176-1.812h1.08l-.536-1.445Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10311%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010311%22%20d%3D%22M363.59%2C128.024a1.107%2C1.107%2C0%2C0%2C0-1.046-.446c-.467%2C0-.671.177-.671.425%2C0%2C.29.306.453%2C1.045.63%2C1.275.305%2C1.76.7%2C1.76%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.966%2C2.966%2C0%2C0%2C1-2.345-.8l1.054-.616a1.48%2C1.48%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.105-.658-1.19-.319-1.7-.772-1.7-1.558%2C0-.807.638-1.409%2C2.065-1.409a2.574%2C2.574%2C0%2C0%2C1%2C2.108.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10312%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010312%22%20d%3D%22M368.692%2C128.024a1.107%2C1.107%2C0%2C0%2C0-1.046-.446c-.467%2C0-.671.177-.671.425%2C0%2C.29.306.453%2C1.046.63%2C1.274.305%2C1.759.7%2C1.759%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.966%2C2.966%2C0%2C0%2C1-2.345-.8l1.054-.616a1.482%2C1.482%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.1-.658-1.19-.319-1.7-.772-1.7-1.558%2C0-.807.638-1.409%2C2.065-1.409a2.574%2C2.574%2C0%2C0%2C1%2C2.108.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10313%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010313%22%20d%3D%22M372.138%2C131.557h-1.411v-4.885h1.411Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10314%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010314%22%20d%3D%22M376.339%2C128.18a.757.757%2C0%2C0%2C0-.816-.6c-.586%2C0-.9.354-.9%2C1.154v.765c0%2C.764.306%2C1.154.9%2C1.154a.714.714%2C0%2C0%2C0%2C.816-.6h1.343c-.2%2C1.1-.918%2C1.579-2.159%2C1.579a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.031%2C2.031%2C0%2C0%2C1%2C2.312-2.131%2C1.935%2C1.935%2C0%2C0%2C1%2C2.159%2C1.579Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2032.859%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_610%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20610%22%20transform%3D%22translate(-344.823%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10308%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010308%22%20d%3D%22M347.951%2C128.18a.757.757%2C0%2C0%2C0-.816-.6c-.587%2C0-.9.354-.9%2C1.154v.765c0%2C.764.306%2C1.154.9%2C1.154a.714.714%2C0%2C0%2C0%2C.816-.6h1.342c-.2%2C1.1-.918%2C1.579-2.158%2C1.579a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.031%2C2.031%2C0%2C0%2C1%2C2.312-2.131%2C1.933%2C1.933%2C0%2C0%2C1%2C2.158%2C1.579Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10309%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010309%22%20d%3D%22M351.6%2C130.58h2.294v.977h-3.706v-4.885H351.6Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10310%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010310%22%20d%3D%22M354.386%2C131.557l2.04-4.885h1.36l2.04%2C4.885h-1.5l-.314-.835H356.2l-.305.835Zm2.176-1.812h1.08l-.536-1.445Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10311%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010311%22%20d%3D%22M363.59%2C128.024a1.107%2C1.107%2C0%2C0%2C0-1.046-.446c-.467%2C0-.671.177-.671.425%2C0%2C.29.306.453%2C1.045.63%2C1.275.305%2C1.76.7%2C1.76%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.966%2C2.966%2C0%2C0%2C1-2.345-.8l1.054-.616a1.48%2C1.48%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.105-.658-1.19-.319-1.7-.772-1.7-1.558%2C0-.807.638-1.409%2C2.065-1.409a2.574%2C2.574%2C0%2C0%2C1%2C2.108.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10312%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010312%22%20d%3D%22M368.692%2C128.024a1.107%2C1.107%2C0%2C0%2C0-1.046-.446c-.467%2C0-.671.177-.671.425%2C0%2C.29.306.453%2C1.046.63%2C1.274.305%2C1.759.7%2C1.759%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.966%2C2.966%2C0%2C0%2C1-2.345-.8l1.054-.616a1.482%2C1.482%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.1-.658-1.19-.319-1.7-.772-1.7-1.558%2C0-.807.638-1.409%2C2.065-1.409a2.574%2C2.574%2C0%2C0%2C1%2C2.108.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10313%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010313%22%20d%3D%22M372.138%2C131.557h-1.411v-4.885h1.411Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10314%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010314%22%20d%3D%22M376.339%2C128.18a.757.757%2C0%2C0%2C0-.816-.6c-.586%2C0-.9.354-.9%2C1.154v.765c0%2C.764.306%2C1.154.9%2C1.154a.714.714%2C0%2C0%2C0%2C.816-.6h1.343c-.2%2C1.1-.918%2C1.579-2.159%2C1.579a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.031%2C2.031%2C0%2C0%2C1%2C2.312-2.131%2C1.935%2C1.935%2C0%2C0%2C1%2C2.159%2C1.579Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
    }
    .header-nav-item .--outdoor {
        -webkit-mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2037.577%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_611%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20611%22%20transform%3D%22translate(-402.282%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10315%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010315%22%20d%3D%22M404.594%2C131.628a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.319%2C2.319%2C0%2C0%2C1%2C4.623%2C0v.765A2.037%2C2.037%2C0%2C0%2C1%2C404.594%2C131.628Zm-.9-2.131c0%2C.8.314%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.315-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10316%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010316%22%20d%3D%22M412.534%2C126.672v2.91c0%2C1.444-1.011%2C2.046-2.311%2C2.046s-2.312-.6-2.312-2.039v-2.917h1.411v2.917c0%2C.715.255%2C1.062.9%2C1.062s.9-.347.9-1.062v-2.917Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10317%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010317%22%20d%3D%22M417.811%2C126.672v.977h-1.53v3.908H414.87v-3.908h-1.53v-.977Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10318%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010318%22%20d%3D%22M418.617%2C131.557v-4.885H420.8c1.335%2C0%2C2.312.545%2C2.312%2C2.088v.708c0%2C1.53-.977%2C2.089-2.312%2C2.089Zm3.085-2.089v-.708c0-.658-.17-1.111-.9-1.111h-.773v2.931h.773C421.532%2C130.58%2C421.7%2C130.127%2C421.7%2C129.468Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10319%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010319%22%20d%3D%22M426.321%2C131.628a2.037%2C2.037%2C0%2C0%2C1-2.311-2.131v-.765a2.319%2C2.319%2C0%2C0%2C1%2C4.623%2C0v.765A2.037%2C2.037%2C0%2C0%2C1%2C426.321%2C131.628Zm-.9-2.131c0%2C.8.314%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.315-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10320%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010320%22%20d%3D%22M431.842%2C131.628a2.038%2C2.038%2C0%2C0%2C1-2.313-2.131v-.765a2.32%2C2.32%2C0%2C0%2C1%2C4.624%2C0v.765A2.037%2C2.037%2C0%2C0%2C1%2C431.842%2C131.628Zm-.9-2.131c0%2C.8.315%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.314-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10321%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010321%22%20d%3D%22M438.312%2C131.557l-.977-1.848H436.6v1.848h-1.411v-4.885h2.21c1.352%2C0%2C2.218.517%2C2.218%2C1.536a1.314%2C1.314%2C0%2C0%2C1-.934%2C1.3l1.172%2C2.053Zm-1.079-2.825c.57%2C0%2C.978-.064.978-.524s-.408-.559-.978-.559H436.6v1.083Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2037.577%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_611%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20611%22%20transform%3D%22translate(-402.282%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10315%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010315%22%20d%3D%22M404.594%2C131.628a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.319%2C2.319%2C0%2C0%2C1%2C4.623%2C0v.765A2.037%2C2.037%2C0%2C0%2C1%2C404.594%2C131.628Zm-.9-2.131c0%2C.8.314%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.315-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10316%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010316%22%20d%3D%22M412.534%2C126.672v2.91c0%2C1.444-1.011%2C2.046-2.311%2C2.046s-2.312-.6-2.312-2.039v-2.917h1.411v2.917c0%2C.715.255%2C1.062.9%2C1.062s.9-.347.9-1.062v-2.917Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10317%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010317%22%20d%3D%22M417.811%2C126.672v.977h-1.53v3.908H414.87v-3.908h-1.53v-.977Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10318%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010318%22%20d%3D%22M418.617%2C131.557v-4.885H420.8c1.335%2C0%2C2.312.545%2C2.312%2C2.088v.708c0%2C1.53-.977%2C2.089-2.312%2C2.089Zm3.085-2.089v-.708c0-.658-.17-1.111-.9-1.111h-.773v2.931h.773C421.532%2C130.58%2C421.7%2C130.127%2C421.7%2C129.468Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10319%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010319%22%20d%3D%22M426.321%2C131.628a2.037%2C2.037%2C0%2C0%2C1-2.311-2.131v-.765a2.319%2C2.319%2C0%2C0%2C1%2C4.623%2C0v.765A2.037%2C2.037%2C0%2C0%2C1%2C426.321%2C131.628Zm-.9-2.131c0%2C.8.314%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.315-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10320%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010320%22%20d%3D%22M431.842%2C131.628a2.038%2C2.038%2C0%2C0%2C1-2.313-2.131v-.765a2.32%2C2.32%2C0%2C0%2C1%2C4.624%2C0v.765A2.037%2C2.037%2C0%2C0%2C1%2C431.842%2C131.628Zm-.9-2.131c0%2C.8.315%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.314-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10321%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010321%22%20d%3D%22M438.312%2C131.557l-.977-1.848H436.6v1.848h-1.411v-4.885h2.21c1.352%2C0%2C2.218.517%2C2.218%2C1.536a1.314%2C1.314%2C0%2C0%2C1-.934%2C1.3l1.172%2C2.053Zm-1.079-2.825c.57%2C0%2C.978-.064.978-.524s-.408-.559-.978-.559H436.6v1.083Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
    }
    .header-nav-item .--life {
        -webkit-mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.426%204.885%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_612%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20612%22%20transform%3D%22translate(-473.134%20-126.672)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10322%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010322%22%20d%3D%22M474.545%2C130.58h2.294v.977h-3.7v-4.885h1.411Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10323%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010323%22%20d%3D%22M479.1%2C131.557h-1.411v-4.885H479.1Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10324%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010324%22%20d%3D%22M484.008%2C126.672v.977h-2.295v1.005h2.04v.977h-2.04v1.926H480.3v-4.885Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10325%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010325%22%20d%3D%22M488.56%2C126.672v.977h-2.294v.892H488.3v.977h-2.039v1.062h2.294v.977h-3.706v-4.885Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.426%204.885%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_612%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20612%22%20transform%3D%22translate(-473.134%20-126.672)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10322%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010322%22%20d%3D%22M474.545%2C130.58h2.294v.977h-3.7v-4.885h1.411Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10323%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010323%22%20d%3D%22M479.1%2C131.557h-1.411v-4.885H479.1Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10324%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010324%22%20d%3D%22M484.008%2C126.672v.977h-2.295v1.005h2.04v.977h-2.04v1.926H480.3v-4.885Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10325%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010325%22%20d%3D%22M488.56%2C126.672v.977h-2.294v.892H488.3v.977h-2.039v1.062h2.294v.977h-3.706v-4.885Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
    }
    .header-nav-item .--sport {
        -webkit-mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.719%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_613%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20613%22%20transform%3D%22translate(-527.679%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10326%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010326%22%20d%3D%22M530.985%2C128.024a1.105%2C1.105%2C0%2C0%2C0-1.046-.446c-.466%2C0-.67.177-.67.425%2C0%2C.29.3.453%2C1.044.63%2C1.276.305%2C1.76.7%2C1.76%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.966%2C2.966%2C0%2C0%2C1-2.345-.8l1.054-.616a1.482%2C1.482%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.1-.658-1.191-.319-1.7-.772-1.7-1.558%2C0-.807.638-1.409%2C2.066-1.409a2.573%2C2.573%2C0%2C0%2C1%2C2.107.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10327%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010327%22%20d%3D%22M534.391%2C129.908v1.649h-1.412v-4.885h2.21c1.352%2C0%2C2.218.5%2C2.218%2C1.586s-.858%2C1.65-2.218%2C1.65Zm.544-.978c.739%2C0%2C1.062-.183%2C1.062-.672%2C0-.4-.323-.609-1.062-.609h-.544v1.281Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10328%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010328%22%20d%3D%22M540.451%2C131.628a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.32%2C2.32%2C0%2C0%2C1%2C4.624%2C0v.765A2.038%2C2.038%2C0%2C0%2C1%2C540.451%2C131.628Zm-.9-2.131c0%2C.8.314%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.315-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10329%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010329%22%20d%3D%22M546.922%2C131.557l-.978-1.848h-.73v1.848H543.8v-4.885h2.21c1.351%2C0%2C2.217.517%2C2.217%2C1.536a1.313%2C1.313%2C0%2C0%2C1-.934%2C1.3l1.173%2C2.053Zm-1.079-2.825c.569%2C0%2C.977-.064.977-.524s-.408-.559-.977-.559h-.629v1.083Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10330%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010330%22%20d%3D%22M553.4%2C126.672v.977h-1.53v3.908h-1.411v-3.908h-1.529v-.977Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2025.719%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_613%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20613%22%20transform%3D%22translate(-527.679%20-126.601)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10326%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010326%22%20d%3D%22M530.985%2C128.024a1.105%2C1.105%2C0%2C0%2C0-1.046-.446c-.466%2C0-.67.177-.67.425%2C0%2C.29.3.453%2C1.044.63%2C1.276.305%2C1.76.7%2C1.76%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.966%2C2.966%2C0%2C0%2C1-2.345-.8l1.054-.616a1.482%2C1.482%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.1-.658-1.191-.319-1.7-.772-1.7-1.558%2C0-.807.638-1.409%2C2.066-1.409a2.573%2C2.573%2C0%2C0%2C1%2C2.107.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10327%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010327%22%20d%3D%22M534.391%2C129.908v1.649h-1.412v-4.885h2.21c1.352%2C0%2C2.218.5%2C2.218%2C1.586s-.858%2C1.65-2.218%2C1.65Zm.544-.978c.739%2C0%2C1.062-.183%2C1.062-.672%2C0-.4-.323-.609-1.062-.609h-.544v1.281Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10328%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010328%22%20d%3D%22M540.451%2C131.628a2.037%2C2.037%2C0%2C0%2C1-2.312-2.131v-.765a2.32%2C2.32%2C0%2C0%2C1%2C4.624%2C0v.765A2.038%2C2.038%2C0%2C0%2C1%2C540.451%2C131.628Zm-.9-2.131c0%2C.8.314%2C1.154.9%2C1.154s.9-.354.9-1.154v-.765c0-.8-.315-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10329%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010329%22%20d%3D%22M546.922%2C131.557l-.978-1.848h-.73v1.848H543.8v-4.885h2.21c1.351%2C0%2C2.217.517%2C2.217%2C1.536a1.313%2C1.313%2C0%2C0%2C1-.934%2C1.3l1.173%2C2.053Zm-1.079-2.825c.569%2C0%2C.977-.064.977-.524s-.408-.559-.977-.559h-.629v1.083Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_10330%22%20data-name%3D%22%E3%83%91%E3%82%B9%2010330%22%20d%3D%22M553.4%2C126.672v.977h-1.53v3.908h-1.411v-3.908h-1.529v-.977Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
    }
    .header-nav-item .--amww {
        -webkit-mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2033.559%206.52%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_126%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20126%22%20transform%3D%22translate(-228.625%20-455.291)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_125%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20125%22%20transform%3D%22translate(8%20-2)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_76%22%20data-name%3D%22%E3%83%91%E3%82%B9%2076%22%20d%3D%22M244.652%2C460.8l-.638-2.841h-1.766l-.638%2C2.841-.468-2.841H238.6l-.468%2C2.841-.638-2.841h-1.766l-.638%2C2.841-.468-2.841h-1.689l.911%2C5.189h2.141l.625-2.814.625%2C2.814h2.141l.494-2.813.494%2C2.813h2.141l.625-2.814.625%2C2.814H245.9l.911-5.189h-1.689Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_77%22%20data-name%3D%22%E3%83%91%E3%82%B9%2077%22%20d%3D%22M226.043%2C463.145h1.689l.467-2.841.638%2C2.841H230.6l.638-2.841.468%2C2.841H233.4l-.911-5.189h-2.141l-.625%2C2.814-.625-2.814h-2.141l-.711%2C4.054-1.55-4.054h-2.085l-1.983%2C5.189h1.719l.273-.787h2.067l.274.787Zm-2.99-2.039.6-1.717.6%2C1.717Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_124%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20124%22%3E%20%3Cpath%20id%3D%22%E5%89%8D%E9%9D%A2%E3%82%AA%E3%83%96%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E3%81%A7%E5%9E%8B%E6%8A%9C%E3%81%8D_2%22%20data-name%3D%22%E5%89%8D%E9%9D%A2%E3%82%AA%E3%83%96%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E3%81%A7%E5%9E%8B%E6%8A%9C%E3%81%8D%202%22%20d%3D%22M2.978%2C6.137A3.067%2C3.067%2C0%2C0%2C1%2C.323%2C3.1v0A3.068%2C3.068%2C0%2C0%2C1%2C2.9.083a3.185%2C3.185%2C0%2C0%2C0-.6.166C2.264.273%2C2.229.3%2C2.2.327a.14.14%2C0%2C0%2C1-.069.031l-.06%2C0-.023%2C0c-.061.03-.132.068-.194.1A.051.051%2C0%2C0%2C1%2C1.876.47l.094.062a.123.123%2C0%2C0%2C0%2C.059.014l.115%2C0A.31.31%2C0%2C0%2C1%2C2.21.551l.129.04A.026.026%2C0%2C0%2C1%2C2.354.6a.052.052%2C0%2C0%2C1%2C0%2C.035L2.342.683%2C2.313.766C2.3.818%2C2.277.872%2C2.26.928a.059.059%2C0%2C0%2C1-.05.043L2.093.966a.055.055%2C0%2C0%2C1-.048-.03A.078.078%2C0%2C0%2C1%2C2.062.869L2.107.81A.1.1%2C0%2C0%2C0%2C2.124.739l-.03-.08A.054.054%2C0%2C0%2C0%2C2.049.626L1.976.62H1.967a.121.121%2C0%2C0%2C0-.053.013A.02.02%2C0%2C0%2C0%2C1.9.649a.016.016%2C0%2C0%2C0%2C.011.013L1.983.7C2%2C.7%2C2%2C.728%2C1.99.752L1.982.768a.361.361%2C0%2C0%2C1-.051.077c-.066.071-.122.136-.173.2a.229.229%2C0%2C0%2C0-.042.084l0%2C.013a.176.176%2C0%2C0%2C0%2C0%2C.085l.014.039a.185.185%2C0%2C0%2C0%2C.036.064l.077.089.019.021L1.92%2C1.5a.017.017%2C0%2C0%2C0%2C.013.007c.011%2C0%2C.02-.012.024-.031.009-.042.02-.086.031-.128l0-.017a.5.5%2C0%2C0%2C1%2C.034-.1l.029-.062a.063.063%2C0%2C0%2C1%2C.052-.04.222.222%2C0%2C0%2C1%2C.06.023l.049.028.05.029.072.042a.153.153%2C0%2C0%2C1%2C.05.059l.027.062.027.06%2C0%2C.008.049.107a.044.044%2C0%2C0%2C1-.023.059l-.137.055L2.3%2C1.677a.14.14%2C0%2C0%2C0-.06.063.145.145%2C0%2C0%2C0%2C0%2C.094c.008.025.017.05.028.079l.023.065a.154.154%2C0%2C0%2C1-.007.1l-.018.036a.219.219%2C0%2C0%2C1-.063.076c-.063.04-.137.088-.209.139a.308.308%2C0%2C0%2C0-.068.065c-.057.071-.11.139-.157.2a.115.115%2C0%2C0%2C0-.016.091l0%2C.019a.075.075%2C0%2C0%2C1%2C0%2C.05.012.012%2C0%2C0%2C1-.01.006.087.087%2C0%2C0%2C1-.053-.03L1.67%2C2.712a.072.072%2C0%2C0%2C0-.048-.019.049.049%2C0%2C0%2C0-.017%2C0l-.061.023c-.018.007-.047.022-.067.032l-.086.05a.074.074%2C0%2C0%2C0-.024.072l.017.107c0%2C.026.018.044.034.044l.008%2C0L1.5%2C2.993a.107.107%2C0%2C0%2C1%2C.042-.008h.014c.012%2C0%2C.016.033.01.063a.579.579%2C0%2C0%2C0-.01.111v.034c0%2C.031.017.055.038.055l.061%2C0a.02.02%2C0%2C0%2C1%2C.018.008.03.03%2C0%2C0%2C1%2C0%2C.028.055.055%2C0%2C0%2C0%2C.016.064l.054.041a.122.122%2C0%2C0%2C0%2C.072.023L1.9%2C3.4h.007a.225.225%2C0%2C0%2C1%2C.068.013l.15.058.079.036.1.054.1.05a.223.223%2C0%2C0%2C1%2C.069.067c.053.086.106.172.16.257a.069.069%2C0%2C0%2C0%2C.056.033l.015%2C0%2C.067-.023a.083.083%2C0%2C0%2C1%2C.028%2C0%2C.115.115%2C0%2C0%2C1%2C.055.013q.185.111.374.22a.1.1%2C0%2C0%2C1%2C.038.081c0%2C.029-.005.057-.007.085l0%2C.041-.005.072a.26.26%2C0%2C0%2C1-.028.1c-.052.089-.1.175-.149.259-.014.023-.034.062-.042.078l-.03.061%2C0%2C.01c-.022.046-.044.09-.064.133a.313.313%2C0%2C0%2C1-.043.067l-.012.013%2C0%2C0c-.043.051-.084.1-.126.143a.2.2%2C0%2C0%2C1-.055.043L2.624%2C5.4l-.109.053A.08.08%2C0%2C0%2C0%2C2.48%2C5.5c-.026.132-.041.223-.049.294a.084.084%2C0%2C0%2C0%2C.016.054l.011.012.016.023.02.028a.724.724%2C0%2C0%2C0%2C.077.105s0%2C.006%2C0%2C.008%2C0%2C0-.007%2C0l-.016%2C0C2.515%2C6.015%2C2.461%2C6%2C2.4%2C5.976a.248.248%2C0%2C0%2C1-.068-.035%2C1.289%2C1.289%2C0%2C0%2C1-.112-.091A.159.159%2C0%2C0%2C1%2C2.183%2C5.8a1.793%2C1.793%2C0%2C0%2C1-.056-.171.39.39%2C0%2C0%2C1-.013-.058V5.554c-.006-.056-.013-.116-.019-.179%2C0-.01%2C0-.023%2C0-.038s0-.029%2C0-.041c-.006-.117-.008-.234-.006-.356a.385.385%2C0%2C0%2C0-.014-.094L2.057%2C4.8A.745.745%2C0%2C0%2C0%2C2.018%2C4.7c-.037-.064-.076-.133-.112-.2l-.014-.026-.012-.024c-.008-.016-.016-.032-.022-.044-.043-.088-.085-.178-.123-.263a.278.278%2C0%2C0%2C1-.021-.1c0-.056%2C0-.107.006-.158a.81.81%2C0%2C0%2C1%2C.011-.108l.008-.053%2C0-.028c0-.017.005-.034.009-.052a.109.109%2C0%2C0%2C0-.023-.084l-.071-.068c-.013-.012-.046-.04-.065-.054l-.021-.014c-.04-.029-.077-.057-.113-.086A.41.41%2C0%2C0%2C0%2C1.393%2C3.3L1.35%2C3.282A.129.129%2C0%2C0%2C1%2C1.3%2C3.225l-.024-.048-.031-.062c-.007-.007-.1-.215-.1-.223L1.1%2C2.807c-.016-.035-.031-.07-.045-.105-.009-.017-.015-.021-.018-.021s-.005%2C0-.006.008a.4.4%2C0%2C0%2C0%2C0%2C.081v.018c0%2C.03%2C0%2C.077.007.106l.005.053A.064.064%2C0%2C0%2C1%2C1.035%2C3C1.027%2C3%2C1.012%2C2.981%2C1%2C2.958c-.04-.092-.08-.191-.119-.3a.313.313%2C0%2C0%2C1-.019-.09C.857%2C2.5.853%2C2.436.85%2C2.369a.947.947%2C0%2C0%2C1%2C0-.1c0-.044.005-.088.009-.132v-.01a.684.684%2C0%2C0%2C0%2C0-.1C.846%2C1.923.835%2C1.819.825%2C1.718a.189.189%2C0%2C0%2C0-.02-.069C.79%2C1.626.77%2C1.6.752%2C1.565a3.06%2C3.06%2C0%2C0%2C0%2C2.226%2C4.57ZM1.778.508a3.081%2C3.081%2C0%2C0%2C0-.443.336L1.408.836A.2.2%2C0%2C0%2C0%2C1.473.813L1.494.8A.276.276%2C0%2C0%2C0%2C1.558.747c.028-.034.057-.069.086-.1A.067.067%2C0%2C0%2C1%2C1.689.62l.012%2C0%2C.012.006A.165.165%2C0%2C0%2C0%2C1.771.64h.006A.025.025%2C0%2C0%2C0%2C1.8.632.027.027%2C0%2C0%2C0%2C1.8.609L1.8.6C1.8.591%2C1.8.576%2C1.793.562L1.788.542%2C1.779.515A.02.02%2C0%2C0%2C1%2C1.778.508ZM4.626%2C5.33a.074.074%2C0%2C0%2C1-.022%2C0L4.53%2C5.306l-.038-.011-.063-.019a.059.059%2C0%2C0%2C1-.041-.056q0-.06%2C0-.124c0-.046%2C0-.092%2C0-.139V4.64a.706.706%2C0%2C0%2C0-.01-.108c-.034-.182-.069-.374-.1-.571l-.022-.125a.064.064%2C0%2C0%2C0-.057-.054l-.247.03-.023%2C0-.14.017a.091.091%2C0%2C0%2C1-.069-.046c-.1-.192-.209-.39-.315-.593a.132.132%2C0%2C0%2C1%2C0-.1c.118-.238.2-.406.285-.563a.246.246%2C0%2C0%2C1%2C.067-.081l.148-.1A.505.505%2C0%2C0%2C1%2C3.985%2C2.3l.139-.046a.116.116%2C0%2C0%2C1%2C.038-.005.136.136%2C0%2C0%2C1%2C.053.01l.161.07.2.089a.258.258%2C0%2C0%2C0%2C.093.02h.247A.131.131%2C0%2C0%2C0%2C5%2C2.4l.147-.151a.03.03%2C0%2C0%2C0%2C.01-.03A.026.026%2C0%2C0%2C0%2C5.137%2C2.2L4.95%2C2.158a.03.03%2C0%2C0%2C1-.023-.019A.038.038%2C0%2C0%2C1%2C4.933%2C2.1l.031-.05A.107.107%2C0%2C0%2C1%2C5.04%2C2L5.143%2C2h.005l.1-.006a.026.026%2C0%2C0%2C0%2C.023-.013.049.049%2C0%2C0%2C0%2C0-.041l-.034-.068-.065-.135A.067.067%2C0%2C0%2C0%2C5.113%2C1.7L5.1%2C1.7l-.2.064-.008%2C0a.089.089%2C0%2C0%2C0-.051.071l-.006.044c0%2C.019-.006.038-.008.057-.006.035-.011.072-.015.109l0%2C.013c0%2C.023-.015.037-.032.037a.029.029%2C0%2C0%2C1-.018-.007C4.631%2C2%2C4.5%2C1.911%2C4.37%2C1.825a.027.027%2C0%2C0%2C0-.016-.005H4.348s0%2C.013.005.026l.059.119.021.04c.014.027.027.054.042.081a.04.04%2C0%2C0%2C1%2C0%2C.036c0%2C.007-.011.01-.024.01L4.316%2C2.12a.06.06%2C0%2C0%2C1-.044-.065V2.048a.139.139%2C0%2C0%2C0-.033-.094l-.066-.062a.046.046%2C0%2C0%2C0-.029-.011.047.047%2C0%2C0%2C0-.039.021l-.026.039-.073.109a.263.263%2C0%2C0%2C0-.037.1v.008c0%2C.029-.021.049-.041.049l-.01%2C0L3.75%2C2.162%2C3.7%2C2.147a.058.058%2C0%2C0%2C1-.031-.071l.007-.03c0-.015.007-.03.01-.045.009-.035.018-.071.026-.106a.094.094%2C0%2C0%2C1%2C.06-.067l.1-.022.093-.02A.055.055%2C0%2C0%2C0%2C4%2C1.722l-.013-.079a.1.1%2C0%2C0%2C1%2C.03-.086l.07-.055.01-.008.062-.049a.206.206%2C0%2C0%2C0%2C.055-.08l.031-.093a.046.046%2C0%2C0%2C1%2C.044-.034l.015%2C0%2C.044.018a.333.333%2C0%2C0%2C0%2C.087.021l.1.011h.007a.087.087%2C0%2C0%2C0%2C.065-.035c.033-.049.065-.1.1-.142a.418.418%2C0%2C0%2C1%2C.058-.07l.026-.026a.049.049%2C0%2C0%2C0%2C0-.066L4.763.919A.175.175%2C0%2C0%2C1%2C4.723.84l0-.028A.063.063%2C0%2C0%2C0%2C4.667.765H4.653a.046.046%2C0%2C0%2C0-.045.041C4.6.84%2C4.6.874%2C4.592.91L4.586.95l0%2C.014-.013.1a.107.107%2C0%2C0%2C1-.047.07l-.031.018a.1.1%2C0%2C0%2C1-.043.01.081.081%2C0%2C0%2C1-.038-.008l-.058-.029a.062.062%2C0%2C0%2C1-.034-.06.022.022%2C0%2C0%2C0-.005-.019A.018.018%2C0%2C0%2C0%2C4.3%2C1.038l-.015%2C0-.06.023-.014%2C0A.017.017%2C0%2C0%2C1%2C4.2%2C1.06a.032.032%2C0%2C0%2C1%2C0-.028C4.226.9%2C4.259.784%2C4.289.675A.1.1%2C0%2C0%2C1%2C4.34.621c.116-.043.238-.087.373-.135A.236.236%2C0%2C0%2C1%2C4.777.477h.014l.066.007.123.01A3.041%2C3.041%2C0%2C0%2C1%2C6.441%2C3.1a3.1%2C3.1%2C0%2C0%2C1-.021.36c-.015.047-.031.095-.047.142-.006.015-.015.024-.023.024s-.015-.006-.019-.017c-.1-.213-.218-.436-.348-.683a.286.286%2C0%2C0%2C0-.067-.076l-.309-.2a.281.281%2C0%2C0%2C0-.087-.033l-.04%2C0H5.473a.018.018%2C0%2C0%2C0-.016.007.035.035%2C0%2C0%2C0%2C.009.033l.039.059.026.039.029.042a.292.292%2C0%2C0%2C0%2C.073.072l.083.049A.146.146%2C0%2C0%2C1%2C5.766%2C3l.018.095a.076.076%2C0%2C0%2C1-.032.079l-.041.018-.005%2C0-.1.041-.13.056a.04.04%2C0%2C0%2C1-.018%2C0%2C.066.066%2C0%2C0%2C1-.055-.032c-.1-.159-.2-.326-.314-.509-.009-.014-.013-.016-.016-.016s-.005%2C0%2C0%2C.027L5.1%2C2.86c.023.1.047.2.069.3a.362.362%2C0%2C0%2C0%2C.044.106l.031.047a.137.137%2C0%2C0%2C0%2C.076.055l.208.041a.03.03%2C0%2C0%2C1%2C.022.016.055.055%2C0%2C0%2C1%2C0%2C.046c-.063.133-.127.267-.19.4l-.037.076a.519.519%2C0%2C0%2C0-.037.111.346.346%2C0%2C0%2C1-.008.05c-.012.069-.036.211-.033.225a1.74%2C1.74%2C0%2C0%2C1-.009.229v.009a.307.307%2C0%2C0%2C1-.03.1c-.122.206-.217.362-.3.49a.219.219%2C0%2C0%2C1-.063.063l-.071.044-.03.018-.055.033A.129.129%2C0%2C0%2C1%2C4.626%2C5.33ZM5.259%2C5a.034.034%2C0%2C0%2C1-.028-.015l-.023-.031A.1.1%2C0%2C0%2C1%2C5.2%2C4.868l.036-.1.011-.033.021-.059a.379.379%2C0%2C0%2C1%2C.048-.093l.015-.021%2C0%2C0%2C.045-.061.013-.018a.068.068%2C0%2C0%2C1%2C.053-.027.07.07%2C0%2C0%2C1%2C.019%2C0l.042.021a.062.062%2C0%2C0%2C1%2C.023.074c-.024.076-.049.151-.073.223a.327.327%2C0%2C0%2C1-.05.087l0%2C0-.057.061-.057.061A.046.046%2C0%2C0%2C1%2C5.259%2C5ZM3.884%2C1.515a.031.031%2C0%2C0%2C1-.022-.01.044.044%2C0%2C0%2C1-.01-.032c0-.064%2C0-.126.006-.187l0-.1c0-.074.005-.145.01-.213A.03.03%2C0%2C0%2C1%2C3.9.934l.013%2C0%2C.1.037a.094.094%2C0%2C0%2C1%2C.05.062l.04.19a.121.121%2C0%2C0%2C1-.02.09l-.1.14a.175.175%2C0%2C0%2C1-.076.055l-.011%2C0Zm-.969-.423-.011%2C0L2.8%2C1.063l-.113-.031A.068.068%2C0%2C0%2C1%2C2.641.98C2.617.848%2C2.6.722%2C2.584.606A.14.14%2C0%2C0%2C0%2C2.557.55C2.51.508%2C2.466.467%2C2.423.427L2.412.415A.369.369%2C0%2C0%2C0%2C2.364.383L2.318.358A.021.021%2C0%2C0%2C1%2C2.307.344a.038.038%2C0%2C0%2C1%2C.007-.03L2.322.3A.145.145%2C0%2C0%2C1%2C2.38.257%2C3.733%2C3.733%2C0%2C0%2C1%2C2.76.126.379.379%2C0%2C0%2C1%2C2.835.114l.1%2C0A.282.282%2C0%2C0%2C0%2C3%2C.1L3.06.083A.4.4%2C0%2C0%2C1%2C3.133.07L3.316.056l.126-.01h0l.066%2C0%2C.043%2C0%2C.044%2C0s.007%2C0%2C.007%2C0%2C0%2C.005-.009.008L3.56.078%2C3.541.086C3.533.09%2C3.53.093%2C3.53.1s.009%2C0%2C.018%2C0l.2%2C0c.01%2C0%2C.018%2C0%2C.02.006s0%2C.006-.005.01A1.236%2C1.236%2C0%2C0%2C0%2C3.61.261a.2.2%2C0%2C0%2C0-.037.054A1.467%2C1.467%2C0%2C0%2C0%2C3.512.46a.189.189%2C0%2C0%2C1-.047.062C3.4.575%2C3.329.634%2C3.252.7A.55.55%2C0%2C0%2C0%2C3.189.77c-.075.1-.146.19-.217.29A.077.077%2C0%2C0%2C1%2C2.915%2C1.092Zm.579-.072a.046.046%2C0%2C0%2C1-.028-.01L3.37.926%2C3.308.871A.027.027%2C0%2C0%2C1%2C3.3.85.041.041%2C0%2C0%2C1%2C3.316.819L3.409.756%2C3.486.7A.055.055%2C0%2C0%2C1%2C3.515.7a.047.047%2C0%2C0%2C1%2C.033.014L3.59.755l.046.051L3.65.82a.049.049%2C0%2C0%2C1-.006.066C3.605.924%2C3.568.963%2C3.531%2C1A.05.05%2C0%2C0%2C1%2C3.494%2C1.02Z%22%20transform%3D%22translate(255.626%20455.446)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_189%22%20data-name%3D%22%E3%83%91%E3%82%B9%20189%22%20d%3D%22M252.007%2C463.811a3.26%2C3.26%2C0%2C1%2C1%2C3.259-3.261A3.264%2C3.264%2C0%2C0%2C1%2C252.007%2C463.811Zm0-6.12a2.859%2C2.859%2C0%2C1%2C0%2C2.858%2C2.859A2.861%2C2.861%2C0%2C0%2C0%2C252.007%2C457.691Z%22%20transform%3D%22translate(6.918%20-2)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2033.559%206.52%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_126%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20126%22%20transform%3D%22translate(-228.625%20-455.291)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_125%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20125%22%20transform%3D%22translate(8%20-2)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_76%22%20data-name%3D%22%E3%83%91%E3%82%B9%2076%22%20d%3D%22M244.652%2C460.8l-.638-2.841h-1.766l-.638%2C2.841-.468-2.841H238.6l-.468%2C2.841-.638-2.841h-1.766l-.638%2C2.841-.468-2.841h-1.689l.911%2C5.189h2.141l.625-2.814.625%2C2.814h2.141l.494-2.813.494%2C2.813h2.141l.625-2.814.625%2C2.814H245.9l.911-5.189h-1.689Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_77%22%20data-name%3D%22%E3%83%91%E3%82%B9%2077%22%20d%3D%22M226.043%2C463.145h1.689l.467-2.841.638%2C2.841H230.6l.638-2.841.468%2C2.841H233.4l-.911-5.189h-2.141l-.625%2C2.814-.625-2.814h-2.141l-.711%2C4.054-1.55-4.054h-2.085l-1.983%2C5.189h1.719l.273-.787h2.067l.274.787Zm-2.99-2.039.6-1.717.6%2C1.717Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_124%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20124%22%3E%20%3Cpath%20id%3D%22%E5%89%8D%E9%9D%A2%E3%82%AA%E3%83%96%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E3%81%A7%E5%9E%8B%E6%8A%9C%E3%81%8D_2%22%20data-name%3D%22%E5%89%8D%E9%9D%A2%E3%82%AA%E3%83%96%E3%82%B8%E3%82%A7%E3%82%AF%E3%83%88%E3%81%A7%E5%9E%8B%E6%8A%9C%E3%81%8D%202%22%20d%3D%22M2.978%2C6.137A3.067%2C3.067%2C0%2C0%2C1%2C.323%2C3.1v0A3.068%2C3.068%2C0%2C0%2C1%2C2.9.083a3.185%2C3.185%2C0%2C0%2C0-.6.166C2.264.273%2C2.229.3%2C2.2.327a.14.14%2C0%2C0%2C1-.069.031l-.06%2C0-.023%2C0c-.061.03-.132.068-.194.1A.051.051%2C0%2C0%2C1%2C1.876.47l.094.062a.123.123%2C0%2C0%2C0%2C.059.014l.115%2C0A.31.31%2C0%2C0%2C1%2C2.21.551l.129.04A.026.026%2C0%2C0%2C1%2C2.354.6a.052.052%2C0%2C0%2C1%2C0%2C.035L2.342.683%2C2.313.766C2.3.818%2C2.277.872%2C2.26.928a.059.059%2C0%2C0%2C1-.05.043L2.093.966a.055.055%2C0%2C0%2C1-.048-.03A.078.078%2C0%2C0%2C1%2C2.062.869L2.107.81A.1.1%2C0%2C0%2C0%2C2.124.739l-.03-.08A.054.054%2C0%2C0%2C0%2C2.049.626L1.976.62H1.967a.121.121%2C0%2C0%2C0-.053.013A.02.02%2C0%2C0%2C0%2C1.9.649a.016.016%2C0%2C0%2C0%2C.011.013L1.983.7C2%2C.7%2C2%2C.728%2C1.99.752L1.982.768a.361.361%2C0%2C0%2C1-.051.077c-.066.071-.122.136-.173.2a.229.229%2C0%2C0%2C0-.042.084l0%2C.013a.176.176%2C0%2C0%2C0%2C0%2C.085l.014.039a.185.185%2C0%2C0%2C0%2C.036.064l.077.089.019.021L1.92%2C1.5a.017.017%2C0%2C0%2C0%2C.013.007c.011%2C0%2C.02-.012.024-.031.009-.042.02-.086.031-.128l0-.017a.5.5%2C0%2C0%2C1%2C.034-.1l.029-.062a.063.063%2C0%2C0%2C1%2C.052-.04.222.222%2C0%2C0%2C1%2C.06.023l.049.028.05.029.072.042a.153.153%2C0%2C0%2C1%2C.05.059l.027.062.027.06%2C0%2C.008.049.107a.044.044%2C0%2C0%2C1-.023.059l-.137.055L2.3%2C1.677a.14.14%2C0%2C0%2C0-.06.063.145.145%2C0%2C0%2C0%2C0%2C.094c.008.025.017.05.028.079l.023.065a.154.154%2C0%2C0%2C1-.007.1l-.018.036a.219.219%2C0%2C0%2C1-.063.076c-.063.04-.137.088-.209.139a.308.308%2C0%2C0%2C0-.068.065c-.057.071-.11.139-.157.2a.115.115%2C0%2C0%2C0-.016.091l0%2C.019a.075.075%2C0%2C0%2C1%2C0%2C.05.012.012%2C0%2C0%2C1-.01.006.087.087%2C0%2C0%2C1-.053-.03L1.67%2C2.712a.072.072%2C0%2C0%2C0-.048-.019.049.049%2C0%2C0%2C0-.017%2C0l-.061.023c-.018.007-.047.022-.067.032l-.086.05a.074.074%2C0%2C0%2C0-.024.072l.017.107c0%2C.026.018.044.034.044l.008%2C0L1.5%2C2.993a.107.107%2C0%2C0%2C1%2C.042-.008h.014c.012%2C0%2C.016.033.01.063a.579.579%2C0%2C0%2C0-.01.111v.034c0%2C.031.017.055.038.055l.061%2C0a.02.02%2C0%2C0%2C1%2C.018.008.03.03%2C0%2C0%2C1%2C0%2C.028.055.055%2C0%2C0%2C0%2C.016.064l.054.041a.122.122%2C0%2C0%2C0%2C.072.023L1.9%2C3.4h.007a.225.225%2C0%2C0%2C1%2C.068.013l.15.058.079.036.1.054.1.05a.223.223%2C0%2C0%2C1%2C.069.067c.053.086.106.172.16.257a.069.069%2C0%2C0%2C0%2C.056.033l.015%2C0%2C.067-.023a.083.083%2C0%2C0%2C1%2C.028%2C0%2C.115.115%2C0%2C0%2C1%2C.055.013q.185.111.374.22a.1.1%2C0%2C0%2C1%2C.038.081c0%2C.029-.005.057-.007.085l0%2C.041-.005.072a.26.26%2C0%2C0%2C1-.028.1c-.052.089-.1.175-.149.259-.014.023-.034.062-.042.078l-.03.061%2C0%2C.01c-.022.046-.044.09-.064.133a.313.313%2C0%2C0%2C1-.043.067l-.012.013%2C0%2C0c-.043.051-.084.1-.126.143a.2.2%2C0%2C0%2C1-.055.043L2.624%2C5.4l-.109.053A.08.08%2C0%2C0%2C0%2C2.48%2C5.5c-.026.132-.041.223-.049.294a.084.084%2C0%2C0%2C0%2C.016.054l.011.012.016.023.02.028a.724.724%2C0%2C0%2C0%2C.077.105s0%2C.006%2C0%2C.008%2C0%2C0-.007%2C0l-.016%2C0C2.515%2C6.015%2C2.461%2C6%2C2.4%2C5.976a.248.248%2C0%2C0%2C1-.068-.035%2C1.289%2C1.289%2C0%2C0%2C1-.112-.091A.159.159%2C0%2C0%2C1%2C2.183%2C5.8a1.793%2C1.793%2C0%2C0%2C1-.056-.171.39.39%2C0%2C0%2C1-.013-.058V5.554c-.006-.056-.013-.116-.019-.179%2C0-.01%2C0-.023%2C0-.038s0-.029%2C0-.041c-.006-.117-.008-.234-.006-.356a.385.385%2C0%2C0%2C0-.014-.094L2.057%2C4.8A.745.745%2C0%2C0%2C0%2C2.018%2C4.7c-.037-.064-.076-.133-.112-.2l-.014-.026-.012-.024c-.008-.016-.016-.032-.022-.044-.043-.088-.085-.178-.123-.263a.278.278%2C0%2C0%2C1-.021-.1c0-.056%2C0-.107.006-.158a.81.81%2C0%2C0%2C1%2C.011-.108l.008-.053%2C0-.028c0-.017.005-.034.009-.052a.109.109%2C0%2C0%2C0-.023-.084l-.071-.068c-.013-.012-.046-.04-.065-.054l-.021-.014c-.04-.029-.077-.057-.113-.086A.41.41%2C0%2C0%2C0%2C1.393%2C3.3L1.35%2C3.282A.129.129%2C0%2C0%2C1%2C1.3%2C3.225l-.024-.048-.031-.062c-.007-.007-.1-.215-.1-.223L1.1%2C2.807c-.016-.035-.031-.07-.045-.105-.009-.017-.015-.021-.018-.021s-.005%2C0-.006.008a.4.4%2C0%2C0%2C0%2C0%2C.081v.018c0%2C.03%2C0%2C.077.007.106l.005.053A.064.064%2C0%2C0%2C1%2C1.035%2C3C1.027%2C3%2C1.012%2C2.981%2C1%2C2.958c-.04-.092-.08-.191-.119-.3a.313.313%2C0%2C0%2C1-.019-.09C.857%2C2.5.853%2C2.436.85%2C2.369a.947.947%2C0%2C0%2C1%2C0-.1c0-.044.005-.088.009-.132v-.01a.684.684%2C0%2C0%2C0%2C0-.1C.846%2C1.923.835%2C1.819.825%2C1.718a.189.189%2C0%2C0%2C0-.02-.069C.79%2C1.626.77%2C1.6.752%2C1.565a3.06%2C3.06%2C0%2C0%2C0%2C2.226%2C4.57ZM1.778.508a3.081%2C3.081%2C0%2C0%2C0-.443.336L1.408.836A.2.2%2C0%2C0%2C0%2C1.473.813L1.494.8A.276.276%2C0%2C0%2C0%2C1.558.747c.028-.034.057-.069.086-.1A.067.067%2C0%2C0%2C1%2C1.689.62l.012%2C0%2C.012.006A.165.165%2C0%2C0%2C0%2C1.771.64h.006A.025.025%2C0%2C0%2C0%2C1.8.632.027.027%2C0%2C0%2C0%2C1.8.609L1.8.6C1.8.591%2C1.8.576%2C1.793.562L1.788.542%2C1.779.515A.02.02%2C0%2C0%2C1%2C1.778.508ZM4.626%2C5.33a.074.074%2C0%2C0%2C1-.022%2C0L4.53%2C5.306l-.038-.011-.063-.019a.059.059%2C0%2C0%2C1-.041-.056q0-.06%2C0-.124c0-.046%2C0-.092%2C0-.139V4.64a.706.706%2C0%2C0%2C0-.01-.108c-.034-.182-.069-.374-.1-.571l-.022-.125a.064.064%2C0%2C0%2C0-.057-.054l-.247.03-.023%2C0-.14.017a.091.091%2C0%2C0%2C1-.069-.046c-.1-.192-.209-.39-.315-.593a.132.132%2C0%2C0%2C1%2C0-.1c.118-.238.2-.406.285-.563a.246.246%2C0%2C0%2C1%2C.067-.081l.148-.1A.505.505%2C0%2C0%2C1%2C3.985%2C2.3l.139-.046a.116.116%2C0%2C0%2C1%2C.038-.005.136.136%2C0%2C0%2C1%2C.053.01l.161.07.2.089a.258.258%2C0%2C0%2C0%2C.093.02h.247A.131.131%2C0%2C0%2C0%2C5%2C2.4l.147-.151a.03.03%2C0%2C0%2C0%2C.01-.03A.026.026%2C0%2C0%2C0%2C5.137%2C2.2L4.95%2C2.158a.03.03%2C0%2C0%2C1-.023-.019A.038.038%2C0%2C0%2C1%2C4.933%2C2.1l.031-.05A.107.107%2C0%2C0%2C1%2C5.04%2C2L5.143%2C2h.005l.1-.006a.026.026%2C0%2C0%2C0%2C.023-.013.049.049%2C0%2C0%2C0%2C0-.041l-.034-.068-.065-.135A.067.067%2C0%2C0%2C0%2C5.113%2C1.7L5.1%2C1.7l-.2.064-.008%2C0a.089.089%2C0%2C0%2C0-.051.071l-.006.044c0%2C.019-.006.038-.008.057-.006.035-.011.072-.015.109l0%2C.013c0%2C.023-.015.037-.032.037a.029.029%2C0%2C0%2C1-.018-.007C4.631%2C2%2C4.5%2C1.911%2C4.37%2C1.825a.027.027%2C0%2C0%2C0-.016-.005H4.348s0%2C.013.005.026l.059.119.021.04c.014.027.027.054.042.081a.04.04%2C0%2C0%2C1%2C0%2C.036c0%2C.007-.011.01-.024.01L4.316%2C2.12a.06.06%2C0%2C0%2C1-.044-.065V2.048a.139.139%2C0%2C0%2C0-.033-.094l-.066-.062a.046.046%2C0%2C0%2C0-.029-.011.047.047%2C0%2C0%2C0-.039.021l-.026.039-.073.109a.263.263%2C0%2C0%2C0-.037.1v.008c0%2C.029-.021.049-.041.049l-.01%2C0L3.75%2C2.162%2C3.7%2C2.147a.058.058%2C0%2C0%2C1-.031-.071l.007-.03c0-.015.007-.03.01-.045.009-.035.018-.071.026-.106a.094.094%2C0%2C0%2C1%2C.06-.067l.1-.022.093-.02A.055.055%2C0%2C0%2C0%2C4%2C1.722l-.013-.079a.1.1%2C0%2C0%2C1%2C.03-.086l.07-.055.01-.008.062-.049a.206.206%2C0%2C0%2C0%2C.055-.08l.031-.093a.046.046%2C0%2C0%2C1%2C.044-.034l.015%2C0%2C.044.018a.333.333%2C0%2C0%2C0%2C.087.021l.1.011h.007a.087.087%2C0%2C0%2C0%2C.065-.035c.033-.049.065-.1.1-.142a.418.418%2C0%2C0%2C1%2C.058-.07l.026-.026a.049.049%2C0%2C0%2C0%2C0-.066L4.763.919A.175.175%2C0%2C0%2C1%2C4.723.84l0-.028A.063.063%2C0%2C0%2C0%2C4.667.765H4.653a.046.046%2C0%2C0%2C0-.045.041C4.6.84%2C4.6.874%2C4.592.91L4.586.95l0%2C.014-.013.1a.107.107%2C0%2C0%2C1-.047.07l-.031.018a.1.1%2C0%2C0%2C1-.043.01.081.081%2C0%2C0%2C1-.038-.008l-.058-.029a.062.062%2C0%2C0%2C1-.034-.06.022.022%2C0%2C0%2C0-.005-.019A.018.018%2C0%2C0%2C0%2C4.3%2C1.038l-.015%2C0-.06.023-.014%2C0A.017.017%2C0%2C0%2C1%2C4.2%2C1.06a.032.032%2C0%2C0%2C1%2C0-.028C4.226.9%2C4.259.784%2C4.289.675A.1.1%2C0%2C0%2C1%2C4.34.621c.116-.043.238-.087.373-.135A.236.236%2C0%2C0%2C1%2C4.777.477h.014l.066.007.123.01A3.041%2C3.041%2C0%2C0%2C1%2C6.441%2C3.1a3.1%2C3.1%2C0%2C0%2C1-.021.36c-.015.047-.031.095-.047.142-.006.015-.015.024-.023.024s-.015-.006-.019-.017c-.1-.213-.218-.436-.348-.683a.286.286%2C0%2C0%2C0-.067-.076l-.309-.2a.281.281%2C0%2C0%2C0-.087-.033l-.04%2C0H5.473a.018.018%2C0%2C0%2C0-.016.007.035.035%2C0%2C0%2C0%2C.009.033l.039.059.026.039.029.042a.292.292%2C0%2C0%2C0%2C.073.072l.083.049A.146.146%2C0%2C0%2C1%2C5.766%2C3l.018.095a.076.076%2C0%2C0%2C1-.032.079l-.041.018-.005%2C0-.1.041-.13.056a.04.04%2C0%2C0%2C1-.018%2C0%2C.066.066%2C0%2C0%2C1-.055-.032c-.1-.159-.2-.326-.314-.509-.009-.014-.013-.016-.016-.016s-.005%2C0%2C0%2C.027L5.1%2C2.86c.023.1.047.2.069.3a.362.362%2C0%2C0%2C0%2C.044.106l.031.047a.137.137%2C0%2C0%2C0%2C.076.055l.208.041a.03.03%2C0%2C0%2C1%2C.022.016.055.055%2C0%2C0%2C1%2C0%2C.046c-.063.133-.127.267-.19.4l-.037.076a.519.519%2C0%2C0%2C0-.037.111.346.346%2C0%2C0%2C1-.008.05c-.012.069-.036.211-.033.225a1.74%2C1.74%2C0%2C0%2C1-.009.229v.009a.307.307%2C0%2C0%2C1-.03.1c-.122.206-.217.362-.3.49a.219.219%2C0%2C0%2C1-.063.063l-.071.044-.03.018-.055.033A.129.129%2C0%2C0%2C1%2C4.626%2C5.33ZM5.259%2C5a.034.034%2C0%2C0%2C1-.028-.015l-.023-.031A.1.1%2C0%2C0%2C1%2C5.2%2C4.868l.036-.1.011-.033.021-.059a.379.379%2C0%2C0%2C1%2C.048-.093l.015-.021%2C0%2C0%2C.045-.061.013-.018a.068.068%2C0%2C0%2C1%2C.053-.027.07.07%2C0%2C0%2C1%2C.019%2C0l.042.021a.062.062%2C0%2C0%2C1%2C.023.074c-.024.076-.049.151-.073.223a.327.327%2C0%2C0%2C1-.05.087l0%2C0-.057.061-.057.061A.046.046%2C0%2C0%2C1%2C5.259%2C5ZM3.884%2C1.515a.031.031%2C0%2C0%2C1-.022-.01.044.044%2C0%2C0%2C1-.01-.032c0-.064%2C0-.126.006-.187l0-.1c0-.074.005-.145.01-.213A.03.03%2C0%2C0%2C1%2C3.9.934l.013%2C0%2C.1.037a.094.094%2C0%2C0%2C1%2C.05.062l.04.19a.121.121%2C0%2C0%2C1-.02.09l-.1.14a.175.175%2C0%2C0%2C1-.076.055l-.011%2C0Zm-.969-.423-.011%2C0L2.8%2C1.063l-.113-.031A.068.068%2C0%2C0%2C1%2C2.641.98C2.617.848%2C2.6.722%2C2.584.606A.14.14%2C0%2C0%2C0%2C2.557.55C2.51.508%2C2.466.467%2C2.423.427L2.412.415A.369.369%2C0%2C0%2C0%2C2.364.383L2.318.358A.021.021%2C0%2C0%2C1%2C2.307.344a.038.038%2C0%2C0%2C1%2C.007-.03L2.322.3A.145.145%2C0%2C0%2C1%2C2.38.257%2C3.733%2C3.733%2C0%2C0%2C1%2C2.76.126.379.379%2C0%2C0%2C1%2C2.835.114l.1%2C0A.282.282%2C0%2C0%2C0%2C3%2C.1L3.06.083A.4.4%2C0%2C0%2C1%2C3.133.07L3.316.056l.126-.01h0l.066%2C0%2C.043%2C0%2C.044%2C0s.007%2C0%2C.007%2C0%2C0%2C.005-.009.008L3.56.078%2C3.541.086C3.533.09%2C3.53.093%2C3.53.1s.009%2C0%2C.018%2C0l.2%2C0c.01%2C0%2C.018%2C0%2C.02.006s0%2C.006-.005.01A1.236%2C1.236%2C0%2C0%2C0%2C3.61.261a.2.2%2C0%2C0%2C0-.037.054A1.467%2C1.467%2C0%2C0%2C0%2C3.512.46a.189.189%2C0%2C0%2C1-.047.062C3.4.575%2C3.329.634%2C3.252.7A.55.55%2C0%2C0%2C0%2C3.189.77c-.075.1-.146.19-.217.29A.077.077%2C0%2C0%2C1%2C2.915%2C1.092Zm.579-.072a.046.046%2C0%2C0%2C1-.028-.01L3.37.926%2C3.308.871A.027.027%2C0%2C0%2C1%2C3.3.85.041.041%2C0%2C0%2C1%2C3.316.819L3.409.756%2C3.486.7A.055.055%2C0%2C0%2C1%2C3.515.7a.047.047%2C0%2C0%2C1%2C.033.014L3.59.755l.046.051L3.65.82a.049.049%2C0%2C0%2C1-.006.066C3.605.924%2C3.568.963%2C3.531%2C1A.05.05%2C0%2C0%2C1%2C3.494%2C1.02Z%22%20transform%3D%22translate(255.626%20455.446)%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_189%22%20data-name%3D%22%E3%83%91%E3%82%B9%20189%22%20d%3D%22M252.007%2C463.811a3.26%2C3.26%2C0%2C1%2C1%2C3.259-3.261A3.264%2C3.264%2C0%2C0%2C1%2C252.007%2C463.811Zm0-6.12a2.859%2C2.859%2C0%2C1%2C0%2C2.858%2C2.859A2.861%2C2.861%2C0%2C0%2C0%2C252.007%2C457.691Z%22%20transform%3D%22translate(6.918%20-2)%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        height: 16px;
        vertical-align: -2px;    
    }
    .header-nav-item .--spshop {
        -webkit-mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2033.253%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_32%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2032%22%20transform%3D%22translate(-587.401%20-125.341)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_142%22%20data-name%3D%22%E3%83%91%E3%82%B9%20142%22%20d%3D%22M590.708%2C126.764a1.1%2C1.1%2C0%2C0%2C0-1.046-.446c-.467%2C0-.671.177-.671.425%2C0%2C.29.306.453%2C1.045.63%2C1.276.3%2C1.76.7%2C1.76%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.97%2C2.97%2C0%2C0%2C1-2.346-.8l1.055-.615a1.482%2C1.482%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.239-.425-1.1-.658-1.19-.319-1.7-.772-1.7-1.558%2C0-.808.638-1.409%2C2.066-1.409a2.573%2C2.573%2C0%2C0%2C1%2C2.107.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_143%22%20data-name%3D%22%E3%83%91%E3%82%B9%20143%22%20d%3D%22M594.113%2C128.647v1.65H592.7v-4.885h2.21c1.352%2C0%2C2.218.495%2C2.218%2C1.586s-.859%2C1.649-2.218%2C1.649Zm.544-.977c.739%2C0%2C1.063-.184%2C1.063-.672%2C0-.4-.324-.609-1.063-.609h-.544v1.281Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_144%22%20data-name%3D%22%E3%83%91%E3%82%B9%20144%22%20d%3D%22M602.905%2C126.764a1.1%2C1.1%2C0%2C0%2C0-1.046-.446c-.466%2C0-.671.177-.671.425%2C0%2C.29.306.453%2C1.045.63%2C1.276.3%2C1.76.7%2C1.76%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.967%2C2.967%2C0%2C0%2C1-2.345-.8l1.054-.615a1.482%2C1.482%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.1-.658-1.191-.319-1.7-.772-1.7-1.558%2C0-.808.638-1.409%2C2.066-1.409a2.573%2C2.573%2C0%2C0%2C1%2C2.107.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_145%22%20data-name%3D%22%E3%83%91%E3%82%B9%20145%22%20d%3D%22M606.311%2C127.281h1.8v-1.869h1.41V130.3h-1.41v-2.039h-1.8V130.3H604.9v-4.885h1.412Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_146%22%20data-name%3D%22%E3%83%91%E3%82%B9%20146%22%20d%3D%22M612.875%2C130.368a2.039%2C2.039%2C0%2C0%2C1-2.313-2.132v-.764a2.32%2C2.32%2C0%2C0%2C1%2C4.625%2C0v.764A2.038%2C2.038%2C0%2C0%2C1%2C612.875%2C130.368Zm-.9-2.132c0%2C.8.314%2C1.155.9%2C1.155s.9-.354.9-1.155v-.764c0-.8-.314-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_147%22%20data-name%3D%22%E3%83%91%E3%82%B9%20147%22%20d%3D%22M617.638%2C128.647v1.65h-1.411v-4.885h2.21c1.351%2C0%2C2.217.495%2C2.217%2C1.586s-.858%2C1.649-2.217%2C1.649Zm.544-.977c.739%2C0%2C1.062-.184%2C1.062-.672%2C0-.4-.323-.609-1.062-.609h-.544v1.281Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
        mask: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2033.253%205.027%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_32%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2032%22%20transform%3D%22translate(-587.401%20-125.341)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_142%22%20data-name%3D%22%E3%83%91%E3%82%B9%20142%22%20d%3D%22M590.708%2C126.764a1.1%2C1.1%2C0%2C0%2C0-1.046-.446c-.467%2C0-.671.177-.671.425%2C0%2C.29.306.453%2C1.045.63%2C1.276.3%2C1.76.7%2C1.76%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.97%2C2.97%2C0%2C0%2C1-2.346-.8l1.055-.615a1.482%2C1.482%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.239-.425-1.1-.658-1.19-.319-1.7-.772-1.7-1.558%2C0-.808.638-1.409%2C2.066-1.409a2.573%2C2.573%2C0%2C0%2C1%2C2.107.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_143%22%20data-name%3D%22%E3%83%91%E3%82%B9%20143%22%20d%3D%22M594.113%2C128.647v1.65H592.7v-4.885h2.21c1.352%2C0%2C2.218.495%2C2.218%2C1.586s-.859%2C1.649-2.218%2C1.649Zm.544-.977c.739%2C0%2C1.063-.184%2C1.063-.672%2C0-.4-.324-.609-1.063-.609h-.544v1.281Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_144%22%20data-name%3D%22%E3%83%91%E3%82%B9%20144%22%20d%3D%22M602.905%2C126.764a1.1%2C1.1%2C0%2C0%2C0-1.046-.446c-.466%2C0-.671.177-.671.425%2C0%2C.29.306.453%2C1.045.63%2C1.276.3%2C1.76.7%2C1.76%2C1.536%2C0%2C.885-.714%2C1.459-2.049%2C1.459a2.967%2C2.967%2C0%2C0%2C1-2.345-.8l1.054-.615a1.482%2C1.482%2C0%2C0%2C0%2C1.173.439c.544%2C0%2C.756-.192.756-.425%2C0-.283-.238-.425-1.1-.658-1.191-.319-1.7-.772-1.7-1.558%2C0-.808.638-1.409%2C2.066-1.409a2.573%2C2.573%2C0%2C0%2C1%2C2.107.8Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_145%22%20data-name%3D%22%E3%83%91%E3%82%B9%20145%22%20d%3D%22M606.311%2C127.281h1.8v-1.869h1.41V130.3h-1.41v-2.039h-1.8V130.3H604.9v-4.885h1.412Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_146%22%20data-name%3D%22%E3%83%91%E3%82%B9%20146%22%20d%3D%22M612.875%2C130.368a2.039%2C2.039%2C0%2C0%2C1-2.313-2.132v-.764a2.32%2C2.32%2C0%2C0%2C1%2C4.625%2C0v.764A2.038%2C2.038%2C0%2C0%2C1%2C612.875%2C130.368Zm-.9-2.132c0%2C.8.314%2C1.155.9%2C1.155s.9-.354.9-1.155v-.764c0-.8-.314-1.154-.9-1.154s-.9.354-.9%2C1.154Z%22%20fill%3D%22%23fff%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_147%22%20data-name%3D%22%E3%83%91%E3%82%B9%20147%22%20d%3D%22M617.638%2C128.647v1.65h-1.411v-4.885h2.21c1.351%2C0%2C2.217.495%2C2.217%2C1.586s-.858%2C1.649-2.217%2C1.649Zm.544-.977c.739%2C0%2C1.062-.184%2C1.062-.672%2C0-.4-.323-.609-1.062-.609h-.544v1.281Z%22%20fill%3D%22%23fff%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E') center center / contain no-repeat;
    }
    .header-nav-item a:hover {
        background: #E52416;
        opacity: 1;
    }

    /* .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;
    }
    .section-title img {
        height: 20px;
        vertical-align: 1px;
    }
    .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:not(.prev) + .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;
    }
    .gallery-main :is(.swiper-button-next, .swiper-button-prev) {
        top: min(23vw, 250px);
    }

    /* -----------------
        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;
}

.gallery-back-btn {
    position: sticky;
    top: 55px;
    left: 100vw;
    width: 40px;
    height: 40px;
    z-index: 5;
    margin-bottom: 10px;
}
.gallery-back-btn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid #545454;
    background: #fff;
}
.gallery-back-btn a .bar {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22_x32_%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%20style%3D%22width%3A%20256px%3B%20height%3A%20256px%3B%20opacity%3A%201%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%234B4B4B%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M452.422%2C155.809c-36.6-36.713-87.875-59.612-143.837-59.578h-73.337V84.847V8.939L46.711%2C162.247%20L235.248%2C315.57v-78.228v-8.269h73.337c19.694%2C0.033%2C36.924%2C7.799%2C49.906%2C20.658c12.868%2C12.99%2C20.634%2C30.212%2C20.667%2C49.914%20c-0.033%2C19.702-7.8%2C36.924-20.667%2C49.897c-12.982%2C12.876-30.212%2C20.642-49.906%2C20.676H0v132.842h308.585%20c55.962%2C0.033%2C107.237-22.866%2C143.837-59.578c36.698-36.6%2C59.612-87.875%2C59.578-143.837%20C512.033%2C243.684%2C489.12%2C192.408%2C452.422%2C155.809z%22%20style%3D%22fill%3A%20rgb(75%2C%2075%2C%2075)%3B%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center top 1px / 22px auto;
}
/* .gallery-back-btn a .bar::before {
    content: "";
    width: 30px;
    height: 5px;
    background: #545454;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.gallery-back-btn a .bar::after {
    content: "";
    width: 30px;
    height: 5px;
    background: #545454;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
} */
.gallery-back-btn a .txt {
    font-size: 12px;
    line-height: 1;
}
@media screen and (min-width: 768px) {
    .gallery-back-btn {
        top: 45px;
    }
}
.ap-ranking h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.ap-ranking-list {
    counter-reset: rank;
}
.ap-ranking-item {
    margin-bottom: 16px;
    box-shadow: 0 1px #e6ecf0;
    display: flex;
    align-items: center;
}
.ap-ranking-item::before {
    counter-increment: rank;
    content: counter(rank);
    font-size: 20px;
    width: 23px;
}
.ap-ranking-item > a {
    display: flex;
    padding: 0 0 10px 0;
    margin-left: 10px;
    width: calc(100% - 23px);
}
.ap-ranking-img {
    margin-right: 10px;
    width: calc(100% - 66.77%);
}
.ap-ranking-txt {
    width: 66.77%;
}
.ap-ranking-ttl {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ap-ranking-label {
    color: #999999;
    font-size: 11px;
    margin-top: 6px;
}
/* モーダルスライダーここから */

body.fixed {
	position: fixed;
	left: 0;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 30px;
    display: flex;
    justify-content: center;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
    z-index: 100;
    background-color: #000000e6;
}
.modal-swiper{
    overflow-x: hidden;
}
.modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal__content {
    position: relative;
    width: 100%;
    max-width: 880px;
    padding: 50px 0 0;
    margin: 10px 0 150px;
}
.modal__content img{
    max-width: 100%;
    height: auto;
    position: relative;
}
/* モーダルを閉じるボタン */
.modal__close-btn {
    top: 0;
    right: 0px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: bold;
    justify-content: center;
    font-size: 30px;
    position: absolute;
    overflow: visible;
}
.modal__content .swiper-button-next,.modal__content .swiper-button-prev{
    width: 50px;
    height: 50px;
    position: absolute;
}
.modal__content .swiper-button-next::after{
    width: 50px;
    height: 50px;
}
.modal__content .swiper-button-prev:after{
    width: 50px;
    height: 50px;
}
@media screen and (min-width: 768px) {
    .modal__close-btn {
        top:0;
        font-size: 50px;
        right: -10px;
    }
    .modal__content {
        margin: 40px 0 100px;
        padding: 20px 50px;
    }
}
@media screen and (max-width: 500px) {
    .modal__content {
        position: relative;
        width: 100%;
        max-width: 880px;
        padding: 170px 0 0;
        margin: 0px;
    }
    .modal__content .swiper-button-next,
    .modal__content .swiper-button-prev{
        width: 40px;
        height: 40px;
        position: static;
        margin: 20px 0 30px;
    }
    .modal__content .swiper-button-next {
        float: right;
        margin-right: 27vw;
    }
    .modal__content .swiper-button-next::after{
        width: 40px;
        height: 40px;
    }
    .modal__content .swiper-button-prev {
        float: left;
        margin-left: 27vw;
    }
    .modal__content .swiper-button-prev:after{
        width: 40px;
        height: 40px;
    }
    .modal__close-btn {
        top: 125px;
        right: -15px;
    }
}

div.insert_ads > div > div > div > iframe {
    min-height: auto!important;
}

.photo-rank-content {
    margin: 10px 0 40px;
}
.photo-rank-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    counter-reset: rank;
}
.photo-rank-list li {
    width: calc(33.333% - 5px * 2 / 3);
    aspect-ratio: 1.5 / 1;
    position: relative;
}
.photo-rank-list li::before {
    counter-increment: rank;
    content: counter(rank);
    position: absolute;
    top: 0;
    left: 5px;
    height: 28px;
    width: 27.5px;
    background: #000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-rank-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 28px;
    border-width: 0 13.9px 5px 14px;
    border-color: transparent #000 transparent #000;
    border-style: solid;
}
.photo-rank-list li:first-child:before {
    background: #FFCB14;
}
.photo-rank-list li:first-child:after {
    border-color: transparent #FFCB14 transparent #FFCB14;
}
.photo-rank-list li:nth-child(2):before {
    background: #A2A2A2;
}
.photo-rank-list li:nth-child(2):after {
    border-color: transparent #A2A2A2 transparent #A2A2A2;
}
.photo-rank-list li:nth-child(3):before {
    background: #E88C37;
}
.photo-rank-list li:nth-child(3):after {
    border-color: transparent #E88C37 transparent #E88C37;
}
.photo-rank-list li:nth-child(n + 7) {
    display: none;
}
.photo-rank-list li a {
    display: block;
    width: 100%;
    height: 100%;
}
.photo-rank-list li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-rank-list li a:hover {
    opacity: 1;
}
@media screen and (min-width: 768px) {
    .photo-rank-content {
        margin-bottom: 30px;
    }
    .photo-rank-list li {
        width: calc(16.6% - 5px * 5 / 6);
    }
    .photo-rank-list li:nth-child(n + 7) {
        display: block;
    }
}

/* special shop */
.content-head {
    margin: 30px 0;
}
.content-title {
    border-bottom: 6px solid #000;
    margin-bottom: 7px;
    padding-bottom: 5px;
}
.content-title img {
    height: 20px;
}
.content-lead {
    font-weight: bold;
    font-size: 14px;
}
.shoplist-block {
    margin-bottom: 30px;
}
.shoplist-block dt {
    border-bottom: 3px solid #000;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    letter-spacing: 0.02em;
}
.shop-list-list {
    display: flex;
    flex-direction: column;
}
.shoplist-item {
    padding: 15px 0;
}
.shoplist-item:not(:first-child) {
    border-top: 2px solid #C8C8C8;
}
.shoplist-inner {
    display: flex;
    align-items: flex-start;
}
.shoplist-item .img {
    width: 50%;
    padding-right: 15px;
    aspect-ratio: 106 / 70;
}
.shoplist-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shoplist-item .txt {
    width: 50%;
}
.shoplist-item  .shop-name {
    font-size: 14px;
    font-weight: bold;
}
.shoplist-item .title {
    font-size: 13px;
    font-weight: bold;
    padding: 3px 0;
}
.shoplist-item p {
    font-size: 12px;
}
.shoplist-item p + p {
    margin-top: 3px;
}

.article-page .car-term-links {
    margin-top: 30px;
}
.article-page .car-term-links ul li + li {
    margin-top: 14px;
}
.article-page .car-term-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.article-page .car-term-links ul li a {
    display: block;
    width: 100%;
    padding: 12px 10px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.article-page .car-term-links .car-term-archive-links li a {
    background: #e50014;
}
.article-page .car-term-links .usedcar-links li a {
    background: #ad9350;
}


@media screen and (min-width: 768px) {
    .content-head {
        margin: 40px 0 45px;
    }
    .content-title {
        border-bottom: 8px solid #000;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    .content-title img {
        height: 31px;
    }
    .content-lead {
        font-size: 16px;
        line-height: 1.4;
    }
    .shoplist-block dt {
        font-size: 32px;
    }
    .shop-list-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0 30px;
    }
    .shoplist-item {
        width: calc(50% - 30px / 2);
        border-top: 2px solid #C8C8C8;
        padding: 20px 0;
    }
    .shoplist-item:first-child,
    .shoplist-item:nth-child(2) {
        border-top: none;
    }
    .shoplist-item .shop-name {
        font-size: 16px;
    }
    .shoplist-item .title {
        font-size: 16px;
        padding: 2px 0 3px;
    }
    .article-page .car-term-links li a {
        font-size: 17px;
    }
}