@charset "UTF-8";

/* ======= 共通 ======= */
body{
    color: #fff!important;
}
img{
    width: 100%;
}
section{
    padding: 100px 0!important;
}
.sub-tit{
    font-size: 14px;
    text-align: center;
}
.h2-tit{
    font-size: 48px;
    text-align: center;
}

/* cta(fix-nav) */
.fix-kasukabe-nav{
    display: none;
}
/* fv */
.fv {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.45)),
    url("/wp/assets/img/kasukabe/fv_img.png") center center / cover no-repeat;
  z-index: 0;
}
.fv .inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 auto;
}
/* ラベル */
.label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.fv-label,
.rating {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.12em;
  background-color: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  padding: 10px 15px;
}
.fv-label {
  color: #1A6FE8;
  border-left: 2px solid #1A6FE8;
}
.rating {
  color: #fff;
  border-left: 2px solid #FFC107;
}

/* タイトル */
.fv-tit {
  font-size: clamp(35px, 6vw, 72px);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.fv-tx {
  line-height: 1.8;
  margin-bottom: 30px;
}

/* ボタン */
.fv-link {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.fv-btn { 
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
  color: #fff;
  box-sizing: border-box;
  white-space: nowrap;
  padding: 15px 30px;
}
.btn-primary {
  background: linear-gradient(-45deg, #990000 0, #CC0000 100%);
  border: 1px solid #CC0000;
}
.btn-ghost {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn:hover {
  opacity: 0.85;
}

/* 下部スクロール表示 */
.scroll {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.6);
}

.scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.45);
}

/* features */
.feature-block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-item{
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    padding: 30px;
}
.feature-icon img{
    width: 80px;
    margin-bottom: 15px;
}

/* reason */
.reason-item{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}
.reason-item:last-child{
    margin: 0;
}
.reason-tit{
    position: relative;
    padding-left: 1em;
}
.reason-tit::before{
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background-color: #003D99;
    top: 0;
    left: 0;
}

/* stock */
.stock-block{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.stock-item{
    color: #fff;
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
}
.stock-content{
    padding: 15px;
}
.stock-content .car-name{
    font-weight: bold;
}
.stock-content .car-grade{
    font-size: 12px;
}
.stock-content .car-info{
    font-size: 12px;
    margin: 10px 0;
}
.stock-content .car-price{
    display: flex;
    align-items: end;
    gap: 5px;
}
.stock-content .car-price .tx-large{
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
}
.stock-btn{
    display: block;
    max-width: 200px;
    width: 100%;
    color: #fff;
    font-weight: bold;
    text-align: center;
    border: 1px solid #fff;
    padding: 15px;
    margin: 50px auto 0;
}

/* line */
.line{
    background:
    radial-gradient(circle at left center, #17231B 0%, transparent 30%),
    linear-gradient(90deg, #0d0d0d 30%, #0d0d0d 100%);
}
.line h2{
    font-size: 40px;
}
.line-block{
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 20px;
    align-items: start;
}
.line-label{
    display: inline-block;
    background-color: #ddd;
    padding: 10px;
    margin-bottom: 2em;
}
.line-badge{
    display: inline-block;
    background-color: #06c755;
    padding: 10px 15px;
    margin-right: 5px;
}
.line-label-tx{
    color: #141414;
}
.line-list{
    margin-top: 50px;
}
.line-item{
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.line-item h3{
    margin: 0;
}
.line-card{
    max-width: 350px;
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    padding: 30px 20px;
    margin: auto;
}
.line-card img{
    width: 90%;
    margin: auto;
}
.line-card p{
    font-size: 12px;
    text-align: center;
}
.line-scan{
    margin: 15px 0;
}
.line-btn{
    display: block;
    background-color: #06C755;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    margin: 15px 0;
}
.line-btn .line-badge{
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
}

/* online */
.online{
    background: linear-gradient(-45deg, #141414 10%, #082D65 50%, #003D99 100%);
}
.online h2{
    font-size: 44px;
}
.online-block{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: center;
}
.online-content{
    margin: 50px 0;
}
.online-item{
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.online-item:last-child{
    margin: 0;
}
.online-num{
    font-size: 18px;
    font-weight: bold;
    background-color: #fff;
    color: #003D99;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.online-btn{
    display: block;
    max-width: 300px;
    background: linear-gradient(-45deg, #990000 0%, #CC0000 100%);
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

/* voice */
.voice img{
    max-width: 350px;
    margin: auto;
}
.voice-block{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}
.voice-item{
    background-color: #141414;
    border: 1px solid #2a2a2a;
    padding: 15px;
}
.voice-star{
    color: #FFC107;
    padding-bottom: 0.5em;
}
.voice-user{
    margin-top: 10px;
}

/* faq */
.faq-item{
    border-bottom: 1px solid #2a2a2a;
}
.faq-tit{
    position: relative;
    padding: 20px 0;
}
.faq-tx{
    display: none;
    padding: 0 0 20px 0;
}
.faq-tit::before,
.faq-tit::after{
    position: absolute;
    content: "";
    top: 0;
    right: 15px;
    bottom: 0;
    width: 15px;
    height: 2px;
    margin: auto;
    background-color: #0052CC;
}
.faq-tit::after {
    transform: rotate(-90deg);
    transition: transform 0.3s;
}
.faq-tit.open::after {
    transform: rotate(0deg);
}

/* access */
.access-block{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.access-map{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;
}
/* table */
table tr:nth-of-type(2n+1),
table th{
    background-color: transparent!important;
}
table:not(.has-border-color) :where(th, td){
    border: none!important;
}
tr{
    display: grid;
    grid-template-columns: 1fr 3fr;
    border-bottom: 1px solid #888;
}
table th, table td{
    padding: 15px 0!important;
    text-align: left;
}

/* cta */
.cta{
    background: linear-gradient(-45deg, #003D99 0%, #0A0A0A 50%, #990000 100%);
}
.cta h2{
    text-align: center;
}
.cta-link{
    text-align: center;
    margin-top: 50px;
}
.cta-link-online,
.cta-link-reserve,
.cta-link-tel{
    display: inline-block;
    color: #fff;
    font-weight: bold;
    padding: 15px 30px;
}
.cta-link-online{
    background: linear-gradient(-45deg, #990000 0%, #CC0000 100%);
    margin-right: 15px;
}
.cta-link-reserve{
    border: 1px solid #fff;
    margin-right: 15px;
}
.cta-link-tel{
    background: linear-gradient(-45deg, #003D99 0%, #0052CC 100%);
}

/* プライバシーポリシー */
.policy-block{
    background-color: #141414;
    border-bottom: 1px solid #2a2a2a;
    padding: 30px;
    margin-top: 50px;
}
.policy-top-tx{
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
}
.policy-item{
    margin-top: 20px;
}
.policy-tit{
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.policy-tx,
.policy-item ul li{
    color: rgba(255, 255, 255, 0.8);
}
.policy-tit span{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003D99;
    width: 30px;
    height: 30px;
}
.policy-bottom-item{
    background-color: #1e1e1e;
    border: 1px solid #2a2a2a;
    padding: 20px;
    margin-top: 30px;
}
.policy-bottom-item .tit{
    margin-bottom: 10px;
}

/*1000px以下*/
@media screen and (max-width:1000px){
    .h2-tit{
        font-size: 35px;
    }
    /* fv */
    .fv .inner{
        min-height: auto;
        padding: 50px 15px 150px 15px;
    }
    /* reason */
    .reason-item{
        gap: 30px;
    }
    .reason-tit{
        font-size: 18px;
    }
    /* access */
    .access-block{
        gap: 30px;
    }
}

/*750px以下*/
@media screen and (max-width:750px){
    section{
        padding: 50px 0!important;
    }
    .h2-tit{
        font-size: 30px;
    }
    /* cta(fix-nav) */
    .fix-kasukabe-nav{
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background-color: #141414;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        z-index: 999;
    }
    .fix-kasukabe-nav::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent 10%, #0052cc 50%, transparent 90%);
    }
    .fix-nav-tel,
    .fix-nav-line,
    .fix-nav-online{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        color: #fff;
        padding: 10px;
    }
    .fix-nav-line{
        border-left: 1px solid #333;
    }
    .fix-nav-line span{
        display: block;
        background-color: #06C755;
        padding: 2px 5px;
        margin-bottom: 2px;
    }
    .fix-nav-online{
        background: linear-gradient(-45deg, #990000 0%, #CC0000 100%);
    }
    /* fv */
    .fv .inner{
        padding: 30px 15px 100px 15px;
    }
    .fv-content{
        width: 100%;
    }
    .fv-label{
        display: none;
    }
    .fv-label,
    .rating {
        font-size: 10px;
        padding: 10px;
    }
    .fv-tit {
        font-size: 44px;
    }
    .fv-link {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .fv-btn {
        width: 100%;
        padding: 15px;
    }
    .scroll {
        bottom: 15px;
    }
    .scroll::after {
        height: 35px;
    }
    /* features */
    .feature-block{
        grid-template-columns: 1fr;
    }
    .sp-flex{
        display: flex;
        align-items: center;
        gap: 15px;
    }
    /* reason */
    .reason-item{
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }
    .reason-item img{
        order: 1;
    }
    .reason-item .reason-content{
        order: 2;
    }
    /* stock */
    .stock-block{
        grid-template-columns: 1fr 1fr;
    }
    /* line */
    .line h2{
        font-size: 35px;
        line-height: 1.5;
    }
    .line-block{
        grid-template-columns: 1fr;
    }
    .line-list {
        margin-top: 35px;
    }
    .line-label{
        display: block;
    }
    /* online */
    .online h2{
        font-size: 35px;
        line-height: 1.5;
    }
    .online-block{
        display: block;
    }
    .online-block img{
        margin-top: 30px;
    }
    .online-content{
        margin: 30px 0;
    }
    .online-btn{
        max-width: 100%;
    }
    /* voice */
    .voice-block{
        grid-template-columns: 1fr;
    }
    /* faq */

    /* access */
    .access-block{
        grid-template-columns: 1fr;
    }
    /* プライバシーポリシー */
    .policy-block{
        padding: 20px 15px;
    }
    .policy-bottom-item{
        padding: 15px;
    }
    /* cta */
    .cta-link{
        display: grid;
        gap: 10px;
        margin-top: 30px;
    }
    .cta-link-online, .cta-link-reserve, .cta-link-tel{
        max-width: 480px;
        width: 100%;
        display: block;
        margin: auto;
    }
}

/*480px以下*/
@media screen and (max-width:480px){
    .fv-tit {
        font-size: 35px;
    }
    .feature-item{
        padding: 20px;
    }
    .feature-icon img{
        width: 60px;
    }
    .line h2,
    .online h2{
        font-size: 24px;
    }
    .stock-block{
        grid-template-columns: 1fr;
    }
}