@charset "UTF-8";

/* taxi-service  --------------------- */
#taxi-service{
    width: 100%;
    background-color: #F3E6DE;
    padding: 120px 0;
}

#taxi-service .description-wrap{
    width: 50%;
    margin: 0 auto 80px auto;
}
#taxi-service .description-wrap p{
    text-indent: 1em;
}

#taxi-service .point-list{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3%;
    margin: 0 auto 80px auto;
}
#taxi-service .point-list li{
    background-color: #fff;
    border: 1px solid #A36637;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 5%;
}
#taxi-service .point-list li .img-area{
    width: 180px;
    height: 140px;
    margin: 0 auto;
}
#taxi-service .point-list li:nth-child(3) .img-area{
    width: 104px;
}
#taxi-service .point-list li .img-area img{
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}
#taxi-service .point-list li .text-area{
    width: 100%;
}
#taxi-service .point-list li .point-title{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

#taxi-service .example-area{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
}
#taxi-service .example-area .img-wrap{
    width: calc(50% - 20px);
    border-radius: 20px;
}
#taxi-service .example-area .img-wrap img{
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    overflow: hidden;
}

#taxi-service .example-area .text-wrap{
    width: calc(50% - 20px);
}
#taxi-service .example-area .text-wrap .example-list{
    width: 80%;
    margin: 40px auto;
}
#taxi-service .example-area .text-wrap .example-list li{
    list-style: disc;
    margin-bottom: 20px;
}
#taxi-service .example-area .text-wrap .example-list li:last-child{
    margin-bottom: 0;
}


/* taxi-fee  ------------------------- */
#taxi-fee{
    width: 100%;
    position: relative;
}
#taxi-fee .wave-area{
    width: 100%;
    margin-top: -1px;
}
#taxi-fee .wave-area img{
    width: 100%;
}
#taxi-fee .dot-wave-area{
    width: 40%;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 5;
}
#taxi-fee .fee-backimage{
    position: sticky;
    top: calc(100vh - 237px);
    left: 0;
    margin-top: 580px;
    width: 368px;
    height: 237px;
    z-index: -1;
    background: url(../img/taxi/img-illust.jpg) no-repeat;
    background-size: contain;
    pointer-events: none;
}

#taxi-fee .section-title{
    margin-top: -700px;
}

#taxi-fee .description-wrap{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto 80px auto;
}
#taxi-fee .description-wrap .text-wrap{
    width: calc(40% - 20px);
}
#taxi-fee .description-wrap .detail-wrap{
    width: calc(60% - 20px);
    background-color: #A36637;
    border: 1px solid #6F3B14;
    border-radius: 20px;
    padding: 40px 5%;
}
#taxi-fee .description-wrap .detail-wrap p{
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}
#taxi-fee .description-wrap .detail-wrap p:last-of-type{
    text-align: right;
    margin-bottom: 0;
}
#taxi-fee .description-wrap .detail-wrap .detail{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0 auto 10px auto;
}
#taxi-fee .description-wrap .detail-wrap .detail .fee{
    color: #fff;
    font-weight: 500;
    line-height: 1em;
    background-color: #6F3B14;
    border-radius: 40px;
    padding: 5px 10px 8px;
    position: relative;
}
#taxi-fee .description-wrap .detail-wrap .detail .fee::before{
    content: "+";
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: 5px;
    left: -25px;
}
#taxi-fee .description-wrap .detail-wrap .detail .fee:first-child::before{
    content: none;
}
#taxi-fee .description-wrap .detail-wrap .other{
    width: fit-content;
    margin: 0 auto 10px auto;
}
#taxi-fee .description-wrap .detail-wrap .other li{
    color: #fff;
    font-weight: 500;
    list-style: disc;
}

#taxi-fee .list-wrap{
    width: 60%;
    background-color: #F3E6DE;
    border-radius: 20px;
    padding: 40px 3%;
    margin: 0 10% 40px auto;
}
#taxi-fee .list-wrap .list-title{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2em;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
    margin-bottom: 30px;
}
#taxi-fee .list-wrap .list-title .small{
    font-size: 15px;
    font-weight: 400;
    color: #A36637;
}

