@charset "utf-8";

/*アプリのご利用方法*/
#app-use {
	padding: 80px 0;
	background: #f6f6f6;
}

#app-use .row-reserve {
    max-width: 900px;
}

.text-number b{
	font-size: 40px;
	line-height: 1;
	margin-left: 10px;
}
.row-reserve{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}
.dl-reservestep{
	padding: 10px 5px;
}
.dl-reservestep dt{
	border: solid 2px #6d4545;
	background: #fff;
	padding: 10px 15px;
	margin-bottom: 30px;
	font-size: 18px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.dl-reservestep dt span{
	color: #6d4545;
	font-size: 30px;
	margin-right: 10px;
}
.dl-reservestep dd{
	text-align: left;
}
.ol-appstep{
	padding: 0;
	counter-reset:renban;
	display: flex;
	flex-wrap: wrap;
}
.ol-appstep li{
	padding-left: 30px;
	position: relative;
	width: calc(50% - 10px);
	margin: 0 5px;
}
.ol-appstep li:before {
	counter-increment:renban;
	content:counter(renban) "";
	background: #603535;
	color: #fff;
	display: flex;
	width: 20px;
	height: 20px;
	font-size: 10px;
	justify-content: center;
	align-items: center;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 100px;
}
.ol-appstep li {
	margin-bottom: 30px;
}
.ol-appstep li span{
	padding: 20px;
	display: block;
	text-align: center;
}
.ol-appstep li span .img-zoom{
	zoom: 1;
	width: 100%;
	max-width: 400px;
}
/*
.ol-appstep li span .img-zoom.app-04{
	zoom: 1;
	width: 100%;
	max-width:220px;
}
*/
/*ボタン*/
.btn-app{
	background: #333;
	color: #fff;
	display: inline-block;
	outline: none;
	text-align: center;
	text-decoration: none;
	margin: 30px auto 0;
	padding: 10px 25px;
	border-radius: 4px;
	position: relative;
}
.btn-app:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    content: "\f0da";
    font-size: 16px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    z-index: 2;
}

/* 乗降場所追加リクエスト方法 */
.app-use-box {
    border: solid 2px #6d4545;
    background: #fff;
    padding: 30px 20px 10px;
    width: 95%;
    max-width: 900px;
    margin: auto;
}

.app-use-title {
    padding: 0 5px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #bbb;
}

.app-use-flow-list {
    counter-reset: renban;
}

.app-use-flow-list > li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.app-use-flow-list li > p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.app-use-flow-list > li::after {
    counter-increment: renban;
    content: counter(renban) "";
    background: #603535;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100px;
}

.app-use-point-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
    line-height: 1.4;
    font-size: 14px;
}

.app-use-point-list li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

.app-use-img {
    text-align: center;
    margin: auto;
}

.app-use-img img {
    width: 60%;
}

@media(max-width:768px) {
    
    #app-use{
        padding: 40px 0;
    }
    
    .text-number b{
        font-size: 30px;
    }

    .dl-reservestep dt{
        font-size: 16px;
    }

    .ol-appstep li{
        width: 100%;
    }
    
    .app-use-box {
        max-width: 100%;
        width: 90%;
        padding: 20px 10px;
    }
    
    .app-use-box .row {
        flex-direction: column-reverse;
    }
    
    .app-use-title {
        text-align: center;
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .app-use-flow-list li > p {
        font-size: 14px;
    }

    .app-use-flow-list li {
        padding-left: 26px;
        margin-bottom: 5px;
        font-size: 13px;
    }
    
    .app-use-img {
        margin-bottom: 10px;
    }
    
    .app-use-img img {
        width: 60%;
    }

}