@charset "UTF-8";
/********************************************************************************

common-sp.css

********************************************************************************/
/*============================================================
 css変数
*============================================================*/
:root {
	--common-inner-max-width: 100%;           /* 通常サイト幅 */
	--common-inner-max-width-wide: 100%;      /* ワイドサイト幅 */
	--common-inner-padding: 24px;               /* 通常サイト幅内余白 */
	--common-inner-padding-wide: 24px;          /* ワイドサイト幅内余白 */
}

body {
    --inner-max-width: var(--common-inner-max-width);
    --inner-padding: var(--common-inner-padding);
}
body#page-top {
    --inner-max-width: var(--common-inner-max-width-wide);
    --inner-padding: var(--common-inner-padding-wide);
}

/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
    display: none;
}
.forSP {
    display: inherit;
}

/*============================================================
 format
*============================================================*/
h2 {
    text-align: center;
}
h3 {
    text-align: center;
}

/*============================================================
 コンテンツ共通
*============================================================*/
/* 共通ブロック(下層用ページヘッダー)
---------------------------------------- */
body:not(#page-top) #page-header #mainvisual {
    padding: 88px 0 0 0;
}
body:not(#page-top) #page-header #mainvisual .inner {
    padding-bottom: 32px;
}
body:not(#page-top) #page-header #mainvisual #breadcrumb {
    display: none;
}

/* 共通ブロック(タイトル・ボタン並列)
---------------------------------------- */
.block-title-btn[data-type="main"][data-btn-sw="sp"] h2 {
    width: 100%;
    text-align: center;
}
.block-title-btn[data-type="main"][data-btn-sw="sp"] .parts-btn {
    display: none;
}
.block-title-btn[data-type="sub"][data-btn-sw="sp"] {
    display: block;
}

/* 共通ブロック(ページリンク)
---------------------------------------- */
.block-card-page .item:nth-last-child(-n+2) {
    margin-bottom: 24px;
}
.block-card-page .item:last-child {
    margin-bottom: 0;
}
.block-card-page .item .item-title {
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 8px;
}
.block-card-page .item .item-image img {
    width: 100%;
}

/* 共通ブロック(円型ステップ)
---------------------------------------- */
.block-step-circle {
    zoom: unset;
}
.block-step-circle .item {
    width: 172px !important;
    height: 172px;
    margin: 0 auto 24px auto;
}
.block-step-circle .item:last-child {
    margin-right: auto;
}
.block-step-circle .item::after {
    content: "";
    display: block;
    width: 3px;
    height: 24px;
    background-color: #666666;
    position: absolute;
    bottom: -24px;
    left: calc(50% - 1.5px);
    top: unset;
    right: unset;
}
.block-step-circle .item:last-child:before {
    content: '';
    display: block;
    width: 10px;
    height: 17px;
    background-image: url(../images/common/icon-step-arrow.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 10px auto;
    transform: rotateZ(90deg); 
    position: absolute;
    top: -12px;
    left: calc(50% - 5px);
}
/* 共通ブロック(アクセス)
---------------------------------------- */
.block-access .item-info h3 {
    margin-bottom: 10px;
}
.block-access .item-info .item-traffic {
    margin-bottom: 24px;
}
.block-access .item-info .item-btn {
    margin: 40px auto 0 auto;
}
.block-access .item-map iframe {
    height: 184px;
}

/* 共通ブロック(PICKUP)
---------------------------------------- */
.block-pickup {
    padding: 0;
}
.block-pickup .block-wscroll-inner {
    padding-right: 0;
}
.block-pickup .pickup-slider {
    width: 100%;
}
.block-pickup .pickup-slider .slide {
    display: block;
    margin-right: 0;
}
.block-pickup .pickup-slider .slide img {
    margin: 0 auto;
}

/*============================================================
 footer
*============================================================*/
/* CTA　NEWS
---------------------------------------- */
#site-footer #sec-news .block-wscroll .block-wscroll-inner .news-list .item .item-title {
    text-align: left;
}

/* CTA　CONTACT
---------------------------------------- */
#site-footer #sec-contact .box-conntact > *:not(:last-child)::after {
    content: "";
    display: block;
    width: 180px;
    height: 1px;
    background-color: #C4C4C4;
    margin: 32px auto;
}
/* お問い合わせ */
#site-footer #sec-contact .box-conntact .item-contact {
}
/* ショールームのご予約 */
#site-footer #sec-contact .box-conntact .item-showroom {
    padding: 0;
}
#site-footer #sec-contact .box-conntact .item-showroom .parts-btn {
    width: 200px;
}
/* カタログのご案内 */
#site-footer #sec-contact .box-conntact .item-catalog {
}

/* Footer Navi
---------------------------------------- */
#site-footer #footer-fnav .fnav-boxes {
    display: block;
}

/* Copyright
---------------------------------------- */

/* POPUP
---------------------------------------- */
#popup {
    width: 100%;
}
#popup .popup-img {
    display: none;
}
#popup .box {
    width: 100%;
}
#popup .popup-title {
    margin-bottom: 8px;
}