#taxi-fee .list-wrap dl{
    width: 100%;
}
#taxi-fee .list-wrap dl .item-main-wrap{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5px;
}
#taxi-fee .list-wrap dl .item-main-wrap dt,
#taxi-fee .list-wrap dl .item-main-wrap dd{
    font-size: 20px;
    line-height: 1.2em;
    text-align: right;
}
#taxi-fee .list-wrap dl .item-main-wrap dd .unit{
    font-size: 16px;
}
#taxi-fee .list-wrap dl dd.detail{
    font-size: 16px;
    color: #A36637;
    margin-bottom: 40px;
}
#taxi-fee .list-wrap dl dd.detail:last-of-type{
    margin-bottom: 0;
}

#taxi-fee .notice{
    width: 60%;
    font-size: 16px;
    margin: 0 10% 130px auto;
}


/* taxi-qa  ------------------------- */
#taxi-qa{
    width: 100%;
    background-color: #F3E6DE;
    background-image: 
        url(../img/backwave-white-stripe.png),
        url(../img/backwave-white-dot.png);
    background-repeat: no-repeat, no-repeat;
    background-position:
        left top 600px,
        right bottom 30px;
    background-size: 70%, 70%;
}

#taxi-qa .qa-image-area{
    width: 100%;
}
#taxi-qa .qa-image-area img{
    width: 100%;
}

#taxi-qa .section-title{
    margin-top: -1px;
    background-color: #F3E6DE;
}

#taxi-qa .questions-list{
    width: 65%;
    padding-bottom: 120px;
    margin: 0 auto;
}
#taxi-qa .questions-list .question-item{
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 5%;
    margin-bottom: 60px;
}
#taxi-qa .questions-list .question-item dt{
    width: 90%;
    margin-left: 25px;
    margin-bottom: 20px;
    position: relative;
}
#taxi-qa .questions-list .question-item dt::before{
    content: "Q.";
    color: #A36637;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    left: -25px;
}
#taxi-qa .questions-list .question-item dd{
    width: 85%;
    margin: 0 0 0 auto;
    position: relative;
}
#taxi-qa .questions-list .question-item dd::before{
    content: "A.";
    color: #A36637;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 0;
    left: -25px;
}

/* taxi-download  ------------------- */
#taxi-download{
    width: 100%;
    background-color: #F3E6DE;
    padding: 0 0 120px 0;
}
#taxi-download .info-area{
    width: 65%;
    background-color: #6F3B14;
    border-radius: 0 20px 20px 0;
    padding: 40px 5% 40px 10%;
    margin: 0 auto 0 0;
}
#taxi-download .info-area > p{
    color: #fff;
}

#taxi-download .pdf-area{
    width: 60%;
    min-width: 576px;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 5%;
    margin: -20px 5% 0 auto;
}
#taxi-download .pdf-area .pdf-list{
    width: 100%;
}
#taxi-download .pdf-area .pdf-list li{
    margin-bottom: 40px;
}
#taxi-download .pdf-area .pdf-list li:last-child{
    margin-bottom: 0;
}
#taxi-download .pdf-area .pdf-list li .file-title{
    padding-bottom: 5px;
    border-bottom: 1px solid #A36637;
    margin-bottom: 5px;
}
#taxi-download .pdf-area .pdf-list li .file-title .small{
    font-size: 16px;
    color: #555;
    margin-left: 10px;
}
#taxi-download .pdf-area .pdf-list li .action-area{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
    padding-right: 30px;
}
#taxi-download .pdf-area .pdf-list li .action-area a{
    display: block;
    position: relative;
}
#taxi-download .pdf-area .pdf-list li .action-area a::after{
    content: "";
    width: 18px;
    height: 18px;
    background-size: contain;
    position: absolute;
    top: 6px;
    right: -20px;
}
#taxi-download .pdf-area .pdf-list li .action-area .link::after{
    background-image: url(../img/icon-window-black.png);
}
#taxi-download .pdf-area .pdf-list li .action-area .download::after{
    background-image: url(../img/icon-download-black.png);
}
#taxi-download .pdf-area .pdf-list li .action-area a:hover{
    color:#A36637;
}
#taxi-download .pdf-area .pdf-list li .action-area .link:hover::after{
    background-image: url(../img/icon-window-brown.png);
}
#taxi-download .pdf-area .pdf-list li .action-area .download:hover::after{
    background-image: url(../img/icon-download-brown.png);
}


