@charset "UTF-8";

/************************************
** 即納車ページ用CSS
************************************/
a{
    text-decoration: none;
}
.tx-orenge{
    color: #dd5700;
}

.sokunou-top{
    background-color: #d7f1f9;
    text-align: center;
    padding: 30px 0;
    margin-top: 30px;
}
.sokunou-top img{
    width: auto;
}
.sokunou-block{
    display: grid;
    grid-template-columns: 49% 49%;
    justify-content: space-between;
    padding: 30px 0;
}
.sokunou-card{
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: 2px 2px 2px #ccc;
    font-weight: bold;
    padding: 20px 15px;
    margin-bottom: 15px;
}
.sokunou-card:hover{
    background-color: #d7f1f9;
}
.sokunou-subtitle{
    display: flex;
    justify-content: space-between;
    color: #0077a8;
    border-bottom: 2px solid #0077a8;
}
.sokunou-subtitle .sokunousya{
    font-size: 0.8em;
    background-color: #0077a8;
    color: #fff;
    padding: 5px 5px 0 5px;
}
.sokunou-title{
    font-size: 1.5em;
    line-height: 1.2;
    color: #555;
    padding-top: 15px;
}
.sokunou-title span{
    display: block;
    font-size: 0.8em;
    color: #aaa;
}
.sokunou-img{
    padding-bottom: 10px;
    margin-top: -10px;
}
.sokunou-info p{
    color: #aaa;
    text-align: center;
}
p.sokunou-discription{
    padding-bottom: 5px;
}
/* .sokunou-slash{
    display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sokunou-slash::before,
.sokunou-slash::after {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #555;
  margin: 0px 4px 4px;
}
.sokunou-slash::before {
  transform: rotate(45deg);
}
.sokunou-slash::after {
  transform: rotate(-45deg);
} */
/* p.sokunou-discription{
    background-color: #aaa;
    color: #fff;
    margin-bottom: 10px;
} */
.sokunou-price{
    display: grid;
    grid-template-columns: 1fr 3.5fr;
    align-items: center;
    margin-top: -10px;
}
.sokunou-price p{
    color: #dd5700;
}
.sokunou-price-left p{
    font-size: 1.8em;
    line-height: 1.1;
}
.sokunou-price-left p span{
    display: block;
    font-size: 0.5em;
}
.sokunou-price-right p{
    font-size: 3.2em;
    line-height: 1.2;
}
.sokunou-price-right p span{
    font-size: 0.5em;
}
.link-button{
    position: relative;
    background-color: #0077a8;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 5px 20px 5px 5px;
    margin-top: 5px;
}
.link-button::after{
    content:"▲";
    position: absolute;
    right: 20px;
    transform: rotate(90deg);
}
.sokunou-bottom{
    padding-bottom: 30px;
}
.balloon{
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    color: #0077a8;
    background-color: #fff;
    border: 3px solid #0077a8;
    padding: 15px 50px;
    margin: 15px 0;
    left: 50%;
    transform: translate(-50%, 0%);
}
.balloon::before{
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #fff;
    z-index: 2;
}
.balloon:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #0077a8;
    z-index: 1;
}
.contact-block{
    max-width: 650px;
    padding: 15px 15px 30px 15px;
    margin: auto;
}
.sokunou-item{
    font-weight: bold;
    background-color: #d7f1f9;
    padding: 30px;
}
.sokunou-item div{
    text-align: center;
}
.sokunou-item .title{
    display: inline-block;
    background: linear-gradient(transparent 50%, #fff 30%);
    color: #0077a8;
    font-size: 1.2em;
    line-height: 1.3;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
}

/* 950px以下 */
@media screen and (max-width: 950px){
    .so-wrap{
        padding: 15px;
    }
    .sokunou-top{
        padding: 15px 0;
        margin: 0;
    }
    .sokunou-top img{
        width: 90%;
    }
    .sokunou-block{
        padding: 15px 0;
    }
    .sokunou-card{
        box-shadow: 1px 1px 2px #ccc;
    }
    .sokunou-title{
        font-size: 1em;
    }
    .sokunou-img{
        padding: 0;
        margin: 0;
    }
    .sokunou-discription{
        font-size: 14px;
    }
    .sokunou-price-left p{
        font-size: 1.1em;
    }
    .sokunou-price-right p{
        font-size: 1.6em;
    }
    .link-button{
        font-size: 14px;
    }

    .balloon{
        padding: 15px;
    }
    .sokunou-item{
        font-size: 15px;
        padding: 20px;
    }

    /* 即納車子ページ */
}

/* 480px以下 */
@media (max-width: 480px) {
    .so-wrap{
        padding: 10px;
    }
    .sokunou-card{
        padding: 10px;
    }
    .sokunou-discription{
        font-size: 10px;
    }
    .sokunou-price{
        margin-top: -5px;
    }
    .sokunou-price-left p{
        font-size: 15px;
    }
    .sokunou-price-right p{
        font-size: 22px;
    }
    .link-button{
        font-size: 12px;
    }
}