@charset "UTF-8";
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}
*{
    box-sizing: border-box;
}
body{
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}
.inner{
    width: 1000px;
    margin: 0 auto;
}
p{
    font-size: 16px;
    color: #000;
    line-height: 1.8;
}
.onlyPc{
    
}
.onlySp{
    display: none;
}

@media only screen and (max-width: 600px) {
    body{
        width: 100%;
    }
    .inner{
        width: 95%;
    }
    .onlyPc{
        display: none;
    }
    .onlySp{
        display: block;
    }
}



/*   main   */

.main img{
    width: 100%;
}

/*   delivery   */

.delivery{
    margin: 50px auto;
    text-align: center;
}
.delivery img{
    width: 300px;
    display: block;
    margin: 0 auto 30px auto;
}
.delivery p{
    text-align: center;
}
.deliveryTitle{
    font-size: 20px;
    color: #fff;
    line-height: 1;
    padding: 6px 20px;
    background: #C02E0E;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
}
.deliveryText{
    font-size: 32px;
    margin: 0;
}
.delivery a{
    color: #000;
    text-decoration: none;
}

.deliveryMenu{
    background: #FFEFEB;
    padding: 50px 0;
    border-top: 10px solid #C02E0E;
    position: relative;
}
.deliveryMenu::before{
    content: "";
    width: 50px;
    height: 50px;
    background: url("../img/sankaku.png") no-repeat;
    background-size: 50px 50px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.deliveryMenu h2{
    color: #C02E0E;
    font-weight: bold;
    font-size: 32px;
     text-align: center;
    position: relative;
    padding-bottom: 30px;
}
.deliveryMenu h2 span{
    font-weight: normal;
    font-size: 16px;
}
.deliveryMenu h2::before{
    content: "";
    width: 100px;
    height: 2px;
    background: #C02E0E;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.deliveryMenu img:first-of-type{
    margin-bottom: 60px;
}


@media only screen and (max-width: 600px) {
    .delivery img{
        width: 150px;
    }
    .deliveryTitle{
        font-size: 18px;
    }
    .deliveryText{
        font-size: 24px;
    }
    .deliveryMenu img:first-of-type{
        margin-bottom: 30px;
    }
}


/*   about   */

.about{
    background: url("../img/about_bg.jpg") no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.about img{
    display: block;
    width: 200px;
    margin: 0 auto;
}
.about p{
    text-align: center;
    color: #fff;
    line-height: 2.5;
}

@media only screen and (max-width: 600px) {
    .about{
        background: url("../img/about_bg_sp.jpg") no-repeat;
        background-size: cover;
        padding: 30px 0;
    }
    .about img{
        width: 150px;
    }
}


/*   detail   */

.detail{
    padding: 50px 0;
}
table{
    width: 800px;
    margin: 0 auto;
}
table tr{
    border-bottom:  1px solid #ccc;
}
table tr th{
    padding: 16px 0;
    font-size: 16px;
    width: 100px;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}
table tr td{
    padding: 16px 0;
    font-size: 16px;
    line-height: 1.6;
}

.map{
    width: 100%; 
    height: 600px;
}
.map iframe{
    width: 100%;
    height: 600px;
}

@media only screen and (max-width: 600px) {
    table{
        width: 90%;
    }
    table tr th,table tr td{
        display: block;
        width: 100%;
    }
    table tr th{
        padding-bottom: 0;s
    }
    table tr td{
        padding-top: 8px;
    }
    .map, .map iframe{
        height: 300px;
    }
}


/*   button   */

.button{
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.button img{
    width: 60px;
}


/*   footer   */

footer{
    padding: 40px 0 80px 0;
}
footer p{
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .button{
        justify-content: space-between;
    }
}