@charset "utf-8";


/* =======================
　　　  PC・共通部分
======================= */

article{
    width: 90%;
    margin: 0 auto 150px;
}

article h2{
    margin-bottom: 100px;
}
article h2 .en{
    font-size: 96px;
}
article h2 span:last-child{
    font-size: 24px;
    margin-left: 50px;
    border-bottom: 5px solid #319500;
}


/* --- features --- */

.features{
    margin-top: 150px;
}

.features section{
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom: #319500 1px solid;
    position: relative;
}
.features section p{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.features section p span{
    display: inline-block;
    background-color: #319500;
    color: #fff;
    padding: 2px 7px;
    margin: 0 5px;
}
.features section p.en{
    width: fit-content;
    font-size: 30px;
    border-bottom: #319500 5px solid;
    margin-left: 40px;
    position: absolute;
    left: 0;
    top: 0;
}


/* --- service --- */

.srvc_list{
    display: flex;
    justify-content: space-between;
}
.srvc_list p{
    width: 5%;
    writing-mode: vertical-lr;
    background-color: #319500;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.srvc_list ul{
    width: 94%;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    gap: 20px;
}
.srvc_list ul li{
    width: 15%;
    height: 200px;
    background-color: #319500;
    color:#fff;
    font-weight: bold;
    padding: 0 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}
.srvc_list ul li::before{
    content: "";
    display: inline-block;
    background-size: contain;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.free ul li::before{
    background-image: url("/common/img/feature/ico_key.svg");
}
.free ul li:nth-child(2)::before{
    background-image: url("/common/img/feature/ico_door.svg");
}
.free ul li:nth-child(3)::before{
    background-image: url("/common/img/feature/ico_desk.svg");
}
.free ul li:nth-child(4)::before{
    background-image: url("/common/img/feature/ico_meeting.svg");
}
.free ul li:nth-child(5)::before{
    background-image: url("/common/img/feature/ico_pc.svg");
}
.free ul li:nth-child(6)::before{
    background-image: url("/common/img/feature/ico_post.svg");
}
.free ul li:nth-child(7)::before{
    background-image: url("/common/img/feature/ico_box.svg");
}
.free ul li:nth-child(8)::before{
    background-image: url("/common/img/feature/ico_copy.svg");
}
.free ul li:nth-child(9)::before{
    background-image: url("/common/img/feature/ico_window.svg");
}
.free ul li:nth-child(10)::before{
    background-image: url("/common/img/feature/ico_kitchen.svg");
}
.free ul li:nth-child(11)::before{
    background-image: url("/common/img/feature/ico_restroom.svg");
}

.free{
    margin-bottom: 50px;
}

.paid p{
    border: 2px solid #319500;
    background-color: #fff;
    color: #319500;
}
.paid ul li{
    border: 2px solid #319500;
    background-color: #fff;
    color: #319500;
}
.paid ul li::before{
    background-image: url("/common/img/feature/ico_mail.svg");
}
.paid ul li:nth-child(2)::before{
    background-image: url("/common/img/feature/ico_paper.svg");
}
.paid ul li:nth-child(3)::before{
    background-image: url("/common/img/feature/ico_tel.svg");
}
.paid ul li:nth-child(4)::before{
    background-image: url("/common/img/feature/ico_sign.svg");
}


/* --- area --- */

.area{
    width: 100%;
    padding: 100px 5%;
    background-image: url(/common/img/feature/img_station.jpg);
    background-size: cover;
    background-position: center;
}
.area h2{
    color: #fff;
}
.area h2 span:last-child{
    border-bottom: 5px solid #fff;
}
.area_flex{
    display: flex;
    justify-content: space-between;
}
.area_flex section{
    width: 32%;
}
.area section{
    background-color: #fff;
    border: #319500 2px solid;
    padding: 50px 30px;
}
.area section h3{
    font-size: 50px;
    text-align: center;
    margin-bottom: 30px;
}
.area section p{
    line-height: 2em;
}


/* --- access --- */

.access section{
    display: flex;
    align-items: center;
}
.access section iframe{
    width: 50%;
    height: 400px;
    border: #319500 2px solid;
}
.access section div{
    margin-left: 50px;
}
.access section div p{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}
.access section div ul li{
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.access section div ul li::before{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #319500;
    margin-right: 15px;
}

.access section.access_shop {
	align-items: flex-start;
	margin-top: 50px;
}
.access section.access_shop div{
	width: 45%; 
    border-top: solid 2px;
    padding: 20px;
    border-bottom: solid 1px;
}

/* =======================
　　　      SP
======================= */

@media screen and (max-width:769px) {

article{
    width: 100%;
    padding: 0 10px;
    margin: 0 auto 80px;
}

article h2{
    margin-bottom: 50px;
}
article h2 .en{
    font-size: 50px;
}
article h2 span:last-child{
    font-size: 20px;
    border-bottom: 3px solid #319500;
    margin: 10px 0 0;
    padding: 0 5px;
}


/* --- features --- */

.features{
    margin-top: 80px;
}

.features section{
    width: 95%;
    padding-bottom: 30px;
    margin: 0 auto 40px;
    border-bottom: #319500 1px solid;
    position: relative;
}
.features section p{
    text-align: left;
    font-size: 14px;
    font-weight: bold;
}
.features section p span{
    display: inline-block;
    background-color: #319500;
    color: #fff;
    padding: 2px 7px;
    margin: 0 5px;
}
.features section p.en{
    width: fit-content;
    font-size: 20px;
    border-bottom: #319500 3px solid;
    margin-left: 0px;
    position: absolute;
    left: 0;
    top: 0;
}
.features section p:last-child{
    padding-left: 40px;
}


/* --- service --- */

.srvc_list{
    display: flex;
    flex-direction: column;
}
.srvc_list p{
    width: 100%;
    padding: 15px 0;
    margin-bottom: 10px;
    writing-mode: inherit;
}
.srvc_list ul{
    width: 100%;
    gap: inherit;
    justify-content: space-between;
}
.srvc_list ul li{
    width: 32%;
    height: 110px;
    padding-bottom: 10px;
    font-size: 12px;
    margin-bottom: 10px;
}
.srvc_list ul li::before{
    width: 35px;
    height: 35px;
}

.free{
    margin-bottom: 30px;
}


/* --- area --- */

.area{
    padding: 70px 10px 80px;

}
.area_flex{
    flex-direction: column;
}
.area_flex section{
    width: 100%;
    margin-bottom: 40px;
}
.area_flex section:last-child{
    margin-bottom: 0;
}
.area section h3{
    font-size: 30px;
}


/* --- access --- */

.access section{
    flex-direction: column;
}
.access section iframe{
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
}
.access section div{
    width: 95%;
    margin: 0 auto;
}

.access section.access_shop {
	margin-top: 30px;
}
.access section.access_shop div{
	width: 95%; 
  border-bottom:none;
  padding: 10px 0 0 0;
	margin-bottom: 30px;
}


}