/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 960px) {

    /* taxi-service  --------------------- */
    #taxi-service .description-wrap{
        width: 65%;
    }

    #taxi-service .point-list{
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    #taxi-service .point-list li{
        flex-direction: row;
    }
    #taxi-service .point-list li .text-area{
        width: calc(100% - 180px);
    }
    #taxi-service .point-list li .point-title{
        text-align: left;
    }

    #taxi-service .example-area{
        width: 70%;
        flex-direction: column-reverse;
        gap: 40px;
    }
    #taxi-service .example-area .img-wrap{
        width: 100%;
    }

    #taxi-service .example-area .text-wrap{
        width: 100%;
    }

    /* taxi-fee  ------------------------- */
    #taxi-fee .fee-backimage{
        width: 100%;
        background: none;
    }

    #taxi-fee .description-wrap{
        flex-direction: column;
    }
    #taxi-fee .description-wrap .text-wrap{
        width: 100%;
    }
    #taxi-fee .description-wrap .detail-wrap{
        width: 100%;
    }

    #taxi-fee .list-wrap{
        width: 80%;
        margin: 0 10% 40px 10%;
    }

    #taxi-fee .notice{
        width: 80%;
        margin: 0 10% 130px 10%;
    }

    /* taxi-qa  ------------------------- */
    #taxi-qa{
        background-position:
            left top 330px,
            right bottom 30px;
    }

    #taxi-qa .questions-list{
        width: 80%;
        padding-bottom: 80px;
    }


    /* taxi-download  ------------------- */
    #taxi-download .pdf-area{
        min-width: 0;
    }


}

/*-------------------------------------------
スマホ
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /* taxi-service  --------------------- */
    #taxi-service{
        padding: 80px 0;
    }

    #taxi-service .description-wrap{
        width: 90%;
    }

    #taxi-service .point-list{
        gap: 20px;
    }
    #taxi-service .point-list li{
        flex-direction: column;
    }
    #taxi-service .point-list li .text-area{
        width: 100%;
    }
    #taxi-service .point-list li .point-title{
        text-align: center;
    }

    #taxi-service .example-area{
        width: 90%;
    }

    /* taxi-fee  ------------------------- */
    #taxi-fee .dot-wave-area{
        width: 50%;
        top: 30px;
    }

    #taxi-fee .section-title{
        margin-top: -750px;
    }

    #taxi-fee .description-wrap{
        width: 90%;
    }
    #taxi-fee .description-wrap .detail-wrap .detail{
        gap: 20px;
    }
    #taxi-fee .description-wrap .detail-wrap .detail .fee{
        font-size: 16px;
        padding: 5px 7px 8px;
    }
    #taxi-fee .description-wrap .detail-wrap .detail .fee::before{
        width: 15px;
        height: 15px;
        font-size: 15px;
        top: 5px;
        left: -17.5px;
    }

    #taxi-fee .list-wrap{
        width: 90%;
        padding: 40px 5%;
        margin: 0 5% 40px 5%;
    }

    #taxi-fee .list-wrap dl .item-main-wrap{
        flex-direction: column;
        margin-bottom: 5px;
    }
    #taxi-fee .list-wrap dl .item-main-wrap dt{
        align-self: flex-start;
    }
    #taxi-fee .list-wrap dl .item-main-wrap dd{
        align-self: flex-end;
    }

    #taxi-fee .notice{
        width: 90%;
        margin: 0 5% 130px 5%;
    }

    /* taxi-qa  ------------------------- */
    #taxi-qa{
        background-position:
            left top 280px,
            right bottom 70px;
        background-size: 70%, 80%;
    }

    #taxi-qa .questions-list{
        width: 90%;
    }
    #taxi-qa .questions-list .question-item{
        padding: 30px 5%;
        margin-bottom: 40px;
    }

    /* taxi-download  ------------------- */
    #taxi-download{
        padding: 0 0 80px 0;
    }
    #taxi-download .info-area{
        width: 95%;
        padding: 40px 5%;
    }
    
    #taxi-download .pdf-area{
        width: 90%;
        margin: -20px auto 0 auto;
    }
    #taxi-download .pdf-area .pdf-list li .file-title{
        margin-bottom: 10px;
    }
    #taxi-download .pdf-area .pdf-list li .action-area{
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }


}